summaryrefslogtreecommitdiffstats
path: root/kword/CMakeL10n.txt
diff options
context:
space:
mode:
Diffstat (limited to 'kword/CMakeL10n.txt')
-rw-r--r--kword/CMakeL10n.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/kword/CMakeL10n.txt b/kword/CMakeL10n.txt
new file mode 100644
index 00000000..59396ccb
--- /dev/null
+++ b/kword/CMakeL10n.txt
@@ -0,0 +1,27 @@
+##### prepare strings from data files ###########
+
+file( GLOB_RECURSE _kword_data_files
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/expression/*.xml
+)
+list( SORT _kword_data_files )
+unset( _kword_data_l10n )
+foreach( _kword_file ${_kword_data_files} )
+ tde_l10n_prepare_xml(
+ SOURCE ${_kword_file}
+ TAGS "Example" "GroupName" "Text" "Comment" "Syntax" "TypeName"
+ )
+ list( APPEND _kword_data_l10n "${_kword_file}.tde_l10n" )
+endforeach( )
+
+
+##### create translation templates ##############
+
+tde_l10n_create_template(
+ CATALOG "kword"
+ SOURCES
+ "."
+ ${_kword_data_l10n}
+)
+
+tde_l10n_auto_add_subdirectories( )