diff options
author | Slávek Banko <[email protected]> | 2018-12-09 04:00:36 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-12-09 16:45:28 +0100 |
commit | c0bebcf76b3162137d5d5ef1d8bf441802c9e653 (patch) | |
tree | 1d457aa6164d1f6d72be71ebdd58916f047f8888 /kcontrol/locale/CMakeL10n.txt | |
parent | 2c7795c2c73cc4dd6cb1d1563e3d00e7119bcbf5 (diff) | |
download | tdebase-c0bebcf76b3162137d5d5ef1d8bf441802c9e653.tar.gz tdebase-c0bebcf76b3162137d5d5ef1d8bf441802c9e653.zip |
Add CMakeL10n rules.
Update TIMEZONES list.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit b95b665c78a047fc540e2bc4a8c19be6db03b825)
Diffstat (limited to 'kcontrol/locale/CMakeL10n.txt')
-rw-r--r-- | kcontrol/locale/CMakeL10n.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kcontrol/locale/CMakeL10n.txt b/kcontrol/locale/CMakeL10n.txt new file mode 100644 index 000000000..e94d7b7a1 --- /dev/null +++ b/kcontrol/locale/CMakeL10n.txt @@ -0,0 +1,33 @@ +##### upate TIMEZONES ########################### + +if( EXISTS /usr/share/zoneinfo/zone.tab ) + message( STATUS "Update TIMEZONES list from system zone table" ) + unset( _zone_list ) + file( STRINGS /usr/share/zoneinfo/zone.tab _zone_tab REGEX "^[^#]" ) + foreach( _zone_line ${_zone_tab} ) + string( REGEX REPLACE "[ \t]+" ";" _zone_line ${_zone_line} ) + if( "${_zone_line}" MATCHES ".*;.*;.*" ) + list( GET _zone_line 2 _zone_name ) + list( APPEND _zone_list ${_zone_name} ) + endif( ) + endforeach( ) + list( SORT _zone_list ) + file( WRITE ${CMAKE_CURRENT_SOURCE_DIR}/TIMEZONES "" ) + foreach( _zone_name ${_zone_list} ) + file( APPEND ${CMAKE_CURRENT_SOURCE_DIR}/TIMEZONES "i18n(\"${_zone_name}\");\n" ) + endforeach( ) +endif( ) + + +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "kcmlocale" + KEYWORDS translate +) + +tde_l10n_create_template( + CATALOG "timezones" + SOURCES "TIMEZONES" + DESTINATION "${POT_SOURCE_DIR}/../tdelibs" +) |