diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-21 21:02:04 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-25 11:01:00 +0200 |
commit | d496eab538cb967c62308f4235f090849ed82957 (patch) | |
tree | 070ae8f6d035719a92048a88fdd9174b52cd37ce /vcl | |
parent | 437a5d7c72547f6f17b4ffecd51e76a2487de99e (diff) |
tdf#39468 - vcl: Translate German in errinf.cxx
Change-Id: I53a0bccc7e040d9e5347d18630f1190c195c7b61
Reviewed-on: https://gerrit.libreoffice.org/36844
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/errinf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/errinf.cxx b/vcl/source/window/errinf.cxx index af9a68010de8..55f2cfe58f26 100644 --- a/vcl/source/window/errinf.cxx +++ b/vcl/source/window/errinf.cxx @@ -285,7 +285,7 @@ ErrorHandlerFlags ErrorHandler::HandleError_Impl( { OStringBuffer aStr("Action: "); aStr.append(OUStringToOString(aAction, RTL_TEXTENCODING_ASCII_US)); - aStr.append("\nFehler: "); + aStr.append("\nError: "); aStr.append(OUStringToOString(aErr, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL(aStr.getStr()); } @@ -308,7 +308,7 @@ ErrorHandlerFlags ErrorHandler::HandleError_Impl( } } OSL_FAIL("Error not handled"); - // Error 1 is General Error in the Sfx + // Error 1 is classified as a General Error in sfx if(pInfo->GetErrorCode()!=1) { HandleError_Impl(1, ErrorHandlerFlags::MAX, bJustCreateString, rError); |