blob: fc613c394e1735f5ea7bb17eb11c554a6e211649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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( )
|