Changeset 56180 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 1, 2015 1:36:10 PM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/converter/UIConverterBackendCOM.cpp
r56165 r56180 209 209 case KDeviceType_Floppy: return QApplication::translate("VBoxGlobal", "Floppy", "DeviceType"); 210 210 case KDeviceType_DVD: return QApplication::translate("VBoxGlobal", "Optical", "DeviceType"); 211 case KDeviceType_HardDisk: return QApplication::translate("VBoxGlobal", "Hard D rive", "DeviceType");211 case KDeviceType_HardDisk: return QApplication::translate("VBoxGlobal", "Hard Disk", "DeviceType"); 212 212 case KDeviceType_Network: return QApplication::translate("VBoxGlobal", "Network", "DeviceType"); 213 213 case KDeviceType_USB: return QApplication::translate("VBoxGlobal", "USB", "DeviceType"); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r56165 r56180 650 650 tr("<p>You are about to remove following virtual machines from the machine list:</p>" 651 651 "<p>%1</p>" 652 "<p>Would you like to delete the files containing the virtual machine from your hard d riveas well? "653 "Doing this will also remove the files containing the machine's virtual hard d rives "652 "<p>Would you like to delete the files containing the virtual machine from your hard disk as well? " 653 "Doing this will also remove the files containing the machine's virtual hard disks " 654 654 "if they are not in use by another machine.</p>") 655 655 .arg(strMachineNames) : 656 656 tr("<p>You are about to remove following virtual machines from the machine list:</p>" 657 657 "<p>%1</p>" 658 "<p>Would you like to delete the files containing the virtual machine from your hard d riveas well?</p>")658 "<p>Would you like to delete the files containing the virtual machine from your hard disk as well?</p>") 659 659 .arg(strMachineNames); 660 660 … … 1063 1063 { 1064 1064 return questionTrinary(pParent, MessageType_Question, 1065 tr("<p>You are about to add a virtual hard d riveto controller <b>%1</b>.</p>"1066 "<p>Would you like to create a new, empty file to hold the d rivecontents or select an existing one?</p>")1065 tr("<p>You are about to add a virtual hard disk to controller <b>%1</b>.</p>" 1066 "<p>Would you like to create a new, empty file to hold the disk contents or select an existing one?</p>") 1067 1067 .arg(strControllerName), 1068 1068 0 /* auto-confirm id */, 1069 tr("Create &new d rive"), tr("&Choose existing drive"));1069 tr("Create &new disk"), tr("&Choose existing disk")); 1070 1070 } 1071 1071 … … 1111 1111 case UIMediumType_HardDisk: 1112 1112 { 1113 strMessage = tr("Failed to attach the hard d rive(<nobr><b>%1</b></nobr>) to the slot <i>%2</i> of the machine <b>%3</b>.")1113 strMessage = tr("Failed to attach the hard disk (<nobr><b>%1</b></nobr>) to the slot <i>%2</i> of the machine <b>%3</b>.") 1114 1114 .arg(strLocation).arg(gpConverter->toString(storageSlot)).arg(CMachine(machine).GetName()); 1115 1115 break; … … 1233 1233 usage << machine.GetName(); 1234 1234 } 1235 /* Show the question: */ 1236 return questionBinary(pParent, MessageType_Question, 1237 tr("<p>Are you sure you want to release the disk image file <nobr><b>%1</b></nobr>?</p>" 1238 "<p>This will detach it from the following virtual machine(s): <b>%2</b>.</p>") 1239 .arg(medium.location(), usage.join(", ")), 1240 0 /* auto-confirm id */, 1241 tr("Release", "detach medium")); 1242 } 1243 1244 bool UIMessageCenter::confirmMediumRemoval(const UIMedium &medium, QWidget *pParent /* = 0*/) const 1245 { 1235 1246 /* Prepare the message: */ 1236 1247 QString strMessage; … … 1239 1250 case UIMediumType_HardDisk: 1240 1251 { 1241 strMessage = tr("<p>Are you sure you want to release the virtual hard drive <nobr><b>%1</b></nobr>?</p>" 1242 "<p>This will detach it from the following virtual machine(s): <b>%2</b>.</p>"); 1243 break; 1244 } 1245 case UIMediumType_DVD: 1246 { 1247 strMessage = tr("<p>Are you sure you want to release the virtual optical disk <nobr><b>%1</b></nobr>?</p>" 1248 "<p>This will detach it from the following virtual machine(s): <b>%2</b>.</p>"); 1249 break; 1250 } 1251 case UIMediumType_Floppy: 1252 { 1253 strMessage = tr("<p>Are you sure you want to release the virtual floppy disk <nobr><b>%1</b></nobr>?</p>" 1254 "<p>This will detach it from the following virtual machine(s): <b>%2</b>.</p>"); 1255 break; 1256 } 1257 default: 1258 break; 1259 } 1260 /* Show the question: */ 1261 return questionBinary(pParent, MessageType_Question, 1262 strMessage.arg(medium.location(), usage.join(", ")), 1263 0 /* auto-confirm id */, 1264 tr("Release", "detach medium")); 1265 } 1266 1267 bool UIMessageCenter::confirmMediumRemoval(const UIMedium &medium, QWidget *pParent /* = 0*/) const 1268 { 1269 /* Prepare the message: */ 1270 QString strMessage; 1271 switch (medium.type()) 1272 { 1273 case UIMediumType_HardDisk: 1274 { 1275 strMessage = tr("<p>Are you sure you want to remove the virtual hard drive " 1252 strMessage = tr("<p>Are you sure you want to remove the virtual hard disk " 1276 1253 "<nobr><b>%1</b></nobr> from the list of known disk image files?</p>"); 1277 1254 /* Compose capabilities flag: */ … … 1285 1262 { 1286 1263 if (medium.state() == KMediumState_Inaccessible) 1287 strMessage += tr("<p>As this hard d riveis inaccessible its image file"1264 strMessage += tr("<p>As this hard disk is inaccessible its image file" 1288 1265 " can not be deleted.</p>"); 1289 1266 } … … 1319 1296 { 1320 1297 return questionTrinary(pParent, MessageType_Question, 1321 tr("<p>Do you want to delete the storage unit of the hard drive"1298 tr("<p>Do you want to delete the storage unit of the virtual hard disk " 1322 1299 "<nobr><b>%1</b></nobr>?</p>" 1323 1300 "<p>If you select <b>Delete</b> then the specified storage unit " … … 1358 1335 case UIMediumType_HardDisk: 1359 1336 { 1360 strMessage = tr("Failed to detach the hard d rive(<nobr><b>%1</b></nobr>) from the slot <i>%2</i> of the machine <b>%3</b>.")1337 strMessage = tr("Failed to detach the hard disk (<nobr><b>%1</b></nobr>) from the slot <i>%2</i> of the machine <b>%3</b>.") 1361 1338 .arg(strLocation, gpConverter->toString(storageSlot), CMachine(machine).GetName()); 1362 1339 break; … … 1452 1429 { 1453 1430 return questionBinary(pParent, MessageType_Warning, 1454 tr("You are about to create a new virtual machine without a hard d rive. "1431 tr("You are about to create a new virtual machine without a hard disk. " 1455 1432 "You will not be able to install an operating system on the machine " 1456 1433 "until you add one. In the mean time you will only be able to start the " … … 1495 1472 { 1496 1473 alert(pParent, MessageType_Info, 1497 tr("<p>The hard d rivestorage unit at location <b>%1</b> already exists. "1498 "You cannot create a new virtual hard d rivethat uses this location "1499 "because it can be already used by another virtual hard d rive.</p>"1474 tr("<p>The hard disk storage unit at location <b>%1</b> already exists. " 1475 "You cannot create a new virtual hard disk that uses this location " 1476 "because it can be already used by another virtual hard disk.</p>" 1500 1477 "<p>Please specify a different location.</p>") 1501 1478 .arg(strLocation)); … … 1505 1482 { 1506 1483 error(pParent, MessageType_Error, 1507 tr("Failed to create the hard d rivestorage <nobr><b>%1</b>.</nobr>")1484 tr("Failed to create the hard disk storage <nobr><b>%1</b>.</nobr>") 1508 1485 .arg(strLocation), 1509 1486 formatErrorInfo(vbox)); … … 1513 1490 { 1514 1491 error(pParent, MessageType_Error, 1515 tr("Failed to create the hard d rivestorage <nobr><b>%1</b>.</nobr>")1492 tr("Failed to create the hard disk storage <nobr><b>%1</b>.</nobr>") 1516 1493 .arg(strLocation), 1517 1494 formatErrorInfo(medium)); … … 1521 1498 { 1522 1499 error(pParent, MessageType_Error, 1523 tr("Failed to create the hard d rivestorage <nobr><b>%1</b>.</nobr>")1500 tr("Failed to create the hard disk storage <nobr><b>%1</b>.</nobr>") 1524 1501 .arg(strLocation), 1525 1502 formatErrorInfo(progress)); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r56165 r56180 1580 1580 { 1581 1581 filters = vboxGlobal().HDDBackends(); 1582 strTitle = tr("Please choose a virtual hard d rivefile");1583 allType = tr("All virtual hard d rivefiles (%1)");1582 strTitle = tr("Please choose a virtual hard disk file"); 1583 allType = tr("All virtual hard disk files (%1)"); 1584 1584 strLastFolder = gEDataManager->recentFolderForHardDrives(); 1585 1585 if (strLastFolder.isEmpty()) -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMedium.cpp
r55983 r56180 419 419 if (fCheckRO && m_fReadOnly) 420 420 strTip += m_sstrRow.arg("<hr>") + 421 m_sstrRow.arg(VBoxGlobal::tr("Attaching this hard d rivewill be performed indirectly using "422 "a newly created differencing hard d rive.", "medium"));421 m_sstrRow.arg(VBoxGlobal::tr("Attaching this hard disk will be performed indirectly using " 422 "a newly created differencing hard disk.", "medium")); 423 423 } 424 424 … … 583 583 584 584 if (m_noDiffs.toolTip.isNull()) 585 m_noDiffs.toolTip = m_sstrRow.arg(VBoxGlobal::tr("Some of the files in this hard d rivechain "585 m_noDiffs.toolTip = m_sstrRow.arg(VBoxGlobal::tr("Some of the files in this hard disk chain " 586 586 "are inaccessible. Please use the Virtual Medium " 587 587 "Manager to inspect these files.", "medium")); … … 599 599 m_noDiffs.toolTip = root().tip() + 600 600 m_sstrRow.arg("<hr>") + 601 m_sstrRow.arg(VBoxGlobal::tr("This base hard d riveis indirectly attached using "602 "the following differencing hard d rive:", "medium")) +601 m_sstrRow.arg(VBoxGlobal::tr("This base hard disk is indirectly attached using " 602 "the following differencing hard disk:", "medium")) + 603 603 m_strToolTip + m_noDiffs.toolTip; 604 604 } -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r56038 r56180 1786 1786 if (m_pTabWidget) 1787 1787 { 1788 m_pTabWidget->setTabText(tabIndex(UIMediumType_HardDisk), tr("&Hard d rives"));1788 m_pTabWidget->setTabText(tabIndex(UIMediumType_HardDisk), tr("&Hard disks")); 1789 1789 m_pTabWidget->setTabText(tabIndex(UIMediumType_DVD), tr("&Optical disks")); 1790 1790 m_pTabWidget->setTabText(tabIndex(UIMediumType_Floppy), tr("&Floppy disks")); … … 1993 1993 { 1994 1994 pMediumItem = new UIMediumItemHD(medium, pParentMediumItem); 1995 LogRel2(("UIMediumManager: Child hard-d rivemedium-item with ID={%s} created.\n", medium.id().toAscii().constData()));1995 LogRel2(("UIMediumManager: Child hard-disk medium-item with ID={%s} created.\n", medium.id().toAscii().constData())); 1996 1996 } 1997 1997 } … … 2000 2000 { 2001 2001 pMediumItem = new UIMediumItemHD(medium, pTreeWidget); 2002 LogRel2(("UIMediumManager: Root hard-d rivemedium-item with ID={%s} created.\n", medium.id().toAscii().constData()));2002 LogRel2(("UIMediumManager: Root hard-disk medium-item with ID={%s} created.\n", medium.id().toAscii().constData())); 2003 2003 } 2004 2004 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.cpp
r56150 r56180 1274 1274 void retranslateUi() 1275 1275 { 1276 setName(QApplication::translate("UIActionPool", "&Hard D rives"));1276 setName(QApplication::translate("UIActionPool", "&Hard Disks")); 1277 1277 } 1278 1278 }; … … 1303 1303 void retranslateUi() 1304 1304 { 1305 setName(QApplication::translate("UIActionPool", "&Hard D riveSettings..."));1306 setStatusTip(QApplication::translate("UIActionPool", "Display the virtual machine settings window to configure hard d rives"));1305 setName(QApplication::translate("UIActionPool", "&Hard Disk Settings...")); 1306 setStatusTip(QApplication::translate("UIActionPool", "Display the virtual machine settings window to configure hard disks")); 1307 1307 } 1308 1308 }; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp
r56105 r56180 347 347 * but be quiet, it's safe enough because the tool-tip being re-acquired every time on mouse-hovering. */ 348 348 const QStringList encryptedMediums = m_encryptedMediums.values(m_encryptionPasswords.keys().at(index.row())); 349 return UIAddDiskEncryptionPasswordDialog::tr("<nobr>Used by the following %n hard d rive(s):</nobr><br>%1",349 return UIAddDiskEncryptionPasswordDialog::tr("<nobr>Used by the following %n hard disk(s):</nobr><br>%1", 350 350 "This text is never used with n == 0. " 351 351 "Feel free to drop the %n where possible, " -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r56165 r56180 117 117 QString strToolTip = QApplication::translate("UIIndicatorsPool", 118 118 "<p style='white-space:pre'><nobr>Indicates the activity " 119 "of the hard d rives:</nobr>%1</p>", "HDD tooltip");119 "of the hard disks:</nobr>%1</p>", "HDD tooltip"); 120 120 QString strFullData; 121 121 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIVMCloseDialog.cpp
r56165 r56180 412 412 "<p>You can use the VirtualBox Manager to return to running the virtual machine in a window.</p>")); 413 413 m_pSaveRadio->setText(tr("&Save the machine state")); 414 m_pSaveRadio->setWhatsThis(tr("<p>Saves the current execution state of the virtual machine to the physical hard d riveof the host PC.</p>"414 m_pSaveRadio->setWhatsThis(tr("<p>Saves the current execution state of the virtual machine to the physical hard disk of the host PC.</p>" 415 415 "<p>Next time this machine is started, it will be restored from the saved state and continue execution " 416 416 "from the same place you saved it at, which will let you continue your work immediately.</p>" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.cpp
r56160 r56180 1080 1080 break; 1081 1081 case HDAdderToolTip: 1082 tip = UIMachineSettingsStorage::tr("<nobr>Adds hard d rive.</nobr>");1082 tip = UIMachineSettingsStorage::tr("<nobr>Adds hard disk.</nobr>"); 1083 1083 break; 1084 1084 case CDAdderToolTip: … … 2391 2391 if (vboxGlobal().medium(key).isNull() && attDevice == KDeviceType_HardDisk) 2392 2392 { 2393 message.second << tr("No hard d riveis selected for <i>%1</i>.").arg (value);2393 message.second << tr("No hard disk is selected for <i>%1</i>.").arg (value); 2394 2394 fPass = false; 2395 2395 } … … 2459 2459 mDelCtrAction->setText(tr("Remove Controller")); 2460 2460 mAddAttAction->setText(tr("Add Attachment")); 2461 mAddHDAttAction->setText(tr("Add Hard D rive"));2461 mAddHDAttAction->setText(tr("Add Hard Disk")); 2462 2462 mAddCDAttAction->setText(tr("Add Optical Drive")); 2463 2463 mAddFDAttAction->setText(tr("Add Floppy Drive")); … … 2744 2744 { 2745 2745 case KDeviceType_HardDisk: 2746 mLbMedium->setText(tr("Hard &D rive:"));2746 mLbMedium->setText(tr("Hard &Disk:")); 2747 2747 mTbOpen->setIcon(iconPool()->icon(HDAttachmentNormal)); 2748 mTbOpen->setWhatsThis(tr("Choose or create a virtual hard d rivefile. The virtual machine will see "2749 "the data in the file as the contents of the virtual hard d rive."));2748 mTbOpen->setWhatsThis(tr("Choose or create a virtual hard disk file. The virtual machine will see " 2749 "the data in the file as the contents of the virtual hard disk.")); 2750 2750 break; 2751 2751 case KDeviceType_DVD: … … 2908 2908 { 2909 2909 /* Add "Create a new virtual hard disk" action: */ 2910 QAction *pCreateNewHardDisk = pOpenMediumMenu->addAction(tr("Create New Hard D rive..."));2910 QAction *pCreateNewHardDisk = pOpenMediumMenu->addAction(tr("Create New Hard Disk...")); 2911 2911 pCreateNewHardDisk->setIcon(iconPool()->icon(HDNewEn, HDNewDis)); 2912 2912 connect(pCreateNewHardDisk, SIGNAL(triggered(bool)), this, SLOT(sltCreateNewHardDisk())); 2913 2913 /* Add "Choose a virtual hard disk file" action: */ 2914 addChooseExistingMediumAction(pOpenMediumMenu, tr("Choose Virtual Hard D riveFile..."));2914 addChooseExistingMediumAction(pOpenMediumMenu, tr("Choose Virtual Hard Disk File...")); 2915 2915 /* Add recent mediums list: */ 2916 2916 addRecentMediumActions(pOpenMediumMenu, m_pMediumIdHolder->type()); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.ui
r56165 r56180 379 379 </property> 380 380 <property name="whatsThis"> 381 <string>When checked, the guest system will see the virtual d riveas a solid-state device.</string>381 <string>When checked, the guest system will see the virtual disk as a solid-state device.</string> 382 382 </property> 383 383 <property name="text"> … … 395 395 </property> 396 396 <property name="whatsThis"> 397 <string>When checked, the guest system will see the virtual d riveas a hot-pluggable device.</string>397 <string>When checked, the guest system will see the virtual disk as a hot-pluggable device.</string> 398 398 </property> 399 399 <property name="text"> -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp
r54438 r56180 117 117 118 118 /* Translate wizard: */ 119 setWindowTitle(tr("Copy Virtual Hard D rive"));119 setWindowTitle(tr("Copy Virtual Hard Disk")); 120 120 setButtonText(QWizard::FinishButton, tr("Copy")); 121 121 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic1.cpp
r52730 r56180 113 113 { 114 114 /* Translate page: */ 115 setTitle(UIWizardCloneVD::tr("Hard d riveto copy"));115 setTitle(UIWizardCloneVD::tr("Hard disk to copy")); 116 116 117 117 /* Translate widgets: */ 118 m_pLabel->setText(UIWizardCloneVD::tr("<p>Please select the virtual hard d rivefile that you would like to copy "118 m_pLabel->setText(UIWizardCloneVD::tr("<p>Please select the virtual hard disk file that you would like to copy " 119 119 "if it is not already selected. You can either choose one from the list " 120 120 "or use the folder icon beside the list to select one.</p>")); 121 m_pSourceDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a virtual hard d rivefile to copy..."));121 m_pSourceDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a virtual hard disk file to copy...")); 122 122 } 123 123 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic2.cpp
r54605 r56180 133 133 { 134 134 /* Translate page: */ 135 setTitle(UIWizardCloneVD::tr("Hard d rivefile type"));135 setTitle(UIWizardCloneVD::tr("Hard disk file type")); 136 136 137 137 /* Translate widgets: */ 138 138 m_pLabel->setText(UIWizardCloneVD::tr("Please choose the type of file that you would like to use " 139 "for the new virtual hard d rive. If you do not need to use it "139 "for the new virtual hard disk. If you do not need to use it " 140 140 "with other virtualization software you can leave this setting unchanged.")); 141 141 QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic3.cpp
r52730 r56180 124 124 { 125 125 /* Translate page: */ 126 setTitle(UIWizardCloneVD::tr("Storage on physical hard d rive"));126 setTitle(UIWizardCloneVD::tr("Storage on physical hard disk")); 127 127 128 128 /* Translate widgets: */ 129 m_pDescriptionLabel->setText(UIWizardCloneVD::tr("Please choose whether the new virtual hard d rivefile should grow as it is used "129 m_pDescriptionLabel->setText(UIWizardCloneVD::tr("Please choose whether the new virtual hard disk file should grow as it is used " 130 130 "(dynamically allocated) or if it should be created at its maximum size (fixed size).")); 131 m_pDynamicLabel->setText(UIWizardCloneVD::tr("<p>A <b>dynamically allocated</b> hard d rivefile will only use space "132 "on your physical hard d riveas it fills up (up to a maximum <b>fixed size</b>), "131 m_pDynamicLabel->setText(UIWizardCloneVD::tr("<p>A <b>dynamically allocated</b> hard disk file will only use space " 132 "on your physical hard disk as it fills up (up to a maximum <b>fixed size</b>), " 133 133 "although it will not shrink again automatically when space on it is freed.</p>")); 134 m_pFixedLabel->setText(UIWizardCloneVD::tr("<p>A <b>fixed size</b> hard d rivefile may take longer to create on some "134 m_pFixedLabel->setText(UIWizardCloneVD::tr("<p>A <b>fixed size</b> hard disk file may take longer to create on some " 135 135 "systems but is often faster to use.</p>")); 136 m_pSplitLabel->setText(UIWizardCloneVD::tr("<p>You can also choose to <b>split</b> the hard d rivefile into several files "136 m_pSplitLabel->setText(UIWizardCloneVD::tr("<p>You can also choose to <b>split</b> the hard disk file into several files " 137 137 "of up to two gigabytes each. This is mainly useful if you wish to store the " 138 138 "virtual machine on removable USB devices or old systems, some of which cannot " -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic4.cpp
r52730 r56180 85 85 QString strChosenFilePath = QIFileDialog::getSaveFileName(folder.absoluteFilePath(strFileName), 86 86 strBackendsList, thisImp(), 87 UIWizardCloneVD::tr("Please choose a location for new virtual hard d rivefile"));87 UIWizardCloneVD::tr("Please choose a location for new virtual hard disk file")); 88 88 89 89 /* If there was something really chosen: */ … … 199 199 { 200 200 /* Translate page: */ 201 setTitle(UIWizardCloneVD::tr("New hard d riveto create"));201 setTitle(UIWizardCloneVD::tr("New hard disk to create")); 202 202 203 203 /* Translate widgets: */ 204 m_pLabel->setText(UIWizardCloneVD::tr("Please type the name of the new virtual hard d rivefile into the box below or "204 m_pLabel->setText(UIWizardCloneVD::tr("Please type the name of the new virtual hard disk file into the box below or " 205 205 "click on the folder icon to select a different folder to create the file in.")); 206 m_pDestinationDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a location for new virtual hard d rivefile..."));206 m_pDestinationDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a location for new virtual hard disk file...")); 207 207 } 208 208 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp
r52730 r56180 230 230 { 231 231 /* Translate widgets: */ 232 m_pSourceDiskCnt->setTitle(UIWizardCloneVD::tr("Hard d riveto ©"));233 m_pSourceDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a virtual hard d rivefile to copy..."));234 m_pDestinationCnt->setTitle(UIWizardCloneVD::tr("&New hard d riveto create"));235 m_pDestinationDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a location for new virtual hard d rivefile..."));236 m_pFormatCnt->setTitle(UIWizardCloneVD::tr("Hard d rivefile &type"));232 m_pSourceDiskCnt->setTitle(UIWizardCloneVD::tr("Hard disk to ©")); 233 m_pSourceDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a virtual hard disk file to copy...")); 234 m_pDestinationCnt->setTitle(UIWizardCloneVD::tr("&New hard disk to create")); 235 m_pDestinationDiskOpenButton->setToolTip(UIWizardCloneVD::tr("Choose a location for new virtual hard disk file...")); 236 m_pFormatCnt->setTitle(UIWizardCloneVD::tr("Hard disk file &type")); 237 237 QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons(); 238 238 for (int i = 0; i < buttons.size(); ++i) … … 241 241 pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)])); 242 242 } 243 m_pVariantCnt->setTitle(UIWizardCloneVD::tr("Storage on physical hard d rive"));243 m_pVariantCnt->setTitle(UIWizardCloneVD::tr("Storage on physical hard disk")); 244 244 m_pDynamicalButton->setText(UIWizardCloneVD::tr("&Dynamically allocated")); 245 245 m_pFixedButton->setText(UIWizardCloneVD::tr("&Fixed size")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic2.cpp
r52730 r56180 96 96 QString strLabel = UIWizardCloneVM::tr("<p>Please choose the type of clone you wish to create.</p>" 97 97 "<p>If you choose <b>Full clone</b>, " 98 "an exact copy (including all virtual hard d rivefiles) "98 "an exact copy (including all virtual hard disk files) " 99 99 "of the original virtual machine will be created.</p>" 100 100 "<p>If you choose <b>Linked clone</b>, " 101 "a new machine will be created, but the virtual hard d rivefiles "102 "will be tied to the virtual hard d rivefiles of original machine "101 "a new machine will be created, but the virtual hard disk files " 102 "will be tied to the virtual hard disk files of original machine " 103 103 "and you will not be able to move the new virtual machine " 104 104 "to a different computer without moving the original as well.</p>"); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp
r54438 r56180 121 121 122 122 /* Translate wizard: */ 123 setWindowTitle(tr("Create Virtual Hard D rive"));123 setWindowTitle(tr("Create Virtual Hard Disk")); 124 124 setButtonText(QWizard::FinishButton, tr("Create")); 125 125 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic1.cpp
r54605 r56180 132 132 { 133 133 /* Translate page: */ 134 setTitle(UIWizardNewVD::tr("Hard d rivefile type"));134 setTitle(UIWizardNewVD::tr("Hard disk file type")); 135 135 136 136 /* Translate widgets: */ 137 137 m_pLabel->setText(UIWizardNewVD::tr("Please choose the type of file that you would like to use " 138 "for the new virtual hard d rive. If you do not need to use it "138 "for the new virtual hard disk. If you do not need to use it " 139 139 "with other virtualization software you can leave this setting unchanged.")); 140 140 QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic2.cpp
r52730 r56180 124 124 { 125 125 /* Translate page: */ 126 setTitle(UIWizardNewVD::tr("Storage on physical hard d rive"));126 setTitle(UIWizardNewVD::tr("Storage on physical hard disk")); 127 127 128 128 /* Translate widgets: */ 129 m_pDescriptionLabel->setText(UIWizardNewVD::tr("Please choose whether the new virtual hard d rivefile should grow as it is used "129 m_pDescriptionLabel->setText(UIWizardNewVD::tr("Please choose whether the new virtual hard disk file should grow as it is used " 130 130 "(dynamically allocated) or if it should be created at its maximum size (fixed size).")); 131 m_pDynamicLabel->setText(UIWizardNewVD::tr("<p>A <b>dynamically allocated</b> hard d rivefile will only use space "132 "on your physical hard d riveas it fills up (up to a maximum <b>fixed size</b>), "131 m_pDynamicLabel->setText(UIWizardNewVD::tr("<p>A <b>dynamically allocated</b> hard disk file will only use space " 132 "on your physical hard disk as it fills up (up to a maximum <b>fixed size</b>), " 133 133 "although it will not shrink again automatically when space on it is freed.</p>")); 134 m_pFixedLabel->setText(UIWizardNewVD::tr("<p>A <b>fixed size</b> hard d rivefile may take longer to create on some "134 m_pFixedLabel->setText(UIWizardNewVD::tr("<p>A <b>fixed size</b> hard disk file may take longer to create on some " 135 135 "systems but is often faster to use.</p>")); 136 m_pSplitLabel->setText(UIWizardNewVD::tr("<p>You can also choose to <b>split</b> the hard d rivefile into several files "136 m_pSplitLabel->setText(UIWizardNewVD::tr("<p>You can also choose to <b>split</b> the hard disk file into several files " 137 137 "of up to two gigabytes each. This is mainly useful if you wish to store the " 138 138 "virtual machine on removable USB devices or old systems, some of which cannot " -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic3.cpp
r52730 r56180 96 96 QString strChosenFilePath = QIFileDialog::getSaveFileName(folder.absoluteFilePath(strFileName), 97 97 strBackendsList, thisImp(), 98 VBoxGlobal::tr("Please choose a location for new virtual hard d rivefile"));98 VBoxGlobal::tr("Please choose a location for new virtual hard disk file")); 99 99 100 100 /* If there was something really chosen: */ … … 368 368 369 369 /* Translate widgets: */ 370 m_pLocationLabel->setText(UIWizardNewVD::tr("Please type the name of the new virtual hard d rivefile into the box below or "370 m_pLocationLabel->setText(UIWizardNewVD::tr("Please type the name of the new virtual hard disk file into the box below or " 371 371 "click on the folder icon to select a different folder to create the file in.")); 372 m_pLocationOpenButton->setToolTip(UIWizardNewVD::tr("Choose a location for new virtual hard d rivefile..."));373 m_pSizeLabel->setText(UIWizardNewVD::tr("Select the size of the virtual hard d rivein megabytes. "372 m_pLocationOpenButton->setToolTip(UIWizardNewVD::tr("Choose a location for new virtual hard disk file...")); 373 m_pSizeLabel->setText(UIWizardNewVD::tr("Select the size of the virtual hard disk in megabytes. " 374 374 "This size is the limit on the amount of file data " 375 "that a virtual machine will be able to store on the hard d rive."));375 "that a virtual machine will be able to store on the hard disk.")); 376 376 } 377 377 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.cpp
r52730 r56180 247 247 /* Translate widgets: */ 248 248 m_pLocationCnt->setTitle(UIWizardNewVD::tr("File &location")); 249 m_pLocationOpenButton->setToolTip(UIWizardNewVD::tr("Choose a location for new virtual hard d rivefile..."));249 m_pLocationOpenButton->setToolTip(UIWizardNewVD::tr("Choose a location for new virtual hard disk file...")); 250 250 m_pSizeCnt->setTitle(UIWizardNewVD::tr("File &size")); 251 m_pFormatCnt->setTitle(UIWizardNewVD::tr("Hard d rivefile &type"));251 m_pFormatCnt->setTitle(UIWizardNewVD::tr("Hard disk file &type")); 252 252 QList<QAbstractButton*> buttons = m_pFormatButtonGroup->buttons(); 253 253 for (int i = 0; i < buttons.size(); ++i) … … 256 256 pButton->setText(VBoxGlobal::fullMediumFormatName(m_formatNames[m_pFormatButtonGroup->id(pButton)])); 257 257 } 258 m_pVariantCnt->setTitle(UIWizardNewVD::tr("Storage on physical hard d rive"));258 m_pVariantCnt->setTitle(UIWizardNewVD::tr("Storage on physical hard disk")); 259 259 m_pDynamicalButton->setText(UIWizardNewVD::tr("&Dynamically allocated")); 260 260 m_pFixedButton->setText(UIWizardNewVD::tr("&Fixed size")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.cpp
r54652 r56180 200 200 { 201 201 /* Translate page: */ 202 setTitle(UIWizardNewVM::tr("Hard d rive"));202 setTitle(UIWizardNewVM::tr("Hard disk")); 203 203 204 204 /* Translate widgets: */ 205 205 QString strRecommendedHDD = field("type").value<CGuestOSType>().isNull() ? QString() : 206 206 VBoxGlobal::formatSize(field("type").value<CGuestOSType>().GetRecommendedHDD()); 207 m_pLabel->setText(UIWizardNewVM::tr("<p>If you wish you can add a virtual hard d riveto the new machine. "208 "You can either create a new hard d rivefile or select one from the list "207 m_pLabel->setText(UIWizardNewVM::tr("<p>If you wish you can add a virtual hard disk to the new machine. " 208 "You can either create a new hard disk file or select one from the list " 209 209 "or from another location using the folder icon.</p>" 210 210 "<p>If you need a more complex storage set-up you can skip this step " 211 211 "and make the changes to the machine settings once the machine is created.</p>" 212 "<p>The recommended size of the hard d riveis <b>%1</b>.</p>")212 "<p>The recommended size of the hard disk is <b>%1</b>.</p>") 213 213 .arg(strRecommendedHDD)); 214 m_pDiskSkip->setText(UIWizardNewVM::tr("&Do not add a virtual hard d rive"));215 m_pDiskCreate->setText(UIWizardNewVM::tr("&Create a virtual hard d rivenow"));216 m_pDiskPresent->setText(UIWizardNewVM::tr("&Use an existing virtual hard d rivefile"));217 m_pVMMButton->setToolTip(UIWizardNewVM::tr("Choose a virtual hard d rivefile..."));214 m_pDiskSkip->setText(UIWizardNewVM::tr("&Do not add a virtual hard disk")); 215 m_pDiskCreate->setText(UIWizardNewVM::tr("&Create a virtual hard disk now")); 216 m_pDiskPresent->setText(UIWizardNewVM::tr("&Use an existing virtual hard disk file")); 217 m_pVMMButton->setToolTip(UIWizardNewVM::tr("Choose a virtual hard disk file...")); 218 218 } 219 219 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp
r52730 r56180 230 230 m_pRamMin->setText(QString("%1 %2").arg(m_pRamSlider->minRAM()).arg(VBoxGlobal::tr("MB", "size suffix MBytes=1024 KBytes"))); 231 231 m_pRamMax->setText(QString("%1 %2").arg(m_pRamSlider->maxRAM()).arg(VBoxGlobal::tr("MB", "size suffix MBytes=1024 KBytes"))); 232 m_pDiskCnt->setTitle(UIWizardNewVM::tr("Hard d rive"));233 m_pDiskSkip->setText(UIWizardNewVM::tr("&Do not add a virtual hard d rive"));234 m_pDiskCreate->setText(UIWizardNewVM::tr("&Create a virtual hard d rivenow"));235 m_pDiskPresent->setText(UIWizardNewVM::tr("&Use an existing virtual hard d rivefile"));236 m_pVMMButton->setToolTip(UIWizardNewVM::tr("Choose a virtual hard d rivefile..."));232 m_pDiskCnt->setTitle(UIWizardNewVM::tr("Hard disk")); 233 m_pDiskSkip->setText(UIWizardNewVM::tr("&Do not add a virtual hard disk")); 234 m_pDiskCreate->setText(UIWizardNewVM::tr("&Create a virtual hard disk now")); 235 m_pDiskPresent->setText(UIWizardNewVM::tr("&Use an existing virtual hard disk file")); 236 m_pVMMButton->setToolTip(UIWizardNewVM::tr("Choose a virtual hard disk file...")); 237 237 } 238 238
Note:
See TracChangeset
for help on using the changeset viewer.