diff options
author | Johnny_M <klasse@partyheld.de> | 2018-02-27 21:29:52 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-02-28 10:51:36 +0100 |
commit | b6aee26f3630fd531e51f781391ba0130001df60 (patch) | |
tree | efe9b97bef491cf679df222f49ba3e157af9fb11 /connectivity | |
parent | f7bf3cf5c9c7f72da0c881b50c2ccc4b6d550af2 (diff) |
Translate German comments and debug strings
Change-Id: Ie2da785cb674e21f042caa5e6d461e3489036003
Reviewed-on: https://gerrit.libreoffice.org/50467
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/dbase/DTable.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FResultSet.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/flat/ETable.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
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): |