VirtualBox

Changeset 108163 in vbox


Ignore:
Timestamp:
Feb 11, 2025 4:23:34 PM (10 days ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
167476
Message:

FE/Qt: bugref:10843 Integrating doc team's text reviews into new vm wizard. part 3.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIBaseMemoryEditor.cpp

    r108162 r108163  
    304304        m_pLabelMemory->setText(tr("Base &Memory"));
    305305
    306     const QString strToolTip(tr("The amount of RAM that VirtualBox will allocate to the virtual machine every time it is started."));
     306    const QString strToolTip(tr("The amount of RAM that VirtualBox will allocate to the virtual machine every time it is started"));
    307307    if (m_pSlider)
    308308        m_pSlider->setToolTip(strToolTip);
     
    316316    {
    317317        m_pLabelMemoryMin->setText(tr("%1 MB").arg(m_pSlider->minRAM()));
    318         m_pLabelMemoryMin->setToolTip(tr("Minimum possible base memory size."));
     318        m_pLabelMemoryMin->setToolTip(tr("Minimum possible base memory size"));
    319319    }
    320320    if (m_pLabelMemoryMax)
    321321    {
    322322        m_pLabelMemoryMax->setText(tr("%1 MB").arg(m_pSlider->maxRAM()));
    323         m_pLabelMemoryMax->setToolTip(tr("Maximum possible base memory size."));
     323        m_pLabelMemoryMax->setToolTip(tr("Maximum possible base memory size"));
    324324    }
    325325}
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp

    r108162 r108163  
    300300
    301301    if (m_pEditorName)
    302         m_pEditorName->setToolTip(tr("Descriptive name to uniquely identify the virtual machine."));
     302        m_pEditorName->setToolTip(tr("Descriptive name to uniquely identify the virtual machine"));
    303303    if (m_pSelectorPath)
    304         m_pSelectorPath->setToolTip(tr("Storage location for virtual machine files."));
     304        m_pSelectorPath->setToolTip(tr("Storage location for virtual machine files"));
    305305    if (m_pComboEdition)
    306         m_pComboEdition->setToolTip(tr("Edition of guest operating system to install."));
     306        m_pComboEdition->setToolTip(tr("Edition of guest operating system to install"));
    307307    if (m_pComboFamily)
    308         m_pComboFamily->setToolTip(tr("Guest operating system type."));
     308        m_pComboFamily->setToolTip(tr("Guest operating system type"));
    309309
    310310    if (m_pComboDistribution)
    311         m_pComboDistribution->setToolTip(tr("Guest operating system variant, if applicable."));
     311        m_pComboDistribution->setToolTip(tr("Guest operating system variant, if applicable"));
    312312    if (m_pComboType)
    313313        m_pComboType->setToolTip(tr("Guest operating system version to install"));
     
    315315    if (m_pSelectorImage)
    316316        m_pSelectorImage->setToolTip(tr("ISO image to be attached to the "
    317                                         "virtual machine and possibly used in unattended install."));
     317                                        "virtual machine and possibly used in unattended install"));
    318318}
    319319
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.cpp

    r108113 r108163  
    118118{
    119119    if (m_pHostnameLabel)
    120         m_pHostnameLabel->setText(tr("Host Na&me:"));
    121     if (m_pHostnameLineEdit)
    122         m_pHostnameLineEdit->setToolTip(tr("Host name to be assigned to the virtual machine."));
     120        m_pHostnameLabel->setText(tr("Host Na&me"));
     121    if (m_pHostnameLineEdit)
     122        m_pHostnameLineEdit->setToolTip(tr("Host name to be assigned to the virtual machine"));
    123123    if (m_pDomainNameLabel)
    124         m_pDomainNameLabel->setText(tr("&Domain Name:"));
    125     if (m_pDomainNameLineEdit)
    126         m_pDomainNameLineEdit->setToolTip(tr("Doamin name to be assigned to the virtual machine."));
     124        m_pDomainNameLabel->setText(tr("&Domain Name"));
     125    if (m_pDomainNameLineEdit)
     126        m_pDomainNameLineEdit->setToolTip(tr("Doamin name to be assigned to the virtual machine"));
    127127    if (m_pProductKeyLabel)
    128         m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key:"));
     128        m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key"));
    129129    if (m_pProductKeyLineEdit)
    130         m_pProductKeyLineEdit->setToolTip(UIWizardNewVM::tr("The product key."));
     130        m_pProductKeyLineEdit->setToolTip(UIWizardNewVM::tr("The product key"));
    131131
    132132    if (m_pStartHeadlessCheckBox)
    133133    {
    134134        m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background"));
    135         m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("Start the virtusl machine without a GUI."));
     135        m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("Start the virtual machine without a GUI"));
    136136    }
    137137}
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIUserNamePasswordEditor.cpp

    r108113 r108163  
    280280    QString strUsername = tr("U&ser Name");
    281281    if (m_pUserNameLabel)
    282         m_pUserNameLabel->setText(QString("%1%2").arg(strUsername).arg(":"));
     282        m_pUserNameLabel->setText(strUsername);
    283283
    284284    if (m_pPasswordLabel)
    285         m_pPasswordLabel->setText(QString("%1%2").arg(strPassword).arg(":"));
     285        m_pPasswordLabel->setText(strPassword);
    286286
    287287    if (m_pPasswordRepeatLabel)
    288         m_pPasswordRepeatLabel->setText(QString("%1%2").arg(strRepeatPassword).arg(":"));
     288        m_pPasswordRepeatLabel->setText(strRepeatPassword);
    289289
    290290    if (m_fShowPlaceholderText)
     
    307307    }
    308308    if(m_pUserNameLineEdit)
    309         m_pUserNameLineEdit->setToolTip(tr("User name for the guest operating system."));
     309        m_pUserNameLineEdit->setToolTip(tr("User name for the guest operating system"));
    310310    if (m_pPasswordLineEdit)
    311         m_pPasswordLineEdit->setToolTip(tr("Password for the guest operating system user account."));
     311        m_pPasswordLineEdit->setToolTip(tr("Password for the guest operating system user account"));
    312312    if (m_pPasswordRepeatLineEdit)
    313         m_pPasswordRepeatLineEdit->setToolTip(tr("Password must match."));
     313        m_pPasswordRepeatLineEdit->setToolTip(tr("Password must match"));
    314314    m_strPasswordError = tr("Invalid password pair");
    315315}
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardNewVMEditors.cpp

    r108162 r108163  
    175175{
    176176    if (m_pGAISOFilePathSelector)
    177         m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("Selects an installation medium (ISO file) for the Guest Additions."));
     177        m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("The ISO file to install the VirtualBox Guest Additions"));
    178178    if (m_pGAISOPathLabel)
    179         m_pGAISOPathLabel->setText(UIWizardNewVM::tr("Guest &Additions ISO:"));
     179        m_pGAISOPathLabel->setText(UIWizardNewVM::tr("Guest &Additions ISO Image:"));
    180180    setTitle(UIWizardNewVM::tr("Install Gu&est Additions"));
    181     setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install."));
     181    setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install"));
    182182}
    183183
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp

    r108162 r108163  
    575575    {
    576576        m_pUnattendedCheckBox->setText(UIWizardNewVM::tr("&Proceed with Unattended Installation"));
    577         m_pUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("When checked, the unattended install is enabled."));
     577        m_pUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("The ISO is attached to the VM, so you can install the OS manually"));
    578578    }
    579579
Note: See TracChangeset for help on using the changeset viewer.

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