You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
685 B
28 lines
685 B
##### 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( )
|