Changeset 95949 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 29, 2022 3:49:38 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDExpertPage.cpp
r93673 r95949 150 150 QString strSourceDiskPath = QDir::toNativeSeparators(QFileInfo(pWizard->sourceDiskFilePath()).absolutePath()); 151 151 /* Disk name without the format extension: */ 152 QString strDiskName = QString("%1_%2").arg(QFileInfo(pWizard->sourceDiskName()).completeBaseName()).arg( tr("copy"));152 QString strDiskName = QString("%1_%2").arg(QFileInfo(pWizard->sourceDiskName()).completeBaseName()).arg(UIWizardCloneVD::tr("copy")); 153 153 QString strMediumFilePath = 154 154 UIWizardDiskEditors::constructMediumFilePath(UIWizardDiskEditors::appendExtension(strDiskName, -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPathSizePage.cpp
r93115 r95949 76 76 QString strSourceDiskPath = QDir::toNativeSeparators(QFileInfo(pWizard->sourceDiskFilePath()).absolutePath()); 77 77 /* Disk name without the format extension: */ 78 QString strDiskName = QString("%1_%2").arg(QFileInfo(pWizard->sourceDiskName()).completeBaseName()).arg( tr("copy"));78 QString strDiskName = QString("%1_%2").arg(QFileInfo(pWizard->sourceDiskName()).completeBaseName()).arg(UIWizardCloneVD::tr("copy")); 79 79 80 80 QString strMediumFilePath = -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
r95490 r95949 388 388 /* Translate path selector label: */ 389 389 if (m_pLabelImportFilePath) 390 m_pLabelImportFilePath->setText( tr("&Machine Base Folder:"));390 m_pLabelImportFilePath->setText(UIWizardImportApp::tr("&Machine Base Folder:")); 391 391 392 392 /* Translate MAC import policy label: */ 393 393 if (m_pLabelMACImportPolicy) 394 m_pLabelMACImportPolicy->setText( tr("MAC Address &Policy:"));394 m_pLabelMACImportPolicy->setText(UIWizardImportApp::tr("MAC Address &Policy:")); 395 395 396 396 /* Translate additional options label: */ 397 397 if (m_pLabelAdditionalOptions) 398 m_pLabelAdditionalOptions->setText( tr("Additional Options:"));398 m_pLabelAdditionalOptions->setText(UIWizardImportApp::tr("Additional Options:")); 399 399 /* Translate additional option check-box: */ 400 400 if (m_pCheckboxImportHDsAsVDI) 401 401 { 402 m_pCheckboxImportHDsAsVDI->setText( tr("&Import hard drives as VDI"));403 m_pCheckboxImportHDsAsVDI->setToolTip( tr("Import all the hard drives that belong to this appliance in VDI format."));402 m_pCheckboxImportHDsAsVDI->setText(UIWizardImportApp::tr("&Import hard drives as VDI")); 403 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("Import all the hard drives that belong to this appliance in VDI format.")); 404 404 } 405 405 /* Translate file selector's tooltip: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSettings.cpp
r93115 r95949 459 459 /* Translate path selector label: */ 460 460 if (m_pLabelImportFilePath) 461 m_pLabelImportFilePath->setText( tr("&Machine Base Folder:"));461 m_pLabelImportFilePath->setText(UIWizardImportApp::tr("&Machine Base Folder:")); 462 462 463 463 /* Translate MAC import policy label: */ 464 464 if (m_pLabelMACImportPolicy) 465 m_pLabelMACImportPolicy->setText( tr("MAC Address &Policy:"));465 m_pLabelMACImportPolicy->setText(UIWizardImportApp::tr("MAC Address &Policy:")); 466 466 467 467 /* Translate additional options label: */ 468 468 if (m_pLabelAdditionalOptions) 469 m_pLabelAdditionalOptions->setText( tr("Additional Options:"));469 m_pLabelAdditionalOptions->setText(UIWizardImportApp::tr("Additional Options:")); 470 470 /* Translate additional option check-box: */ 471 471 if (m_pCheckboxImportHDsAsVDI) 472 472 { 473 m_pCheckboxImportHDsAsVDI->setText( tr("&Import hard drives as VDI"));474 m_pCheckboxImportHDsAsVDI->setToolTip( tr("Import all the hard drives that belong to this appliance in VDI format."));473 m_pCheckboxImportHDsAsVDI->setText(UIWizardImportApp::tr("&Import hard drives as VDI")); 474 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("Import all the hard drives that belong to this appliance in VDI format.")); 475 475 } 476 476
Note:
See TracChangeset
for help on using the changeset viewer.