VirtualBox

Changeset 96483 in vbox


Ignore:
Timestamp:
Aug 25, 2022 10:50:04 AM (2 years ago)
Author:
vboxsync
Message:

FE/Qt: A bunch of NLS fixes across the GUI #4; Preparing for BETA NLS update.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.cpp

    r96407 r96483  
    27992799        setName(QApplication::translate("UIActionPool", "&Clear"));
    28002800        setShortcutScope(QApplication::translate("UIActionPool", "Media Manager"));
    2801         setStatusTip(QApplication::translate("UIActionPool", "remove all inaccessible media"));
     2801        setStatusTip(QApplication::translate("UIActionPool", "Remove all inaccessible media"));
    28022802        setToolTip(  QApplication::translate("UIActionPool", "Remove Inaccessible Media")
    28032803                   + (shortcut().isEmpty() ? QString() : QString(" (%1)").arg(shortcut().toString())));
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolRuntime.cpp

    r96407 r96483  
    616616    {
    617617        setName(QApplication::translate("UIActionPool", "Show &Log..."));
    618         setStatusTip(QApplication::translate("UIActionPool", "Display the log viewer widget."));
     618        setStatusTip(QApplication::translate("UIActionPool", "Display the log viewer window"));
    619619    }
    620620};
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtension.cpp

    r96407 r96483  
    6363    if (!comExtPackFile.GetUsable())
    6464    {
    65         UINotificationMessage::cannotOpenExtPackFile(comExtPackFile, strFilePath);
     65        UINotificationMessage::cannotReadExtPack(comExtPackFile, strFilePath);
    6666        return;
    6767    }
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp

    r96407 r96483  
    173173{
    174174    createMessage(
    175         QApplication::translate("UIMessageCenter", "Unable to validate GA ..."),
     175        QApplication::translate("UIMessageCenter", "Unable to validate guest additions image ..."),
    176176        QApplication::translate("UIMessageCenter", "<p>The <b>VirtualBox Guest Additions</b> disk image file has been "
    177177                                                   "successfully downloaded from <nobr><a href=\"%1\">%1</a></nobr> and saved "
     
    197197{
    198198    createMessage(
    199         QApplication::translate("UIMessageCenter", "Unable to validate EP ..."),
     199        QApplication::translate("UIMessageCenter", "Unable to validate extension pack ..."),
    200200        QApplication::translate("UIMessageCenter", "<p>The <b><nobr>%1</nobr></b> has been successfully downloaded "
    201201                                                   "from <nobr><a href=\"%2\">%2</a></nobr> and saved locally as "
     
    264264{
    265265    createMessage(
    266         QApplication::translate("UIMessageCenter", "Cloud machine failure ..."),
     266        QApplication::translate("UIMessageCenter", "Cloud failure ..."),
    267267        QApplication::translate("UIMessageCenter", "Failed to acquire cloud machine settings.") +
    268268        strErrorDetails);
     
    509509{
    510510    createMessage(
    511         QApplication::translate("UIMessageCenter", "GA not active ..."),
     511        QApplication::translate("UIMessageCenter", "Guest additions inactive ..."),
    512512        QApplication::translate("UIMessageCenter", "<p>The VirtualBox Guest Additions do not appear to be available on this "
    513513                                                   "virtual machine, and shared folders cannot be used without them. To use "
     
    617617{
    618618    createMessage(
    619         QApplication::translate("UIMessageCenter", "EP Manager failure ..."),
    620         QApplication::translate("UIMessageCenter", "Failed to acquire EP Manager parameter.") +
     619        QApplication::translate("UIMessageCenter", "Extension Pack failure ..."),
     620        QApplication::translate("UIMessageCenter", "Failed to acquire Extension Pack Manager parameter.") +
    621621        UIErrorString::formatErrorInfo(comEPManager));
    622622}
     
    626626{
    627627    createMessage(
    628         QApplication::translate("UIMessageCenter", "EP failure ..."),
    629         QApplication::translate("UIMessageCenter", "Failed to acquire EP parameter.") +
     628        QApplication::translate("UIMessageCenter", "Extension Pack failure ..."),
     629        QApplication::translate("UIMessageCenter", "Failed to acquire Extension Pack parameter.") +
    630630        UIErrorString::formatErrorInfo(comPackage));
    631631}
     
    689689{
    690690    createMessage(
    691         QApplication::translate("UIMessageCenter", "Cloud network failure ..."),
     691        QApplication::translate("UIMessageCenter", "Cloud failure ..."),
    692692        QApplication::translate("UIMessageCenter", "Failed to acquire cloud network parameter.") +
    693693        UIErrorString::formatErrorInfo(comNetwork));
     
    745745    createMessage(
    746746        QApplication::translate("UIMessageCenter", "VSD failure ..."),
    747         QApplication::translate("UIMessageCenter", "Failed to acquire virtual system description parameter.") +
     747        QApplication::translate("UIMessageCenter", "Failed to acquire VSD parameter.") +
    748748        UIErrorString::formatErrorInfo(comVsd),
    749749        QString(), QString(), pParent);
     
    756756    createMessage(
    757757        QApplication::translate("UIMessageCenter", "VSD form failure ..."),
    758         QApplication::translate("UIMessageCenter", "Failed to acquire virtual system description form parameter.") +
     758        QApplication::translate("UIMessageCenter", "Failed to acquire VSD form parameter.") +
    759759        UIErrorString::formatErrorInfo(comVsdForm),
    760760        QString(), QString(), pParent);
     
    865865{
    866866    createMessage(
    867         QApplication::translate("UIMessageCenter", "Cloud network failure ..."),
     867        QApplication::translate("UIMessageCenter", "Cloud failure ..."),
    868868        QApplication::translate("UIMessageCenter", "Failed to change cloud network parameter.") +
    869869        UIErrorString::formatErrorInfo(comNetwork));
     
    901901{
    902902    createMessage(
    903         QApplication::translate("UIMessageCenter", "Cloud profile failure ..."),
     903        QApplication::translate("UIMessageCenter", "Cloud failure ..."),
    904904        QApplication::translate("UIMessageCenter", "Failed to assign cloud profile parameter.") +
    905905        UIErrorString::formatErrorInfo(comProfile));
     
    921921    createMessage(
    922922        QApplication::translate("UIMessageCenter", "VSD failure ..."),
    923         QApplication::translate("UIMessageCenter", "Failed to assign virtual system description parameter.") +
     923        QApplication::translate("UIMessageCenter", "Failed to assign VSD parameter.") +
    924924        UIErrorString::formatErrorInfo(comVsd),
    925925        QString(), QString(), pParent);
     
    10661066{
    10671067    createMessage(
    1068         QApplication::translate("UIMessageCenter", "Can't get EP Manager ..."),
     1068        QApplication::translate("UIMessageCenter", "Can't get Extension Pack Manager ..."),
    10691069        QApplication::translate("UIMessageCenter", "Failed to acquire Extension Pack Manager.") +
    10701070        UIErrorString::formatErrorInfo(comVBox));
     
    11061106    createMessage(
    11071107        QApplication::translate("UIMessageCenter", "Can't create VSD ..."),
    1108         QApplication::translate("UIMessageCenter", "Failed to create virtual system description.") +
     1108        QApplication::translate("UIMessageCenter", "Failed to create VSD.") +
    11091109        UIErrorString::formatErrorInfo(comAppliance),
    11101110        QString(), QString(), pParent);
     
    11151115{
    11161116    createMessage(
    1117         QApplication::translate("UIMessageCenter", "Can't open EP ..."),
     1117        QApplication::translate("UIMessageCenter", "Can't open extension pack ..."),
    11181118        QApplication::translate("UIMessageCenter", "Failed to open the Extension Pack <b>%1</b>.")
    11191119                                                   .arg(strFilename) +
     
    11221122
    11231123/* static */
    1124 void UINotificationMessage::cannotOpenExtPackFile(const CExtPackFile &comExtPackFile, const QString &strFilename)
    1125 {
    1126     createMessage(
    1127         QApplication::translate("UIMessageCenter", "Can't open EP file ..."),
    1128         QApplication::translate("UIMessageCenter", "Failed to open the Extension Pack <b>%1</b>.")
     1124void UINotificationMessage::cannotReadExtPack(const CExtPackFile &comExtPackFile, const QString &strFilename)
     1125{
     1126    createMessage(
     1127        QApplication::translate("UIMessageCenter", "Can't read extension pack ..."),
     1128        QApplication::translate("UIMessageCenter", "Failed to read the Extension Pack <b>%1</b>.")
    11291129                                                   .arg(strFilename) +
    11301130        comExtPackFile.GetWhyUnusable());
     
    14061406    createMessage(
    14071407        QApplication::translate("UIMessageCenter", "Can't find snapshot ..."),
    1408         QApplication::translate("UIMessageCenter", "Can't find snapshot with ID=<b>%1</b>.")
     1408        QApplication::translate("UIMessageCenter", "Failed to find snapshot with ID=<b>%1</b>.")
    14091409                                                   .arg(uId.toString()) +
    14101410        UIErrorString::formatErrorInfo(comMachine));
     
    14181418    createMessage(
    14191419        QApplication::translate("UIMessageCenter", "Can't find snapshot ..."),
    1420         QApplication::translate("UIMessageCenter", "Can't find snapshot with name=<b>%1</b>.")
     1420        QApplication::translate("UIMessageCenter", "Failed to find snapshot with name=<b>%1</b>.")
    14211421                                                   .arg(strName) +
    14221422        UIErrorString::formatErrorInfo(comMachine),
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h

    r96407 r96483  
    455455          * @param  comExtPackFile  Brings extension pack manager trying to open extension pack.
    456456          * @param  strFilename     Brings extension pack file name. */
    457         static void cannotOpenExtPackFile(const CExtPackFile &comExtPackFile, const QString &strFilename);
     457        static void cannotReadExtPack(const CExtPackFile &comExtPackFile, const QString &strFilename);
    458458
    459459        /** Notifies about inability to find cloud network.
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardNewVMEditors.cpp

    r96426 r96483  
    171171        m_pGAISOFilePathSelector->setToolTip(UIWizardNewVM::tr("Selects an installation medium (ISO file) for the Guest Additions."));
    172172    if (m_pGAISOPathLabel)
    173         m_pGAISOPathLabel->setText(UIWizardNewVM::tr("GA I&nstallation ISO:"));
     173        m_pGAISOPathLabel->setText(UIWizardNewVM::tr("Guest &Additions ISO:"));
    174174    setTitle(UIWizardNewVM::tr("Gu&est Additions"));
    175175    setToolTip(UIWizardNewVM::tr("When checked, the guest additions will be installed after the guest OS install."));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette