Changeset 88250 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 22, 2021 4:09:00 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143450
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic2.cpp
r87972 r88250 111 111 if (m_pFixedCheckBox) 112 112 { 113 m_pFixedCheckBox->setText(UIWizardNewVD::tr("Pre-&allocate full size"));113 m_pFixedCheckBox->setText(UIWizardNewVD::tr("Pre-&allocate Full Size")); 114 114 m_pFixedCheckBox->setToolTip(UIWizardNewVD::tr("<p>When checked, the virtual disk image will be fully allocated at " 115 115 "VM creation time, rather than being allocated dynamically at VM run-time.</p>")); … … 117 117 118 118 if (m_pSplitBox) 119 m_pSplitBox->setText(UIWizardNewVD::tr("&Split into files of less than 2GB"));119 m_pSplitBox->setText(UIWizardNewVD::tr("&Split Into Files of Less Than 2GB")); 120 120 121 121 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic3.cpp
r88038 r88250 281 281 "that a virtual machine will be able to store on the hard disk.")); 282 282 if (m_pMediumSizeEditorLabel) 283 m_pMediumSizeEditorLabel->setText(UIWizardNewVD::tr("D&isk size:"));283 m_pMediumSizeEditorLabel->setText(UIWizardNewVD::tr("D&isk Size:")); 284 284 } 285 285 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp
r88150 r88250 371 371 if (m_pSkipUnattendedCheckBox) 372 372 { 373 m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr(" Skip unattended installation"));373 m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("&Skip Unattended Installation")); 374 374 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>When checked selected ISO file will be mounted to the CD " 375 375 "drive of the virtual machine but the unattended installation " … … 542 542 retranslateWidgets(); 543 543 /* Translate page: */ 544 setTitle(UIWizardNewVM::tr("Virtual machine name and operating system"));544 setTitle(UIWizardNewVM::tr("Virtual machine Name and Operating System")); 545 545 546 546 if (m_pNameOSTypeLabel) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic2.cpp
r88241 r88250 202 202 if (m_pGAInstallationISOContainer) 203 203 { 204 m_pGAInstallationISOContainer->setTitle(UIWizardNewVM::tr("Gu&est additions"));204 m_pGAInstallationISOContainer->setTitle(UIWizardNewVM::tr("Gu&est Additions")); 205 205 m_pGAInstallationISOContainer->setToolTip(UIWizardNewVM::tr("<p>When checked the guest additions will be installed " 206 206 "after the OS install.</p>")); … … 209 209 m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key:")); 210 210 if (m_pUserNameContainer) 211 m_pUserNameContainer->setTitle(UIWizardNewVM::tr("Username and password"));211 m_pUserNameContainer->setTitle(UIWizardNewVM::tr("Username and Password")); 212 212 if (m_pAdditionalOptionsContainer) 213 m_pAdditionalOptionsContainer->setTitle(UIWizardNewVM::tr("Additional options"));213 m_pAdditionalOptionsContainer->setTitle(UIWizardNewVM::tr("Additional Options")); 214 214 if (m_pStartHeadlessCheckBox) 215 215 { 216 m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("& Start VM Headless"));216 m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background")); 217 217 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("<p>When checked, the newly created virtual machine will be started " 218 218 "in headless mode (without a GUI) for the unattended guest OS install.</p>")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic4.cpp
r88155 r88250 82 82 { 83 83 if (m_pDiskEmpty) 84 m_pDiskEmpty->setText(UIWizardNewVM::tr("&Do not add a virtual hard disk"));84 m_pDiskEmpty->setText(UIWizardNewVM::tr("&Do Not Add a Virtual Hard Disk")); 85 85 if (m_pDiskNew) 86 m_pDiskNew->setText(UIWizardNewVM::tr("&Create a virtual hard disk now"));86 m_pDiskNew->setText(UIWizardNewVM::tr("&Create a Virtual Hard Disk Now")); 87 87 if (m_pDiskExisting) 88 m_pDiskExisting->setText(UIWizardNewVM::tr("&Use an existing virtual hard disk file"));88 m_pDiskExisting->setText(UIWizardNewVM::tr("&Use an Existing Virtual Hard Disk File")); 89 89 if (m_pDiskSelectionButton) 90 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Choose a virtual hard disk file..."));90 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Choose a Virtual Hard Fisk File...")); 91 91 } 92 92 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp
r88155 r88250 164 164 if (m_pToolBox) 165 165 { 166 m_pToolBox->setPageTitle(ExpertToolboxItems_NameAndOSType, QString(UIWizardNewVM::tr("Name and operating system")));166 m_pToolBox->setPageTitle(ExpertToolboxItems_NameAndOSType, QString(UIWizardNewVM::tr("Name and Operating System"))); 167 167 m_pToolBox->setPageTitle(ExpertToolboxItems_Unattended, UIWizardNewVM::tr("Unattended Install")); 168 m_pToolBox->setPageTitle(ExpertToolboxItems_Disk, UIWizardNewVM::tr("Hard disk"));168 m_pToolBox->setPageTitle(ExpertToolboxItems_Disk, UIWizardNewVM::tr("Hard Disk")); 169 169 m_pToolBox->setPageTitle(ExpertToolboxItems_Hardware, UIWizardNewVM::tr("Hardware")); 170 170 } 171 171 172 172 if (m_pDiskFormatGroupBox) 173 m_pDiskFormatGroupBox->setTitle(UIWizardNewVM::tr("Hard disk file &type"));173 m_pDiskFormatGroupBox->setTitle(UIWizardNewVM::tr("Hard Disk File &Type")); 174 174 if (m_pFormatButtonGroup) 175 175 { … … 183 183 } 184 184 if (m_pDiskVariantGroupBox) 185 m_pDiskVariantGroupBox->setTitle(UIWizardNewVM::tr("Storage on physical hard disk"));185 m_pDiskVariantGroupBox->setTitle(UIWizardNewVM::tr("Storage on Physical Hard Disk")); 186 186 if (m_pLocationLabel) 187 187 m_pLocationLabel->setText(UIWizardNewVM::tr("Disk Location:"));
Note:
See TracChangeset
for help on using the changeset viewer.