Changeset 96426 in vbox
- Timestamp:
- Aug 23, 2022 7:14:51 AM (2 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/activity/vmactivity/UIVMActivityMonitor.cpp
r96407 r96426 1212 1212 arg(QDateTime::currentDateTime().toString("dd-MM-yyyy_hh-mm-ss")); 1213 1213 QString strFileName = QIFileDialog::getSaveFileName(strStartFileName,"",this, 1214 QString("%1 \"%2\"").1215 arg(QApplication::translate("UIVMInformationDialog", "Export activity data of the machine ")).1216 arg(m_comMachine.GetName()));1214 QString("%1 \"%2\"") 1215 .arg(QApplication::translate("UIVMInformationDialog", "Export activity data of the machine")) 1216 .arg(m_comMachine.GetName())); 1217 1217 QFile dataFile(strFileName); 1218 1218 if (dataFile.open(QFile::WriteOnly | QFile::Truncate)) -
trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.cpp
r96407 r96426 1103 1103 "<nobr><b>%2</b></nobr>.</p>") 1104 1104 .arg(strMachineName).arg(comMachine.GetLogFolder())); 1105 createLogPage( tr("NoLogFile"), strMachineName, uMachineId, -1 /* iLogFileId */, strDummyTabText, true);1105 createLogPage(QString("NoLogFile"), strMachineName, uMachineId, -1 /* iLogFileId */, strDummyTabText, true); 1106 1106 } 1107 1107 } -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSearchWidget.cpp
r96407 r96426 193 193 } 194 194 if (m_pSearchTermLineEdit) 195 m_pSearchTermLineEdit->setToolTip(tr("Enter the search term and press Return"));195 m_pSearchTermLineEdit->setToolTip(tr("Enter the search term and press Enter/Return")); 196 196 if (m_pShowPreviousMatchButton) 197 197 m_pShowPreviousMatchButton->setToolTip(tr("Show the previous item matching the search term")); -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSelector.cpp
r96407 r96426 185 185 { 186 186 m_pChooseButton->setText(tr("C&hoose")); 187 m_pChooseButton->setToolTip(tr("Attach edthe selected medium to the drive"));187 m_pChooseButton->setToolTip(tr("Attach the selected medium to the drive")); 188 188 } 189 189 -
trunk/src/VBox/Frontends/VirtualBox/src/networkmanager/UINetworkManager.cpp
r96407 r96426 444 444 #endif /* !VBOX_WS_MAC */ 445 445 m_pTreeWidgetHostNetwork->setHeaderLabels(fields); 446 m_pTreeWidgetHostNetwork->setWhatsThis(UINetworkManager::tr("Registered host networks"));446 m_pTreeWidgetHostNetwork->setWhatsThis(UINetworkManager::tr("Registered host-only networks")); 447 447 } 448 448 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINameAndSystemEditor.cpp
r96407 r96426 348 348 349 349 if (m_pEditorName) 350 m_pEditorName->setToolTip(tr("Holds the name for newvirtual machine."));350 m_pEditorName->setToolTip(tr("Holds the name for virtual machine.")); 351 351 if (m_pSelectorPath) 352 m_pSelectorPath->setToolTip(tr("Selects the folder hosting newvirtual machine."));352 m_pSelectorPath->setToolTip(tr("Selects the folder hosting virtual machine.")); 353 353 if (m_pComboFamily) 354 354 m_pComboFamily->setToolTip(tr("Selects the operating system family that " … … 359 359 "(called a guest operating system).")); 360 360 if (m_pSelectorImage) 361 m_pSelectorImage->setToolTip(tr("Selects an ISO image to be attached to the new"361 m_pSelectorImage->setToolTip(tr("Selects an ISO image to be attached to the " 362 362 "virtual machine or used in unattended install.")); 363 363 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageSource.cpp
r96407 r96426 403 403 404 404 /* Translate description label: */ 405 m_pLabelDescription->setText(UIWizardAddCloudVM::tr(" <p>Please choose one of cloud service profiles you have registered to "405 m_pLabelDescription->setText(UIWizardAddCloudVM::tr("Please choose one of cloud service profiles you have registered to " 406 406 "add virtual machine from. Existing instance list will be " 407 407 "updated. To continue, select at least one instance to add virtual " 408 "machine on the basis of it. </p>"));408 "machine on the basis of it.")); 409 409 410 410 /* Translate profile stuff: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.cpp
r96407 r96426 73 73 if (m_pHostnameLineEdit) 74 74 m_pHostnameLineEdit->mark(!m_pHostnameLineEdit->hasAcceptableInput(), 75 tr("Hostname should be at least 2 character long. Allowed characters are alphanumerics, \"-\" and \".\"")); 75 tr("Hostname should be at least 2 character long. " 76 "Allowed characters are alphanumerics, \"-\" and \".\"")); 76 77 if (m_pDomainNameLineEdit) 77 78 m_pDomainNameLineEdit->mark(!m_pDomainNameLineEdit->hasAcceptableInput(), 78 tr("Domain name should be at least 2 character long. Allowed characters are alphanumerics, \"-\" and \".\"")); 79 tr("Domain name should be at least 2 character long. " 80 "Allowed characters are alphanumerics, \"-\" and \".\"")); 79 81 } 80 82 … … 184 186 { 185 187 m_pHostnameLineEdit->mark(!m_pHostnameLineEdit->hasAcceptableInput(), 186 tr("Hostname should be a string of length 2. Allowed characters are alphanumerics, '-', and '.'" )); 188 tr("Hostname should be at least 2 character long. " 189 "Allowed characters are alphanumerics, \"-\" and \".\"")); 187 190 emit sigHostnameDomainNameChanged(hostnameDomainName(), isComplete()); 188 191 } … … 191 194 { 192 195 m_pDomainNameLineEdit->mark(!m_pDomainNameLineEdit->hasAcceptableInput(), 193 tr("Domain name should be a string of length 2. Allowed characters are alphanumerics, '-', and '.'" ));194 196 tr("Domain name should be at least 2 character long. " 197 "Allowed characters are alphanumerics, \"-\" and \".\"")); 195 198 emit sigHostnameDomainNameChanged(hostnameDomainName(), isComplete()); 196 199 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardCloneVMEditors.cpp
r96407 r96426 368 368 if (m_pKeepDiskNamesCheckBox) 369 369 { 370 m_pKeepDiskNamesCheckBox->setToolTip(UIWizardCloneVM::tr(" Enables keeping the disk namesduring cloning."));370 m_pKeepDiskNamesCheckBox->setToolTip(UIWizardCloneVM::tr("When checked, disk names will be preserved during cloning.")); 371 371 m_pKeepDiskNamesCheckBox->setText(UIWizardCloneVM::tr("Keep &Disk Names")); 372 372 } 373 373 if (m_pKeepHWUUIDsCheckBox) 374 374 { 375 m_pKeepHWUUIDsCheckBox->setToolTip(UIWizardCloneVM::tr(" Enables keeping hardware UUIDsduring cloning."));375 m_pKeepHWUUIDsCheckBox->setToolTip(UIWizardCloneVM::tr("When checked, hardware UUIDs will be preserved during cloning.")); 376 376 m_pKeepHWUUIDsCheckBox->setText(UIWizardCloneVM::tr("Keep Hard&ware UUIDs")); 377 377 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardNewVMEditors.cpp
r96407 r96426 173 173 m_pGAISOPathLabel->setText(UIWizardNewVM::tr("GA I&nstallation ISO:")); 174 174 setTitle(UIWizardNewVM::tr("Gu&est Additions")); 175 setToolTip(UIWizardNewVM::tr(" Enables installation of the guest additionsafter the guest OS install."));175 setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install.")); 176 176 } 177 177 … … 279 279 { 280 280 m_pStartHeadlessCheckBox->setText(UIWizardNewVM::tr("&Install in Background")); 281 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr(" Enables headless boot (with no GUI) of the newly created virtual machine"282 " for the unattended guest OS install."));281 m_pStartHeadlessCheckBox->setToolTip(UIWizardNewVM::tr("When checked, headless boot (with no GUI) will be enabled for " 282 "unattended guest OS installation of newly created virtual machine.")); 283 283 } 284 284 … … 420 420 { 421 421 m_pEFICheckBox->setText(UIWizardNewVM::tr("&Enable EFI (special OSes only)")); 422 m_pEFICheckBox->setToolTip(UIWizardNewVM::tr("Enables Extended Firmware Interface (EFI), which is required to boot certain " 423 "guest OSes. Non-EFI aware OSes will not be able to boot if this option is activated.")); 422 m_pEFICheckBox->setToolTip(UIWizardNewVM::tr("When checked, the guest will support the Extended Firmware Interface (EFI), " 423 "which is required to boot certain guest OSes. Non-EFI aware OSes will not " 424 "be able to boot if this option is activated.")); 424 425 } 425 426 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageFormat.cpp
r96407 r96426 892 892 if (wizard()->isFormatCloudOne()) 893 893 m_pLabelSettings->setText(UIWizardExportApp:: 894 tr(" <p>Please choose one of cloud service profiles you have registered to export virtual "894 tr("Please choose one of cloud service profiles you have registered to export virtual " 895 895 "machines to. It will be used to establish network connection required to upload your " 896 "virtual machine files to a remote cloud facility. </p>"));896 "virtual machine files to a remote cloud facility.")); 897 897 else 898 898 m_pLabelSettings->setText(UIWizardExportApp:: 899 tr(" <p>Please choose a filename to export the virtual appliance to. Besides that you can "899 tr("Please choose a filename to export the virtual appliance to. Besides that you can " 900 900 "specify a certain amount of options which affects the size and content of resulting " 901 "archive. </p>"));901 "archive.")); 902 902 903 903 /* Translate file selector: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
r96407 r96426 411 411 { 412 412 m_pCheckboxImportHDsAsVDI->setText(UIWizardImportApp::tr("&Import hard drives as VDI")); 413 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("Import all the hard drives that belong to this appliance in VDI format.")); 413 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("When checked, all the hard drives that belong to this " 414 "appliance will be imported in VDI format.")); 414 415 } 415 416 /* Translate file selector's tooltip: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSettings.cpp
r96407 r96426 482 482 { 483 483 m_pCheckboxImportHDsAsVDI->setText(UIWizardImportApp::tr("&Import hard drives as VDI")); 484 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("Import all the hard drives that belong to this appliance in VDI format.")); 484 m_pCheckboxImportHDsAsVDI->setToolTip(UIWizardImportApp::tr("When checked, all the hard drives that belong to this " 485 "appliance will be imported in VDI format.")); 485 486 } 486 487 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSource.cpp
r96407 r96426 634 634 if (wizard()->isSourceCloudOne()) 635 635 m_pLabelDescription->setText(UIWizardImportApp:: 636 tr(" <p>Please choose one of cloud service profiles you have registered to import virtual "636 tr("Please choose one of cloud service profiles you have registered to import virtual " 637 637 "machine from. Corresponding machines list will be updated. To continue, " 638 "select one of machines to import below. </p>"));638 "select one of machines to import below.")); 639 639 else 640 640 m_pLabelDescription->setText(UIWizardImportApp:: 641 tr(" <p>Please choose a file to import the virtual appliance from. VirtualBox currently "641 tr("Please choose a file to import the virtual appliance from. VirtualBox currently " 642 642 "supports importing appliances saved in the Open Virtualization Format (OVF). " 643 "To continue, select the file to import below. </p>"));643 "To continue, select the file to import below.")); 644 644 } 645 645 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageSource.cpp
r96407 r96426 467 467 468 468 /* Translate description label: */ 469 m_pLabelDescription->setText(UIWizardNewCloudVM::tr(" <p>Please choose one of cloud service profiles you have registered to "469 m_pLabelDescription->setText(UIWizardNewCloudVM::tr("Please choose one of cloud service profiles you have registered to " 470 470 "create virtual machine for. Existing images list will be " 471 471 "updated. To continue, select one of images to create virtual " 472 "machine on the basis of it. </p>"));472 "machine on the basis of it.")); 473 473 474 474 /* Translate profile stuff: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMDiskPage.cpp
r96407 r96426 215 215 216 216 if (m_pLabel) 217 m_pLabel->setText(UIWizardNewVM::tr(" <p>If you wish you can add a virtual hard disk to the new machine. "217 m_pLabel->setText(UIWizardNewVM::tr("If you wish you can add a virtual hard disk to the new machine. " 218 218 "You can either create a new hard disk file or select an existing one. " 219 "Alternatively you can create a virtual machine without a virtual hard disk. </p>"));219 "Alternatively you can create a virtual machine without a virtual hard disk.")); 220 220 221 221 if (m_pDiskEmpty) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMHardwarePage.cpp
r96407 r96426 80 80 81 81 if (m_pLabel) 82 m_pLabel->setText(UIWizardNewVM::tr(" <p>You can modify virtual machine's hardware by changing amount of RAM and "83 "virtual CPU count. Enabling EFI is also possible. </p>"));82 m_pLabel->setText(UIWizardNewVM::tr("You can modify virtual machine's hardware by changing amount of RAM and " 83 "virtual CPU count. Enabling EFI is also possible.")); 84 84 } 85 85 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMUnattendedPage.cpp
r96407 r96426 113 113 setTitle(UIWizardNewVM::tr("Unattended Guest OS Install Setup")); 114 114 if (m_pLabel) 115 m_pLabel->setText(UIWizardNewVM::tr(" <p>You can configure the unattended guest OS install by modifying username, password, and"116 " hostname. Additionally you can enable guest additions install. "117 "For Microsoft Windows guests it is possible to provide a product key. </p>"));115 m_pLabel->setText(UIWizardNewVM::tr("You can configure the unattended guest OS install by modifying username, password, " 116 "and hostname. Additionally you can enable guest additions install. " 117 "For Microsoft Windows guests it is possible to provide a product key.")); 118 118 if (m_pUserNamePasswordGroupBox) 119 119 m_pUserNamePasswordGroupBox->setTitle(UIWizardNewVM::tr("Username and Password"));
Note:
See TracChangeset
for help on using the changeset viewer.