summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-06-12 15:07:57 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-06-12 15:07:57 +0200
commit5121b9a41d671dbaf7350c349d246793d8d8a4e2 (patch)
tree10d2b3b77811f26aab93d256b2c25d75a2df3326
parent74654feb3bd49ba97c57e83ba2dd23c7c3d83c05 (diff)
downloadtde-cmake-5121b9a4.tar.gz
tde-cmake-5121b9a4.zip
Update TDEL10n module
+ Add new options to function tde_l10n_prepare_xml -- preserve / remove multiple line breaks -- this fix the extraction from tips files Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--modules/TDEL10n.cmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/TDEL10n.cmake b/modules/TDEL10n.cmake
index 8b2774f..62aad3a 100644
--- a/modules/TDEL10n.cmake
+++ b/modules/TDEL10n.cmake
@@ -690,7 +690,7 @@ function( tde_l10n_prepare_xml )
unset( _context )
set( _skip_properties "database|associations|populationText" )
set( _tags "[tT][eE][xX][tT]|title|string|whatsthis|tooltip|label" )
- set( _preserve "line-wrap" "lines-leading" "spaces-leading" "spaces-trailing" "spaces-multi" )
+ set( _preserve "line-wrap" "lines-leading" "lines-multi" "spaces-leading" "spaces-trailing" "spaces-multi" )
set( _no_c_format 1 )
unset( _directive )
set( _var _source )
@@ -872,8 +872,9 @@ function( tde_l10n_prepare_xml )
if( _xml_inside )
if( ";${_preserve};" MATCHES ";line-wrap;" )
- if( ";${_preserve};" MATCHES ";lines-leading;"
- OR NOT "${_xml_line}" STREQUAL "" OR NOT _xml_tag_empty )
+ if( NOT "${_xml_line}" STREQUAL ""
+ OR ( ";${_preserve};" MATCHES ";lines-leading;" AND _xml_tag_empty )
+ OR ( ";${_preserve};" MATCHES ";lines-multi;" AND NOT _xml_tag_empty ) )
set( _xml_line "${_xml_line}\\n" )
endif( )
elseif( NOT "${_xml_line}" STREQUAL "" AND NOT _xml_tag_empty )