From e532d9345d1568c348ad45ffd7beb8e8a79361b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 2 Dec 2018 16:47:00 +0100 Subject: Add CMakeL10n rules. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- tdeprint/CMakeL10n.txt | 8 +++++++ tdeprint/cups/CMakeL10n.txt | 3 +++ tdeprint/cups/cupsdconf2/CMakeL10n.txt | 40 ++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 tdeprint/CMakeL10n.txt create mode 100644 tdeprint/cups/CMakeL10n.txt create mode 100644 tdeprint/cups/cupsdconf2/CMakeL10n.txt (limited to 'tdeprint') diff --git a/tdeprint/CMakeL10n.txt b/tdeprint/CMakeL10n.txt new file mode 100644 index 000000000..39b00b619 --- /dev/null +++ b/tdeprint/CMakeL10n.txt @@ -0,0 +1,8 @@ +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "tdeprint" + EXCLUDES "^cups/cupsdconf2/" +) + +tde_l10n_auto_add_subdirectories( ) diff --git a/tdeprint/cups/CMakeL10n.txt b/tdeprint/cups/CMakeL10n.txt new file mode 100644 index 000000000..b585ce4af --- /dev/null +++ b/tdeprint/cups/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/tdeprint/cups/cupsdconf2/CMakeL10n.txt b/tdeprint/cups/cupsdconf2/CMakeL10n.txt new file mode 100644 index 000000000..015135199 --- /dev/null +++ b/tdeprint/cups/cupsdconf2/CMakeL10n.txt @@ -0,0 +1,40 @@ +##### prepare cupsd.conf.template as C source ### + +set( _conf_context "Do not translate the keyword between brackets (e.g. ServerName, ServerAdmin, etc.)" ) +file( READ ${CMAKE_CURRENT_SOURCE_DIR}/cupsd.conf.template _conf_template ) +string( REGEX REPLACE "[^\n]" "" _conf_len "${_conf_template}" ) +string( LENGTH "+${_conf_len}" _conf_len ) +unset( _conf_comment ) +unset( _conf_l10n ) +set( _conf_pos 0 ) +while( _conf_pos LESS ${_conf_len} ) + string( REGEX REPLACE "^([^\n]*)\n(.*)" "\\1" _conf_line "${_conf_template}" ) + string( REGEX REPLACE "^([^\n]*)\n(.*)" "\\2" _conf_template "${_conf_template}" ) + math( EXPR _conf_pos "${_conf_pos}+1" ) + if( _conf_comment ) + if( "${_conf_line}" MATCHES "^\\$\\$" OR "${_conf_line}" MATCHES "^@@" ) + unset( _conf_comment ) + set( _conf_line ");" ) + else( ) + string( REGEX REPLACE "\\\"" "\\\\\"" _conf_line "${_conf_line}" ) + string( REGEX REPLACE "^# +(.*)$" "\"\\1\\\\n\"" _conf_line "${_conf_line}" ) + endif( ) + else( ) + if( "${_conf_line}" MATCHES "^%%" AND NOT "${_conf_line}" STREQUAL "%%header" ) + set( _conf_comment 1 ) + set( _conf_line "i18n(\"${_conf_context}\"," ) + else( ) + set( _conf_line "" ) + endif( ) + endif( ) + set( _conf_l10n "${_conf_l10n}${_conf_line}\n" ) +endwhile( ) +file( WRITE ${CMAKE_CURRENT_SOURCE_DIR}/cupsd.conf.template.tde_l10n "${_conf_l10n}" ) + + +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "cupsdconf" + SOURCES "." cupsd.conf.template.tde_l10n +) -- cgit v1.2.1