diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-12-01 14:55:54 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-12-01 14:55:54 +0000 |
commit | 60795da6a87f751e69eaf5f731c86d45a040a97e (patch) | |
tree | de2b048e900b65c83da78d373ac86c8149cdfac3 /l10ntools | |
parent | 172b1f03bf23336c5aa88a01f74b24b6ef5ab4d2 (diff) |
fix broken .ulf translations
some loon ran a little amock (*cough*)
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/lngmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx index a641528c63fa..f07e13efa67b 100644 --- a/l10ntools/source/lngmerge.cxx +++ b/l10ntools/source/lngmerge.cxx @@ -189,7 +189,7 @@ void LngParser::ReadLine( const ByteString &sLine_in , ByteStringHashMap &rText_ { rtl::OString sLang = getToken(sLine_in, 0, '='); sLang = comphelper::string::stripStart(sLang, ' '); - sLang = comphelper::string::stripStart(sLang, ' '); + sLang = comphelper::string::stripEnd(sLang, ' '); rtl::OString sText = getToken(getToken(sLine_in, 1, '\"'), 0, '\"'); if (!sLang.isEmpty()) rText_inout[ sLang ] = sText; |