VirtualBox

Changeset 105826 in vbox


Ignore:
Timestamp:
Aug 22, 2024 5:09:13 PM (5 weeks ago)
Author:
vboxsync
Message:

FE/Qt: A bit of NLS fixes for wizards.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/wizards
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp

    r104631 r105826  
    8585            vbox.ComposeMachineFilename(m_pNameLineEdit->text(), strMachineGroup, QString(), m_pPathSelector->path());
    8686        fExists = QDir(QDir::toNativeSeparators(QFileInfo(strCloneFilePath).absolutePath())).exists();
    87         m_pNameLineEdit->mark(fExists, UIWizardCloneVM::tr("The clone name is not unique"), UIWizardCloneVM::tr("The clone name is valid"));
     87        m_pNameLineEdit->mark(fExists, UIWizardCloneVM::tr("Clone name is not unique"), UIWizardCloneVM::tr("Clone name is valid"));
    8888    }
    8989
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardDiskEditors.cpp

    r105603 r105826  
    143143
    144144    strChosenFilePath = QIFileDialog::getSaveFileName(folder.absoluteFilePath(strFileName),
    145                                                               strBackendsList, pParent,
    146                                                               QApplication::translate("UICommon", "Please choose a location for new virtual hard disk file"));
     145                                                      strBackendsList, pParent,
     146                                                      UIMediumSizeAndPathGroupBox::tr("Specify a location for new "
     147                                                                                      "virtual hard disk file..."));
    147148    return strChosenFilePath;
    148149}
     
    222223    if (m_pSplitBox)
    223224    {
    224         m_pSplitBox->setText(tr("&Split into 2GB parts"));
     225        m_pSplitBox->setText(tr("&Split Into 2GB Parts"));
    225226        m_pSplitBox->setToolTip(tr("When checked, the virtual hard disk file is split into 2GB parts."));
    226227    }
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp

    r105561 r105826  
    268268        setWindowTitle(tr("Create Virtual Hard Disk"));
    269269    else
    270         setWindowTitle(tr("Copy Virtual Disk"));
     270        setWindowTitle(tr("Copy Virtual Hard Disk"));
    271271}
    272272
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMSummaryPage.cpp

    r105552 r105826  
    181181{
    182182    return   m_data.isValid()
    183            ? tr("%1: %2", "col.1 text: col.2 text").arg(m_strText, m_data.toString())
    184            : tr("%1", "col.1 text").arg(m_strText);
     183           ? UIWizardNewVMSummaryPage::tr("%1: %2", "col.1 text: col.2 text").arg(m_strText, m_data.toString())
     184           : UIWizardNewVMSummaryPage::tr("%1", "col.1 text").arg(m_strText);
    185185}
    186186
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