Changeset 76183 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 12, 2018 3:23:12 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127438
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/cloud/UICloudProfileManager.cpp
r75564 r76183 300 300 { 301 301 pDialog->setWindowIcon(UIIconPool::iconSet(":/cloud_profile_add_16px.png")); 302 pDialog->setWindowTitle( tr("Add Profile"));302 pDialog->setWindowTitle(UICloudProfileManager::tr("Add Profile")); 303 303 if (pDialog->exec() == QDialog::Accepted) 304 304 { -
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp
r75209 r76183 393 393 { 394 394 /* Show interface creation progress: */ 395 msgCenter().showModalProgressDialog(progress, tr("Adding network..."), ":/progress_network_interface_90px.png", this, 0);395 msgCenter().showModalProgressDialog(progress, UIHostNetworkManager::tr("Adding network..."), ":/progress_network_interface_90px.png", this, 0); 396 396 397 397 /* Show error message if necessary: */ … … 494 494 { 495 495 /* Show interface removal progress: */ 496 msgCenter().showModalProgressDialog(progress, tr("Removing network..."), ":/progress_network_interface_90px.png", this, 0);496 msgCenter().showModalProgressDialog(progress, UIHostNetworkManager::tr("Removing network..."), ":/progress_network_interface_90px.png", this, 0); 497 497 498 498 /* Show error message if necessary: */ -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r75424 r76183 178 178 QList<QAction*> actions; 179 179 /* Add 'Show Toolbar Text' action: */ 180 QAction *pShowToolBarText = new QAction( tr("Show Toolbar Text"), 0);180 QAction *pShowToolBarText = new QAction(UIVirtualBoxManager::tr("Show Toolbar Text"), 0); 181 181 AssertPtrReturnVoid(pShowToolBarText); 182 182 {
Note:
See TracChangeset
for help on using the changeset viewer.