summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2014-12-28 12:53:40 +0100
committerAndras Timar <andras.timar@collabora.com>2014-12-28 16:23:39 +0000
commit4774b2f0e6a0e895d1e63256147eaff59efd0eda (patch)
tree009e908fb37241318143e76aeeea6840350f5014 /l10ntools
parentd279684b59c6067d8530fa890fd4fe78a386769f (diff)
fdo#87754: duplicated strings in an ItemList are not translated
Change-Id: I72c6e234ff999a6dbed48cc62fe7d39aeb798f35 (cherry picked from commit 1471103be04a1bcf18002b5ddc7c9c0744655b2b) Reviewed-on: https://gerrit.libreoffice.org/13680 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/export.cxx19
1 files changed, 11 insertions, 8 deletions
diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 38cd3ed5eb3f..ced58e3c473a 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1156,16 +1156,19 @@ void Export::MergeRest( ResData *pResData )
}
MergeEntrys* pEntrys = pMergeDataFile->GetMergeEntrysCaseSensitive( pResData );
- OString sText;
- bool bText = pEntrys && pEntrys->GetText( sText, STRING_TYP_TEXT, sCur, true );
- if( bText && !sText.isEmpty())
+ if( pEntrys )
{
- ConvertMergeContent( sText );
- sLine =
- sLine.copy( 0 , sLine.indexOf('"') ) +
- sText +
- sLine.copy( sLine.lastIndexOf('"') + 1 );
+ OString sText;
+ pEntrys->GetText( sText, STRING_TYP_TEXT, sCur, false );
+ if( !sText.isEmpty())
+ {
+ ConvertMergeContent( sText );
+ sLine =
+ sLine.copy( 0 , sLine.indexOf('"') ) +
+ sText +
+ sLine.copy( sLine.lastIndexOf('"') + 1 );
+ }
}
OString sText1( "\t" );