VirtualBox

Changeset 47851 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Aug 19, 2013 4:57:24 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
88146
Message:

Main/GuestFileImpl.cpp: More guest error to string translations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestFileImpl.cpp

    r47836 r47851  
    468468    switch (guestRc)
    469469    {
    470         case VERR_INVALID_VM_HANDLE:
    471             strError += Utf8StrFmt(tr("VMM device is not available (is the VM running?)"));
    472             break;
    473 
    474         case VERR_HGCM_SERVICE_NOT_FOUND:
    475             strError += Utf8StrFmt(tr("The guest execution service is not available"));
    476             break;
    477 
    478         case VERR_TIMEOUT:
    479             strError += Utf8StrFmt(tr("The guest did not respond within time"));
    480             break;
    481 
    482         case VERR_CANCELLED:
    483             strError += Utf8StrFmt(tr("The session operation was canceled"));
    484             break;
    485 
    486         case VERR_MAX_PROCS_REACHED:
    487             strError += Utf8StrFmt(tr("Maximum number of concurrent guest files has been reached"));
    488             break;
    489 
    490         case VERR_NOT_EQUAL: /** @todo Imprecise to the user; can mean anything and all. */
    491             strError += Utf8StrFmt(tr("Unable to retrieve requested information"));
    492             break;
    493 
    494         case VERR_NOT_FOUND:
    495             strError += Utf8StrFmt(tr("The guest execution service is not ready (yet)"));
     470        case VERR_ALREADY_EXISTS:
     471            strError += Utf8StrFmt(tr("File already exists"));
     472            break;
     473
     474        case VERR_FILE_NOT_FOUND:
     475            strError += Utf8StrFmt(tr("File not found"));
     476            break;
     477
     478        case VERR_NET_HOST_NOT_FOUND:
     479            strError += Utf8StrFmt(tr("Host name not found"));
     480            break;
     481
     482        case VERR_SHARING_VIOLATION:
     483            strError += Utf8StrFmt(tr("Sharing violation"));
    496484            break;
    497485
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