Changeset 108163 in vbox
- Timestamp:
- Feb 11, 2025 4:23:34 PM (10 days ago)
- svn:sync-xref-src-repo-rev:
- 167476
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIBaseMemoryEditor.cpp
r108162 r108163 304 304 m_pLabelMemory->setText(tr("Base &Memory")); 305 305 306 const QString strToolTip(tr("The amount of RAM that VirtualBox will allocate to the virtual machine every time it is started ."));306 const QString strToolTip(tr("The amount of RAM that VirtualBox will allocate to the virtual machine every time it is started")); 307 307 if (m_pSlider) 308 308 m_pSlider->setToolTip(strToolTip); … … 316 316 { 317 317 m_pLabelMemoryMin->setText(tr("%1 MB").arg(m_pSlider->minRAM())); 318 m_pLabelMemoryMin->setToolTip(tr("Minimum possible base memory size ."));318 m_pLabelMemoryMin->setToolTip(tr("Minimum possible base memory size")); 319 319 } 320 320 if (m_pLabelMemoryMax) 321 321 { 322 322 m_pLabelMemoryMax->setText(tr("%1 MB").arg(m_pSlider->maxRAM())); 323 m_pLabelMemoryMax->setToolTip(tr("Maximum possible base memory size ."));323 m_pLabelMemoryMax->setToolTip(tr("Maximum possible base memory size")); 324 324 } 325 325 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r108162 r108163 300 300 301 301 if (m_pEditorName) 302 m_pEditorName->setToolTip(tr("Descriptive name to uniquely identify the virtual machine ."));302 m_pEditorName->setToolTip(tr("Descriptive name to uniquely identify the virtual machine")); 303 303 if (m_pSelectorPath) 304 m_pSelectorPath->setToolTip(tr("Storage location for virtual machine files ."));304 m_pSelectorPath->setToolTip(tr("Storage location for virtual machine files")); 305 305 if (m_pComboEdition) 306 m_pComboEdition->setToolTip(tr("Edition of guest operating system to install ."));306 m_pComboEdition->setToolTip(tr("Edition of guest operating system to install")); 307 307 if (m_pComboFamily) 308 m_pComboFamily->setToolTip(tr("Guest operating system type ."));308 m_pComboFamily->setToolTip(tr("Guest operating system type")); 309 309 310 310 if (m_pComboDistribution) 311 m_pComboDistribution->setToolTip(tr("Guest operating system variant, if applicable ."));311 m_pComboDistribution->setToolTip(tr("Guest operating system variant, if applicable")); 312 312 if (m_pComboType) 313 313 m_pComboType->setToolTip(tr("Guest operating system version to install")); … … 315 315 if (m_pSelectorImage) 316 316 m_pSelectorImage->setToolTip(tr("ISO image to be attached to the " 317 "virtual machine and possibly used in unattended install ."));317 "virtual machine and possibly used in unattended install")); 318 318 } 319 319 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.cpp
r108113 r108163 118 118 { 119 119 if (m_pHostnameLabel) 120 m_pHostnameLabel->setText(tr("Host Na&me :"));121 if (m_pHostnameLineEdit) 122 m_pHostnameLineEdit->setToolTip(tr("Host name to be assigned to the virtual machine ."));120 m_pHostnameLabel->setText(tr("Host Na&me")); 121 if (m_pHostnameLineEdit) 122 m_pHostnameLineEdit->setToolTip(tr("Host name to be assigned to the virtual machine")); 123 123 if (m_pDomainNameLabel) 124 m_pDomainNameLabel->setText(tr("&Domain Name :"));125 if (m_pDomainNameLineEdit) 126 m_pDomainNameLineEdit->setToolTip(tr("Doamin name to be assigned to the virtual machine ."));124 m_pDomainNameLabel->setText(tr("&Domain Name")); 125 if (m_pDomainNameLineEdit) 126 m_pDomainNameLineEdit->setToolTip(tr("Doamin name to be assigned to the virtual machine")); 127 127 if (m_pProductKeyLabel) 128 m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key :"));128 m_pProductKeyLabel->setText(UIWizardNewVM::tr("&Product Key")); 129 129 if (m_pProductKeyLineEdit) 130 m_pProductKeyLineEdit->setToolTip(UIWizardNewVM::tr("The product key ."));130 m_pProductKeyLineEdit->setToolTip(UIWizardNewVM::tr("The product key")); 131 131 132 132 if (m_pStartHeadlessCheckBox) 133 133 { 134 134 m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background")); 135 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("Start the virtu sl machine without a GUI."));135 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("Start the virtual machine without a GUI")); 136 136 } 137 137 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIUserNamePasswordEditor.cpp
r108113 r108163 280 280 QString strUsername = tr("U&ser Name"); 281 281 if (m_pUserNameLabel) 282 m_pUserNameLabel->setText( QString("%1%2").arg(strUsername).arg(":"));282 m_pUserNameLabel->setText(strUsername); 283 283 284 284 if (m_pPasswordLabel) 285 m_pPasswordLabel->setText( QString("%1%2").arg(strPassword).arg(":"));285 m_pPasswordLabel->setText(strPassword); 286 286 287 287 if (m_pPasswordRepeatLabel) 288 m_pPasswordRepeatLabel->setText( QString("%1%2").arg(strRepeatPassword).arg(":"));288 m_pPasswordRepeatLabel->setText(strRepeatPassword); 289 289 290 290 if (m_fShowPlaceholderText) … … 307 307 } 308 308 if(m_pUserNameLineEdit) 309 m_pUserNameLineEdit->setToolTip(tr("User name for the guest operating system ."));309 m_pUserNameLineEdit->setToolTip(tr("User name for the guest operating system")); 310 310 if (m_pPasswordLineEdit) 311 m_pPasswordLineEdit->setToolTip(tr("Password for the guest operating system user account ."));311 m_pPasswordLineEdit->setToolTip(tr("Password for the guest operating system user account")); 312 312 if (m_pPasswordRepeatLineEdit) 313 m_pPasswordRepeatLineEdit->setToolTip(tr("Password must match ."));313 m_pPasswordRepeatLineEdit->setToolTip(tr("Password must match")); 314 314 m_strPasswordError = tr("Invalid password pair"); 315 315 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardNewVMEditors.cpp
r108162 r108163 175 175 { 176 176 if (m_pGAISOFilePathSelector) 177 m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr(" Selects an installation medium (ISO file) for the Guest Additions."));177 m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("The ISO file to install the VirtualBox Guest Additions")); 178 178 if (m_pGAISOPathLabel) 179 m_pGAISOPathLabel->setText(UIWizardNewVM::tr("Guest &Additions ISO :"));179 m_pGAISOPathLabel->setText(UIWizardNewVM::tr("Guest &Additions ISO Image:")); 180 180 setTitle(UIWizardNewVM::tr("Install Gu&est Additions")); 181 setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install ."));181 setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install")); 182 182 } 183 183 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp
r108162 r108163 575 575 { 576 576 m_pUnattendedCheckBox->setText(UIWizardNewVM::tr("&Proceed with Unattended Installation")); 577 m_pUnattendedCheckBox->setToolTip(UIWizardNewVM::tr(" When checked, the unattended install is enabled."));577 m_pUnattendedCheckBox->setToolTip(UIWizardNewVM::tr("The ISO is attached to the VM, so you can install the OS manually")); 578 578 } 579 579
Note:
See TracChangeset
for help on using the changeset viewer.