VirtualBox

Ignore:
Timestamp:
Mar 22, 2021 4:09:00 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
143450
Message:

FE/Qt: bugref:9515. Label fixes

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  
    111111    if (m_pFixedCheckBox)
    112112    {
    113         m_pFixedCheckBox->setText(UIWizardNewVD::tr("Pre-&allocate full size"));
     113        m_pFixedCheckBox->setText(UIWizardNewVD::tr("Pre-&allocate Full Size"));
    114114        m_pFixedCheckBox->setToolTip(UIWizardNewVD::tr("<p>When checked, the virtual disk image will be fully allocated at "
    115115                                                       "VM creation time, rather than being allocated dynamically at VM run-time.</p>"));
     
    117117
    118118    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"));
    120120
    121121
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageBasic3.cpp

    r88038 r88250  
    281281                                                "that a virtual machine will be able to store on the hard disk."));
    282282    if (m_pMediumSizeEditorLabel)
    283         m_pMediumSizeEditorLabel->setText(UIWizardNewVD::tr("D&isk size:"));
     283        m_pMediumSizeEditorLabel->setText(UIWizardNewVD::tr("D&isk Size:"));
    284284}
    285285
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp

    r88150 r88250  
    371371    if (m_pSkipUnattendedCheckBox)
    372372    {
    373         m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("Skip unattended installation"));
     373        m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("&Skip Unattended Installation"));
    374374        m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>When checked selected ISO file will be mounted to the CD "
    375375                                                                "drive of the virtual machine but the unattended installation "
     
    542542    retranslateWidgets();
    543543    /* Translate page: */
    544     setTitle(UIWizardNewVM::tr("Virtual machine name and operating system"));
     544    setTitle(UIWizardNewVM::tr("Virtual machine Name and Operating System"));
    545545
    546546    if (m_pNameOSTypeLabel)
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic2.cpp

    r88241 r88250  
    202202    if (m_pGAInstallationISOContainer)
    203203    {
    204         m_pGAInstallationISOContainer->setTitle(UIWizardNewVM::tr("Gu&est additions"));
     204        m_pGAInstallationISOContainer->setTitle(UIWizardNewVM::tr("Gu&est Additions"));
    205205        m_pGAInstallationISOContainer->setToolTip(UIWizardNewVM::tr("<p>When checked the guest additions will be installed "
    206206                                                           "after the OS install.</p>"));
     
    209209        m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key:"));
    210210    if (m_pUserNameContainer)
    211         m_pUserNameContainer->setTitle(UIWizardNewVM::tr("Username and password"));
     211        m_pUserNameContainer->setTitle(UIWizardNewVM::tr("Username and Password"));
    212212    if (m_pAdditionalOptionsContainer)
    213         m_pAdditionalOptionsContainer->setTitle(UIWizardNewVM::tr("Additional options"));
     213        m_pAdditionalOptionsContainer->setTitle(UIWizardNewVM::tr("Additional Options"));
    214214    if (m_pStartHeadlessCheckBox)
    215215    {
    216         m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Start VM Headless"));
     216        m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background"));
    217217        m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("<p>When checked, the newly created virtual machine will be started "
    218218                                                               "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  
    8282{
    8383    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"));
    8585    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"));
    8787    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"));
    8989    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..."));
    9191}
    9292
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp

    r88155 r88250  
    164164    if (m_pToolBox)
    165165    {
    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")));
    167167        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"));
    169169        m_pToolBox->setPageTitle(ExpertToolboxItems_Hardware, UIWizardNewVM::tr("Hardware"));
    170170    }
    171171
    172172    if (m_pDiskFormatGroupBox)
    173         m_pDiskFormatGroupBox->setTitle(UIWizardNewVM::tr("Hard disk file &type"));
     173        m_pDiskFormatGroupBox->setTitle(UIWizardNewVM::tr("Hard Disk File &Type"));
    174174    if (m_pFormatButtonGroup)
    175175    {
     
    183183    }
    184184    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"));
    186186    if (m_pLocationLabel)
    187187        m_pLocationLabel->setText(UIWizardNewVM::tr("Disk Location:"));
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette