Changeset 105829 in vbox for trunk/src/VBox
- Timestamp:
- Aug 22, 2024 5:43:57 PM (3 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMModePage.cpp
r103957 r105829 73 73 const QString strGeneral = UIWizardCloneVM::tr("<p>Please choose which parts of the snapshot tree " 74 74 "should be cloned with the machine.</p>"); 75 const QString strOpt1 = UIWizardCloneVM::tr("<p>If you choose <b>Current machine state</b>, "75 const QString strOpt1 = UIWizardCloneVM::tr("<p>If you choose <b>Current Machine State</b>, " 76 76 "the new machine will reflect the current state " 77 77 "of the original machine and will have no snapshots.</p>"); 78 const QString strOpt2 = UIWizardCloneVM::tr("<p>If you choose <b>Current snapshot tree branch</b>, "78 const QString strOpt2 = UIWizardCloneVM::tr("<p>If you choose <b>Current Snapshot Tree Branch</b>, " 79 79 "the new machine will reflect the current state " 80 80 "of the original machine and will have matching snapshots " -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMTypePage.cpp
r103957 r105829 80 80 /* Translate widgets: */ 81 81 QString strLabel = UIWizardCloneVM::tr("<p>Please choose the type of clone you wish to create.</p>" 82 "<p>If you choose <b>Full clone</b>, "82 "<p>If you choose <b>Full Clone</b>, " 83 83 "an exact copy (including all virtual hard disk files) " 84 84 "of the original virtual machine will be created.</p>" 85 "<p>If you choose <b>Linked clone</b>, "85 "<p>If you choose <b>Linked Clone</b>, " 86 86 "a new machine will be created, but the virtual hard disk files " 87 87 "will be tied to the virtual hard disk files of original machine " … … 89 89 "to a different computer without moving the original as well.</p>"); 90 90 if (m_fAdditionalInfo) 91 strLabel += UIWizardCloneVM::tr("<p>If you create a <b>Linked clone</b> then a new snapshot will be created "91 strLabel += UIWizardCloneVM::tr("<p>If you create a <b>Linked Clone</b> then a new snapshot will be created " 92 92 "in the original virtual machine as part of the cloning process.</p>"); 93 93 if (m_pLabel) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp
r105826 r105829 498 498 if (m_pFullCloneRadio) 499 499 { 500 m_pFullCloneRadio->setText(UIWizardCloneVM::tr("&Full clone"));500 m_pFullCloneRadio->setText(UIWizardCloneVM::tr("&Full Clone")); 501 501 m_pFullCloneRadio->setToolTip(UIWizardCloneVM::tr("When chosen, all the virtual disks of the source vm are also cloned.")); 502 502 } 503 503 if (m_pLinkedCloneRadio) 504 504 { 505 m_pLinkedCloneRadio->setText(UIWizardCloneVM::tr("&Linked clone"));505 m_pLinkedCloneRadio->setText(UIWizardCloneVM::tr("&Linked Clone")); 506 506 m_pLinkedCloneRadio->setToolTip(UIWizardCloneVM::tr("When chosen, the cloned vm will save space by sharing the source VM's disk images.")); 507 507 } … … 569 569 if (m_pMachineRadio) 570 570 { 571 m_pMachineRadio->setText(UIWizardCloneVM::tr("Current & machine state"));571 m_pMachineRadio->setText(UIWizardCloneVM::tr("Current &Machine State")); 572 572 m_pMachineRadio->setToolTip(UIWizardCloneVM::tr("When chosen, only the current state of the source vm is cloned.")); 573 573 } 574 574 if (m_pMachineAndChildsRadio) 575 m_pMachineAndChildsRadio->setText(UIWizardCloneVM::tr("Current & snapshot tree branch"));575 m_pMachineAndChildsRadio->setText(UIWizardCloneVM::tr("Current &Snapshot Tree Branch")); 576 576 if (m_pAllRadio) 577 577 {
Note:
See TracChangeset
for help on using the changeset viewer.