[Libreoffice-commits] core.git: l10ntools/source
Stephan Bergmann
sbergman at redhat.com
Tue Aug 20 05:34:41 PDT 2013
l10ntools/source/pocheck.cxx | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
New commits:
commit 35eccc5e0151febf7c6c3ed2bf33945c534c9b0b
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Aug 20 14:34:13 2013 +0200
Missing + signs
Change-Id: I60cfb30c7caab308a0cbe415ba04e1245ed3dd9c
diff --git a/l10ntools/source/pocheck.cxx b/l10ntools/source/pocheck.cxx
index b717c7d..a868153 100644
--- a/l10ntools/source/pocheck.cxx
+++ b/l10ntools/source/pocheck.cxx
@@ -18,7 +18,7 @@ static void checkStyleNames(OString aLanguage)
std::map<OString,sal_uInt16> aLocalizedStyleNames;
std::map<OString,sal_uInt16> aLocalizedNumStyleNames;
OString aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
+ "/translations/source/" +
aLanguage + "/sw/source/ui/utlui.po";
PoIfstream aPoInput;
aPoInput.open(aPoPath);
@@ -82,8 +82,8 @@ static void checkFunctionNames(OString aLanguage)
std::map<OString,sal_uInt16> aLocalizedFunctionNames;
std::map<OString,sal_uInt16> aLocalizedCoreFunctionNames;
OString aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
- aLanguage
+ "/translations/source/" +
+ aLanguage +
"/formula/source/core/resource.po";
PoIfstream aPoInput;
aPoInput.open(aPoPath);
@@ -112,8 +112,8 @@ static void checkFunctionNames(OString aLanguage)
aPoInput.close();
aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
- aLanguage
+ "/translations/source/" +
+ aLanguage +
"/scaddins/source/analysis.po";
aPoInput.open(aPoPath);
if( !aPoInput.isOpen() )
@@ -141,8 +141,8 @@ static void checkFunctionNames(OString aLanguage)
aPoInput.close();
aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
- aLanguage
+ "/translations/source/" +
+ aLanguage +
"/scaddins/source/datefunc.po";
aPoInput.open(aPoPath);
if( !aPoInput.isOpen() )
@@ -170,8 +170,8 @@ static void checkFunctionNames(OString aLanguage)
aPoInput.close();
aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
- aLanguage
+ "/translations/source/" +
+ aLanguage +
"/scaddins/source/pricing.po";
aPoInput.open(aPoPath);
if( !aPoInput.isOpen() )
@@ -214,8 +214,8 @@ static void checkFunctionNames(OString aLanguage)
static void checkVerticalBar(OString aLanguage)
{
OString aPoPath = OString(getenv("SRC_ROOT")) +
- "/translations/source/"
- aLanguage
+ "/translations/source/" +
+ aLanguage +
"/instsetoo_native/inc_openoffice/windows/msi_languages.po";
PoIfstream aPoInput;
aPoInput.open(aPoPath);
More information about the Libreoffice-commits
mailing list