Changeset 37912 in vbox
- Timestamp:
- Jul 13, 2011 11:21:36 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72816
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newhd/UINewHDWizard.cpp
r37849 r37912 298 298 /* Translate 'welcome' page: */ 299 299 setTitle(UINewHDWizard::tr("Welcome to the virtual disk copying wizard")); 300 m_pLabel->setText( "<p>This wizard will help you to copy a virtual disk.</p>");300 m_pLabel->setText(UINewHDWizard::tr("<p>This wizard will help you to copy a virtual disk.</p>")); 301 301 302 302 /* Append page text with common part: */ … … 304 304 305 305 /* Append page text for source virtual disk part: */ 306 m_pLabel->setText(m_pLabel->text() + QString("Please select the virtual disk which you would like to "307 "copy if it is not already selected. You can either choose one "308 "from the list or use the folder icon beside the list to "309 "select a virtual disk file."));306 m_pLabel->setText(m_pLabel->text() + UINewHDWizard::tr("Please select the virtual disk which you would like to " 307 "copy if it is not already selected. You can either choose one " 308 "from the list or use the folder icon beside the list to " 309 "select a virtual disk file.")); 310 310 } 311 311 … … 401 401 case UINewHDWizardType_Creating: 402 402 setTitle(UINewHDWizard::tr("Welcome to the virtual disk creation wizard")); 403 m_pLabel->setText( "<p>This wizard will help you to create a new virtual disk for your virtual machine.</p>");403 m_pLabel->setText(UINewHDWizard::tr("<p>This wizard will help you to create a new virtual disk for your virtual machine.</p>")); 404 404 m_pLabel->setText(m_pLabel->text() + QString("<p>%1</p>").arg(standardHelpText())); 405 m_pLabel->setText(m_pLabel->text() + QString("<p>Please choose the type of file that you would like to use for the new virtual disk. "406 "If you do not need to use it with other virtualization software you can leave this setting unchanged.</p>"));405 m_pLabel->setText(m_pLabel->text() + UINewHDWizard::tr("<p>Please choose the type of file that you would like to use for the new virtual disk. " 406 "If you do not need to use it with other virtualization software you can leave this setting unchanged.</p>")); 407 407 break; 408 408 case UINewHDWizardType_Copying: 409 409 setTitle(UINewHDWizard::tr("Virtual disk file type")); 410 m_pLabel->setText( "Please choose the type of file that you would like to use for the new virtual disk. "411 "If you do not need to use it with other virtualization software you can leave this setting unchanged.");410 m_pLabel->setText(UINewHDWizard::tr("Please choose the type of file that you would like to use for the new virtual disk. " 411 "If you do not need to use it with other virtualization software you can leave this setting unchanged.")); 412 412 break; 413 413 default: … … 531 531 /* Translate 'variant' page: */ 532 532 setTitle(UINewHDWizard::tr("Virtual disk storage details")); 533 m_pLabel->setText( "Please choose whether the new virtual disk file should be allocated as it is used or if it should be created fully allocated.");533 m_pLabel->setText(UINewHDWizard::tr("Please choose whether the new virtual disk file should be allocated as it is used or if it should be created fully allocated.")); 534 534 535 535 /* Translate other text: */ … … 685 685 m_strDefaultPath = QFileInfo(sourceHardDisk.GetLocation()).absolutePath(); 686 686 /* Default name: */ 687 m_strMediumName = tr("%1_copy", "copied virtual disk name").arg(QFileInfo(sourceHardDisk.GetLocation()).baseName());687 m_strMediumName = UINewHDWizard::tr("%1_copy", "copied virtual disk name").arg(QFileInfo(sourceHardDisk.GetLocation()).baseName()); 688 688 /* Initialize size: */ 689 689 m_uMediumSize = sourceHardDisk.GetLogicalSize();
Note:
See TracChangeset
for help on using the changeset viewer.