Changeset 39950 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 2, 2012 6:22:00 AM (13 years ago)
- 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 331 331 void retranslateUi() 332 332 { 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")); 335 335 } 336 336 }; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r39932 r39950 1935 1935 bool UIMessageCenter::askAboutCancelAllNetworkRequest(QWidget *pParent) 1936 1936 { 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?")); 1938 1938 } 1939 1939 1940 1940 bool UIMessageCenter::askAboutCancelOrLeaveAllNetworkRequest(QWidget *pParent) 1941 1941 { 1942 return messageYesNo(pParent, Question, tr("Do you wish to cancel all current network requests or leave them atthe background?"),1943 0 /* auto-confirm id */, tr("Cancel All"), tr("Leave AtBackground"));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")); 1944 1944 } 1945 1945 -
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkManager.cpp
r39934 r39950 127 127 128 128 /* Set popup title (default if missed): */ 129 setTitle(strTitle.isEmpty() ? UINetworkManager::tr("Network Request") : strTitle);129 setTitle(strTitle.isEmpty() ? UINetworkManager::tr("Network Operation") : strTitle); 130 130 131 131 /* Translate retry button: */ 132 m_pRetryButton->setStatusTip(UINetworkManager::tr("Re peat network request..."));132 m_pRetryButton->setStatusTip(UINetworkManager::tr("Restart network operation")); 133 133 134 134 /* Translate cancel button: */ 135 m_pCancelButton->setStatusTip(UINetworkManager::tr("Cancel network request..."));135 m_pCancelButton->setStatusTip(UINetworkManager::tr("Cancel network operation")); 136 136 } 137 137 … … 346 346 { 347 347 /* Set window caption: */ 348 setWindowTitle(UINetworkManager::tr("Network Access Manager"));348 setWindowTitle(UINetworkManager::tr("Network Operations Manager")); 349 349 350 350 /* 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.")); 352 352 353 353 /* Set buttons-box text: */ 354 354 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")); 356 356 } 357 357
Note:
See TracChangeset
for help on using the changeset viewer.