Gui: Update UI strings for consistency

Closes: #22135
This commit is contained in:
Max Wilfinger
2025-06-22 21:14:10 +02:00
committed by Kacper Donat
parent 66aaf6a2ee
commit 6692dacc0a
151 changed files with 1201 additions and 1183 deletions

View File

@@ -441,7 +441,7 @@ static bool isNamePropOk(const QString& nameProp, App::DocumentObject* obj,
std::string name = nameProp.toStdString();
if (name.empty()) {
message << "Please provide a name for the property.";
message << "Provide a name for the property.";
return false;
}
@@ -696,7 +696,7 @@ void DlgExpressionInput::reportVarSetInfo(const char* message)
bool DlgExpressionInput::reportGroup(QString& nameGroup)
{
if (nameGroup.isEmpty()) {
reportVarSetInfo("Please provide a group.");
reportVarSetInfo("Provide a group.");
return true;
}
@@ -767,7 +767,7 @@ void DlgExpressionInput::updateVarSetInfo(bool checkExpr)
}
else {
okBtn->setEnabled(false);
reportVarSetInfo("Please select a variable set.");
reportVarSetInfo("Select a variable set.");
}
}