summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-12-27 20:29:06 +0100
committerMichael Stahl <mstahl@redhat.com>2018-01-03 16:58:50 +0100
commitfa73b3fba95d0939cefe7e8987fbcd438a3b725f (patch)
tree639d1baf05ea2f84727e5b6839231245858525e6
parentcef68d0ce9a3f5f4a040fd3cd63ce7d63b241ac9 (diff)
Translate German comments and debug strings
Additionally, improve an equal earlier translation made on commit ee536e482b5ad01ea4a8cae79a1fcd9e12db444f ( https://gerrit.libreoffice.org/#/c/7303/2/svtools/source/svrtf/parrtf.cxx@199 ) Change-Id: Idf1a95361a1bc54473a24c152902568574e21e69 Reviewed-on: https://gerrit.libreoffice.org/47099 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--svtools/source/svrtf/parrtf.cxx4
-rw-r--r--sw/source/uibase/dochdl/gloshdl.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx
index 52e350f52442..04c59e1b0c52 100644
--- a/svtools/source/svrtf/parrtf.cxx
+++ b/svtools/source/svrtf/parrtf.cxx
@@ -200,7 +200,7 @@ int SvRTFParser::GetNextToken_()
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
- // read on HexValue
+ // skip HexValue
GetHexValue();
nNextCh = GetNextChar();
}
@@ -437,7 +437,7 @@ void SvRTFParser::ScanText()
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
- // HexValue ueberlesen
+ // skip HexValue
GetHexValue();
nNextCh = GetNextChar();
}
diff --git a/sw/source/uibase/dochdl/gloshdl.cxx b/sw/source/uibase/dochdl/gloshdl.cxx
index 85964f4c1f0c..2fa820fea16f 100644
--- a/sw/source/uibase/dochdl/gloshdl.cxx
+++ b/sw/source/uibase/dochdl/gloshdl.cxx
@@ -258,13 +258,13 @@ sal_uInt16 SwGlossaryHdl::GetGlossaryCnt()
OUString SwGlossaryHdl::GetGlossaryName( sal_uInt16 nId )
{
- OSL_ENSURE(nId < GetGlossaryCnt(), "Textbausteinarray ueberindiziert.");
+ OSL_ENSURE(nId < GetGlossaryCnt(), "Text building block array over-indexed.");
return pCurGrp->GetLongName( nId );
}
OUString SwGlossaryHdl::GetGlossaryShortName(sal_uInt16 nId)
{
- OSL_ENSURE(nId < GetGlossaryCnt(), "Textbausteinarray ueberindiziert.");
+ OSL_ENSURE(nId < GetGlossaryCnt(), "Text building block array over-indexed.");
return pCurGrp->GetShortName( nId );
}