Fix and add menu accelerators (#15532)
* Fix and add menu accelerators: menus common to all workbenches I use menu accelerators fairly often, so I find it very frustrating when they are missing, or worse, they don't work due to the same letter being assigned to several commands. This patch adds accelerators to lots of menu entries missing them and fixes broken accelerators. Wherever possible, standard accelerator keys are used: https://doc.qt.io/qt-5/accelerators.html This commit covers accelerator fixes that are common to all workbenches. Accelerator fixes for specific workbenches will be done in separate commits. * Add missing accelerators: Spreadsheet workbench
This commit is contained in:
@@ -320,7 +320,7 @@ StdCmdFreezeViews::StdCmdFreezeViews()
|
||||
: Command("Std_FreezeViews")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Freeze display");
|
||||
sMenuText = QT_TR_NOOP("F&reeze display");
|
||||
sToolTipText = QT_TR_NOOP("Freezes the current view position");
|
||||
sWhatsThis = "Std_FreezeViews";
|
||||
sStatusTip = QT_TR_NOOP("Freezes the current view position");
|
||||
@@ -335,15 +335,15 @@ Action * StdCmdFreezeViews::createAction()
|
||||
applyCommandData(this->className(), pcAction);
|
||||
|
||||
// add the action items
|
||||
saveView = pcAction->addAction(QObject::tr("Save views..."));
|
||||
saveView = pcAction->addAction(QObject::tr("&Save views..."));
|
||||
saveView->setWhatsThis(QString::fromLatin1(getWhatsThis()));
|
||||
QAction* loadView = pcAction->addAction(QObject::tr("Load views..."));
|
||||
QAction* loadView = pcAction->addAction(QObject::tr("&Load views..."));
|
||||
loadView->setWhatsThis(QString::fromLatin1(getWhatsThis()));
|
||||
pcAction->addAction(QString::fromLatin1(""))->setSeparator(true);
|
||||
freezeView = pcAction->addAction(QObject::tr("Freeze view"));
|
||||
freezeView = pcAction->addAction(QObject::tr("F&reeze view"));
|
||||
freezeView->setShortcut(QString::fromLatin1(getAccel()));
|
||||
freezeView->setWhatsThis(QString::fromLatin1(getWhatsThis()));
|
||||
clearView = pcAction->addAction(QObject::tr("Clear views"));
|
||||
clearView = pcAction->addAction(QObject::tr("&Clear views"));
|
||||
clearView->setWhatsThis(QString::fromLatin1(getWhatsThis()));
|
||||
separator = pcAction->addAction(QString::fromLatin1(""));
|
||||
separator->setSeparator(true);
|
||||
@@ -568,10 +568,10 @@ void StdCmdFreezeViews::languageChange()
|
||||
return;
|
||||
auto pcAction = qobject_cast<ActionGroup*>(_pcAction);
|
||||
QList<QAction*> acts = pcAction->actions();
|
||||
acts[0]->setText(QObject::tr("Save views..."));
|
||||
acts[1]->setText(QObject::tr("Load views..."));
|
||||
acts[3]->setText(QObject::tr("Freeze view"));
|
||||
acts[4]->setText(QObject::tr("Clear views"));
|
||||
acts[0]->setText(QObject::tr("&Save views..."));
|
||||
acts[1]->setText(QObject::tr("&Load views..."));
|
||||
acts[3]->setText(QObject::tr("F&reeze view"));
|
||||
acts[4]->setText(QObject::tr("&Clear views"));
|
||||
int index=1;
|
||||
for (QList<QAction*>::Iterator it = acts.begin()+5; it != acts.end(); ++it, index++) {
|
||||
if ((*it)->isVisible()) {
|
||||
@@ -592,7 +592,7 @@ StdCmdToggleClipPlane::StdCmdToggleClipPlane()
|
||||
: Command("Std_ToggleClipPlane")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Clipping plane");
|
||||
sMenuText = QT_TR_NOOP("Clippin&g plane");
|
||||
sToolTipText = QT_TR_NOOP("Toggles clipping plane for active view");
|
||||
sWhatsThis = "Std_ToggleClipPlane";
|
||||
sStatusTip = QT_TR_NOOP("Toggles clipping plane for active view");
|
||||
@@ -645,7 +645,7 @@ StdCmdDrawStyle::StdCmdDrawStyle()
|
||||
: Command("Std_DrawStyle")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Draw style");
|
||||
sMenuText = QT_TR_NOOP("&Draw style");
|
||||
sToolTipText = QT_TR_NOOP("Change the draw style of the objects");
|
||||
sStatusTip = QT_TR_NOOP("Change the draw style of the objects");
|
||||
sWhatsThis = "Std_DrawStyle";
|
||||
@@ -725,37 +725,37 @@ void StdCmdDrawStyle::languageChange()
|
||||
QList<QAction*> a = pcAction->actions();
|
||||
|
||||
a[0]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "As is"));
|
||||
"Std_DrawStyle", "&1 As is"));
|
||||
a[0]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Normal mode"));
|
||||
|
||||
a[1]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Points"));
|
||||
"Std_DrawStyle", "&2 Points"));
|
||||
a[1]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Points mode"));
|
||||
|
||||
a[2]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Wireframe"));
|
||||
"Std_DrawStyle", "&3 Wireframe"));
|
||||
a[2]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Wireframe mode"));
|
||||
|
||||
a[3]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Hidden line"));
|
||||
"Std_DrawStyle", "&4 Hidden line"));
|
||||
a[3]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Hidden line mode"));
|
||||
|
||||
a[4]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "No shading"));
|
||||
"Std_DrawStyle", "&5 No shading"));
|
||||
a[4]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "No shading mode"));
|
||||
|
||||
a[5]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Shaded"));
|
||||
"Std_DrawStyle", "&6 Shaded"));
|
||||
a[5]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Shaded mode"));
|
||||
|
||||
a[6]->setText(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Flat lines"));
|
||||
"Std_DrawStyle", "&7 Flat lines"));
|
||||
a[6]->setToolTip(QCoreApplication::translate(
|
||||
"Std_DrawStyle", "Flat lines mode"));
|
||||
}
|
||||
@@ -865,7 +865,7 @@ StdCmdToggleVisibility::StdCmdToggleVisibility()
|
||||
: Command("Std_ToggleVisibility")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle visibility");
|
||||
sMenuText = QT_TR_NOOP("Toggle &visibility");
|
||||
sToolTipText = QT_TR_NOOP("Toggles visibility");
|
||||
sStatusTip = QT_TR_NOOP("Toggles visibility");
|
||||
sWhatsThis = "Std_ToggleVisibility";
|
||||
@@ -896,7 +896,7 @@ StdCmdToggleTransparency::StdCmdToggleTransparency()
|
||||
: Command("Std_ToggleTransparency")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle transparency");
|
||||
sMenuText = QT_TR_NOOP("Toggle transparenc&y");
|
||||
static std::string toolTip = std::string("<p>")
|
||||
+ QT_TR_NOOP("Toggles transparency of the selected objects. You can also fine tune transparency "
|
||||
"value in the Appearance taskbox (right click an object in the tree, Appearance).")
|
||||
@@ -1003,7 +1003,7 @@ StdCmdToggleSelectability::StdCmdToggleSelectability()
|
||||
: Command("Std_ToggleSelectability")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle selectability");
|
||||
sMenuText = QT_TR_NOOP("Toggle se&lectability");
|
||||
sToolTipText = QT_TR_NOOP("Toggles the property of the objects to get selected in the 3D-View");
|
||||
sStatusTip = QT_TR_NOOP("Toggles the property of the objects to get selected in the 3D-View");
|
||||
sWhatsThis = "Std_ToggleSelectability";
|
||||
@@ -1055,7 +1055,7 @@ StdCmdShowSelection::StdCmdShowSelection()
|
||||
: Command("Std_ShowSelection")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Show selection");
|
||||
sMenuText = QT_TR_NOOP("Sho&w selection");
|
||||
sToolTipText = QT_TR_NOOP("Show all selected objects");
|
||||
sStatusTip = QT_TR_NOOP("Show all selected objects");
|
||||
sWhatsThis = "Std_ShowSelection";
|
||||
@@ -1083,7 +1083,7 @@ StdCmdHideSelection::StdCmdHideSelection()
|
||||
: Command("Std_HideSelection")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Hide selection");
|
||||
sMenuText = QT_TR_NOOP("&Hide selection");
|
||||
sToolTipText = QT_TR_NOOP("Hide all selected objects");
|
||||
sStatusTip = QT_TR_NOOP("Hide all selected objects");
|
||||
sWhatsThis = "Std_HideSelection";
|
||||
@@ -1111,7 +1111,7 @@ StdCmdSelectVisibleObjects::StdCmdSelectVisibleObjects()
|
||||
: Command("Std_SelectVisibleObjects")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Select visible objects");
|
||||
sMenuText = QT_TR_NOOP("&Select visible objects");
|
||||
sToolTipText = QT_TR_NOOP("Select visible objects in the active document");
|
||||
sStatusTip = QT_TR_NOOP("Select visible objects in the active document");
|
||||
sWhatsThis = "Std_SelectVisibleObjects";
|
||||
@@ -1153,7 +1153,7 @@ StdCmdToggleObjects::StdCmdToggleObjects()
|
||||
: Command("Std_ToggleObjects")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle all objects");
|
||||
sMenuText = QT_TR_NOOP("To&ggle all objects");
|
||||
sToolTipText = QT_TR_NOOP("Toggles visibility of all objects in the active document");
|
||||
sStatusTip = QT_TR_NOOP("Toggles visibility of all objects in the active document");
|
||||
sWhatsThis = "Std_ToggleObjects";
|
||||
@@ -1194,7 +1194,7 @@ StdCmdShowObjects::StdCmdShowObjects()
|
||||
: Command("Std_ShowObjects")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Show all objects");
|
||||
sMenuText = QT_TR_NOOP("Show &all objects");
|
||||
sToolTipText = QT_TR_NOOP("Show all objects in the document");
|
||||
sStatusTip = QT_TR_NOOP("Show all objects in the document");
|
||||
sWhatsThis = "Std_ShowObjects";
|
||||
@@ -1231,7 +1231,7 @@ StdCmdHideObjects::StdCmdHideObjects()
|
||||
: Command("Std_HideObjects")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Hide all objects");
|
||||
sMenuText = QT_TR_NOOP("Hide all &objects");
|
||||
sToolTipText = QT_TR_NOOP("Hide all objects in the document");
|
||||
sStatusTip = QT_TR_NOOP("Hide all objects in the document");
|
||||
sWhatsThis = "Std_HideObjects";
|
||||
@@ -1268,7 +1268,7 @@ StdCmdViewHome::StdCmdViewHome()
|
||||
: Command("Std_ViewHome")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Home");
|
||||
sMenuText = QT_TR_NOOP("&Home");
|
||||
sToolTipText = QT_TR_NOOP("Set to default home view");
|
||||
sWhatsThis = "Std_ViewHome";
|
||||
sStatusTip = QT_TR_NOOP("Set to default home view");
|
||||
@@ -1296,7 +1296,7 @@ StdCmdViewBottom::StdCmdViewBottom()
|
||||
: Command("Std_ViewBottom")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Bottom");
|
||||
sMenuText = QT_TR_NOOP("&5 Bottom");
|
||||
sToolTipText = QT_TR_NOOP("Set to bottom view");
|
||||
sWhatsThis = "Std_ViewBottom";
|
||||
sStatusTip = QT_TR_NOOP("Set to bottom view");
|
||||
@@ -1320,7 +1320,7 @@ StdCmdViewFront::StdCmdViewFront()
|
||||
: Command("Std_ViewFront")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Front");
|
||||
sMenuText = QT_TR_NOOP("&1 Front");
|
||||
sToolTipText = QT_TR_NOOP("Set to front view");
|
||||
sWhatsThis = "Std_ViewFront";
|
||||
sStatusTip = QT_TR_NOOP("Set to front view");
|
||||
@@ -1344,7 +1344,7 @@ StdCmdViewLeft::StdCmdViewLeft()
|
||||
: Command("Std_ViewLeft")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Left");
|
||||
sMenuText = QT_TR_NOOP("&6 Left");
|
||||
sToolTipText = QT_TR_NOOP("Set to left view");
|
||||
sWhatsThis = "Std_ViewLeft";
|
||||
sStatusTip = QT_TR_NOOP("Set to left view");
|
||||
@@ -1368,7 +1368,7 @@ StdCmdViewRear::StdCmdViewRear()
|
||||
: Command("Std_ViewRear")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Rear");
|
||||
sMenuText = QT_TR_NOOP("&4 Rear");
|
||||
sToolTipText = QT_TR_NOOP("Set to rear view");
|
||||
sWhatsThis = "Std_ViewRear";
|
||||
sStatusTip = QT_TR_NOOP("Set to rear view");
|
||||
@@ -1392,7 +1392,7 @@ StdCmdViewRight::StdCmdViewRight()
|
||||
: Command("Std_ViewRight")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Right");
|
||||
sMenuText = QT_TR_NOOP("&3 Right");
|
||||
sToolTipText = QT_TR_NOOP("Set to right view");
|
||||
sWhatsThis = "Std_ViewRight";
|
||||
sStatusTip = QT_TR_NOOP("Set to right view");
|
||||
@@ -1416,7 +1416,7 @@ StdCmdViewTop::StdCmdViewTop()
|
||||
: Command("Std_ViewTop")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Top");
|
||||
sMenuText = QT_TR_NOOP("&2 Top");
|
||||
sToolTipText = QT_TR_NOOP("Set to top view");
|
||||
sWhatsThis = "Std_ViewTop";
|
||||
sStatusTip = QT_TR_NOOP("Set to top view");
|
||||
@@ -1441,7 +1441,7 @@ StdCmdViewIsometric::StdCmdViewIsometric()
|
||||
: Command("Std_ViewIsometric")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Isometric");
|
||||
sMenuText = QT_TR_NOOP("&Isometric");
|
||||
sToolTipText= QT_TR_NOOP("Set to isometric view");
|
||||
sWhatsThis = "Std_ViewIsometric";
|
||||
sStatusTip = QT_TR_NOOP("Set to isometric view");
|
||||
@@ -1465,7 +1465,7 @@ StdCmdViewDimetric::StdCmdViewDimetric()
|
||||
: Command("Std_ViewDimetric")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Dimetric");
|
||||
sMenuText = QT_TR_NOOP("&Dimetric");
|
||||
sToolTipText= QT_TR_NOOP("Set to dimetric view");
|
||||
sWhatsThis = "Std_ViewDimetric";
|
||||
sStatusTip = QT_TR_NOOP("Set to dimetric view");
|
||||
@@ -1488,7 +1488,7 @@ StdCmdViewTrimetric::StdCmdViewTrimetric()
|
||||
: Command("Std_ViewTrimetric")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Trimetric");
|
||||
sMenuText = QT_TR_NOOP("&Trimetric");
|
||||
sToolTipText= QT_TR_NOOP("Set to trimetric view");
|
||||
sWhatsThis = "Std_ViewTrimetric";
|
||||
sStatusTip = QT_TR_NOOP("Set to trimetric view");
|
||||
@@ -1511,7 +1511,7 @@ StdCmdViewRotateLeft::StdCmdViewRotateLeft()
|
||||
: Command("Std_ViewRotateLeft")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Rotate Left");
|
||||
sMenuText = QT_TR_NOOP("Rotate &Left");
|
||||
sToolTipText = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 counter-clockwise");
|
||||
sWhatsThis = "Std_ViewRotateLeft";
|
||||
sStatusTip = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 counter-clockwise");
|
||||
@@ -1536,7 +1536,7 @@ StdCmdViewRotateRight::StdCmdViewRotateRight()
|
||||
: Command("Std_ViewRotateRight")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Rotate Right");
|
||||
sMenuText = QT_TR_NOOP("Rotate &Right");
|
||||
sToolTipText = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 clockwise");
|
||||
sWhatsThis = "Std_ViewRotateRight";
|
||||
sStatusTip = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 clockwise");
|
||||
@@ -1561,7 +1561,7 @@ StdCmdViewFitAll::StdCmdViewFitAll()
|
||||
: Command("Std_ViewFitAll")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Fit all");
|
||||
sMenuText = QT_TR_NOOP("&Fit all");
|
||||
sToolTipText = QT_TR_NOOP("Fits the whole content on the screen");
|
||||
sWhatsThis = "Std_ViewFitAll";
|
||||
sStatusTip = QT_TR_NOOP("Fits the whole content on the screen");
|
||||
@@ -1592,7 +1592,7 @@ StdCmdViewFitSelection::StdCmdViewFitSelection()
|
||||
: Command("Std_ViewFitSelection")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Fit selection");
|
||||
sMenuText = QT_TR_NOOP("Fit &selection");
|
||||
sToolTipText = QT_TR_NOOP("Fits the selected content on the screen");
|
||||
sWhatsThis = "Std_ViewFitSelection";
|
||||
sStatusTip = QT_TR_NOOP("Fits the selected content on the screen");
|
||||
@@ -1622,7 +1622,7 @@ public:
|
||||
: GroupCommand("Std_ViewGroup")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Standard views");
|
||||
sMenuText = QT_TR_NOOP("Standard &views");
|
||||
sToolTipText = QT_TR_NOOP("Change to a standard view");
|
||||
sStatusTip = QT_TR_NOOP("Change to a standard view");
|
||||
sWhatsThis = "Std_ViewGroup";
|
||||
@@ -1661,7 +1661,7 @@ StdViewDock::StdViewDock()
|
||||
: Command("Std_ViewDock")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Docked");
|
||||
sMenuText = QT_TR_NOOP("&Docked");
|
||||
sToolTipText = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
sWhatsThis = "Std_ViewDock";
|
||||
sStatusTip = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
@@ -1690,7 +1690,7 @@ StdViewUndock::StdViewUndock()
|
||||
: Command("Std_ViewUndock")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Undocked");
|
||||
sMenuText = QT_TR_NOOP("&Undocked");
|
||||
sToolTipText = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
sWhatsThis = "Std_ViewUndock";
|
||||
sStatusTip = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
@@ -1751,7 +1751,7 @@ StdViewFullscreen::StdViewFullscreen()
|
||||
: Command("Std_ViewFullscreen")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Fullscreen");
|
||||
sMenuText = QT_TR_NOOP("&Fullscreen");
|
||||
sToolTipText = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
sWhatsThis = "Std_ViewFullscreen";
|
||||
sStatusTip = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
@@ -1781,7 +1781,7 @@ StdViewDockUndockFullscreen::StdViewDockUndockFullscreen()
|
||||
: Command("Std_ViewDockUndockFullscreen")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Document window");
|
||||
sMenuText = QT_TR_NOOP("D&ocument window");
|
||||
sToolTipText = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
sWhatsThis = "Std_ViewDockUndockFullscreen";
|
||||
sStatusTip = QT_TR_NOOP("Display the active view either in fullscreen, in undocked or docked mode");
|
||||
@@ -1923,7 +1923,7 @@ StdViewScreenShot::StdViewScreenShot()
|
||||
: Command("Std_ViewScreenShot")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Save image...");
|
||||
sMenuText = QT_TR_NOOP("Save &image...");
|
||||
sToolTipText= QT_TR_NOOP("Creates a screenshot of the active view");
|
||||
sWhatsThis = "Std_ViewScreenShot";
|
||||
sStatusTip = QT_TR_NOOP("Creates a screenshot of the active view");
|
||||
@@ -2094,7 +2094,7 @@ StdViewLoadImage::StdViewLoadImage()
|
||||
: Command("Std_ViewLoadImage")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Load image...");
|
||||
sMenuText = QT_TR_NOOP("&Load image...");
|
||||
sToolTipText= QT_TR_NOOP("Loads an image");
|
||||
sWhatsThis = "Std_ViewLoadImage";
|
||||
sStatusTip = QT_TR_NOOP("Loads an image");
|
||||
@@ -2169,7 +2169,7 @@ StdCmdToggleNavigation::StdCmdToggleNavigation()
|
||||
: Command("Std_ToggleNavigation")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle navigation/Edit mode");
|
||||
sMenuText = QT_TR_NOOP("Toggle navigation/&Edit mode");
|
||||
sToolTipText = QT_TR_NOOP("Toggle between navigation and edit mode");
|
||||
sStatusTip = QT_TR_NOOP("Toggle between navigation and edit mode");
|
||||
sWhatsThis = "Std_ToggleNavigation";
|
||||
@@ -2218,7 +2218,7 @@ StdCmdAxisCross::StdCmdAxisCross()
|
||||
: Command("Std_AxisCross")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle axis cross");
|
||||
sMenuText = QT_TR_NOOP("Toggle a&xis cross");
|
||||
sToolTipText = QT_TR_NOOP("Turns on or off the axis cross at the origin");
|
||||
sStatusTip = QT_TR_NOOP("Turns on or off the axis cross at the origin");
|
||||
sWhatsThis = "Std_AxisCross";
|
||||
@@ -2349,7 +2349,7 @@ StdCmdViewIvStereoOff::StdCmdViewIvStereoOff()
|
||||
: Command("Std_ViewIvStereoOff")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Stereo Off");
|
||||
sMenuText = QT_TR_NOOP("Stereo &Off");
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing off");
|
||||
sWhatsThis = "Std_ViewIvStereoOff";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing off");
|
||||
@@ -2378,7 +2378,7 @@ StdCmdViewIvStereoRedGreen::StdCmdViewIvStereoRedGreen()
|
||||
: Command("Std_ViewIvStereoRedGreen")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Stereo red/cyan");
|
||||
sMenuText = QT_TR_NOOP("Stereo re&d/cyan");
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to red/cyan");
|
||||
sWhatsThis = "Std_ViewIvStereoRedGreen";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to red/cyan");
|
||||
@@ -2406,7 +2406,7 @@ StdCmdViewIvStereoQuadBuff::StdCmdViewIvStereoQuadBuff()
|
||||
: Command("Std_ViewIvStereoQuadBuff")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Stereo quad buffer");
|
||||
sMenuText = QT_TR_NOOP("Stereo &quad buffer");
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to quad buffer");
|
||||
sWhatsThis = "Std_ViewIvStereoQuadBuff";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to quad buffer");
|
||||
@@ -2434,7 +2434,7 @@ StdCmdViewIvStereoInterleavedRows::StdCmdViewIvStereoInterleavedRows()
|
||||
: Command("Std_ViewIvStereoInterleavedRows")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Stereo Interleaved Rows");
|
||||
sMenuText = QT_TR_NOOP("Stereo Interleaved &Rows");
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to Interleaved Rows");
|
||||
sWhatsThis = "Std_ViewIvStereoInterleavedRows";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to Interleaved Rows");
|
||||
@@ -2462,7 +2462,7 @@ StdCmdViewIvStereoInterleavedColumns::StdCmdViewIvStereoInterleavedColumns()
|
||||
: Command("Std_ViewIvStereoInterleavedColumns")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Stereo Interleaved Columns");
|
||||
sMenuText = QT_TR_NOOP("Stereo Interleaved &Columns");
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to Interleaved Columns");
|
||||
sWhatsThis = "Std_ViewIvStereoInterleavedColumns";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to Interleaved Columns");
|
||||
@@ -2491,7 +2491,7 @@ StdCmdViewIvIssueCamPos::StdCmdViewIvIssueCamPos()
|
||||
: Command("Std_ViewIvIssueCamPos")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Issue camera position");
|
||||
sMenuText = QT_TR_NOOP("Issue camera &position");
|
||||
sToolTipText = QT_TR_NOOP("Issue the camera position to the console and to a macro, to easily recall this position");
|
||||
sWhatsThis = "Std_ViewIvIssueCamPos";
|
||||
sStatusTip = QT_TR_NOOP("Issue the camera position to the console and to a macro, to easily recall this position");
|
||||
@@ -2541,7 +2541,7 @@ StdViewZoomIn::StdViewZoomIn()
|
||||
: Command("Std_ViewZoomIn")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Zoom In");
|
||||
sMenuText = QT_TR_NOOP("Zoom &In");
|
||||
sToolTipText = QT_TR_NOOP("Increase the zoom factor by a fixed amount");
|
||||
sWhatsThis = "Std_ViewZoomIn";
|
||||
sStatusTip = QT_TR_NOOP("Increase the zoom factor by a fixed amount");
|
||||
@@ -2570,7 +2570,7 @@ StdViewZoomOut::StdViewZoomOut()
|
||||
: Command("Std_ViewZoomOut")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Zoom Out");
|
||||
sMenuText = QT_TR_NOOP("Zoom &Out");
|
||||
sToolTipText = QT_TR_NOOP("Decrease the zoom factor by a fixed amount");
|
||||
sWhatsThis = "Std_ViewZoomOut";
|
||||
sStatusTip = QT_TR_NOOP("Decrease the zoom factor by a fixed amount");
|
||||
@@ -2716,7 +2716,7 @@ StdViewBoxZoom::StdViewBoxZoom()
|
||||
: Command("Std_ViewBoxZoom")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Box zoom");
|
||||
sMenuText = QT_TR_NOOP("&Box zoom");
|
||||
sToolTipText = QT_TR_NOOP("Activate the box zoom tool");
|
||||
sWhatsThis = "Std_ViewBoxZoom";
|
||||
sStatusTip = QT_TR_NOOP("Activate the box zoom tool");
|
||||
@@ -2750,7 +2750,7 @@ StdBoxSelection::StdBoxSelection()
|
||||
: Command("Std_BoxSelection")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Box selection");
|
||||
sMenuText = QT_TR_NOOP("&Box selection");
|
||||
sToolTipText = QT_TR_NOOP("Activate the box selection tool");
|
||||
sWhatsThis = "Std_BoxSelection";
|
||||
sStatusTip = QT_TR_NOOP("Activate the box selection tool");
|
||||
@@ -2976,7 +2976,7 @@ StdBoxElementSelection::StdBoxElementSelection()
|
||||
: Command("Std_BoxElementSelection")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Box element selection");
|
||||
sMenuText = QT_TR_NOOP("Bo&x element selection");
|
||||
sToolTipText = QT_TR_NOOP("Box element selection");
|
||||
sWhatsThis = "Std_BoxElementSelection";
|
||||
sStatusTip = QT_TR_NOOP("Box element selection");
|
||||
@@ -3021,7 +3021,7 @@ StdTreeSelection::StdTreeSelection()
|
||||
: Command("Std_TreeSelection")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Go to selection");
|
||||
sMenuText = QT_TR_NOOP("&Go to selection");
|
||||
sToolTipText = QT_TR_NOOP("Scroll to first selected item");
|
||||
sWhatsThis = "Std_TreeSelection";
|
||||
sStatusTip = QT_TR_NOOP("Scroll to first selected item");
|
||||
@@ -3149,7 +3149,7 @@ StdCmdSceneInspector::StdCmdSceneInspector()
|
||||
{
|
||||
// setting the
|
||||
sGroup = "Tools";
|
||||
sMenuText = QT_TR_NOOP("Scene inspector...");
|
||||
sMenuText = QT_TR_NOOP("Scene i&nspector...");
|
||||
sToolTipText = QT_TR_NOOP("Scene inspector");
|
||||
sWhatsThis = "Std_SceneInspector";
|
||||
sStatusTip = QT_TR_NOOP("Scene inspector");
|
||||
@@ -3182,7 +3182,7 @@ StdCmdTextureMapping::StdCmdTextureMapping()
|
||||
{
|
||||
// setting the
|
||||
sGroup = "Tools";
|
||||
sMenuText = QT_TR_NOOP("Texture mapping...");
|
||||
sMenuText = QT_TR_NOOP("Text&ure mapping...");
|
||||
sToolTipText = QT_TR_NOOP("Texture mapping");
|
||||
sWhatsThis = "Std_TextureMapping";
|
||||
sStatusTip = QT_TR_NOOP("Texture mapping");
|
||||
@@ -3209,7 +3209,7 @@ StdCmdDemoMode::StdCmdDemoMode()
|
||||
: Command("Std_DemoMode")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("View turntable...");
|
||||
sMenuText = QT_TR_NOOP("View &turntable...");
|
||||
sToolTipText = QT_TR_NOOP("View turntable");
|
||||
sWhatsThis = "Std_DemoMode";
|
||||
sStatusTip = QT_TR_NOOP("View turntable");
|
||||
@@ -3238,7 +3238,7 @@ StdCmdSelBack::StdCmdSelBack()
|
||||
:Command("Std_SelBack")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Selection back");
|
||||
sMenuText = QT_TR_NOOP("Selection &back");
|
||||
static std::string toolTip = std::string("<p>")
|
||||
+ QT_TR_NOOP("Restore the previous Tree view selection. "
|
||||
"Only works if Tree RecordSelection mode is switched on.")
|
||||
@@ -3272,7 +3272,7 @@ StdCmdSelForward::StdCmdSelForward()
|
||||
:Command("Std_SelForward")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Selection forward");
|
||||
sMenuText = QT_TR_NOOP("Selection &forward");
|
||||
static std::string toolTip = std::string("<p>")
|
||||
+ QT_TR_NOOP("Restore the next Tree view selection. "
|
||||
"Only works if Tree RecordSelection mode is switched on.")
|
||||
@@ -3326,7 +3326,7 @@ StdTreeSingleDocument::StdTreeSingleDocument()
|
||||
: Command("Std_TreeSingleDocument")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Single document");
|
||||
sMenuText = QT_TR_NOOP("&Single document");
|
||||
sToolTipText = QT_TR_NOOP("Only display the active document in the tree view");
|
||||
sWhatsThis = "Std_TreeSingleDocument";
|
||||
sStatusTip = QT_TR_NOOP("Only display the active document in the tree view");
|
||||
@@ -3343,7 +3343,7 @@ StdTreeMultiDocument::StdTreeMultiDocument()
|
||||
: Command("Std_TreeMultiDocument")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Multi document");
|
||||
sMenuText = QT_TR_NOOP("&Multi document");
|
||||
sToolTipText = QT_TR_NOOP("Display all documents in the tree view");
|
||||
sWhatsThis = "Std_TreeMultiDocument";
|
||||
sStatusTip = QT_TR_NOOP("Display all documents in the tree view");
|
||||
@@ -3360,7 +3360,7 @@ StdTreeCollapseDocument::StdTreeCollapseDocument()
|
||||
: Command("Std_TreeCollapseDocument")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Collapse/Expand");
|
||||
sMenuText = QT_TR_NOOP("Collapse/E&xpand");
|
||||
sToolTipText = QT_TR_NOOP("Expand active document and collapse all others");
|
||||
sWhatsThis = "Std_TreeCollapseDocument";
|
||||
sStatusTip = QT_TR_NOOP("Expand active document and collapse all others");
|
||||
@@ -3399,7 +3399,7 @@ StdTreeSyncView::StdTreeSyncView()
|
||||
: Command("Std_TreeSyncView")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Sync view");
|
||||
sMenuText = QT_TR_NOOP("&1 Sync view");
|
||||
sToolTipText = QT_TR_NOOP("Auto switch to the 3D view containing the selected item");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreeSyncView";
|
||||
@@ -3417,7 +3417,7 @@ StdTreeSyncSelection::StdTreeSyncSelection()
|
||||
: Command("Std_TreeSyncSelection")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Sync selection");
|
||||
sMenuText = QT_TR_NOOP("&2 Sync selection");
|
||||
sToolTipText = QT_TR_NOOP("Auto expand tree item when the corresponding object is selected in 3D view");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreeSyncSelection";
|
||||
@@ -3435,7 +3435,7 @@ StdTreeSyncPlacement::StdTreeSyncPlacement()
|
||||
: Command("Std_TreeSyncPlacement")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Sync placement");
|
||||
sMenuText = QT_TR_NOOP("&3 Sync placement");
|
||||
sToolTipText = QT_TR_NOOP("Auto adjust placement on drag and drop objects across coordinate systems");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreeSyncPlacement";
|
||||
@@ -3453,7 +3453,7 @@ StdTreePreSelection::StdTreePreSelection()
|
||||
: Command("Std_TreePreSelection")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Pre-selection");
|
||||
sMenuText = QT_TR_NOOP("&4 Pre-selection");
|
||||
sToolTipText = QT_TR_NOOP("Preselect the object in 3D view when hovering the cursor over the tree item");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreePreSelection";
|
||||
@@ -3471,7 +3471,7 @@ StdTreeRecordSelection::StdTreeRecordSelection()
|
||||
: Command("Std_TreeRecordSelection")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Record selection");
|
||||
sMenuText = QT_TR_NOOP("&5 Record selection");
|
||||
sToolTipText = QT_TR_NOOP("Record selection in tree view in order to go back/forward using navigation button");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreeRecordSelection";
|
||||
@@ -3489,7 +3489,7 @@ StdTreeDrag::StdTreeDrag()
|
||||
: Command("Std_TreeDrag")
|
||||
{
|
||||
sGroup = "TreeView";
|
||||
sMenuText = QT_TR_NOOP("Initiate dragging");
|
||||
sMenuText = QT_TR_NOOP("Initiate &dragging");
|
||||
sToolTipText = QT_TR_NOOP("Initiate dragging of current selected tree items");
|
||||
sStatusTip = sToolTipText;
|
||||
sWhatsThis = "Std_TreeDrag";
|
||||
@@ -3609,7 +3609,7 @@ StdCmdDockOverlayAll::StdCmdDockOverlayAll()
|
||||
:Command("Std_DockOverlayAll")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Toggle overlay for all");
|
||||
sMenuText = QT_TR_NOOP("Toggle overl&ay for all");
|
||||
sToolTipText = QT_TR_NOOP("Toggle overlay mode for all docked windows");
|
||||
sWhatsThis = "Std_DockOverlayAll";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3633,7 +3633,7 @@ StdCmdDockOverlayTransparentAll::StdCmdDockOverlayTransparentAll()
|
||||
:Command("Std_DockOverlayTransparentAll")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Toggle transparent for all");
|
||||
sMenuText = QT_TR_NOOP("Toggle tra&nsparent for all");
|
||||
sToolTipText = QT_TR_NOOP("Toggle transparent mode for all docked overlay windows.\n"
|
||||
"This makes the docked windows stay transparent at all times.");
|
||||
sWhatsThis = "Std_DockOverlayTransparentAll";
|
||||
@@ -3658,7 +3658,7 @@ StdCmdDockOverlayToggle::StdCmdDockOverlayToggle()
|
||||
:Command("Std_DockOverlayToggle")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Toggle overlay");
|
||||
sMenuText = QT_TR_NOOP("Toggle &overlay");
|
||||
sToolTipText = QT_TR_NOOP("Toggle overlay mode for the docked window under the cursor");
|
||||
sWhatsThis = "Std_DockOverlayToggle";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3682,7 +3682,7 @@ StdCmdDockOverlayToggleTransparent::StdCmdDockOverlayToggleTransparent()
|
||||
:Command("Std_DockOverlayToggleTransparent")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle transparent mode");
|
||||
sMenuText = QT_TR_NOOP("Toggle tran&sparent mode");
|
||||
sToolTipText = QT_TR_NOOP("Toggle transparent mode for the docked window under cursor.\n"
|
||||
"This makes the docked window stay transparent at all times.");
|
||||
sWhatsThis = "Std_DockOverlayToggleTransparent";
|
||||
@@ -3707,7 +3707,7 @@ StdCmdDockOverlayToggleLeft::StdCmdDockOverlayToggleLeft()
|
||||
:Command("Std_DockOverlayToggleLeft")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle left");
|
||||
sMenuText = QT_TR_NOOP("Toggle &left");
|
||||
sToolTipText = QT_TR_NOOP("Show/hide left overlay panel");
|
||||
sWhatsThis = "Std_DockOverlayToggleLeft";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3732,7 +3732,7 @@ StdCmdDockOverlayToggleRight::StdCmdDockOverlayToggleRight()
|
||||
:Command("Std_DockOverlayToggleRight")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle right");
|
||||
sMenuText = QT_TR_NOOP("Toggle &right");
|
||||
sToolTipText = QT_TR_NOOP("Show/hide right overlay panel");
|
||||
sWhatsThis = "Std_DockOverlayToggleRight";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3757,7 +3757,7 @@ StdCmdDockOverlayToggleTop::StdCmdDockOverlayToggleTop()
|
||||
:Command("Std_DockOverlayToggleTop")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle top");
|
||||
sMenuText = QT_TR_NOOP("Toggle &top");
|
||||
sToolTipText = QT_TR_NOOP("Show/hide top overlay panel");
|
||||
sWhatsThis = "Std_DockOverlayToggleTop";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3782,7 +3782,7 @@ StdCmdDockOverlayToggleBottom::StdCmdDockOverlayToggleBottom()
|
||||
:Command("Std_DockOverlayToggleBottom")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Toggle bottom");
|
||||
sMenuText = QT_TR_NOOP("Toggle &bottom");
|
||||
sToolTipText = QT_TR_NOOP("Show/hide bottom overlay panel");
|
||||
sWhatsThis = "Std_DockOverlayToggleBottom";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3807,7 +3807,7 @@ StdCmdDockOverlayMouseTransparent::StdCmdDockOverlayMouseTransparent()
|
||||
:Command("Std_DockOverlayMouseTransparent")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Bypass mouse events in docked overlay windows");
|
||||
sMenuText = QT_TR_NOOP("Bypass &mouse events in docked overlay windows");
|
||||
sToolTipText = QT_TR_NOOP("Bypass all mouse events in docked overlay windows");
|
||||
sWhatsThis = "Std_DockOverlayMouseTransparent";
|
||||
sStatusTip = sToolTipText;
|
||||
@@ -3881,7 +3881,7 @@ StdStoreWorkingView::StdStoreWorkingView()
|
||||
: Command("Std_StoreWorkingView")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Store working view");
|
||||
sMenuText = QT_TR_NOOP("St&ore working view");
|
||||
sToolTipText = QT_TR_NOOP("Store a document-specific temporary working view");
|
||||
sStatusTip = QT_TR_NOOP("Store a document-specific temporary working view");
|
||||
sWhatsThis = "Std_StoreWorkingView";
|
||||
@@ -3911,7 +3911,7 @@ StdRecallWorkingView::StdRecallWorkingView()
|
||||
: Command("Std_RecallWorkingView")
|
||||
{
|
||||
sGroup = "Standard-View";
|
||||
sMenuText = QT_TR_NOOP("Recall working view");
|
||||
sMenuText = QT_TR_NOOP("R&ecall working view");
|
||||
sToolTipText = QT_TR_NOOP("Recall previously stored temporary working view");
|
||||
sStatusTip = QT_TR_NOOP("Recall previously stored temporary working view");
|
||||
sWhatsThis = "Std_RecallWorkingView";
|
||||
@@ -3943,7 +3943,7 @@ StdCmdAlignToSelection::StdCmdAlignToSelection()
|
||||
: Command("Std_AlignToSelection")
|
||||
{
|
||||
sGroup = "View";
|
||||
sMenuText = QT_TR_NOOP("Align to selection");
|
||||
sMenuText = QT_TR_NOOP("&Align to selection");
|
||||
sToolTipText = QT_TR_NOOP("Align the view with the selection");
|
||||
sWhatsThis = "Std_AlignToSelection";
|
||||
sPixmap = "align-to-selection";
|
||||
|
||||
Reference in New Issue
Block a user