Changeset 94068 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 3, 2022 9:10:37 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp
r93115 r94068 477 477 { 478 478 if (m_pFullCloneRadio) 479 { 479 480 m_pFullCloneRadio->setText(tr("&Full clone")); 481 m_pFullCloneRadio->setToolTip(tr("When chosen, all the virtual disks of the source vm are also cloned.")); 482 } 480 483 if (m_pLinkedCloneRadio) 484 { 481 485 m_pLinkedCloneRadio->setText(tr("&Linked clone")); 482 486 m_pLinkedCloneRadio->setToolTip(tr("When chosen, the cloned vm will save space by sharing the source VM's disk images.")); 487 } 483 488 } 484 489 … … 542 547 { 543 548 if (m_pMachineRadio) 549 { 544 550 m_pMachineRadio->setText(tr("Current &machine state")); 551 m_pMachineRadio->setToolTip(tr("When chosen, only the current state of the source vm is cloned.")); 552 } 545 553 if (m_pMachineAndChildsRadio) 546 554 m_pMachineAndChildsRadio->setText(tr("Current &snapshot tree branch")); 547 555 if (m_pAllRadio) 556 { 548 557 m_pAllRadio->setText(tr("&Everything")); 558 m_pAllRadio->setToolTip(tr("When chosen, all the saved states of the source vm are also cloned.")); 559 } 549 560 } 550 561 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardDiskEditors.cpp
r94064 r94068 203 203 { 204 204 m_pFixedCheckBox->setText(tr("Pre-allocate &Full Size")); 205 m_pFixedCheckBox->setToolTip(tr(" Allocates the virtual disk image during VM creation."));205 m_pFixedCheckBox->setToolTip(tr("When checked, the virtual disk image is allocated with its full size during VM creation time")); 206 206 } 207 207 if (m_pSplitBox) 208 208 { 209 209 m_pSplitBox->setText(tr("&Split into 2GB parts")); 210 m_pSplitBox->setToolTip(tr(" Splits hard disk file into 2GB parts in the host storage."));210 m_pSplitBox->setToolTip(tr("When checked, the virtual hard disk file is split into 2GB parts.")); 211 211 } 212 212 }
Note:
See TracChangeset
for help on using the changeset viewer.