Fix UI strings reported on Crowdin (#23297)

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>
This commit is contained in:
Max Wilfinger
2025-08-25 08:10:53 +02:00
committed by GitHub
parent 248071b201
commit 3129bc9a1e
34 changed files with 118 additions and 118 deletions

View File

@@ -104,8 +104,8 @@ void ViewProviderDocumentObjectGroup::setupContextMenu(QMenu* menu, QObject* rec
if (group && !group->getObjects().empty()) {
// Add the custom action.
QIcon icon = BitmapFactory().iconFromTheme("Std_SelectGroupContents");
QAction* selectAction = new QAction(icon, QObject::tr("Select group contents"), menu);
selectAction->setToolTip(QObject::tr("Selects all objects that are children of this group."));
QAction* selectAction = new QAction(icon, QObject::tr("Select Group Contents"), menu);
selectAction->setToolTip(QObject::tr("Selects all objects that are children of this group"));
// Connect the action's triggered signal to a lambda function that performs the selection.
QObject::connect(selectAction, &QAction::triggered, [group]() {