VirtualBox

Changeset 3936 in vbox for trunk/src


Ignore:
Timestamp:
Jul 31, 2007 10:40:06 AM (17 years ago)
Author:
vboxsync
Message:

FE/Qt: GA Download UI spelling.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h

    r3925 r3936  
    195195                                   const QString &, const QString &);
    196196
    197     void cannotDonwloadGuestAdditions (const QString &aName,
     197    void cannotDownloadGuestAdditions (const QString &aURL,
    198198                                       const QString &aReason);
    199 
    200     int warnAboutAdditionsDownload (const QString &aSrc1, const QString &aSrc2,
    201                                     const QString &aName, ulong aSize);
    202 
     199    int confirmDownloadAdditions (const QString &aSrc1, const QString &aSrc2,
     200                                  const QString &aURL, ulong aSize);
    203201    void warnAboutTooOldAdditions (QWidget *, const QString &, const QString &);
    204202    void warnAboutOldAdditions (QWidget *, const QString &, const QString &);
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp

    r3927 r3936  
    289289                mHttp->abort();
    290290                if (mStatus == 404)
    291                     abortDownload (tr ("Unable to find the corresponding "
    292                                        "Guest Additions Image file."));
     291                    abortDownload (tr ("Could not locate the file on "
     292                                       "the server."));
    293293                else
    294294                    processFile (aTotal);
     
    298298        }
    299299        else
    300             abortDownload (tr ("Couldn't determine file size."));
     300            abortDownload (tr ("Could not determine the file size."));
    301301    }
    302302
     
    309309        {
    310310            QString reason = mIsChecking ?
    311                 tr ("Checking Guest Additions file presence failed (%1).") :
    312                 tr ("Downloading Guest Additions file failed (%1).");
     311                tr ("Could not connect to the server (%1).") :
     312                tr ("Could not download the file (%1).");
    313313            abortDownload (reason.arg (mHttp->errorString()));
    314314        }
     
    326326            }
    327327            else
    328                 abortDownload (tr ("Could not write the local file."));
     328                abortDownload (tr ("Could not save the downloaded file as "
     329                                   "<nobr><b>%1</b></nobr>.")
     330                               .arg (QDir::convertSeparators (path)));
    329331        }
    330332    }
     
    362364    {
    363365        /* Ask user about GA image downloading */
    364         int rc = vboxProblem().warnAboutAdditionsDownload (mSrc1, mSrc2,
    365                                           mHost + mPath + mFile, aSize);
     366        int rc = vboxProblem().
     367            confirmDownloadAdditions (mSrc1, mSrc2,
     368                                      mHost + mPath + mFile, aSize);
    366369        if (rc == QIMessageBox::Yes)
    367370        {
     
    380383    void abortDownload (const QString &aReason)
    381384    {
    382         vboxProblem().cannotDonwloadGuestAdditions (mHost + mPath + mFile,
     385        vboxProblem().cannotDownloadGuestAdditions (mHost + mPath + mFile,
    383386                                                    aReason);
    384387        /* Allows all the queued signals to be processed before quit. */
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp

    r3925 r3936  
    12541254}
    12551255
    1256 void VBoxProblemReporter::cannotDonwloadGuestAdditions (const QString &aName,
     1256void VBoxProblemReporter::cannotDownloadGuestAdditions (const QString &aURL,
    12571257                                                        const QString &aReason)
    12581258{
    12591259    QString msg = tr ("<p>Failed to download the VirtualBox Guest "
    1260         "Additions CD image <nobr><b>%1</b>.</nobr></p>").arg (aName);
     1260        "Additions CD image from <nobr><b>%1</b>.</nobr></p>").arg (aURL);
    12611261    msg += QString ("<p>%1</p>").arg (aReason);
    12621262    message (&vboxGlobal().consoleWnd(), Error, msg);
    12631263}
    12641264
    1265 int VBoxProblemReporter::warnAboutAdditionsDownload (const QString &aSrc1,
    1266                                                      const QString &aSrc2,
    1267                                                      const QString &aName,
    1268                                                      ulong aSize)
     1265int VBoxProblemReporter::confirmDownloadAdditions (const QString &aSrc1,
     1266                                                   const QString &aSrc2,
     1267                                                   const QString &aURL,
     1268                                                   ulong aSize)
    12691269{
    12701270    QString msg = tr ("<p>Failed to find the VirtualBox Guest Additions CD image "
    12711271                      "<nobr><b>%1</b></nobr> or "
    12721272                      "<nobr><b>%2</b></nobr></p>").arg (aSrc1).arg (aSrc2);
    1273     msg += tr ("<p>Do you want to download this image "
    1274                "<nobr><b>%1</b></nobr> (%2 bytes)?</p>").arg (aName).arg (aSize);
     1273    msg += tr ("<p>Do you want to download this image from "
     1274               "<nobr><b>%1</b></nobr> (%2 bytes)?</p>").arg (aURL).arg (aSize);
    12751275
    12761276    return message (&vboxGlobal().consoleWnd(), Question, msg,
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