Measure: Update UI strings for consistency

Closes: #22370
This commit is contained in:
Ryan Kembrey
2025-07-07 00:27:46 +10:00
committed by Kacper Donat
parent 2848c30c0b
commit 20844bec71
6 changed files with 13 additions and 11 deletions

View File

@@ -93,8 +93,9 @@ TaskMeasure::TaskMeasure()
autoSaveAction = new QAction(tr("Auto Save"));
autoSaveAction->setCheckable(true);
autoSaveAction->setChecked(mAutoSave);
autoSaveAction->setToolTip(tr("Auto saving of the last measurement when starting a new "
"measurement. Use SHIFT to temporarily invert the behaviour."));
autoSaveAction->setToolTip(
tr("Auto saving of the last measurement when starting a new "
"measurement. Use the Shift key to temporarily invert the behaviour."));
connect(autoSaveAction, &QAction::triggered, this, &TaskMeasure::autoSaveChanged);
newMeasurementBehaviourAction = new QAction(tr("Additive Selection"));
@@ -102,7 +103,8 @@ TaskMeasure::TaskMeasure()
newMeasurementBehaviourAction->setChecked(Gui::Selection().getSelectionStyle()
== SelectionStyle::GreedySelection);
newMeasurementBehaviourAction->setToolTip(
tr("If checked, new selection will be added to the measurement. If unchecked, CTRL must be "
tr("If checked, new selection will be added to the measurement. If unchecked, the Ctrl key "
"must be "
"pressed to add a "
"selection to the current measurement otherwise a new measurement will be started"));
connect(newMeasurementBehaviourAction,
@@ -184,14 +186,14 @@ void TaskMeasure::modifyStandardButtons(QDialogButtonBox* box)
QPushButton* btn = box->button(QDialogButtonBox::Apply);
btn->setText(tr("Save"));
btn->setToolTip(tr("Save the measurement in the active document."));
btn->setToolTip(tr("Saves the measurement in the active document"));
connect(btn, &QPushButton::released, this, qOverload<>(&TaskMeasure::apply));
// Disable button by default
btn->setEnabled(false);
btn = box->button(QDialogButtonBox::Abort);
btn->setText(tr("Close"));
btn->setToolTip(tr("Close the measurement task."));
btn->setToolTip(tr("Closes the measurement task"));
// Connect reset button
btn = box->button(QDialogButtonBox::Reset);