From 5ea950e357379263a90196fb9c7c0674ba25b4fd Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 12 Nov 2017 10:34:53 -0500 Subject: [PATCH] Spreadsheet: follow-up correction to d43716fbc519e [skip ci] `cell/s` is now `cell(s)` --- src/Mod/Spreadsheet/Gui/Workbench.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Mod/Spreadsheet/Gui/Workbench.cpp b/src/Mod/Spreadsheet/Gui/Workbench.cpp index 42b2a87353..2be95e60a8 100644 --- a/src/Mod/Spreadsheet/Gui/Workbench.cpp +++ b/src/Mod/Spreadsheet/Gui/Workbench.cpp @@ -84,9 +84,9 @@ void Workbench::activated() foregroundColor->setCurrentColor(palette.color(QPalette::Foreground)); QObject::connect(foregroundColor, SIGNAL(colorSet(QColor)), workbenchHelper.get(), SLOT(setForegroundColor(QColor))); } - foregroundColor->setToolTip(QObject::tr("Set cell/s foreground color")); - foregroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cell/s foreground color")); - foregroundColor->setStatusTip(QObject::tr("Set cell/s foreground color")); + foregroundColor->setToolTip(QObject::tr("Set cell(s) foreground color")); + foregroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cell(s) foreground color")); + foregroundColor->setStatusTip(QObject::tr("Set cell(s) foreground color")); bar->addWidget(foregroundColor); QList bgList = Gui::getMainWindow()->findChildren(QString::fromLatin1("Spreadsheet_BackgroundColor")); @@ -99,9 +99,9 @@ void Workbench::activated() backgroundColor->setCurrentColor(palette.color(QPalette::Base)); QObject::connect(backgroundColor, SIGNAL(colorSet(QColor)), workbenchHelper.get(), SLOT(setBackgroundColor(QColor))); } - backgroundColor->setToolTip(QObject::tr("Set cell/s background color")); - backgroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cell/s background color")); - backgroundColor->setStatusTip(QObject::tr("Set cell/s background color")); + backgroundColor->setToolTip(QObject::tr("Set cell(s) background color")); + backgroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cell(s) background color")); + backgroundColor->setStatusTip(QObject::tr("Set cell(s) background color")); bar->addWidget(backgroundColor); initialized = false;