VirtualBox

Changeset 56102 in vbox for trunk/src


Ignore:
Timestamp:
May 27, 2015 2:24:28 PM (10 years ago)
Author:
vboxsync
Message:

FE/Qt: Runtime UI: Action-pool: Another NLS consistency fix.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp

    r56086 r56102  
    526526    {
    527527        setName(QApplication::translate("UIActionPool", "&Minimize"));
    528         setStatusTip(QApplication::translate("UIActionPool", "Minimize active machine-window"));
     528        setStatusTip(QApplication::translate("UIActionPool", "Minimize active window"));
    529529    }
    530530};
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.cpp

    r56098 r56102  
    530530    {
    531531        setName(QApplication::translate("UIActionPool", "&Minimize Window"));
    532         setStatusTip(QApplication::translate("UIActionPool", "Minimize currently active window"));
     532        setStatusTip(QApplication::translate("UIActionPool", "Minimize active window"));
    533533    }
    534534};
     
    603603    {
    604604        setName(QApplication::translate("UIActionPool", "Auto-resize &Guest Display"));
    605         setStatusTip(QApplication::translate("UIActionPool", "Automatically resize the guest display when the window is resized (requires Guest Additions)"));
     605        setStatusTip(QApplication::translate("UIActionPool", "Automatically resize the guest display when the window is resized"));
    606606    }
    607607};
     
    13821382    void retranslateUi()
    13831383    {
    1384         setName(QApplication::translate("UIActionPool", "Network"));
     1384        setName(QApplication::translate("UIActionPool", "&Network"));
    13851385    }
    13861386};
     
    24472447            QMenu *pSubMenu = pMenu->addMenu(UIIconPool::iconSet(":/virtual_screen_16px.png",
    24482448                                                                 ":/virtual_screen_disabled_16px.png"),
    2449                                              QApplication::translate("UIMultiScreenLayout",
    2450                                                                      "Virtual Screen %1").arg(iGuestScreenIndex + 1));
     2449                                             QApplication::translate("UIMultiScreenLayout", "Virtual Screen %1").arg(iGuestScreenIndex + 1));
    24512450            pSubMenu->setProperty("Guest Screen Index", iGuestScreenIndex);
    24522451            connect(pSubMenu, SIGNAL(aboutToShow()), this, SLOT(sltPrepareMenuViewScreen()));
     
    24632462                QMenu *pSubMenu = pMenu->addMenu(UIIconPool::iconSet(":/virtual_screen_16px.png",
    24642463                                                                     ":/virtual_screen_disabled_16px.png"),
    2465                                                  QApplication::translate("UIMultiScreenLayout",
    2466                                                                          "Virtual Screen %1").arg(iGuestScreenIndex + 1));
     2464                                                 QApplication::translate("UIMultiScreenLayout", "Virtual Screen %1").arg(iGuestScreenIndex + 1));
    24672465                pSubMenu->setProperty("Guest Screen Index", iGuestScreenIndex);
    24682466                connect(pSubMenu, SIGNAL(aboutToShow()), this, SLOT(sltPrepareMenuViewMultiscreen()));
     
    25112509            QMenu *pSubMenu = pMenu->addMenu(UIIconPool::iconSet(":/virtual_screen_16px.png",
    25122510                                                                 ":/virtual_screen_disabled_16px.png"),
    2513                                              QApplication::translate("UIMultiScreenLayout",
    2514                                                                      "Virtual Screen %1").arg(iGuestScreenIndex + 1));
     2511                                             QApplication::translate("UIMultiScreenLayout", "Virtual Screen %1").arg(iGuestScreenIndex + 1));
    25152512            pSubMenu->setProperty("Guest Screen Index", iGuestScreenIndex);
    25162513            connect(pSubMenu, SIGNAL(aboutToShow()), this, SLOT(sltPrepareMenuViewScreen()));
     
    26162613        {
    26172614            /* Create exclusive 'scale-factor' action: */
    2618             QAction *pAction = pActionGroup->addAction(tr("%1%", "scale-factor")
    2619                                                           .arg(dScaleFactor * 100));
     2615            QAction *pAction = pActionGroup->addAction(QApplication::translate("UIActionPool", "%1%", "scale-factor")
     2616                                                                               .arg(dScaleFactor * 100));
    26202617            AssertPtrReturnVoid(pAction);
    26212618            {
     
    26672664    {
    26682665        /* Create 'toggle' action: */
    2669         QAction *pToggleAction = pMenu->addAction(UIActionPoolRuntime::tr("Enable", "Virtual Screen"),
     2666        QAction *pToggleAction = pMenu->addAction(QApplication::translate("UIActionPool", "Enable", "Virtual Screen"),
    26702667                                                  this, SLOT(sltHandleActionTriggerViewScreenToggle()));
    26712668        AssertPtrReturnVoid(pToggleAction);
     
    26912688        {
    26922689            /* Create exclusive 'resize' action: */
    2693             QAction *pAction = pActionGroup->addAction(UIActionPoolRuntime::tr("Resize to %1x%2", "Virtual Screen")
     2690            QAction *pAction = pActionGroup->addAction(QApplication::translate("UIActionPool", "Resize to %1x%2", "Virtual Screen")
    26942691                                                                               .arg(size.width()).arg(size.height()));
    26952692            AssertPtrReturnVoid(pAction);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette