VirtualBox

Changeset 105240 in vbox


Ignore:
Timestamp:
Jul 9, 2024 1:50:26 PM (5 months ago)
Author:
vboxsync
Message:

FE/Qt: NLS stuff: Make sure medium related tags are located in UIMedium context only.

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

Legend:

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

    r105239 r105240  
    607607            /* That hack makes sure 'Inaccessible' word is always bold: */
    608608            { // hack
    609                 const QString strInaccessibleString(QApplication::translate("UICommon", "Inaccessible", "medium"));
     609                const QString strInaccessibleString(QApplication::translate("UIMedium", "Inaccessible", "medium"));
    610610                const QString strBoldInaccessibleString(QString("<b>%1</b>").arg(strInaccessibleString));
    611611                strAttachmentInfo.replace(strInaccessibleString, strBoldInaccessibleString);
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMedium.cpp

    r104891 r105240  
    172172
    173173    /* Reset name/location/description/size parameters: */
    174     m_strName = QApplication::translate("UICommon", "Empty", "medium");
     174    m_strName = QApplication::translate("UIMedium", "Empty", "medium");
    175175    m_strLocation = m_strSize = m_strLogicalSize = QString("--");
    176176    m_strDescription = QString();
     
    227227            m_strName = m_medium.GetName();
    228228        else if (m_strDescription.isEmpty())
    229             m_strName = QApplication::translate("UICommon", "Host Drive '%1'", "medium").arg(QDir::toNativeSeparators(m_medium.GetLocation()));
     229            m_strName = QApplication::translate("UIMedium", "Host Drive '%1'").arg(QDir::toNativeSeparators(m_medium.GetLocation()));
    230230        else
    231             m_strName = QApplication::translate("UICommon", "Host Drive %1 (%2)", "medium").arg(m_strDescription, m_medium.GetName());
     231            m_strName = QApplication::translate("UIMedium", "Host Drive %1 (%2)").arg(m_strDescription, m_medium.GetName());
    232232        /* Refresh medium location: */
    233233        if (!m_fHostDrive)
     
    407407        if (m_type == UIMediumDeviceType_HardDisk)
    408408        {
    409             m_strToolTip += m_sstrRow.arg(QApplication::translate("UICommon", "<p style=white-space:pre>Type (Format):  %1 (%2)</p>", "medium")
     409            m_strToolTip += m_sstrRow.arg(QApplication::translate("UIMedium", "<p style=white-space:pre>Type (Format):  %1 (%2)</p>", "medium")
    410410                                                                  .arg(m_strHardDiskType).arg(m_strHardDiskFormat));
    411411        }
    412         m_strToolTip += m_sstrRow.arg(QApplication::translate("UICommon", "<p>Attached to:  %1</p>", "image")
    413                                                               .arg(m_strUsage.isNull() ? QApplication::translate("UICommon", "<i>Not Attached</i>", "image") : m_strUsage));
     412        m_strToolTip += m_sstrRow.arg(QApplication::translate("UIMedium", "<p>Attached to:  %1</p>", "to machines")
     413                                                              .arg(m_strUsage.isNull() ? QApplication::translate("UIMedium", "<i>Not Attached</i>", "to machines") : m_strUsage));
    414414        switch (m_state)
    415415        {
    416416            case KMediumState_NotCreated:
    417417            {
    418                 m_strToolTip += m_sstrRow.arg(QApplication::translate("UICommon", "<i>Checking accessibility...</i>", "medium"));
     418                m_strToolTip += m_sstrRow.arg(QApplication::translate("UIMedium", "<i>Checking accessibility...</i>", "medium"));
    419419                break;
    420420            }
     
    429429                {
    430430                    /* Accessibility check (eg GetState()) itself failed: */
    431                     m_strToolTip += m_sstrRow.arg("<hr>") + m_sstrRow.arg(QApplication::translate("UICommon", "Failed to check accessibility of disk image files.", "medium")) +
     431                    m_strToolTip += m_sstrRow.arg("<hr>") + m_sstrRow.arg(QApplication::translate("UIMedium", "Failed to check accessibility of disk image files.")) +
    432432                                    m_sstrRow.arg(UIErrorString::formatErrorInfo(m_result) + ".");
    433433                }
     
    469469    if (m_medium.isNull())
    470470    {
    471         strTip = fNullAllowed ? m_sstrRow.arg(QApplication::translate("UICommon", "<b>No disk image file selected</b>", "medium")) +
    472                                 m_sstrRow.arg(QApplication::translate("UICommon", "You can also change this while the machine is running.")) :
    473                                 m_sstrRow.arg(QApplication::translate("UICommon", "<b>No disk image files available</b>", "medium")) +
    474                                 m_sstrRow.arg(QApplication::translate("UICommon", "You can create or add disk image files in the virtual machine settings."));
     471        strTip = fNullAllowed ? m_sstrRow.arg(QApplication::translate("UIMedium", "<b>No disk image file selected</b>")) +
     472                                m_sstrRow.arg(QApplication::translate("UIMedium", "You can also change this while the machine is running.")) :
     473                                m_sstrRow.arg(QApplication::translate("UIMedium", "<b>No disk image files available</b>")) +
     474                                m_sstrRow.arg(QApplication::translate("UIMedium", "You can create or add disk image files in the virtual machine settings."));
    475475    }
    476476    else
     
    482482        if (fCheckRO && m_fReadOnly)
    483483            strTip += m_sstrRow.arg("<hr>") +
    484                       m_sstrRow.arg(QApplication::translate("UICommon",
     484                      m_sstrRow.arg(QApplication::translate("UIMedium",
    485485                                                            "Attaching this hard disk will be performed indirectly using "
    486                                                             "a newly created differencing hard disk.", "medium"));
     486                                                            "a newly created differencing hard disk."));
    487487    }
    488488
     
    559559        /* Add encryption status: */
    560560        if (m_fEncrypted)
    561             strDetails += QString("%1, ").arg(QApplication::translate("UICommon", "Encrypted", "medium"));
     561            strDetails += QString("%1, ").arg(QApplication::translate("UIMedium", "Encrypted", "medium"));
    562562    }
    563563
     
    567567    {
    568568        case KMediumState_NotCreated:
    569             strText = QApplication::translate("UICommon", "Checking...", "medium");
     569            strText = QApplication::translate("UIMedium", "Checking...", "medium");
    570570            strDetails += fUseHTML ? QString("<i>%1</i>").arg(strText) : strText;
    571571            break;
    572572        case KMediumState_Inaccessible:
    573             strText = QApplication::translate("UICommon", "Inaccessible", "medium");
     573            strText = QApplication::translate("UIMedium", "Inaccessible", "medium");
    574574            strDetails += fUseHTML ? QString("<b>%1</b>").arg(strText) : strText;
    575575            break;
     
    645645
    646646            if (m_noDiffs.toolTip.isNull())
    647                 m_noDiffs.toolTip = m_sstrRow.arg(QApplication::translate("UICommon",
     647                m_noDiffs.toolTip = m_sstrRow.arg(QApplication::translate("UIMedium",
    648648                                                                          "Some of the files in this hard disk chain "
    649649                                                                          "are inaccessible. Please use the Virtual Medium "
    650                                                                           "Manager to inspect these files.", "medium"));
     650                                                                          "Manager to inspect these files."));
    651651
    652652            if (!parentMedium.m_result.isOk())
     
    662662        m_noDiffs.toolTip = root().tip() +
    663663                            m_sstrRow.arg("<hr>") +
    664                             m_sstrRow.arg(QApplication::translate("UICommon",
     664                            m_sstrRow.arg(QApplication::translate("UIMedium",
    665665                                                                  "This base hard disk is indirectly attached using "
    666                                                                   "the following differencing hard disk:", "medium")) +
     666                                                                  "the following differencing hard disk:")) +
    667667                            m_strToolTip + m_noDiffs.toolTip;
    668668    }
     
    680680    {
    681681        Assert(comMedium.GetType() == KMediumType_Normal);
    682         return QApplication::translate("UICommon", "Differencing", "MediumType");
     682        return QApplication::translate("UIMedium", "Differencing", "medium");
    683683    }
    684684    return gpConverter->toString(comMedium.GetType());
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