Changeset 105553 in vbox
- Timestamp:
- Jul 31, 2024 5:51:33 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164224
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
r104597 r105553 759 759 { 760 760 setName(QApplication::translate("UIActionPool", "&Online Documentation...")); 761 setStatusTip(QApplication::translate("UIActionPool", "Open the browser and go to the VirtualBox user manual"));761 setStatusTip(QApplication::translate("UIActionPool", "Open the browser and go to the VirtualBox user guide")); 762 762 } 763 763 }; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r104358 r105553 1603 1603 { 1604 1604 return questionBinary(0, MessageType_Question, 1605 tr("<p>Could not find the <b>VirtualBox User Manual</b> <nobr><b>%1</b>.</nobr></p>"1605 tr("<p>Could not find the <b>VirtualBox User Guide</b> <nobr><b>%1</b>.</nobr></p>" 1606 1606 "<p>Do you wish to download this file from the Internet?</p>") 1607 1607 .arg(strMissedLocation), … … 1613 1613 { 1614 1614 return questionBinary(windowManager().mainWindowShown(), MessageType_Question, 1615 tr("<p>Are you sure you want to download the <b>VirtualBox User Manual</b> "1615 tr("<p>Are you sure you want to download the <b>VirtualBox User Guide</b> " 1616 1616 "from <nobr><a href=\"%1\">%1</a></nobr> (size %2 bytes)?</p>") 1617 1617 .arg(strURL, QLocale(UITranslator::languageId()).toString(uSize)), … … 1623 1623 { 1624 1624 alert(windowManager().mainWindowShown(), MessageType_Error, 1625 tr("<p>The VirtualBox User Manualhas been successfully downloaded "1625 tr("<p>The VirtualBox User Guide has been successfully downloaded " 1626 1626 "from <nobr><a href=\"%1\">%1</a></nobr> " 1627 1627 "but can't be saved locally as <nobr><b>%2</b>.</nobr></p>" … … 2168 2168 * Please make sure they corresponds to the strings coming from Main one-by-one symbol! */ 2169 2169 tr("Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might not be installed on the host computer"); 2170 tr("VirtualBox is not currently allowed to access USB devices. You can change this by adding your user to the 'vboxusers' group. Please see the user manualfor a more detailed explanation");2171 tr("VirtualBox is not currently allowed to access USB devices. You can change this by allowing your user to access the 'usbfs' folder and files. Please see the user manualfor a more detailed explanation");2170 tr("VirtualBox is not currently allowed to access USB devices. You can change this by adding your user to the 'vboxusers' group. Please see the user guide for a more detailed explanation"); 2171 tr("VirtualBox is not currently allowed to access USB devices. You can change this by allowing your user to access the 'usbfs' folder and files. Please see the user guide for a more detailed explanation"); 2172 2172 tr("The USB Proxy Service has not yet been ported to this host"); 2173 2173 tr("Could not load the Host USB Proxy service"); -
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpBrowserDialog.cpp
r105401 r105553 92 92 void UIHelpBrowserDialog::sltRetranslateUI() 93 93 { 94 setWindowTitle(UIHelpBrowserWidget::tr("%1 User Manual", "[Product Name] User Manual").arg(VBOX_PRODUCT));94 setWindowTitle(UIHelpBrowserWidget::tr("%1 User Guide", "[Product Name] User Guide").arg(VBOX_PRODUCT)); 95 95 } 96 96 … … 195 195 QString strShortFileName = QFileInfo(strUserManualFileName1).fileName(); 196 196 QString strUserManualFileName2 = QDir(gpGlobalSession->homeFolder()).absoluteFilePath(strShortFileName); 197 /* Show if user manualalready present: */197 /* Show if user guide already present: */ 198 198 if (QFile::exists(strUserManualFileName1)) 199 199 showUserManual(strUserManualFileName1, strKeyword); … … 204 204 if (UINotificationDownloaderUserManual::exists()) 205 205 gpNotificationCenter->invoke(); 206 /* Else propose to download user manual: */206 /* Else propose to download user guide: */ 207 207 else if (confirmLookingForUserManual(strUserManualFileName1)) 208 208 { 209 /* Download user manual: */209 /* Download user guide: */ 210 210 UINotificationDownloaderUserManual *pNotification = UINotificationDownloaderUserManual::instance(UICommon::helpFile()); 211 /* After downloading finished => show User Manual: */211 /* After downloading finished => show User Guide: */ 212 212 /// @todo 213 213 // connect(pNotification, &UINotificationDownloaderUserManual::sigUserManualDownloaded, -
trunk/src/VBox/Frontends/VirtualBox/src/networking/UIDownloaderUserManual.cpp
r103793 r105553 48 48 const QString strVersion = UIVersion(UIVersionInfo::vboxVersionStringNormalized()).effectiveReleasedVersion().toString(); 49 49 50 /* Compose User Manualfilename: */50 /* Compose User Guide filename: */ 51 51 QString strUserManualFullFileName = uiCommon().helpFile(); 52 52 QString strUserManualShortFileName = QFileInfo(strUserManualFullFileName).fileName(); … … 65 65 QString UIDownloaderUserManual::description() const 66 66 { 67 return UIDownloader::description().arg(tr("VirtualBox User Manual"));67 return UIDownloader::description().arg(tr("VirtualBox User Guide")); 68 68 } 69 69 … … 111 111 QString strTarget = QIFileDialog::getExistingDirectory(QFileInfo(target()).absolutePath(), 112 112 windowManager().mainWindowShown(), 113 tr("Select folder to save User Manualto"), true);113 tr("Select folder to save User Guide to"), true); 114 114 115 115 /* Check if user had really set a new target: */ -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r105081 r105553 207 207 { 208 208 createMessage( 209 QApplication::translate("UIMessageCenter", "User manualdownloaded ..."),210 QApplication::translate("UIMessageCenter", "<p>The VirtualBox User Manualhas been successfully downloaded from "209 QApplication::translate("UIMessageCenter", "User guide downloaded ..."), 210 QApplication::translate("UIMessageCenter", "<p>The VirtualBox User Guide has been successfully downloaded from " 211 211 "<nobr><a href=\"%1\">%1</a></nobr> and saved locally as " 212 212 "<nobr><b>%2</b>.</nobr></p>").arg(strUrl, strTarget)); … … 4594 4594 QString UINotificationDownloaderUserManual::name() const 4595 4595 { 4596 return UINotificationDownloader::tr("Downloading User Manual...");4596 return UINotificationDownloader::tr("Downloading User Guide ..."); 4597 4597 } 4598 4598
Note:
See TracChangeset
for help on using the changeset viewer.