Changeset 91220 in vbox
- Timestamp:
- Sep 13, 2021 3:25:34 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIBaseMemoryEditor.cpp
r91218 r91220 282 282 m_pLabelMemoryMax->setText(tr("%1 MB").arg(m_pSlider->maxRAM())); 283 283 284 QString strToolTip(tr("Specif ythe amount of RAM the virtual machine will have"));284 QString strToolTip(tr("Specifies the amount of RAM the virtual machine will have")); 285 285 286 286 if (m_pSpinBox) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r91218 r91220 308 308 309 309 if (m_pPathSelector) 310 m_pPathSelector->setToolTip(tr("Select the folder hosting the virtual machine."));310 m_pPathSelector->setToolTip(tr("Selects the folder hosting the virtual machine.")); 311 311 if (m_pNameLineEdit) 312 m_pNameLineEdit->setToolTip(tr(" Enter aname for the new virtual machine."));312 m_pNameLineEdit->setToolTip(tr("Holds the name for the new virtual machine.")); 313 313 314 314 if (m_pComboFamily) … … 316 316 m_pComboFamily->setWhatsThis(tr("Select the operating system family that " 317 317 "you plan to install into this virtual machine.")); 318 m_pComboFamily->setToolTip(tr("Select the operating system family that "318 m_pComboFamily->setToolTip(tr("Selects the operating system family that " 319 319 "you plan to install into this virtual machine.")); 320 320 } … … 325 325 "you plan to install into this virtual machine " 326 326 "(called a guest operating system).")); 327 m_pComboType->setToolTip(tr("Select the operating system type that "327 m_pComboType->setToolTip(tr("Selects the operating system type that " 328 328 "you plan to install into this virtual machine " 329 329 "(called a guest operating system).")); 330 330 } 331 331 if (m_pImageSelector) 332 m_pImageSelector->setToolTip(tr("Select an ISO image to be attached to the new virtual machine or used in attended install."));332 m_pImageSelector->setToolTip(tr("Selects an ISO image to be attached to the new virtual machine or used in attended install.")); 333 333 } 334 334 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIVirtualCPUEditor.cpp
r91218 r91220 66 66 m_pLabelVCPUMax->setText(tr("%1 CPUs", "%1 is host cpu count * 2 for now").arg(m_uMaxVCPUCount)); 67 67 68 QString strToolTip(tr("Specif ythe number of virtual CPUs the virtual machine will have"));68 QString strToolTip(tr("Specifies the number of virtual CPUs the virtual machine will have")); 69 69 if (m_pSlider) 70 70 m_pSlider->setToolTip(strToolTip); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.cpp
r91218 r91220 116 116 m_pHostnameLabel->setText(tr("Hostna&me:")); 117 117 if (m_pHostnameLineEdit) 118 m_pHostnameLineEdit->setToolTip(tr(" Typethe hostname."));118 m_pHostnameLineEdit->setToolTip(tr("Holds the hostname.")); 119 119 if (m_pDomainNameLabel) 120 120 m_pDomainNameLabel->setText(tr("&Domain Name:")); 121 121 if (m_pDomainNameLineEdit) 122 m_pDomainNameLineEdit->setToolTip(tr(" Enterthe domain name."));122 m_pDomainNameLineEdit->setToolTip(tr("Holds the domain name.")); 123 123 } 124 124 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIUserNamePasswordEditor.cpp
r91218 r91220 335 335 } 336 336 if(m_pUserNameLineEdit) 337 m_pUserNameLineEdit->setToolTip(tr(" Enterusername."));337 m_pUserNameLineEdit->setToolTip(tr("Holds username.")); 338 338 if (m_pPasswordLineEdit) 339 m_pPasswordLineEdit->setToolTip(tr(" Enterpassword."));339 m_pPasswordLineEdit->setToolTip(tr("Holds password.")); 340 340 if (m_pPasswordRepeatLineEdit) 341 m_pPasswordRepeatLineEdit->setToolTip(tr(" Re-enterpassword."));341 m_pPasswordRepeatLineEdit->setToolTip(tr("Holds the repeated password.")); 342 342 m_strPasswordError = tr("Invalid password pair"); 343 343 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp
r91218 r91220 182 182 m_pPathLabel->setText(tr("&Path:")); 183 183 if (m_pNameLineEdit) 184 m_pNameLineEdit->setToolTip(" Entera name for the new virtual machine.");184 m_pNameLineEdit->setToolTip("Holds a name for the new virtual machine."); 185 185 if (m_pPathSelector) 186 m_pPathSelector->setToolTip("Specif yThe location of the new virtual machine in host's storage.");186 m_pPathSelector->setToolTip("Specifies The location of the new virtual machine in host's storage."); 187 187 } 188 188 … … 321 321 { 322 322 m_pMACComboBoxLabel->setText(tr("MAC Address P&olicy:")); 323 m_pMACComboBox->setToolTip(tr("Determine MAC address policy for clonning:"));323 m_pMACComboBox->setToolTip(tr("Determines MAC address policy for clonning:")); 324 324 for (int i = 0; i < m_pMACComboBox->count(); ++i) 325 325 { … … 354 354 if (m_pKeepDiskNamesCheckBox) 355 355 { 356 m_pKeepDiskNamesCheckBox->setToolTip(tr("Enable keeping the disk names during cloning."));356 m_pKeepDiskNamesCheckBox->setToolTip(tr("Enables keeping the disk names during cloning.")); 357 357 m_pKeepDiskNamesCheckBox->setText(tr("Keep &Disk Names")); 358 358 } 359 359 if (m_pKeepHWUUIDsCheckBox) 360 360 { 361 m_pKeepHWUUIDsCheckBox->setToolTip(tr("Enable keeping hardware UUIDs during cloning."));361 m_pKeepHWUUIDsCheckBox->setToolTip(tr("Enables keeping hardware UUIDs during cloning.")); 362 362 m_pKeepHWUUIDsCheckBox->setText(tr("Keep Hard&ware UUIDs")); 363 363 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardDiskEditors.cpp
r91218 r91220 344 344 { 345 345 m_pFixedCheckBox->setText(tr("Pre-allocate &Full Size")); 346 m_pFixedCheckBox->setToolTip(tr("<p>Allocate the virtual disk image during VM creation."));346 m_pFixedCheckBox->setToolTip(tr("<p>Allocates the virtual disk image during VM creation.")); 347 347 } 348 348 if (m_pSplitBox) 349 349 { 350 350 m_pSplitBox->setText(tr("&Split into 2GB parts")); 351 m_pSplitBox->setToolTip(tr("<p>Split hard disk file into 2GB parts in the host storage.</p>"));351 m_pSplitBox->setToolTip(tr("<p>Splits hard disk file into 2GB parts in the host storage.</p>")); 352 352 } 353 353 } … … 483 483 m_pLocationOpenButton->setIcon(UIIconPool::iconSet(":/select_file_16px.png", "select_file_disabled_16px.png")); 484 484 } 485 if (m_pLocationEditor) 486 m_pLocationEditor->setToolTip(tr("Holds the location of the virtual disk file.")); 487 if (m_pLocationOpenButton) 488 m_pLocationEditor->setToolTip(tr("Opens file selection dialog so that a location for the disk file can be selected.")); 485 489 pLocationLayout->addWidget(m_pLocationEditor); 486 490 pLocationLayout->addWidget(m_pLocationOpenButton); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardNewVMEditors.cpp
r91218 r91220 158 158 { 159 159 if (m_pGAISOFilePathSelector) 160 m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("Select an installation medium (ISO file) for the Guest Additions."));160 m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("Selects an installation medium (ISO file) for the Guest Additions.")); 161 161 if (m_pGAISOPathLabel) 162 162 m_pGAISOPathLabel->setText(UIWizardNewVM::tr("GA I&nstallation ISO:")); 163 163 setTitle(UIWizardNewVM::tr("Gu&est Additions")); 164 setToolTip(UIWizardNewVM::tr("<p>Enable installation of the guest additions "164 setToolTip(UIWizardNewVM::tr("<p>Enables installation of the guest additions " 165 165 "after the guest OS install.</p>")); 166 166 } … … 269 269 { 270 270 m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background")); 271 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("<p>Enable headless boot (with no GUI) of the newly created virtual machine "271 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("<p>Enables headless boot (with no GUI) of the newly created virtual machine " 272 272 "for the unattended guest OS install.</p>")); 273 273 } … … 284 284 } 285 285 if (m_pProductKeyLineEdit) 286 m_pProductKeyLineEdit->setToolTip(tr(" Enter aproduct key."));286 m_pProductKeyLineEdit->setToolTip(tr("Holds the product key.")); 287 287 } 288 288 … … 398 398 { 399 399 m_pEFICheckBox->setText(UIWizardNewVM::tr("&Enable EFI (special OSes only)")); 400 m_pEFICheckBox->setToolTip(UIWizardNewVM::tr("<p>Enable Extended Firmware Interface (EFI), which is required to boot certain "400 m_pEFICheckBox->setToolTip(UIWizardNewVM::tr("<p>Enables Extended Firmware Interface (EFI), which is required to boot certain " 401 401 "guest OSes. Non-EFI aware OSes will not be able to boot if this option is activated.</p>")); 402 402 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
r86687 r91220 509 509 /* Translate addtional stuff: */ 510 510 m_pAdditionalLabel->setText(UIWizardExportApp::tr("Additionally:")); 511 m_pManifestCheckbox->setToolTip(UIWizardExportApp::tr("Create a Manifest file for automatic data integrity checks on import."));511 m_pManifestCheckbox->setToolTip(UIWizardExportApp::tr("Creates a manifest file for automatic data integrity checks on import.")); 512 512 m_pManifestCheckbox->setText(UIWizardExportApp::tr("&Write Manifest file")); 513 m_pIncludeISOsCheckbox->setToolTip(UIWizardExportApp::tr("Include ISO image files into exported VM archive."));513 m_pIncludeISOsCheckbox->setToolTip(UIWizardExportApp::tr("Includes ISO image files into exported VM archive.")); 514 514 m_pIncludeISOsCheckbox->setText(UIWizardExportApp::tr("&Include ISO image files")); 515 515 516 516 /* Translate profile stuff: */ 517 517 m_pProfileLabel->setText(UIWizardExportApp::tr("&Profile:")); 518 m_pProfileToolButton->setToolTip(UIWizardExportApp::tr("Open Cloud Profile Manager..."));518 m_pProfileToolButton->setToolTip(UIWizardExportApp::tr("Opens Cloud Profile Manager...")); 519 519 520 520 /* Translate option label: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMDiskPage.cpp
r91218 r91220 216 216 m_pDiskExisting->setText(UIWizardNewVM::tr("U&se an Existing Virtual Hard Disk File")); 217 217 if (m_pDiskSelectionButton) 218 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Choose a Virtual Hard Fisk File..."));218 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Chooses a Virtual Hard Fisk File...")); 219 219 220 220 if (m_pMediumSizeEditorLabel) … … 224 224 { 225 225 m_pFixedCheckBox->setText(UIWizardNewVM::tr("Pre-allocate &Full Size")); 226 m_pFixedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Allocate the virtual disk image at VM creation time"));226 m_pFixedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Allocates the virtual disk image at VM creation time")); 227 227 } 228 228 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMExpertPage.cpp
r91218 r91220 188 188 { 189 189 m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("&Skip Unattended Installation")); 190 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Disable the unattended install and just mountthe ISO.</p>"));190 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Disables the unattended install and just mounts the ISO.</p>")); 191 191 } 192 192 … … 206 206 m_pDiskExisting->setText(UIWizardNewVM::tr("U&se an Existing Virtual Hard Disk File")); 207 207 if (m_pDiskSelectionButton) 208 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Choose a Virtual Hard Fisk File..."));208 m_pDiskSelectionButton->setToolTip(UIWizardNewVM::tr("Chooses a Virtual Hard Fisk File...")); 209 209 210 210 if (m_pNameAndSystemLayout && m_pNameAndSystemEditor) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp
r91218 r91220 401 401 { 402 402 m_pSkipUnattendedCheckBox->setText(UIWizardNewVM::tr("&Skip Unattended Installation")); 403 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Disable the unattended install and just mount the ISO.</p>"));403 m_pSkipUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("<p>Disables the unattended install and just mount the ISO.</p>")); 404 404 } 405 405
Note:
See TracChangeset
for help on using the changeset viewer.