From b6aee26f3630fd531e51f781391ba0130001df60 Mon Sep 17 00:00:00 2001 From: Johnny_M Date: Tue, 27 Feb 2018 21:29:52 +0100 Subject: Translate German comments and debug strings Change-Id: Ie2da785cb674e21f042caa5e6d461e3489036003 Reviewed-on: https://gerrit.libreoffice.org/50467 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- sc/source/core/tool/interpr3.cxx | 2 +- sc/source/ui/attrdlg/tabpages.cxx | 2 +- sc/source/ui/docshell/pagedata.cxx | 4 ++-- sc/source/ui/unoobj/appluno.cxx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/source') diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx index cee396128f53..f73b7b65b818 100644 --- a/sc/source/core/tool/interpr3.cxx +++ b/sc/source/core/tool/interpr3.cxx @@ -3695,7 +3695,7 @@ void ScInterpreter::ScTrimMean() if (nIndex % 2 != 0) nIndex--; nIndex /= 2; - OSL_ENSURE(nIndex < nSize, "ScTrimMean: falscher Index"); + OSL_ENSURE(nIndex < nSize, "ScTrimMean: wrong index"); double fSum = 0.0; for (SCSIZE i = nIndex; i < nSize-nIndex; i++) fSum += aSortArray[i]; diff --git a/sc/source/ui/attrdlg/tabpages.cxx b/sc/source/ui/attrdlg/tabpages.cxx index aaca9d431026..36fa308e99ab 100644 --- a/sc/source/ui/attrdlg/tabpages.cxx +++ b/sc/source/ui/attrdlg/tabpages.cxx @@ -177,7 +177,7 @@ IMPL_LINK( ScTabPageProtection, ButtonClickHdl, Button*, pBox, void ) bHidePrint = bOn; else { - OSL_FAIL("falscher Button"); + OSL_FAIL("Wrong button"); } } diff --git a/sc/source/ui/docshell/pagedata.cxx b/sc/source/ui/docshell/pagedata.cxx index eadfc8c81614..a7560480ed68 100644 --- a/sc/source/ui/docshell/pagedata.cxx +++ b/sc/source/ui/docshell/pagedata.cxx @@ -63,7 +63,7 @@ ScPrintRangeData& ScPageBreakData::GetData(size_t nPos) if ( nPos >= nUsed ) { - OSL_ENSURE(nPos == nUsed, "ScPageBreakData::GetData falsche Reihenfolge"); + OSL_ENSURE(nPos == nUsed, "ScPageBreakData::GetData wrong order"); nUsed = nPos+1; } @@ -79,7 +79,7 @@ bool ScPageBreakData::operator==( const ScPageBreakData& rOther ) const if ( pData[i].GetPrintRange() != rOther.pData[i].GetPrintRange() ) return false; - //! ScPrintRangeData komplett vergleichen ?? + //! compare ScPrintRangeData completely ?? return true; } diff --git a/sc/source/ui/unoobj/appluno.cxx b/sc/source/ui/unoobj/appluno.cxx index b7693703dc07..1314acb412df 100644 --- a/sc/source/ui/unoobj/appluno.cxx +++ b/sc/source/ui/unoobj/appluno.cxx @@ -524,7 +524,7 @@ static void lcl_FillSequence( uno::Sequence& rSequence, co { rDesc.initArgumentInfo(); // full argument info is needed - OSL_ENSURE( rSequence.getLength() == SC_FUNCDESC_PROPCOUNT, "Falscher Count" ); + OSL_ENSURE( rSequence.getLength() == SC_FUNCDESC_PROPCOUNT, "Wrong count" ); beans::PropertyValue* pArray = rSequence.getArray(); -- cgit