forked from qt-creator/qt-creator
Prefix Tr::tr contexts with ::
To make outliers better visible in Linguist Change-Id: Ic35ea2a858b7e3576d9a416fb494fddb616eaaa1 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -1071,19 +1071,19 @@ DebuggerPluginPrivate::DebuggerPluginPrivate(const QStringList &arguments)
|
||||
debugMenu->addSeparator();
|
||||
|
||||
act = new QAction(this);
|
||||
act->setText(QCoreApplication::translate("Debugger", "Move to Calling Frame"));
|
||||
act->setText(QCoreApplication::translate("::Debugger", "Move to Calling Frame"));
|
||||
act->setEnabled(false);
|
||||
act->setVisible(false);
|
||||
ActionManager::registerAction(act, Constants::FRAME_UP);
|
||||
|
||||
act = new QAction(this);
|
||||
act->setText(QCoreApplication::translate("Debugger", "Move to Called Frame"));
|
||||
act->setText(QCoreApplication::translate("::Debugger", "Move to Called Frame"));
|
||||
act->setEnabled(false);
|
||||
act->setVisible(false);
|
||||
ActionManager::registerAction(act, Constants::FRAME_DOWN);
|
||||
|
||||
act = new QAction(this);
|
||||
act->setText(QCoreApplication::translate("Debugger", "Operate by Instruction"));
|
||||
act->setText(QCoreApplication::translate("::Debugger", "Operate by Instruction"));
|
||||
act->setEnabled(false);
|
||||
act->setVisible(false);
|
||||
act->setCheckable(true);
|
||||
|
||||
Reference in New Issue
Block a user