connectivity/source/drivers/dbase/DTable.cxx | 2 +- connectivity/source/drivers/file/FResultSet.cxx | 2 +- connectivity/source/drivers/flat/ETable.cxx | 2 +- cui/source/customize/cfgutil.cxx | 2 +- fpicker/source/office/iodlgimp.cxx | 2 +- 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 +- starmath/source/dialog.cxx | 4 ++-- starmath/source/document.cxx | 2 +- svx/source/fmcomp/fmgridcl.cxx | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-)
New commits: commit b6aee26f3630fd531e51f781391ba0130001df60 Author: Johnny_M <kla...@partyheld.de> Date: Tue Feb 27 21:29:52 2018 +0100 Translate German comments and debug strings Change-Id: Ie2da785cb674e21f042caa5e6d461e3489036003 Reviewed-on: https://gerrit.libreoffice.org/50467 Reviewed-by: Michael Stahl <mst...@redhat.com> Tested-by: Michael Stahl <mst...@redhat.com> diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx index 30f35f74c512..9bcec1816b39 100644 --- a/connectivity/source/drivers/dbase/DTable.cxx +++ b/connectivity/source/drivers/dbase/DTable.cxx @@ -959,7 +959,7 @@ bool ODbaseTable::fetchRow(OValueRefRow& _rRow, const OSQLColumns & _rCols, bool (_rRow->get())[i]->setNull(); } break; default: - SAL_WARN( "connectivity.drivers","Falscher Type"); + SAL_WARN( "connectivity.drivers","Wrong type"); } (_rRow->get())[i]->setTypeKind(nType); } diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx index 2b52192250a3..42c78e82e1dc 100644 --- a/connectivity/source/drivers/file/FResultSet.cxx +++ b/connectivity/source/drivers/file/FResultSet.cxx @@ -805,7 +805,7 @@ again: // delete current row in Keyset if (m_pFileSet.is()) { - OSL_ENSURE(eCursorPosition == IResultSetHelper::NEXT, "Falsche CursorPosition!"); + OSL_ENSURE(eCursorPosition == IResultSetHelper::NEXT, "Wrong CursorPosition!"); eCursorPosition = IResultSetHelper::NEXT; nOffset = 1; } diff --git a/connectivity/source/drivers/flat/ETable.cxx b/connectivity/source/drivers/flat/ETable.cxx index d4be4dcb62f2..e10874e93189 100644 --- a/connectivity/source/drivers/flat/ETable.cxx +++ b/connectivity/source/drivers/flat/ETable.cxx @@ -647,7 +647,7 @@ bool OFlatTable::fetchRow(OValueRefRow& _rRow, const OSQLColumns & _rCols, bool { OSL_ENSURE((cDecimalDelimiter && nType != DataType::INTEGER) || (!cDecimalDelimiter && nType == DataType::INTEGER), - "FalscherTyp"); + "Wrong type"); OUStringBuffer aBuf(aStr.getLength()); // convert to Standard-Notation (DecimalPOINT without thousands-comma): diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index c28270bf4905..75ab89474532 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -1058,7 +1058,7 @@ void SfxConfigGroupListBox::RequestingChildren( SvTreeListEntry *pEntry ) } default: - OSL_FAIL( "Falscher Gruppentyp!" ); + OSL_FAIL( "Wrong group type!" ); break; } } diff --git a/fpicker/source/office/iodlgimp.cxx b/fpicker/source/office/iodlgimp.cxx index 63f93699b1cb..287658213b48 100644 --- a/fpicker/source/office/iodlgimp.cxx +++ b/fpicker/source/office/iodlgimp.cxx @@ -157,7 +157,7 @@ void SvtUpButton_Impl::Select() if ( nId ) { --nId; - assert( nId <= _aURLs.size() && "SvtUpButton_Impl:falscher Index" ); + assert( nId <= _aURLs.size() && "SvtUpButton_Impl: wrong index" ); GetDialogParent()->OpenURL_Impl(_aURLs[nId]); } 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<beans::PropertyValue>& 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(); diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index 1fad0b099758..756eb67b675d 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -1682,7 +1682,7 @@ void SmSymDefineDialog::FillSymbols(ComboBox &rComboBox, bool bDeleteText) void SmSymDefineDialog::FillSymbolSets(ComboBox &rComboBox, bool bDeleteText) { - assert((&rComboBox == pOldSymbolSets || &rComboBox == pSymbolSets) && "Sm : falsche ComboBox"); + assert((&rComboBox == pOldSymbolSets || &rComboBox == pSymbolSets) && "Sm : wrong ComboBox"); rComboBox.Clear(); if (bDeleteText) @@ -1807,7 +1807,7 @@ IMPL_LINK_NOARG( SmSymDefineDialog, SubsetChangeHdl, ListBox&, void ) IMPL_LINK( SmSymDefineDialog, StyleChangeHdl, ComboBox&, rComboBox, void ) { (void) rComboBox; - assert(&rComboBox == pStyles && "Sm : falsches Argument"); + assert(&rComboBox == pStyles && "Sm : wrong argument"); SelectStyle(pStyles->GetText()); } diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 34cb86fa053f..877625b83ae2 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -248,7 +248,7 @@ void SmDocShell::ArrangeFormula() } } OSL_ENSURE(pOutDev->GetMapMode().GetMapUnit() == MapUnit::Map100thMM, - "Sm : falscher MapMode"); + "Sm : wrong MapMode"); const SmFormat &rFormat = GetFormat(); mpTree->Prepare(rFormat, *this, 0); diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx index ce70ebeefedc..b0cd940d60d3 100644 --- a/svx/source/fmcomp/fmgridcl.cxx +++ b/svx/source/fmcomp/fmgridcl.cxx @@ -1567,7 +1567,7 @@ void FmGridControl::ColumnMoved(sal_uInt16 nId) } } - DBG_ASSERT(i < xColumns->getCount(), "Falscher css::sdbcx::Index"); + DBG_ASSERT(i < xColumns->getCount(), "Wrong css::sdbcx::Index"); xColumns->removeByIndex(i); Any aElement; aElement <<= xCol; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits