summaryrefslogtreecommitdiffstats
path: root/kopete/CMakeL10n.txt
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/CMakeL10n.txt')
-rw-r--r--kopete/CMakeL10n.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/kopete/CMakeL10n.txt b/kopete/CMakeL10n.txt
new file mode 100644
index 00000000..fc613c39
--- /dev/null
+++ b/kopete/CMakeL10n.txt
@@ -0,0 +1,29 @@
+##### prepare styles XSL files ##################
+
+file( GLOB_RECURSE _styles_xsl
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/styles/*.xsl
+)
+foreach( _style_xsl ${_styles_xsl} )
+ tde_l10n_prepare_xml(
+ SOURCE ${_style_xsl}
+ TAGS "kopete-i18n"
+ CONTEXT "Translators: The %FOO% placeholders are variables that are substituted in the code, please leave them untranslated"
+ )
+ list( REMOVE_ITEM _styles_xsl "${_style_xsl}" )
+ list( APPEND _styles_xsl "${_style_xsl}.tde_l10n" )
+endforeach( )
+
+
+##### create translation templates ##############
+
+tde_l10n_create_template(
+ CATALOG "kopete"
+ SOURCES "." ${_styles_xsl}
+ EXCLUDES
+ "^libkopete/compat/"
+ "^protocols/testbed/"
+ "^styles/.*\\\\.xsl$"
+)
+
+tde_l10n_auto_add_subdirectories( )