Spreadsheet: Update UI strings for consistency

This commit is contained in:
Max Wilfinger
2025-06-29 13:14:43 +02:00
committed by Chris Hennes
parent 0a9a2372e0
commit 751626202d
14 changed files with 87 additions and 87 deletions

View File

@@ -91,9 +91,9 @@ void Workbench::activated()
workbenchHelper.get(),
&WorkbenchHelper::setForegroundColor);
}
foregroundColor->setToolTip(QObject::tr("Set cell(s) text color"));
foregroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cell(s) text color"));
foregroundColor->setStatusTip(QObject::tr("Set cell(s) text color"));
foregroundColor->setToolTip(QObject::tr("Set cells text color"));
foregroundColor->setWhatsThis(QObject::tr("Sets the Spreadsheet cells text color"));
foregroundColor->setStatusTip(QObject::tr("Set cells text color"));
bar->addWidget(foregroundColor);
QList<QtColorPicker*> bgList = Gui::getMainWindow()->findChildren<QtColorPicker*>(
@@ -111,10 +111,10 @@ void Workbench::activated()
workbenchHelper.get(),
&WorkbenchHelper::setBackgroundColor);
}
backgroundColor->setToolTip(QObject::tr("Set cell(s) background color"));
backgroundColor->setToolTip(QObject::tr("Set cells background color"));
backgroundColor->setWhatsThis(
QObject::tr("Sets the Spreadsheet cell(s) background color"));
backgroundColor->setStatusTip(QObject::tr("Set cell(s) background color"));
QObject::tr("Sets the Spreadsheet cells background color"));
backgroundColor->setStatusTip(QObject::tr("Set cells background color"));
bar->addWidget(backgroundColor);
initialized = false;