summaryrefslogtreecommitdiff
path: root/sw/source/uibase/ribbar
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-08-26 01:03:43 +0200
committerMichael Stahl <mstahl@redhat.com>2017-08-28 12:03:56 +0200
commit06c07c0dc15348c23fe432e7f1c0243486d1e6bf (patch)
tree783ef9044e8935b8288aceea1f5c45cca31f4a7c /sw/source/uibase/ribbar
parent9bd3482c933a611f428fce76a0d1a10dd0d4353a (diff)
Translate German comments/debug strings (leftovers in dirs starmath to sysui)
Translates leftovers found using a custom regex. Additionally translated: - One randomly found comment in /reportdesign - Test strings in /stoc/test (let's see if it works) Change-Id: I5f893c194c4b56b5365700928a3b8b63936d03e2 Reviewed-on: https://gerrit.libreoffice.org/41583 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source/uibase/ribbar')
-rw-r--r--sw/source/uibase/ribbar/inputwin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/ribbar/inputwin.cxx b/sw/source/uibase/ribbar/inputwin.cxx
index b7d4c95d047e..256f792b05b6 100644
--- a/sw/source/uibase/ribbar/inputwin.cxx
+++ b/sw/source/uibase/ribbar/inputwin.cxx
@@ -217,7 +217,7 @@ void SwInputWindow::ShowWin()
OSL_ENSURE(pMgr == nullptr, "FieldManager not deleted");
pMgr = new SwFieldMgr;
- // Formular should always begin with "=" , so set here
+ // Form should always begin with "=" , so set here
OUString sEdit('=');
if( pMgr->GetCurField() && TYP_FORMELFLD == pMgr->GetCurTypeId() )
{
@@ -338,7 +338,7 @@ void SwInputWindow::ApplyFormula()
CleanupUglyHackWithUndo();
pWrtShell->Pop(SwCursorShell::PopMode::DeleteCurrent);
- // Formular should always begin with "=", so remove it here again
+ // Form should always begin with "=", so remove it here again
OUString sEdit(comphelper::string::strip(aEdit->GetText(), ' '));
if( !sEdit.isEmpty() && '=' == sEdit[0] )
sEdit = sEdit.copy( 1 );