VirtualBox

Ignore:
Timestamp:
Feb 2, 2012 6:22:00 AM (13 years ago)
Author:
vboxsync
Message:

FE/Qt: Network Access Manager: Better NLS.

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

Legend:

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

    r39932 r39950  
    331331    void retranslateUi()
    332332    {
    333         setText(vboxGlobal().insertKeyToActionText(QApplication::translate("UIMessageCenter", "Network Access Manager..."), gMS->shortcut(UIMachineShortcuts::NetworkAccessManager)));
    334         setStatusTip(QApplication::translate("UIMessageCenter", "Show Network Access Manager"));
     333        setText(vboxGlobal().insertKeyToActionText(QApplication::translate("UIMessageCenter", "Network Operations Manager..."), gMS->shortcut(UIMachineShortcuts::NetworkAccessManager)));
     334        setStatusTip(QApplication::translate("UIMessageCenter", "Show Network Operations Manager"));
    335335    }
    336336};
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp

    r39932 r39950  
    19351935bool UIMessageCenter::askAboutCancelAllNetworkRequest(QWidget *pParent)
    19361936{
    1937     return messageOkCancel(pParent, Question, tr("Do you wish to cancel all current network requests?"));
     1937    return messageOkCancel(pParent, Question, tr("Do you wish to cancel all current network operations?"));
    19381938}
    19391939
    19401940bool UIMessageCenter::askAboutCancelOrLeaveAllNetworkRequest(QWidget *pParent)
    19411941{
    1942     return messageYesNo(pParent, Question, tr("Do you wish to cancel all current network requests or leave them at the background?"),
    1943                         0 /* auto-confirm id */, tr("Cancel All"), tr("Leave At Background"));
     1942    return messageYesNo(pParent, Question, tr("Do you wish to cancel all current network operations or leave them running in the background?"),
     1943                        0 /* auto-confirm id */, tr("Cancel All"), tr("Leave in Background"));
    19441944}
    19451945
  • trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkManager.cpp

    r39934 r39950  
    127127
    128128        /* Set popup title (default if missed): */
    129         setTitle(strTitle.isEmpty() ? UINetworkManager::tr("Network Request") : strTitle);
     129        setTitle(strTitle.isEmpty() ? UINetworkManager::tr("Network Operation") : strTitle);
    130130
    131131        /* Translate retry button: */
    132         m_pRetryButton->setStatusTip(UINetworkManager::tr("Repeat network request..."));
     132        m_pRetryButton->setStatusTip(UINetworkManager::tr("Restart network operation"));
    133133
    134134        /* Translate cancel button: */
    135         m_pCancelButton->setStatusTip(UINetworkManager::tr("Cancel network request..."));
     135        m_pCancelButton->setStatusTip(UINetworkManager::tr("Cancel network operation"));
    136136    }
    137137
     
    346346    {
    347347        /* Set window caption: */
    348         setWindowTitle(UINetworkManager::tr("Network Access Manager"));
     348        setWindowTitle(UINetworkManager::tr("Network Operations Manager"));
    349349
    350350        /* Set description-label text: */
    351         m_pLabel->setText(UINetworkManager::tr("There are no network activities currently..."));
     351        m_pLabel->setText(UINetworkManager::tr("There are no active network operations."));
    352352
    353353        /* Set buttons-box text: */
    354354        m_pButtonBox->button(QDialogButtonBox::Cancel)->setText(UINetworkManager::tr("&Cancel All"));
    355         m_pButtonBox->button(QDialogButtonBox::Cancel)->setStatusTip(UINetworkManager::tr("Cancel all current network requests..."));
     355        m_pButtonBox->button(QDialogButtonBox::Cancel)->setStatusTip(UINetworkManager::tr("Cancel all active network operations"));
    356356    }
    357357
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