GUI: Fix some translatable text (#24289)

This commit is contained in:
Chris Hennes
2025-09-28 03:47:16 -05:00
committed by GitHub
parent d712537638
commit 75c8749189
7 changed files with 12 additions and 12 deletions

View File

@@ -1155,7 +1155,7 @@ void TreeWidget::contextMenuEvent(QContextMenuEvent* e)
QAction* action = new QAction(tr("Show Description"), this);
QAction* internalNameAction = new QAction(tr("Show Internal Name"), this);
action->setStatusTip(tr("Shows a description column for items. An item's description can be set by by editing the 'label2' property."));
action->setStatusTip(tr("Shows a description column for items. An item's description can be set by editing the 'label2' property."));
action->setCheckable(true);
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/TreeView");