VirtualBox

Changeset 94643 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 20, 2022 9:08:37 AM (3 years ago)
Author:
vboxsync
Message:

Main/Update check: Big overhaul of the API and functionality.

  • Now uses VBOX_WITH_UPDATE_AGENT to entirely disable the feature (enabled by default).
  • Main: Uses new (more abstract) API as proposed in the latest UML docs.
  • Main: Added support for several events.
  • Main: Added support for update severities, order and dependencies (all optional).
  • Settings/XML: Now has own "Updates" branch to also cover other updatable components (later); not part of the system properties anymore.
  • Prepared for GuestAdditions and ExtPack updates.
  • FE/Qt: Adapted to new API.
  • FE/VBoxManage: Adapted to new API; uses more uniform (common) synopsis "modify" and "list" for modifying and listing (showing) update settings.
  • Docs: Fixed various typos, extended documentation.

Work in progress. bugref:7983

Location:
trunk/src/VBox
Files:
18 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk

    r94521 r94643  
    2222
    2323
     24## @todo r=andy Sort this stuff alphabetically!
    2425VBOX_COMMON_VBOXMANAGE_DEFS = \
    2526        $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
     
    5152        $(if $(VBOX_WITH_IOMMU_AMD),VBOX_WITH_IOMMU_AMD) \
    5253        $(if $(VBOX_WITH_IOMMU_INTEL),VBOX_WITH_IOMMU_INTEL) \
     54        $(if $(VBOX_WITH_UPDATE_AGENT), VBOX_WITH_UPDATE_AGENT) \
    5355        $(if $(VBOX_WITH_VMSVGA),VBOX_WITH_VMSVGA) \
    5456        $(if $(VBOX_WITH_MAIN_NLS),VBOX_WITH_MAIN_NLS) \
     
    9193        VBoxManageSnapshot.cpp \
    9294        VBoxManageStorageController.cpp \
    93         VBoxManageUpdateCheck.cpp \
     95         $(if $(VBOX_WITH_UPDATE_AGENT),VBoxManageUpdateCheck.cpp) \
    9496        VBoxManageUSB.cpp \
    9597        $(if $(VBOX_WITH_NAT_SERVICE),VBoxManageNATNetwork.cpp,) \
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r94290 r94643  
    253253    { "cloudprofile",       HELP_CMD_CLOUDPROFILE,      handleCloudProfile,         0 },
    254254    { "cloud",              HELP_CMD_CLOUD,             handleCloud,                0 },
     255#ifdef VBOX_WITH_UPDATE_AGENT
    255256    { "updatecheck",        HELP_CMD_UPDATECHECK,       handleUpdateCheck,          0 },
     257#endif
    256258    { "modifynvram",        HELP_CMD_MODIFYNVRAM,       handleModifyNvram,          0 },
    257259};
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r94290 r94643  
    290290                                 const char *pcszProfileName);
    291291
     292#ifdef VBOX_WITH_UPDATE_AGENT
    292293/* VBoxManageUpdateCheck.cpp */
    293294RTEXITCODE handleUpdateCheck(HandlerArg *a);
     295#endif
    294296
    295297/* VBoxManageModifyNvram.cpp */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp

    r94236 r94643  
    875875    systemProperties->COMGETTER(ProxyURL)(str.asOutParam());
    876876    RTPrintf(List::tr("Proxy URL:                       %ls\n"), str.raw());
    877     systemProperties->COMGETTER(VBoxUpdateEnabled)(&fValue);
    878     RTPrintf(List::tr("Update check enabled:            %s\n"), fValue ? List::tr("yes") : List::tr("no"));
    879     systemProperties->COMGETTER(VBoxUpdateCount)(&ulValue);
    880     RTPrintf(List::tr("Update check count:              %u\n"), ulValue);
    881     systemProperties->COMGETTER(VBoxUpdateFrequency)(&ulValue);
    882     if (ulValue == 0)
    883         RTPrintf(List::tr("Update check frequency:          never\n"));
    884     else if (ulValue == 1)
    885         RTPrintf(List::tr("Update check frequency:          every day\n"));
    886     else
    887         RTPrintf(List::tr("Update check frequency:          every %u days\n", "", ulValue), ulValue);
    888     VBoxUpdateTarget_T enmVBoxUpdateTarget;
    889     systemProperties->COMGETTER(VBoxUpdateTarget)(&enmVBoxUpdateTarget);
    890     switch (enmVBoxUpdateTarget)
    891     {
    892         case VBoxUpdateTarget_Stable:
    893             psz = List::tr("Stable: new minor and maintenance releases");
    894             break;
    895         case VBoxUpdateTarget_AllReleases:
    896             psz = List::tr("All releases: new minor, maintenance, and major releases");
    897             break;
    898         case VBoxUpdateTarget_WithBetas:
    899             psz = List::tr("With Betas: new minor, maintenance, major, and beta releases");
    900             break;
    901         default:
    902             psz = List::tr("Unset");
    903             break;
    904     }
    905     RTPrintf(List::tr("Update check target:             %s\n"), psz);
    906     systemProperties->COMGETTER(VBoxUpdateLastCheckDate)(str.asOutParam());
    907     RTPrintf(List::tr("Last check date:                 %ls\n"), str.raw());
    908877#ifdef VBOX_WITH_MAIN_NLS
    909878    systemProperties->COMGETTER(LanguageId)(str.asOutParam());
     
    913882}
    914883
     884#ifdef VBOX_WITH_UPDATE_AGENT
     885static HRESULT listUpdateAgentConfig(ComPtr<IUpdateAgent> ptrUpdateAgent)
     886{
     887    BOOL fValue;
     888    ptrUpdateAgent->COMGETTER(Enabled)(&fValue);
     889    RTPrintf(List::tr("Enabled:                      %s\n"), fValue ? List::tr("yes") : List::tr("no"));
     890    ULONG ulValue;
     891    ptrUpdateAgent->COMGETTER(CheckCount)(&ulValue);
     892    RTPrintf(List::tr("Check count:                  %u\n"), ulValue);
     893    ptrUpdateAgent->COMGETTER(CheckFrequency)(&ulValue);
     894    if (ulValue == 0)
     895        RTPrintf(List::tr("Check frequency:              never\n"));
     896    else if (ulValue == 1)
     897        RTPrintf(List::tr("Check frequency:              every day\n"));
     898    else
     899        RTPrintf(List::tr("Check frequency:              every %u days\n", "", ulValue), ulValue);
     900
     901    Bstr        str;
     902    const char *psz;
     903    UpdateChannel_T enmUpdateChannel;
     904    ptrUpdateAgent->COMGETTER(Channel)(&enmUpdateChannel);
     905    switch (enmUpdateChannel)
     906    {
     907        case UpdateChannel_Stable:
     908            psz = List::tr("Stable: Maintenance and minor releases within the same major release");
     909            break;
     910        case UpdateChannel_All:
     911            psz = List::tr("All releases: All stable releases, including major versions");
     912            break;
     913        case UpdateChannel_WithBetas:
     914            psz = List::tr("With Betas: All stable and major releases, including beta versions");
     915            break;
     916        case UpdateChannel_WithTesting:
     917            psz = List::tr("With Testing: All stable, major and beta releases, including testing versions");
     918            break;
     919        default:
     920            psz = List::tr("Unset");
     921            break;
     922    }
     923    RTPrintf(List::tr("Channel:                         %s\n"), psz);
     924    ptrUpdateAgent->COMGETTER(RepositoryURL)(str.asOutParam());
     925    RTPrintf(List::tr("Repository:                      %ls\n"), str.raw());
     926    ptrUpdateAgent->COMGETTER(LastCheckDate)(str.asOutParam());
     927    RTPrintf(List::tr("Last check date:                 %ls\n"), str.raw());
     928
     929    return S_OK;
     930}
     931
     932static HRESULT listUpdateAgents(const ComPtr<IVirtualBox> &pVirtualBox)
     933{
     934    ComPtr<IHost> pHost;
     935    CHECK_ERROR2I_RET(pVirtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE);
     936
     937    ComPtr<IUpdateAgent> pUpdateHost;
     938    CHECK_ERROR2I_RET(pHost, COMGETTER(UpdateHost)(pUpdateHost.asOutParam()), RTEXITCODE_FAILURE);
     939    /** @todo Add other update agents here. */
     940
     941    return listUpdateAgentConfig(pUpdateHost);
     942}
     943#endif  /* VBOX_WITH_UPDATE_AGENT */
    915944
    916945/**
     
    18831912    kListUsbFilters,
    18841913    kListSystemProperties,
     1914#if defined(VBOX_WITH_UPDATE_AGENT)
     1915    kListUpdateAgents,
     1916#endif
    18851917    kListDhcpServers,
    18861918    kListExtPacks,
     
    21672199            break;
    21682200
     2201#ifdef VBOX_WITH_UPDATE_AGENT
     2202        case kListUpdateAgents:
     2203            rc = listUpdateAgents(pVirtualBox);
     2204            break;
     2205#endif
    21692206        case kListDhcpServers:
    21702207            rc = listDhcpServers(pVirtualBox);
     
    22612298        { "usbfilters",         kListUsbFilters,         RTGETOPT_REQ_NOTHING },
    22622299        { "systemproperties",   kListSystemProperties,   RTGETOPT_REQ_NOTHING },
     2300#if defined(VBOX_WITH_UPDATE_AGENT)
     2301        { "updates",            kListUpdateAgents,       RTGETOPT_REQ_NOTHING },
     2302#endif
    22632303        { "dhcpservers",        kListDhcpServers,        RTGETOPT_REQ_NOTHING },
    22642304        { "extpacks",           kListExtPacks,           RTGETOPT_REQ_NOTHING },
     
    23212361            case kListUsbFilters:
    23222362            case kListSystemProperties:
     2363#if defined(VBOX_WITH_UPDATE_AGENT)
     2364            case kListUpdateAgents:
     2365#endif
    23232366            case kListDhcpServers:
    23242367            case kListExtPacks:
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp

    r94438 r94643  
    4141using namespace com;    // SafeArray
    4242
    43 /**
    44  * updatecheck getsettings
    45  */
    46 static RTEXITCODE doVBoxUpdateGetSettings(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox)
     43static RTEXITCODE doUpdateList(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent)
    4744{
    4845    /*
     
    7774     * Do the work.
    7875     */
    79     ComPtr<ISystemProperties> pSystemProperties;
    80     CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(SystemProperties)(pSystemProperties.asOutParam()), RTEXITCODE_FAILURE);
    81 
    82     BOOL fVBoxUpdateEnabled;
    83     CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled), RTEXITCODE_FAILURE);
    84     if (fMachineReadable)
    85         outputMachineReadableBool("enabled", &fVBoxUpdateEnabled);
     76    BOOL fEnabled;
     77    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Enabled)(&fEnabled), RTEXITCODE_FAILURE);
     78    if (fMachineReadable)
     79        outputMachineReadableBool("enabled", &fEnabled);
    8680    else
    8781        RTPrintf(UpdateCheck::tr("Enabled:                %s\n"),
    88                  fVBoxUpdateEnabled ? UpdateCheck::tr("yes") : UpdateCheck::tr("no"));
    89 
    90     ULONG cVBoxUpdateCount;
    91     CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateCount)(&cVBoxUpdateCount), RTEXITCODE_FAILURE);
    92     if (fMachineReadable)
    93         outputMachineReadableULong("count", &cVBoxUpdateCount);
     82                 fEnabled ? UpdateCheck::tr("yes") : UpdateCheck::tr("no"));
     83
     84    ULONG cCheckCount;
     85    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(CheckCount)(&cCheckCount), RTEXITCODE_FAILURE);
     86    if (fMachineReadable)
     87        outputMachineReadableULong("count", &cCheckCount);
    9488    else
    95         RTPrintf(UpdateCheck::tr("Count:                  %u\n"), cVBoxUpdateCount);
    96 
    97     ULONG cDaysFrequencey;
    98     CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateFrequency)(&cDaysFrequencey), RTEXITCODE_FAILURE);
    99     if (fMachineReadable)
    100         outputMachineReadableULong("frequency", &cDaysFrequencey);
    101     else if (cDaysFrequencey == 0)
     89        RTPrintf(UpdateCheck::tr("Count:                  %u\n"), cCheckCount);
     90
     91    ULONG uCheckFreqSeconds;
     92    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(CheckFrequency)(&uCheckFreqSeconds), RTEXITCODE_FAILURE);
     93
     94    ULONG const uCheckFreqDays = uCheckFreqSeconds / RT_SEC_1DAY;
     95
     96    if (fMachineReadable)
     97        outputMachineReadableULong("frequency", &uCheckFreqSeconds);
     98    else if (uCheckFreqDays == 0)
    10299        RTPrintf(UpdateCheck::tr("Frequency:              never\n")); /** @todo r=bird: Two inconsistencies here. HostUpdateImpl.cpp code will indicate the need for updating if no last-check-date.  modifysettings cannot set it to zero (I added the error message, you just skipped setting it originally). */
    103     else if (cDaysFrequencey == 1)
     100    else if (uCheckFreqDays == 1)
    104101        RTPrintf(UpdateCheck::tr("Frequency:              every day\n"));
    105102    else
    106         RTPrintf(UpdateCheck::tr("Frequency:              every %u days\n"), cDaysFrequencey);
    107 
    108     VBoxUpdateTarget_T enmVBoxUpdateTarget;
    109     CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateTarget)(&enmVBoxUpdateTarget), RTEXITCODE_FAILURE);
     103        RTPrintf(UpdateCheck::tr("Frequency:              every %u days\n"), uCheckFreqDays);
     104
     105    UpdateChannel_T enmUpdateChannel;
     106    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Channel)(&enmUpdateChannel), RTEXITCODE_FAILURE);
    110107    const char *psz;
    111108    const char *pszMachine;
    112     switch (enmVBoxUpdateTarget)
    113     {
    114         case VBoxUpdateTarget_Stable:
     109    switch (enmUpdateChannel)
     110    {
     111        case UpdateChannel_Stable:
    115112            psz = UpdateCheck::tr("Stable - new minor and maintenance releases");
    116113            pszMachine = "stable";
    117114            break;
    118         case VBoxUpdateTarget_AllReleases:
     115        case UpdateChannel_All:
    119116            psz = UpdateCheck::tr("All releases - new minor, maintenance, and major releases");
    120117            pszMachine = "all-releases";
    121118            break;
    122         case VBoxUpdateTarget_WithBetas:
     119        case UpdateChannel_WithBetas:
    123120            psz = UpdateCheck::tr("With Betas - new minor, maintenance, major, and beta releases");
    124121            pszMachine = "with-betas";
     
    131128    }
    132129    if (fMachineReadable)
    133         outputMachineReadableString("target", pszMachine);
     130        outputMachineReadableString("channel", pszMachine);
    134131    else
    135         RTPrintf(UpdateCheck::tr("Target:                 %s\n"), psz);
     132        RTPrintf(UpdateCheck::tr("Channel:                %s\n"), psz);
    136133
    137134    Bstr bstrLastCheckDate;
    138     CHECK_ERROR2I_RET(pSystemProperties, COMGETTER(VBoxUpdateLastCheckDate)(bstrLastCheckDate.asOutParam()),
     135    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(LastCheckDate)(bstrLastCheckDate.asOutParam()),
    139136                      RTEXITCODE_FAILURE);
    140137    if (fMachineReadable)
     
    146143}
    147144
    148 /**
    149  * updatecheck modifysettings
    150  */
    151 static RTEXITCODE doVBoxUpdateModifySettings(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox)
     145static RTEXITCODE doUpdateModify(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent)
    152146{
    153147    /*
     
    158152        { "--enable",        'e', RTGETOPT_REQ_NOTHING },
    159153        { "--disable",       'd', RTGETOPT_REQ_NOTHING },
    160         { "--target",        't', RTGETOPT_REQ_STRING },
     154        { "--channel",       'c', RTGETOPT_REQ_STRING },
    161155        { "--frequency",     'f', RTGETOPT_REQ_UINT32 },
    162156    };
     
    166160    AssertRCReturn(vrc, RTEXITCODE_INIT);
    167161
    168     int                         fEnabled                = -1; /* tristate: -1 (not modified), false, true */
    169     VBoxUpdateTarget_T const    enmVBoxUpdateTargetNil  = (VBoxUpdateTarget_T)-999;
    170     VBoxUpdateTarget_T          enmVBoxUpdateTarget     = enmVBoxUpdateTargetNil;
    171     uint32_t                    cDaysUpdateFrequency    = 0;
     162    int                         fEnabled       = -1; /* tristate: -1 (not modified), false, true */
     163    UpdateChannel_T const       enmChannelNil  = (UpdateChannel_T)-999;
     164    UpdateChannel_T             enmChannel     = enmChannelNil;
     165    uint32_t                    cFrequencyDays = 0;
    172166
    173167    int c;
     
    185179                break;
    186180
    187             case 't':
     181            case 'c':
    188182                if (!RTStrICmp(ValueUnion.psz, "stable"))
    189                     enmVBoxUpdateTarget = VBoxUpdateTarget_Stable;
     183                    enmChannel = UpdateChannel_Stable;
    190184                else if (!RTStrICmp(ValueUnion.psz, "withbetas"))
    191                     enmVBoxUpdateTarget = VBoxUpdateTarget_WithBetas;
    192                 else if (!RTStrICmp(ValueUnion.psz, "allreleases"))
    193                     enmVBoxUpdateTarget = VBoxUpdateTarget_AllReleases;
     185                    enmChannel = UpdateChannel_WithBetas;
     186                else if (!RTStrICmp(ValueUnion.psz, "all"))
     187                    enmChannel = UpdateChannel_All;
    194188                else
    195                     return errorArgument(UpdateCheck::tr("Unknown target specified: '%s'"), ValueUnion.psz);
     189                    return errorArgument(UpdateCheck::tr("Unknown channel specified: '%s'"), ValueUnion.psz);
    196190                break;
    197191
    198192            case 'f':
    199                 cDaysUpdateFrequency = ValueUnion.u32;
    200                 if (cDaysUpdateFrequency == 0)
     193                cFrequencyDays = ValueUnion.u32;
     194                if (cFrequencyDays == 0)
    201195                    return errorArgument(UpdateCheck::tr("The update frequency cannot be zero"));
    202196                break;
     
    208202
    209203    if (   fEnabled == -1
    210         && enmVBoxUpdateTarget != enmVBoxUpdateTargetNil
    211         && cDaysUpdateFrequency == 0)
     204        && enmChannel != enmChannelNil
     205        && cFrequencyDays == 0)
    212206        return errorSyntax(UpdateCheck::tr("No change requested"));
    213207
     
    215209     * Make the changes.
    216210     */
    217     ComPtr<ISystemProperties> pSystemProperties;
    218     CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(SystemProperties)(pSystemProperties.asOutParam()), RTEXITCODE_FAILURE);
    219 
    220     if (enmVBoxUpdateTarget != enmVBoxUpdateTargetNil)
    221     {
    222         CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateTarget)(enmVBoxUpdateTarget), RTEXITCODE_FAILURE);
    223     }
    224 
     211    if (enmChannel != enmChannelNil)
     212        CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Channel)(enmChannel), RTEXITCODE_FAILURE);
    225213    if (fEnabled != -1)
    226     {
    227         CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateEnabled)((BOOL)fEnabled), RTEXITCODE_FAILURE);
    228     }
    229 
    230     if (cDaysUpdateFrequency)
    231     {
    232         CHECK_ERROR2I_RET(pSystemProperties, COMSETTER(VBoxUpdateFrequency)(cDaysUpdateFrequency), RTEXITCODE_FAILURE);
    233     }
     214        CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Enabled)((BOOL)fEnabled), RTEXITCODE_FAILURE);
     215    if (cFrequencyDays)
     216        CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(CheckFrequency)(cFrequencyDays * RT_SEC_1DAY), RTEXITCODE_FAILURE);
    234217
    235218    return RTEXITCODE_SUCCESS;
    236219}
    237220
    238 /**
    239  * updatecheck perform
    240  */
    241 static RTEXITCODE doVBoxUpdate(int argc, char **argv, ComPtr<IVirtualBox> aVirtualBox)
     221static RTEXITCODE doUpdateCheck(int argc, char **argv, ComPtr<IUpdateAgent> pUpdateAgent)
    242222{
    243223    /*
     
    272252     * Do the work.
    273253     */
    274     ComPtr<IHost> pHost;
    275     CHECK_ERROR2I_RET(aVirtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE);
    276 
    277     ComPtr<IHostUpdate> pHostUpdate;
    278     CHECK_ERROR2I_RET(pHost, COMGETTER(Update)(pHostUpdate.asOutParam()), RTEXITCODE_FAILURE);
    279 
    280     UpdateCheckType_T updateCheckType = UpdateCheckType_VirtualBox;
    281     ComPtr<IProgress> ptrProgress;
     254    Bstr bstrName;
     255    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Name)(bstrName.asOutParam()), RTEXITCODE_FAILURE);
    282256
    283257    if (!fMachineReadable)
    284         RTPrintf(UpdateCheck::tr("Checking for a new VirtualBox version...\n"));
    285 
    286     // we don't call CHECK_ERROR2I_RET(pHostUpdate, VBoxUpdate(updateCheckType, ...); here so we can check for a specific
    287     // return value indicating update checks are disabled.
    288     HRESULT rc = pHostUpdate->UpdateCheck(updateCheckType, ptrProgress.asOutParam());
     258        RTPrintf(UpdateCheck::tr("Checking for a new %ls version...\n"), bstrName.raw());
     259
     260    /*
     261     * We don't call CHECK_ERROR2I_RET(pHostUpdate, VBoxUpdate(updateCheckType, ...); here so we can check for a specific
     262     * return value indicating update checks are disabled.
     263     */
     264    ComPtr<IProgress> pProgress;
     265    HRESULT rc = pUpdateAgent->Check(pProgress.asOutParam());
    289266    if (FAILED(rc))
    290267    {
    291 /** @todo r=bird: WTF? This makes no sense. I've commented upon this in the
    292  *        HostUpdateImpl.cpp code too. */
    293         if (rc == E_NOTIMPL)
    294         {
    295             RTPrintf(UpdateCheck::tr("VirtualBox update checking has been disabled.\n"));
    296             return RTEXITCODE_SUCCESS;
    297         }
    298 
    299         if (ptrProgress.isNull())
    300             RTStrmPrintf(g_pStdErr, UpdateCheck::tr("Failed to create ptrProgress object: %Rhrc\n"), rc);
     268        if (pProgress.isNull())
     269            RTStrmPrintf(g_pStdErr, UpdateCheck::tr("Failed to create update progress object: %Rhrc\n"), rc);
    301270        else
    302             com::GlueHandleComError(pHostUpdate, "VBoxUpdate(updateCheckType, ptrProgress.asOutParam())",
     271            com::GlueHandleComError(pUpdateAgent, "HostUpdate(UpdateChannel_Stable, pProgress.asOutParam())",
    303272                                    rc, __FILE__, __LINE__);
    304273        return RTEXITCODE_FAILURE;
    305274    }
    306275
    307     /* HRESULT hrc = */ showProgress(ptrProgress, fMachineReadable ? SHOW_PROGRESS_NONE : SHOW_PROGRESS);
    308     CHECK_PROGRESS_ERROR_RET(ptrProgress, (UpdateCheck::tr("Check for update failed.")), RTEXITCODE_FAILURE);
    309 
    310     BOOL fUpdateNeeded = FALSE;
    311     CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateResponse)(&fUpdateNeeded), RTEXITCODE_FAILURE);
    312 
     276    /* HRESULT hrc = */ showProgress(pProgress, fMachineReadable ? SHOW_PROGRESS_NONE : SHOW_PROGRESS);
     277    CHECK_PROGRESS_ERROR_RET(pProgress, (UpdateCheck::tr("Checking for update failed.")), RTEXITCODE_FAILURE);
     278
     279    UpdateState_T updateState;
     280    CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(State)(&updateState), RTEXITCODE_FAILURE);
     281
     282    BOOL const fUpdateNeeded = updateState == UpdateState_Available;
    313283    if (fMachineReadable)
    314284        outputMachineReadableBool("update-needed", &fUpdateNeeded);
    315285
    316     if (fUpdateNeeded)
    317     {
    318         Bstr bstrUpdateVersion;
    319         CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateVersion)(bstrUpdateVersion.asOutParam()), RTEXITCODE_FAILURE);
    320         Bstr bstrUpdateURL;
    321         CHECK_ERROR2I_RET(pHostUpdate, COMGETTER(UpdateURL)(bstrUpdateURL.asOutParam()), RTEXITCODE_FAILURE);
    322 
    323         if (!fMachineReadable)
    324             RTPrintf(UpdateCheck::tr(
    325                         "A new version of VirtualBox has been released! Version %ls is available at virtualbox.org.\n"
    326                         "You can download this version here: %ls\n"),
    327                      bstrUpdateVersion.raw(), bstrUpdateURL.raw());
    328         else
    329         {
    330             outputMachineReadableString("update-version", &bstrUpdateVersion);
    331             outputMachineReadableString("update-url", &bstrUpdateURL);
    332         }
    333     }
    334     else if (!fMachineReadable)
    335         RTPrintf(UpdateCheck::tr("You are already running the most recent version of VirtualBox.\n"));
     286    switch (updateState)
     287    {
     288        case UpdateState_Available:
     289        {
     290            Bstr bstrUpdateVersion;
     291            CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(Version)(bstrUpdateVersion.asOutParam()), RTEXITCODE_FAILURE);
     292            Bstr bstrUpdateURL;
     293            CHECK_ERROR2I_RET(pUpdateAgent, COMGETTER(DownloadUrl)(bstrUpdateURL.asOutParam()), RTEXITCODE_FAILURE);
     294
     295            if (!fMachineReadable)
     296                RTPrintf(UpdateCheck::tr(
     297                            "A new version of %ls has been released! Version %ls is available at virtualbox.org.\n"
     298                            "You can download this version here: %ls\n"),
     299                         bstrName.raw(), bstrUpdateVersion.raw(), bstrUpdateURL.raw());
     300            else
     301            {
     302                outputMachineReadableString("update-version", &bstrUpdateVersion);
     303                outputMachineReadableString("update-url", &bstrUpdateURL);
     304            }
     305
     306            break;
     307        }
     308
     309        case UpdateState_NotAvailable:
     310        {
     311            if (!fMachineReadable)
     312                RTPrintf(UpdateCheck::tr("You are already running the most recent version of %ls.\n"), bstrName.raw());
     313            break;
     314        }
     315
     316        case UpdateState_Canceled:
     317            break;
     318
     319        case UpdateState_Error:
     320            RT_FALL_THROUGH();
     321        default:
     322        {
     323            if (!fMachineReadable)
     324                RTPrintf(UpdateCheck::tr("Something went wrong while checking for updates!\n"
     325                                         "Please check network connection and try again later.\n"));
     326            break;
     327        }
     328    }
    336329
    337330    return RTEXITCODE_SUCCESS;
     
    346339RTEXITCODE handleUpdateCheck(HandlerArg *a)
    347340{
     341    ComPtr<IHost> pHost;
     342    CHECK_ERROR2I_RET(a->virtualBox, COMGETTER(Host)(pHost.asOutParam()), RTEXITCODE_FAILURE);
     343
     344    ComPtr<IUpdateAgent> pUpdate;
     345    CHECK_ERROR2I_RET(pHost, COMGETTER(UpdateHost)(pUpdate.asOutParam()), RTEXITCODE_FAILURE);
     346    /** @todo Add other update agents here. */
     347
    348348    if (a->argc < 1)
    349349        return errorNoSubcommand();
    350     if (!strcmp(a->argv[0], "perform"))
     350    if (!RTStrICmp(a->argv[0], "perform"))
    351351    {
    352352        setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_PERFORM);
    353         return doVBoxUpdate(a->argc - 1, &a->argv[1], a->virtualBox);
    354     }
    355     if (!strcmp(a->argv[0], "getsettings"))
    356     {
    357         setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_GETSETTINGS);
    358         return doVBoxUpdateGetSettings(a->argc - 1, &a->argv[1], a->virtualBox);
    359     }
    360     if (!strcmp(a->argv[0], "modifysettings"))
    361     {
    362         setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_MODIFYSETTINGS);
    363         return doVBoxUpdateModifySettings(a->argc - 1, &a->argv[1], a->virtualBox);
     353        return doUpdateCheck(a->argc - 1, &a->argv[1], pUpdate);
     354    }
     355    if (!RTStrICmp(a->argv[0], "list"))
     356    {
     357        setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_LIST);
     358        return doUpdateList(a->argc - 1, &a->argv[1], pUpdate);
     359    }
     360    if (!RTStrICmp(a->argv[0], "modify"))
     361    {
     362        setCurrentSubcommand(HELP_SCOPE_UPDATECHECK_MODIFY);
     363        return doUpdateModify(a->argc - 1, &a->argv[1], pUpdate);
    364364    }
    365365    return errorUnknownSubcommand(a->argv[0]);
  • trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_ru.ts

    r93011 r94643  
    55    <name>Appliance</name>
    66    <message>
    7         <location filename="../VBoxManageAppliance.cpp" line="215"/>
    8         <location filename="../VBoxManageAppliance.cpp" line="1369"/>
     7        <location filename="../VBoxManageAppliance.cpp" line="256"/>
     8        <location filename="../VBoxManageAppliance.cpp" line="1551"/>
    99        <source>Option &quot;%s&quot; can&apos;t be used together with &quot;--cloud&quot; option.</source>
    1010        <translation>Опция &quot;%s&quot; не может быть использована вместе с &quot;--cloud&quot;.</translation>
    1111    </message>
    1212    <message>
    13         <location filename="../VBoxManageAppliance.cpp" line="219"/>
    14         <location filename="../VBoxManageAppliance.cpp" line="305"/>
    15         <location filename="../VBoxManageAppliance.cpp" line="1373"/>
    16         <location filename="../VBoxManageAppliance.cpp" line="1467"/>
     13        <location filename="../VBoxManageAppliance.cpp" line="259"/>
     14        <location filename="../VBoxManageAppliance.cpp" line="334"/>
     15        <location filename="../VBoxManageAppliance.cpp" line="1554"/>
     16        <location filename="../VBoxManageAppliance.cpp" line="1637"/>
    1717        <source>Value of option &quot;%s&quot; is out of range.</source>
    1818        <translation>Значение опции &quot;%s&quot; выходит за границы диапазона.</translation>
    1919    </message>
    2020    <message>
    21         <location filename="../VBoxManageAppliance.cpp" line="229"/>
    22         <location filename="../VBoxManageAppliance.cpp" line="237"/>
    23         <location filename="../VBoxManageAppliance.cpp" line="253"/>
    24         <location filename="../VBoxManageAppliance.cpp" line="269"/>
    25         <location filename="../VBoxManageAppliance.cpp" line="285"/>
    26         <location filename="../VBoxManageAppliance.cpp" line="293"/>
    27         <location filename="../VBoxManageAppliance.cpp" line="1382"/>
     21        <location filename="../VBoxManageAppliance.cpp" line="268"/>
     22        <location filename="../VBoxManageAppliance.cpp" line="275"/>
     23        <location filename="../VBoxManageAppliance.cpp" line="289"/>
     24        <location filename="../VBoxManageAppliance.cpp" line="303"/>
     25        <location filename="../VBoxManageAppliance.cpp" line="317"/>
     26        <location filename="../VBoxManageAppliance.cpp" line="324"/>
     27        <location filename="../VBoxManageAppliance.cpp" line="1562"/>
    2828        <source>Option &quot;%s&quot; requires preceding --vsys or --cloud option.</source>
    2929        <translation>Опция &quot;%s&quot; требует наличия предшествуещего --vsys или --cloud.</translation>
    3030    </message>
    3131    <message>
    32         <location filename="../VBoxManageAppliance.cpp" line="245"/>
    33         <location filename="../VBoxManageAppliance.cpp" line="261"/>
    34         <location filename="../VBoxManageAppliance.cpp" line="277"/>
    35         <location filename="../VBoxManageAppliance.cpp" line="301"/>
    36         <location filename="../VBoxManageAppliance.cpp" line="314"/>
    37         <location filename="../VBoxManageAppliance.cpp" line="326"/>
    38         <location filename="../VBoxManageAppliance.cpp" line="338"/>
    39         <location filename="../VBoxManageAppliance.cpp" line="350"/>
    40         <location filename="../VBoxManageAppliance.cpp" line="1390"/>
    41         <location filename="../VBoxManageAppliance.cpp" line="1398"/>
    42         <location filename="../VBoxManageAppliance.cpp" line="1406"/>
    43         <location filename="../VBoxManageAppliance.cpp" line="1414"/>
    44         <location filename="../VBoxManageAppliance.cpp" line="1422"/>
    45         <location filename="../VBoxManageAppliance.cpp" line="1430"/>
    46         <location filename="../VBoxManageAppliance.cpp" line="1438"/>
    47         <location filename="../VBoxManageAppliance.cpp" line="1446"/>
     32        <location filename="../VBoxManageAppliance.cpp" line="282"/>
     33        <location filename="../VBoxManageAppliance.cpp" line="296"/>
     34        <location filename="../VBoxManageAppliance.cpp" line="310"/>
     35        <location filename="../VBoxManageAppliance.cpp" line="331"/>
     36        <location filename="../VBoxManageAppliance.cpp" line="342"/>
     37        <location filename="../VBoxManageAppliance.cpp" line="352"/>
     38        <location filename="../VBoxManageAppliance.cpp" line="362"/>
     39        <location filename="../VBoxManageAppliance.cpp" line="372"/>
     40        <location filename="../VBoxManageAppliance.cpp" line="382"/>
     41        <location filename="../VBoxManageAppliance.cpp" line="1569"/>
     42        <location filename="../VBoxManageAppliance.cpp" line="1576"/>
     43        <location filename="../VBoxManageAppliance.cpp" line="1583"/>
     44        <location filename="../VBoxManageAppliance.cpp" line="1590"/>
     45        <location filename="../VBoxManageAppliance.cpp" line="1597"/>
     46        <location filename="../VBoxManageAppliance.cpp" line="1604"/>
     47        <location filename="../VBoxManageAppliance.cpp" line="1611"/>
     48        <location filename="../VBoxManageAppliance.cpp" line="1618"/>
    4849        <source>Option &quot;%s&quot; requires preceding --vsys option.</source>
    4950        <translation>Опция &quot;%s&quot; требует наличия предшествуещего --vsys.</translation>
    5051    </message>
    5152    <message>
    52         <location filename="../VBoxManageAppliance.cpp" line="318"/>
    53         <location filename="../VBoxManageAppliance.cpp" line="330"/>
    54         <location filename="../VBoxManageAppliance.cpp" line="342"/>
    55         <location filename="../VBoxManageAppliance.cpp" line="354"/>
     53        <location filename="../VBoxManageAppliance.cpp" line="345"/>
     54        <location filename="../VBoxManageAppliance.cpp" line="355"/>
     55        <location filename="../VBoxManageAppliance.cpp" line="365"/>
     56        <location filename="../VBoxManageAppliance.cpp" line="375"/>
     57        <location filename="../VBoxManageAppliance.cpp" line="385"/>
    5658        <source>Option &quot;%s&quot; requires preceding --unit option.</source>
    5759        <translation>Опция &quot;%s&quot; требует наличия предшествуещего --unit.</translation>
    5860    </message>
    5961    <message>
    60         <location filename="../VBoxManageAppliance.cpp" line="361"/>
     62        <location filename="../VBoxManageAppliance.cpp" line="392"/>
    6163        <source>Invalid import options &apos;%s&apos;
    6264</source>
     
    6567    </message>
    6668    <message>
    67         <location filename="../VBoxManageAppliance.cpp" line="371"/>
    68         <location filename="../VBoxManageAppliance.cpp" line="1463"/>
     69        <location filename="../VBoxManageAppliance.cpp" line="401"/>
     70        <location filename="../VBoxManageAppliance.cpp" line="1634"/>
    6971        <source>Option &quot;%s&quot; can&apos;t be used together with &quot;--vsys&quot; option.</source>
    7072        <translation>Опция &quot;%s&quot; не может быть использована вместе с &quot;--vsys&quot;.</translation>
    7173    </message>
    7274    <message>
    73         <location filename="../VBoxManageAppliance.cpp" line="380"/>
    74         <location filename="../VBoxManageAppliance.cpp" line="387"/>
    75         <location filename="../VBoxManageAppliance.cpp" line="394"/>
    76         <location filename="../VBoxManageAppliance.cpp" line="1477"/>
    77         <location filename="../VBoxManageAppliance.cpp" line="1485"/>
    78         <location filename="../VBoxManageAppliance.cpp" line="1493"/>
    79         <location filename="../VBoxManageAppliance.cpp" line="1501"/>
    80         <location filename="../VBoxManageAppliance.cpp" line="1509"/>
    81         <location filename="../VBoxManageAppliance.cpp" line="1517"/>
    82         <location filename="../VBoxManageAppliance.cpp" line="1525"/>
    83         <location filename="../VBoxManageAppliance.cpp" line="1533"/>
    84         <location filename="../VBoxManageAppliance.cpp" line="1541"/>
    85         <location filename="../VBoxManageAppliance.cpp" line="1549"/>
    86         <location filename="../VBoxManageAppliance.cpp" line="1557"/>
    87         <location filename="../VBoxManageAppliance.cpp" line="1565"/>
    88         <location filename="../VBoxManageAppliance.cpp" line="1573"/>
     75        <location filename="../VBoxManageAppliance.cpp" line="410"/>
     76        <location filename="../VBoxManageAppliance.cpp" line="417"/>
     77        <location filename="../VBoxManageAppliance.cpp" line="424"/>
     78        <location filename="../VBoxManageAppliance.cpp" line="1646"/>
     79        <location filename="../VBoxManageAppliance.cpp" line="1653"/>
     80        <location filename="../VBoxManageAppliance.cpp" line="1660"/>
     81        <location filename="../VBoxManageAppliance.cpp" line="1667"/>
     82        <location filename="../VBoxManageAppliance.cpp" line="1674"/>
     83        <location filename="../VBoxManageAppliance.cpp" line="1681"/>
     84        <location filename="../VBoxManageAppliance.cpp" line="1688"/>
     85        <location filename="../VBoxManageAppliance.cpp" line="1695"/>
     86        <location filename="../VBoxManageAppliance.cpp" line="1702"/>
     87        <location filename="../VBoxManageAppliance.cpp" line="1709"/>
     88        <location filename="../VBoxManageAppliance.cpp" line="1716"/>
     89        <location filename="../VBoxManageAppliance.cpp" line="1723"/>
     90        <location filename="../VBoxManageAppliance.cpp" line="1730"/>
    8991        <source>Option &quot;%s&quot; requires preceding --cloud option.</source>
    9092        <translation>Опция &quot;%s&quot; требует наличия предшествуещего --cloud.</translation>
    9193    </message>
    9294    <message>
    93         <location filename="../VBoxManageAppliance.cpp" line="403"/>
     95        <location filename="../VBoxManageAppliance.cpp" line="433"/>
    9496        <source>Invalid parameter &apos;%s&apos;</source>
    9597        <translation>Недопустимый параметр &apos;%s&apos;</translation>
    9698    </message>
    9799    <message>
    98         <location filename="../VBoxManageAppliance.cpp" line="410"/>
     100        <location filename="../VBoxManageAppliance.cpp" line="440"/>
    99101        <source>Invalid option -%c</source>
    100102        <translation>Недопустимая опция -%c</translation>
    101103    </message>
    102104    <message>
    103         <location filename="../VBoxManageAppliance.cpp" line="412"/>
     105        <location filename="../VBoxManageAppliance.cpp" line="442"/>
    104106        <source>Invalid option case %i</source>
    105107        <translation>Недопустимый вариант опции %i</translation>
    106108    </message>
    107109    <message>
    108         <location filename="../VBoxManageAppliance.cpp" line="415"/>
     110        <location filename="../VBoxManageAppliance.cpp" line="445"/>
    109111        <source>unknown option: %s
    110112</source>
     
    113115    </message>
    114116    <message>
    115         <location filename="../VBoxManageAppliance.cpp" line="419"/>
     117        <location filename="../VBoxManageAppliance.cpp" line="449"/>
    116118        <source>error: %Rrs</source>
    117119        <translation>Ошибка: %Rrs</translation>
    118120    </message>
    119121    <message>
    120         <location filename="../VBoxManageAppliance.cpp" line="425"/>
     122        <location filename="../VBoxManageAppliance.cpp" line="455"/>
    121123        <source>Not enough arguments for &quot;import&quot; command.</source>
    122124        <translation>Недостаточно аргументов для команды &quot;import&quot;.</translation>
    123125    </message>
    124126    <message>
    125         <location filename="../VBoxManageAppliance.cpp" line="447"/>
     127        <location filename="../VBoxManageAppliance.cpp" line="477"/>
    126128        <source>Not enough arguments for import from the Cloud.</source>
    127129        <translation>Недостаточно аргументов для импорта из облака.</translation>
    128130    </message>
    129131    <message>
    130         <location filename="../VBoxManageAppliance.cpp" line="470"/>
     132        <location filename="../VBoxManageAppliance.cpp" line="500"/>
    131133        <source>Appliance read failed</source>
    132134        <translation>Не удалось прочесть конфигурацию</translation>
    133135    </message>
    134136    <message>
    135         <location filename="../VBoxManageAppliance.cpp" line="482"/>
     137        <location filename="../VBoxManageAppliance.cpp" line="512"/>
    136138        <source>Interpreting %ls...
    137139</source>
     
    140142    </message>
    141143    <message>
    142         <location filename="../VBoxManageAppliance.cpp" line="514"/>
     144        <location filename="../VBoxManageAppliance.cpp" line="544"/>
    143145        <source>Disks:
    144146</source>
     
    147149    </message>
    148150    <message numerus="yes">
    149         <location filename="../VBoxManageAppliance.cpp" line="536"/>
     151        <location filename="../VBoxManageAppliance.cpp" line="565"/>
    150152        <source>Invalid index %RI32 with -vsys option; the OVF contains only %zu virtual system(s).</source>
    151153        <translation>
     
    156158    </message>
    157159    <message>
    158         <location filename="../VBoxManageAppliance.cpp" line="571"/>
     160        <location filename="../VBoxManageAppliance.cpp" line="600"/>
    159161        <source>Virtual system %u:
    160162</source>
     
    163165    </message>
    164166    <message>
    165         <location filename="../VBoxManageAppliance.cpp" line="601"/>
     167        <location filename="../VBoxManageAppliance.cpp" line="630"/>
    166168        <source>%2u: OS type specified with --ostype: &quot;%ls&quot;
    167169</source>
     
    170172    </message>
    171173    <message>
    172         <location filename="../VBoxManageAppliance.cpp" line="605"/>
     174        <location filename="../VBoxManageAppliance.cpp" line="634"/>
    173175        <source>%2u: Suggested OS type: &quot;%ls&quot;
    174176    (change with &quot;--vsys %u --ostype &lt;type&gt;&quot;; use &quot;list ostypes&quot; to list all possible values)
     
    179181    </message>
    180182    <message>
    181         <location filename="../VBoxManageAppliance.cpp" line="615"/>
     183        <location filename="../VBoxManageAppliance.cpp" line="643"/>
    182184        <source>%2u: VM name specified with --vmname: &quot;%ls&quot;
    183185</source>
     
    186188    </message>
    187189    <message>
    188         <location filename="../VBoxManageAppliance.cpp" line="619"/>
     190        <location filename="../VBoxManageAppliance.cpp" line="647"/>
    189191        <source>%2u: Suggested VM name &quot;%ls&quot;
    190192    (change with &quot;--vsys %u --vmname &lt;name&gt;&quot;)
     
    195197    </message>
    196198    <message>
    197         <location filename="../VBoxManageAppliance.cpp" line="626"/>
     199        <location filename="../VBoxManageAppliance.cpp" line="653"/>
    198200        <source>%2u: Product (ignored): %ls
    199201</source>
     
    202204    </message>
    203205    <message>
    204         <location filename="../VBoxManageAppliance.cpp" line="631"/>
     206        <location filename="../VBoxManageAppliance.cpp" line="658"/>
    205207        <source>%2u: ProductUrl (ignored): %ls
    206208</source>
     
    209211    </message>
    210212    <message>
    211         <location filename="../VBoxManageAppliance.cpp" line="636"/>
     213        <location filename="../VBoxManageAppliance.cpp" line="663"/>
    212214        <source>%2u: Vendor (ignored): %ls
    213215</source>
     
    216218    </message>
    217219    <message>
    218         <location filename="../VBoxManageAppliance.cpp" line="641"/>
     220        <location filename="../VBoxManageAppliance.cpp" line="668"/>
    219221        <source>%2u: VendorUrl (ignored): %ls
    220222</source>
     
    223225    </message>
    224226    <message>
    225         <location filename="../VBoxManageAppliance.cpp" line="646"/>
     227        <location filename="../VBoxManageAppliance.cpp" line="673"/>
    226228        <source>%2u: Version (ignored): %ls
    227229</source>
     
    230232    </message>
    231233    <message>
    232         <location filename="../VBoxManageAppliance.cpp" line="654"/>
     234        <location filename="../VBoxManageAppliance.cpp" line="681"/>
    233235        <source>%2u: Description specified with --description: &quot;%ls&quot;
    234236</source>
     
    237239    </message>
    238240    <message>
    239         <location filename="../VBoxManageAppliance.cpp" line="658"/>
     241        <location filename="../VBoxManageAppliance.cpp" line="685"/>
    240242        <source>%2u: Description &quot;%ls&quot;
    241243    (change with &quot;--vsys %u --description &lt;desc&gt;&quot;)
     
    246248    </message>
    247249    <message>
    248         <location filename="../VBoxManageAppliance.cpp" line="670"/>
     250        <location filename="../VBoxManageAppliance.cpp" line="696"/>
    249251        <source>%2u: End-user license agreement
    250252    (accept with &quot;--vsys %u --eula accept&quot;):
     
    261263    </message>
    262264    <message>
    263         <location filename="../VBoxManageAppliance.cpp" line="678"/>
     265        <location filename="../VBoxManageAppliance.cpp" line="703"/>
    264266        <source>%2u: End-user license agreement (accepted)
    265267</source>
     
    268270    </message>
    269271    <message>
    270         <location filename="../VBoxManageAppliance.cpp" line="684"/>
     272        <location filename="../VBoxManageAppliance.cpp" line="708"/>
    271273        <source>Argument to --eula must be either &quot;show&quot; or &quot;accept&quot;.</source>
    272274        <translation>Аргумент к  --eula должен быть или &quot;show&quot; или &quot;accept&quot;.</translation>
    273275    </message>
    274276    <message>
    275         <location filename="../VBoxManageAppliance.cpp" line="687"/>
     277        <location filename="../VBoxManageAppliance.cpp" line="711"/>
    276278        <source>%2u: End-user license agreement
    277279    (display with &quot;--vsys %u --eula show&quot;;
     
    284286    </message>
    285287    <message>
    286         <location filename="../VBoxManageAppliance.cpp" line="704"/>
     288        <location filename="../VBoxManageAppliance.cpp" line="727"/>
    287289        <source>%2u: No. of CPUs specified with --cpus: %ls
    288290</source>
     
    291293    </message>
    292294    <message>
    293         <location filename="../VBoxManageAppliance.cpp" line="709"/>
     295        <location filename="../VBoxManageAppliance.cpp" line="731"/>
    294296        <source>Argument to --cpus option must be a number greater than %d and less than %d.</source>
    295297        <translation>Аргумент к --cpus дожен быть числом больше %d и меньше %d.</translation>
    296298    </message>
    297299    <message>
    298         <location filename="../VBoxManageAppliance.cpp" line="713"/>
     300        <location filename="../VBoxManageAppliance.cpp" line="735"/>
    299301        <source>%2u: Number of CPUs: %ls
    300302    (change with &quot;--vsys %u --cpus &lt;n&gt;&quot;)
     
    305307    </message>
    306308    <message>
    307         <location filename="../VBoxManageAppliance.cpp" line="725"/>
     309        <location filename="../VBoxManageAppliance.cpp" line="747"/>
    308310        <source>%2u: Guest memory specified with --memory: %ls MB
    309311</source>
     
    312314    </message>
    313315    <message>
    314         <location filename="../VBoxManageAppliance.cpp" line="730"/>
     316        <location filename="../VBoxManageAppliance.cpp" line="751"/>
    315317        <source>Argument to --memory option must be a non-negative number.</source>
    316318        <translation>Аргумент к --memory должен быть неотрицательным числом.</translation>
    317319    </message>
    318320    <message>
    319         <location filename="../VBoxManageAppliance.cpp" line="733"/>
     321        <location filename="../VBoxManageAppliance.cpp" line="754"/>
    320322        <source>%2u: Guest memory: %ls MB
    321323    (change with &quot;--vsys %u --memory &lt;MB&gt;&quot;)
     
    326328    </message>
    327329    <message>
    328         <location filename="../VBoxManageAppliance.cpp" line="741"/>
     330        <location filename="../VBoxManageAppliance.cpp" line="762"/>
    329331        <source>%2u: IDE controller, type %ls -- disabled
    330332</source>
     
    333335    </message>
    334336    <message>
    335         <location filename="../VBoxManageAppliance.cpp" line="747"/>
     337        <location filename="../VBoxManageAppliance.cpp" line="768"/>
    336338        <source>%2u: IDE controller, type %ls
    337339    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    342344    </message>
    343345    <message>
    344         <location filename="../VBoxManageAppliance.cpp" line="758"/>
     346        <location filename="../VBoxManageAppliance.cpp" line="778"/>
    345347        <source>%2u: SATA controller, type %ls -- disabled
    346348</source>
     
    349351    </message>
    350352    <message>
    351         <location filename="../VBoxManageAppliance.cpp" line="764"/>
     353        <location filename="../VBoxManageAppliance.cpp" line="784"/>
    352354        <source>%2u: SATA controller, type %ls
    353355    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    358360    </message>
    359361    <message>
    360         <location filename="../VBoxManageAppliance.cpp" line="775"/>
     362        <location filename="../VBoxManageAppliance.cpp" line="794"/>
    361363        <source>%2u: SAS controller, type %ls -- disabled
    362364</source>
     
    365367    </message>
    366368    <message>
    367         <location filename="../VBoxManageAppliance.cpp" line="781"/>
     369        <location filename="../VBoxManageAppliance.cpp" line="800"/>
    368370        <source>%2u: SAS controller, type %ls
    369371    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    374376    </message>
    375377    <message>
    376         <location filename="../VBoxManageAppliance.cpp" line="792"/>
     378        <location filename="../VBoxManageAppliance.cpp" line="810"/>
    377379        <source>%2u: SCSI controller, type %ls -- disabled
    378380</source>
     
    381383    </message>
    382384    <message>
    383         <location filename="../VBoxManageAppliance.cpp" line="803"/>
     385        <location filename="../VBoxManageAppliance.cpp" line="821"/>
    384386        <source>%2u: SCSI controller, type set with --unit %u --scsitype: &quot;%ls&quot;
    385387</source>
     
    388390    </message>
    389391    <message>
    390         <location filename="../VBoxManageAppliance.cpp" line="809"/>
     392        <location filename="../VBoxManageAppliance.cpp" line="827"/>
    391393        <source>%2u: SCSI controller, type %ls
    392394    (change with &quot;--vsys %u --unit %u --scsitype {BusLogic|LsiLogic}&quot;;
     
    399401    </message>
    400402    <message>
    401         <location filename="../VBoxManageAppliance.cpp" line="822"/>
     403        <location filename="../VBoxManageAppliance.cpp" line="839"/>
    402404        <source>%2u: VirtioSCSI controller, type %ls -- disabled
    403405</source>
     
    406408    </message>
    407409    <message>
    408         <location filename="../VBoxManageAppliance.cpp" line="828"/>
     410        <location filename="../VBoxManageAppliance.cpp" line="845"/>
    409411        <source>%2u: VirtioSCSI controller, type %ls
    410412    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    415417    </message>
    416418    <message>
    417         <location filename="../VBoxManageAppliance.cpp" line="839"/>
     419        <location filename="../VBoxManageAppliance.cpp" line="855"/>
    418420        <source>%2u: Hard disk image: source image=%ls -- disabled
    419421</source>
     
    422424    </message>
    423425    <message>
    424         <location filename="../VBoxManageAppliance.cpp" line="875"/>
    425426        <source>Option --ImportToVDI shall not be used together with manually set target path.</source>
    426         <translation>Опция --ImportToVDI не должна использоваться вместе с путем назначения, указанным вручную.</translation>
    427     </message>
    428     <message>
    429         <location filename="../VBoxManageAppliance.cpp" line="880"/>
    430         <location filename="../VBoxManageAppliance.cpp" line="898"/>
     427        <translation type="vanished">Опция --ImportToVDI не должна использоваться вместе с путем назначения, указанным вручную.</translation>
     428    </message>
     429    <message>
    431430        <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls
    432431</source>
    433         <translation>%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls
    434 </translation>
    435     </message>
    436     <message>
    437         <location filename="../VBoxManageAppliance.cpp" line="984"/>
     432        <translation type="vanished">%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls
     433</translation>
     434    </message>
     435    <message>
    438436        <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls
    439437    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
    440438    disable with &quot;--vsys %u --unit %u --ignore&quot;)
    441439</source>
    442         <translation>%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls
     440        <translation type="vanished">%2u: Образ жесткого диска: образ источника=%ls, путь назначения=%ls, %ls
    443441    (изменить путь назначения через &quot;--vsys %u --unit %u --disk путь&quot;;
    444442    отключить через &quot;--vsys %u --unit %u --ignore&quot;)
     
    446444    </message>
    447445    <message>
    448         <location filename="../VBoxManageAppliance.cpp" line="1000"/>
     446        <location filename="../VBoxManageAppliance.cpp" line="870"/>
     447        <source>Option --ImportToVDI can not be used together with a manually set target path.</source>
     448        <translation type="unfinished"></translation>
     449    </message>
     450    <message>
     451        <location filename="../VBoxManageAppliance.cpp" line="898"/>
     452        <source>Invalid controller value: &apos;%s&apos;</source>
     453        <translation type="unfinished"></translation>
     454    </message>
     455    <message>
     456        <location filename="../VBoxManageAppliance.cpp" line="903"/>
     457        <location filename="../VBoxManageAppliance.cpp" line="970"/>
     458        <source>Invalid storage controller specified: %u</source>
     459        <translation type="unfinished"></translation>
     460    </message>
     461    <message>
     462        <location filename="../VBoxManageAppliance.cpp" line="916"/>
     463        <source>Invalid port value: &apos;%s&apos;</source>
     464        <translation type="unfinished"></translation>
     465    </message>
     466    <message>
     467        <location filename="../VBoxManageAppliance.cpp" line="931"/>
     468        <source>Failed to extract controller value from ExtraConfig: &apos;%s&apos;</source>
     469        <translation type="unfinished"></translation>
     470    </message>
     471    <message>
     472        <location filename="../VBoxManageAppliance.cpp" line="937"/>
     473        <source>Failed to extract channel value from ExtraConfig: &apos;%s&apos;</source>
     474        <translation type="unfinished"></translation>
     475    </message>
     476    <message>
     477        <location filename="../VBoxManageAppliance.cpp" line="963"/>
     478        <source>Device already attached to controller %u at this port (%u) location.</source>
     479        <translation type="unfinished"></translation>
     480    </message>
     481    <message>
     482        <location filename="../VBoxManageAppliance.cpp" line="1001"/>
     483        <source>Illegal port value: %u. For %ls controllers the only valid values are 0 to %lu (inclusive)</source>
     484        <translation type="unfinished"></translation>
     485    </message>
     486    <message>
     487        <location filename="../VBoxManageAppliance.cpp" line="1023"/>
     488        <source>%2u: Hard disk image specified with --disk: source image=%ls, target path=%ls, %s
     489    (change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;;
     490    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     491</source>
     492        <translation type="unfinished"></translation>
     493    </message>
     494    <message>
     495        <location filename="../VBoxManageAppliance.cpp" line="1035"/>
     496        <source>%2u: Hard disk image specified with --disk and --controller: source image=%ls, target path=%ls, %s
     497    (change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     498</source>
     499        <translation type="unfinished"></translation>
     500    </message>
     501    <message>
     502        <location filename="../VBoxManageAppliance.cpp" line="1045"/>
     503        <source>%2u: Hard disk image specified with --disk and --port: source image=%ls, target path=%ls, %s
     504    (change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;)
     505</source>
     506        <translation type="unfinished"></translation>
     507    </message>
     508    <message>
     509        <location filename="../VBoxManageAppliance.cpp" line="1055"/>
     510        <source>%2u: Hard disk image specified with --controller and --port: source image=%ls, target path=%ls, %s
     511    (change target path with &quot;--vsys %u --unit %u --disk path&quot;)
     512</source>
     513        <translation type="unfinished"></translation>
     514    </message>
     515    <message>
     516        <location filename="../VBoxManageAppliance.cpp" line="1065"/>
     517        <source>%2u: Hard disk image specified with --port: source image=%ls, target path=%ls, %s
     518    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     519    change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;)
     520</source>
     521        <translation type="unfinished"></translation>
     522    </message>
     523    <message>
     524        <location filename="../VBoxManageAppliance.cpp" line="1077"/>
     525        <source>%2u: Hard disk image specified with --controller: source image=%ls, target path=%ls, %s
     526    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     527    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     528</source>
     529        <translation type="unfinished"></translation>
     530    </message>
     531    <message>
     532        <location filename="../VBoxManageAppliance.cpp" line="1089"/>
     533        <source>%2u: Hard disk image specified with --disk and --controller and --port: source image=%ls, target path=%ls, %s
     534</source>
     535        <translation type="unfinished"></translation>
     536    </message>
     537    <message>
     538        <location filename="../VBoxManageAppliance.cpp" line="1174"/>
     539        <source>%2u: Hard disk image: source image=%ls, target path=%ls, %s
     540    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     541    change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;;
     542    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;;
     543    disable with &quot;--vsys %u --unit %u --ignore&quot;)
     544</source>
     545        <translation type="unfinished"></translation>
     546    </message>
     547    <message>
     548        <location filename="../VBoxManageAppliance.cpp" line="1191"/>
    449549        <source>%2u: CD-ROM -- disabled
    450550</source>
     
    453553    </message>
    454554    <message>
    455         <location filename="../VBoxManageAppliance.cpp" line="1005"/>
     555        <location filename="../VBoxManageAppliance.cpp" line="1196"/>
    456556        <source>%2u: CD-ROM
    457557    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    462562    </message>
    463563    <message>
    464         <location filename="../VBoxManageAppliance.cpp" line="1014"/>
     564        <location filename="../VBoxManageAppliance.cpp" line="1204"/>
    465565        <source>%2u: Floppy -- disabled
    466566</source>
     
    469569    </message>
    470570    <message>
    471         <location filename="../VBoxManageAppliance.cpp" line="1019"/>
     571        <location filename="../VBoxManageAppliance.cpp" line="1209"/>
    472572        <source>%2u: Floppy
    473573    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    478578    </message>
    479579    <message>
    480         <location filename="../VBoxManageAppliance.cpp" line="1026"/>
     580        <location filename="../VBoxManageAppliance.cpp" line="1215"/>
    481581        <source>%2u: Network adapter: orig %ls, config %ls, extra %ls
    482582</source>
     
    485585    </message>
    486586    <message>
    487         <location filename="../VBoxManageAppliance.cpp" line="1036"/>
     587        <location filename="../VBoxManageAppliance.cpp" line="1225"/>
    488588        <source>%2u: USB controller -- disabled
    489589</source>
     
    492592    </message>
    493593    <message>
    494         <location filename="../VBoxManageAppliance.cpp" line="1041"/>
     594        <location filename="../VBoxManageAppliance.cpp" line="1230"/>
    495595        <source>%2u: USB controller
    496596    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    501601    </message>
    502602    <message>
    503         <location filename="../VBoxManageAppliance.cpp" line="1050"/>
     603        <location filename="../VBoxManageAppliance.cpp" line="1238"/>
    504604        <source>%2u: Sound card &quot;%ls&quot; -- disabled
    505605</source>
     
    508608    </message>
    509609    <message>
    510         <location filename="../VBoxManageAppliance.cpp" line="1056"/>
     610        <location filename="../VBoxManageAppliance.cpp" line="1244"/>
    511611        <source>%2u: Sound card (appliance expects &quot;%ls&quot;, can change on import)
    512612    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    517617    </message>
    518618    <message>
    519         <location filename="../VBoxManageAppliance.cpp" line="1069"/>
     619        <location filename="../VBoxManageAppliance.cpp" line="1256"/>
    520620        <source>%2u: VM settings file name specified with --settingsfile: &quot;%ls&quot;
    521621</source>
     
    524624    </message>
    525625    <message>
    526         <location filename="../VBoxManageAppliance.cpp" line="1073"/>
     626        <location filename="../VBoxManageAppliance.cpp" line="1260"/>
    527627        <source>%2u: Suggested VM settings file name &quot;%ls&quot;
    528628    (change with &quot;--vsys %u --settingsfile &lt;filename&gt;&quot;)
     
    533633    </message>
    534634    <message>
    535         <location filename="../VBoxManageAppliance.cpp" line="1083"/>
     635        <location filename="../VBoxManageAppliance.cpp" line="1269"/>
    536636        <source>%2u: VM base folder specified with --basefolder: &quot;%ls&quot;
    537637</source>
     
    540640    </message>
    541641    <message>
    542         <location filename="../VBoxManageAppliance.cpp" line="1087"/>
     642        <location filename="../VBoxManageAppliance.cpp" line="1273"/>
    543643        <source>%2u: Suggested VM base folder &quot;%ls&quot;
    544644    (change with &quot;--vsys %u --basefolder &lt;path&gt;&quot;)
     
    549649    </message>
    550650    <message>
    551         <location filename="../VBoxManageAppliance.cpp" line="1097"/>
     651        <location filename="../VBoxManageAppliance.cpp" line="1282"/>
    552652        <source>%2u: VM group specified with --group: &quot;%ls&quot;
    553653</source>
     
    556656    </message>
    557657    <message>
    558         <location filename="../VBoxManageAppliance.cpp" line="1101"/>
     658        <location filename="../VBoxManageAppliance.cpp" line="1286"/>
    559659        <source>%2u: Suggested VM group &quot;%ls&quot;
    560660    (change with &quot;--vsys %u --group &lt;group&gt;&quot;)
     
    565665    </message>
    566666    <message>
    567         <location filename="../VBoxManageAppliance.cpp" line="1108"/>
     667        <location filename="../VBoxManageAppliance.cpp" line="1292"/>
    568668        <source>%2u: Suggested cloud shape &quot;%ls&quot;
    569669</source>
     
    572672    </message>
    573673    <message>
    574         <location filename="../VBoxManageAppliance.cpp" line="1116"/>
     674        <location filename="../VBoxManageAppliance.cpp" line="1300"/>
    575675        <source>%2u: Cloud bucket id specified with --cloudbucket: &quot;%ls&quot;
    576676</source>
     
    579679    </message>
    580680    <message>
    581         <location filename="../VBoxManageAppliance.cpp" line="1120"/>
     681        <location filename="../VBoxManageAppliance.cpp" line="1304"/>
    582682        <source>%2u: Suggested cloud bucket id &quot;%ls&quot;
    583683    (change with &quot;--cloud %u --cloudbucket &lt;id&gt;&quot;)
     
    588688    </message>
    589689    <message>
    590         <location filename="../VBoxManageAppliance.cpp" line="1130"/>
     690        <location filename="../VBoxManageAppliance.cpp" line="1313"/>
    591691        <source>%2u: Cloud profile name specified with --cloudprofile: &quot;%ls&quot;
    592692</source>
     
    595695    </message>
    596696    <message>
    597         <location filename="../VBoxManageAppliance.cpp" line="1134"/>
     697        <location filename="../VBoxManageAppliance.cpp" line="1317"/>
    598698        <source>%2u: Suggested cloud profile name &quot;%ls&quot;
    599699    (change with &quot;--cloud %u --cloudprofile &lt;id&gt;&quot;)
     
    604704    </message>
    605705    <message>
    606         <location filename="../VBoxManageAppliance.cpp" line="1144"/>
     706        <location filename="../VBoxManageAppliance.cpp" line="1326"/>
    607707        <source>%2u: Cloud instance id specified with --cloudinstanceid: &quot;%ls&quot;
    608708</source>
     
    611711    </message>
    612712    <message>
    613         <location filename="../VBoxManageAppliance.cpp" line="1148"/>
     713        <location filename="../VBoxManageAppliance.cpp" line="1330"/>
    614714        <source>%2u: Suggested cloud instance id &quot;%ls&quot;
    615715    (change with &quot;--cloud %u --cloudinstanceid &lt;id&gt;&quot;)
     
    620720    </message>
    621721    <message>
    622         <location filename="../VBoxManageAppliance.cpp" line="1155"/>
     722        <location filename="../VBoxManageAppliance.cpp" line="1336"/>
    623723        <source>%2u: Suggested cloud base image id &quot;%ls&quot;
    624724</source>
     
    627727    </message>
    628728    <message>
    629         <location filename="../VBoxManageAppliance.cpp" line="1201"/>
     729        <location filename="../VBoxManageAppliance.cpp" line="1384"/>
    630730        <source>Cannot import until the license agreement listed above is accepted.</source>
    631731        <translation>Невозможно произвести импорт пока не приняты условия лицензионного соглашения, показанные выше.</translation>
    632732    </message>
    633733    <message>
    634         <location filename="../VBoxManageAppliance.cpp" line="1203"/>
     734        <location filename="../VBoxManageAppliance.cpp" line="1386"/>
    635735        <source>Cannot import until the %c license agreements listed above are accepted.</source>
    636736        <translation>Невозможно произвести импорт пока не приняты условия лицензионного соглашения %c, показанные выше.</translation>
    637737    </message>
    638738    <message>
    639         <location filename="../VBoxManageAppliance.cpp" line="1214"/>
     739        <location filename="../VBoxManageAppliance.cpp" line="1397"/>
    640740        <source>Appliance import failed</source>
    641741        <translation>Не удалось произвести импорт конфигурации</translation>
    642742    </message>
    643743    <message>
    644         <location filename="../VBoxManageAppliance.cpp" line="1217"/>
     744        <location filename="../VBoxManageAppliance.cpp" line="1400"/>
    645745        <source>Successfully imported the appliance.
    646746</source>
     
    649749    </message>
    650750    <message>
    651         <location filename="../VBoxManageAppliance.cpp" line="1334"/>
     751        <location filename="../VBoxManageAppliance.cpp" line="1517"/>
    652752        <source>You can only specify --output once.</source>
    653753        <translation>--output можно указать только один раз.</translation>
    654754    </message>
    655755    <message>
    656         <location filename="../VBoxManageAppliance.cpp" line="1453"/>
     756        <location filename="../VBoxManageAppliance.cpp" line="1625"/>
    657757        <source>Invalid export options &apos;%s&apos;
    658758</source>
     
    661761    </message>
    662762    <message>
    663         <location filename="../VBoxManageAppliance.cpp" line="1594"/>
     763        <location filename="../VBoxManageAppliance.cpp" line="1751"/>
    664764        <source>unhandled option: -%c</source>
    665765        <translation>необработанная опция: -%c</translation>
    666766    </message>
    667767    <message>
    668         <location filename="../VBoxManageAppliance.cpp" line="1596"/>
     768        <location filename="../VBoxManageAppliance.cpp" line="1753"/>
    669769        <source>unhandled option: %i</source>
    670770        <translation>необработанная опция: %i</translation>
    671771    </message>
    672772    <message>
    673         <location filename="../VBoxManageAppliance.cpp" line="1599"/>
     773        <location filename="../VBoxManageAppliance.cpp" line="1756"/>
    674774        <source>unknown option: %s</source>
    675775        <translation>неизвестная опция: %s</translation>
    676776    </message>
    677777    <message>
    678         <location filename="../VBoxManageAppliance.cpp" line="1615"/>
     778        <location filename="../VBoxManageAppliance.cpp" line="1771"/>
    679779        <source>At least one machine must be specified with the export command.</source>
    680780        <translation>Как минимум одна машина должна быть указана в команде экспорта.</translation>
    681781    </message>
    682782    <message>
    683         <location filename="../VBoxManageAppliance.cpp" line="1619"/>
     783        <location filename="../VBoxManageAppliance.cpp" line="1775"/>
    684784        <source>Missing --output argument with export command.</source>
    685785        <translation>Отсутствует аргумент --output у команды экспорта.</translation>
    686786    </message>
    687787    <message numerus="yes">
    688         <location filename="../VBoxManageAppliance.cpp" line="1634"/>
     788        <location filename="../VBoxManageAppliance.cpp" line="1789"/>
    689789        <source>Invalid index %RI32 with -vsys option; you specified only %zu virtual system(s).</source>
    690790        <translation>
     
    695795    </message>
    696796    <message>
    697         <location filename="../VBoxManageAppliance.cpp" line="1723"/>
     797        <location filename="../VBoxManageAppliance.cpp" line="1878"/>
    698798        <source>Cannot read license file &quot;%s&quot; which should be included in the virtual system %u.</source>
    699799        <translation>Невозможно прочесть файл лицензии &quot;%s&quot;, который должен быть включен в виртуальную систему %u.</translation>
    700800    </message>
    701801    <message>
    702         <location filename="../VBoxManageAppliance.cpp" line="1786"/>
     802        <location filename="../VBoxManageAppliance.cpp" line="1941"/>
    703803        <source>Enter the passwords for the following identifiers to export the apppliance:
    704804</source>
     
    707807    </message>
    708808    <message>
    709         <location filename="../VBoxManageAppliance.cpp" line="1793"/>
     809        <location filename="../VBoxManageAppliance.cpp" line="1948"/>
    710810        <source>Password ID %s:</source>
    711811        <translation>ID пароля %s:</translation>
    712812    </message>
    713813    <message>
    714         <location filename="../VBoxManageAppliance.cpp" line="1823"/>
     814        <location filename="../VBoxManageAppliance.cpp" line="1978"/>
    715815        <source>Appliance write failed</source>
    716816        <translation>Не удалось записать конфигурацию</translation>
    717817    </message>
    718818    <message numerus="yes">
    719         <location filename="../VBoxManageAppliance.cpp" line="1826"/>
     819        <location filename="../VBoxManageAppliance.cpp" line="1981"/>
    720820        <source>Successfully exported %d machine(s).
    721821</source>
     
    730830    </message>
    731831    <message>
    732         <location filename="../VBoxManageAppliance.cpp" line="1882"/>
     832        <location filename="../VBoxManageAppliance.cpp" line="2037"/>
    733833        <source>Creating a cloud instance...
    734834</source>
     
    737837    </message>
    738838    <message>
    739         <location filename="../VBoxManageAppliance.cpp" line="1887"/>
     839        <location filename="../VBoxManageAppliance.cpp" line="2042"/>
    740840        <source>Creating the cloud instance failed</source>
    741841        <translation>Не удалось создать облачный экземпляр</translation>
    742842    </message>
    743843    <message>
    744         <location filename="../VBoxManageAppliance.cpp" line="1899"/>
     844        <location filename="../VBoxManageAppliance.cpp" line="2054"/>
    745845        <source>A cloud instance with id &apos;%s&apos; (provider &apos;%s&apos;) was created
    746846</source>
     
    749849    </message>
    750850    <message>
    751         <location filename="../VBoxManageAppliance.cpp" line="1952"/>
     851        <location filename="../VBoxManageAppliance.cpp" line="2107"/>
    752852        <source>Failed to open OVA &apos;%s&apos; for updating: %Rrc</source>
    753853        <translation>Не удалось открыть OVA &apos;%s&apos; для обновления: %Rrc</translation>
    754854    </message>
    755855    <message>
    756         <location filename="../VBoxManageAppliance.cpp" line="1958"/>
     856        <location filename="../VBoxManageAppliance.cpp" line="2113"/>
    757857        <source>Failed to open OVA &apos;%s&apos; as a TAR file: %Rrc</source>
    758858        <translation>Не удалось открыть OVA &apos;%s&apos; как файл TAR: %Rrc</translation>
    759859    </message>
    760860    <message>
    761         <location filename="../VBoxManageAppliance.cpp" line="1965"/>
     861        <location filename="../VBoxManageAppliance.cpp" line="2120"/>
    762862        <source>Scanning OVA &apos;%s&apos; for a manifest and signature...</source>
    763863        <translation>Сканирование OVA &apos;%s&apos; на наличие манифеста и подписи...</translation>
    764864    </message>
    765865    <message>
    766         <location filename="../VBoxManageAppliance.cpp" line="1981"/>
     866        <location filename="../VBoxManageAppliance.cpp" line="2136"/>
    767867        <source>RTVfsFsStrmNext returned %Rrc</source>
    768868        <translation>RTVfsFsStrmNext возвратил %Rrc</translation>
    769869    </message>
    770870    <message>
    771         <location filename="../VBoxManageAppliance.cpp" line="1997"/>
     871        <location filename="../VBoxManageAppliance.cpp" line="2152"/>
    772872        <source>OVA contains multiple manifests! first: %s  second: %s</source>
    773873        <translation>OVA содержит несколько манифестов! первый: %s  второй: %s</translation>
    774874    </message>
    775875    <message>
    776         <location filename="../VBoxManageAppliance.cpp" line="2001"/>
    777         <location filename="../VBoxManageAppliance.cpp" line="2039"/>
     876        <location filename="../VBoxManageAppliance.cpp" line="2156"/>
     877        <location filename="../VBoxManageAppliance.cpp" line="2194"/>
    778878        <source>Unsupported OVA file ordering! Signature file (&apos;%s&apos;) as succeeded by &apos;%s&apos;.</source>
    779879        <translation>Неподдерживаемый порядок файлов OVA! Файл подписи (&apos;%s&apos;) после &apos;%s&apos;.</translation>
    780880    </message>
    781881    <message>
    782         <location filename="../VBoxManageAppliance.cpp" line="2006"/>
     882        <location filename="../VBoxManageAppliance.cpp" line="2161"/>
    783883        <source>Found manifest file: %s</source>
    784884        <translation>Найден файл манифеста: %s</translation>
    785885    </message>
    786886    <message>
    787         <location filename="../VBoxManageAppliance.cpp" line="2015"/>
     887        <location filename="../VBoxManageAppliance.cpp" line="2170"/>
    788888        <source>Failed to memorize the manifest: %Rrc</source>
    789889        <translation>Не удалось запомнить манифест: %Rrc</translation>
    790890    </message>
    791891    <message>
    792         <location filename="../VBoxManageAppliance.cpp" line="2018"/>
    793         <location filename="../VBoxManageAppliance.cpp" line="2259"/>
    794         <location filename="../VBoxManageAppliance.cpp" line="2333"/>
    795         <location filename="../VBoxManageAppliance.cpp" line="2493"/>
     892        <location filename="../VBoxManageAppliance.cpp" line="2173"/>
     893        <location filename="../VBoxManageAppliance.cpp" line="2414"/>
     894        <location filename="../VBoxManageAppliance.cpp" line="2488"/>
     895        <location filename="../VBoxManageAppliance.cpp" line="2647"/>
    796896        <source>Out of memory!</source>
    797897        <translation>Не хватает памяти!</translation>
    798898    </message>
    799899    <message>
    800         <location filename="../VBoxManageAppliance.cpp" line="2026"/>
     900        <location filename="../VBoxManageAppliance.cpp" line="2181"/>
    801901        <source>Multiple signature files! (%s)</source>
    802902        <translation>Несколько файлов подписей! (%s)</translation>
    803903    </message>
    804904    <message>
    805         <location filename="../VBoxManageAppliance.cpp" line="2030"/>
     905        <location filename="../VBoxManageAppliance.cpp" line="2185"/>
    806906        <source>Found existing signature file: %s</source>
    807907        <translation>Найден существующий файл сигнатуры: %s</translation>
    808908    </message>
    809909    <message>
    810         <location filename="../VBoxManageAppliance.cpp" line="2055"/>
     910        <location filename="../VBoxManageAppliance.cpp" line="2210"/>
    811911        <source>The OVA contains no manifest and cannot be signed!</source>
    812912        <translation>OVA не содержит манифеста и не может быть подписан!</translation>
    813913    </message>
    814914    <message>
    815         <location filename="../VBoxManageAppliance.cpp" line="2058"/>
     915        <location filename="../VBoxManageAppliance.cpp" line="2213"/>
    816916        <source>The OVA is already signed (&apos;%s&apos;)! (Use the --force option to force re-signing it.)</source>
    817917        <translation>OVA уже подписан (&apos;%s&apos;)! (Используйте опцию --force, чтобы заново подписать его.)</translation>
    818918    </message>
    819919    <message>
    820         <location filename="../VBoxManageAppliance.cpp" line="2078"/>
     920        <location filename="../VBoxManageAppliance.cpp" line="2233"/>
    821921        <source>Writing &apos;%s&apos; to the OVA...</source>
    822922        <translation>Запись &apos;%s&apos; в OVA...</translation>
    823923    </message>
    824924    <message>
    825         <location filename="../VBoxManageAppliance.cpp" line="2088"/>
     925        <location filename="../VBoxManageAppliance.cpp" line="2243"/>
    826926        <source>RTZipTarFsStreamTruncate failed on &apos;%s&apos;: %Rrc</source>
    827927        <translation>RTZipTarFsStreamTruncate завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    828928    </message>
    829929    <message>
    830         <location filename="../VBoxManageAppliance.cpp" line="2097"/>
     930        <location filename="../VBoxManageAppliance.cpp" line="2252"/>
    831931        <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source>
    832932        <translation>RTVfsFileSeek(hVfsFileSignature) завершился с ошибкой: %Rrc</translation>
    833933    </message>
    834934    <message>
    835         <location filename="../VBoxManageAppliance.cpp" line="2103"/>
     935        <location filename="../VBoxManageAppliance.cpp" line="2258"/>
    836936        <source>RTVfsFsStrmAdd(&apos;%s&apos;) failed on &apos;%s&apos;: %Rrc</source>
    837937        <translation>RTVfsFsStrmAdd(&apos;%s&apos;) завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    838938    </message>
    839939    <message>
    840         <location filename="../VBoxManageAppliance.cpp" line="2110"/>
     940        <location filename="../VBoxManageAppliance.cpp" line="2265"/>
    841941        <source>RTVfsFsStrmEnd failed on &apos;%s&apos;: %Rrc</source>
    842942        <translation>RTVfsFsStrmEnd завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    843943    </message>
    844944    <message>
    845         <location filename="../VBoxManageAppliance.cpp" line="2146"/>
     945        <location filename="../VBoxManageAppliance.cpp" line="2301"/>
    846946        <source>  Successfully decoded the PKCS#7/CMS signature...</source>
    847947        <translation>  PKCS#7/CMS подпись декодирована успешно...</translation>
    848948    </message>
    849949    <message>
    850         <location filename="../VBoxManageAppliance.cpp" line="2162"/>
     950        <location filename="../VBoxManageAppliance.cpp" line="2317"/>
    851951        <source>  Successfully verified the PKCS#7/CMS signature</source>
    852952        <translation>  PKCS#7/CMS подпись проверена успешно</translation>
    853953    </message>
    854954    <message>
    855         <location filename="../VBoxManageAppliance.cpp" line="2165"/>
     955        <location filename="../VBoxManageAppliance.cpp" line="2320"/>
    856956        <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source>
    857957        <translation>Не удалось проверить PKCS#7/CMS подпись: %Rrc%RTeim</translation>
    858958    </message>
    859959    <message>
    860         <location filename="../VBoxManageAppliance.cpp" line="2169"/>
     960        <location filename="../VBoxManageAppliance.cpp" line="2324"/>
    861961        <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source>
    862962        <translation>RTCrPkcs7SignedData_CheckSanity завершена с ошибкой на PKCS#7/CMS подписи: %Rrc%RTeim</translation>
    863963    </message>
    864964    <message>
    865         <location filename="../VBoxManageAppliance.cpp" line="2174"/>
     965        <location filename="../VBoxManageAppliance.cpp" line="2329"/>
    866966        <source>PKCS#7/CMS signature inner ContentType isn&apos;t &apos;data&apos; but: %s</source>
    867967        <translation>Внутреннее поле ContentType PKCS#7/CMS подписи является не данными, а: %s</translation>
    868968    </message>
    869969    <message>
    870         <location filename="../VBoxManageAppliance.cpp" line="2178"/>
     970        <location filename="../VBoxManageAppliance.cpp" line="2333"/>
    871971        <source>PKCS#7/CMD signature is not &apos;signedData&apos;: %s</source>
    872972        <translation>PKCS#7/CMD подпись не &apos;signedData&apos;: %s</translation>
    873973    </message>
    874974    <message>
    875         <location filename="../VBoxManageAppliance.cpp" line="2219"/>
     975        <location filename="../VBoxManageAppliance.cpp" line="2374"/>
    876976        <source>RTCrPkcs7ContentInfo_Clone failed: %Rrc</source>
    877977        <translation>RTCrPkcs7ContentInfo_Clone завершен с ошибкой: %Rrc</translation>
    878978    </message>
    879979    <message>
    880         <location filename="../VBoxManageAppliance.cpp" line="2223"/>
     980        <location filename="../VBoxManageAppliance.cpp" line="2378"/>
    881981        <source>RTCrPkcs7ContentInfo_DecodeAsn1 failed to decode PKCS#7/CMS signature: %Rrc%RTemi</source>
    882982        <translation>RTCrPkcs7ContentInfo_DecodeAsn1 не смог декодировать PKCS#7/CMS подпись: %Rrc%RTemi</translation>
    883983    </message>
    884984    <message numerus="yes">
    885         <location filename="../VBoxManageAppliance.cpp" line="2254"/>
     985        <location filename="../VBoxManageAppliance.cpp" line="2409"/>
    886986        <source>Manifest is too big: %#RX64 bytes, max 4MiB</source>
    887987        <translation>
     
    892992    </message>
    893993    <message>
    894         <location filename="../VBoxManageAppliance.cpp" line="2279"/>
     994        <location filename="../VBoxManageAppliance.cpp" line="2434"/>
    895995        <source>RTCrStoreCertAddFromFile failed on &apos;%s&apos;: %Rrc%#RTeim</source>
    896996        <translation>RTCrStoreCertAddFromFile завершился с ошибкой на &apos;%s&apos;: %Rrc%#RTeim</translation>
    897997    </message>
    898998    <message>
    899         <location filename="../VBoxManageAppliance.cpp" line="2285"/>
     999        <location filename="../VBoxManageAppliance.cpp" line="2440"/>
    9001000        <source>RTCrStoreCreateInMem failed: %Rrc</source>
    9011001        <translation>RTCrStoreCreateInMem завершился с ошибкой: %Rrc</translation>
    9021002    </message>
    9031003    <message numerus="yes">
    904         <location filename="../VBoxManageAppliance.cpp" line="2316"/>
     1004        <location filename="../VBoxManageAppliance.cpp" line="2471"/>
    9051005        <source>Created PKCS#7/CMS signature: %zu bytes, %s.</source>
    9061006        <translation>
     
    9111011    </message>
    9121012    <message>
    913         <location filename="../VBoxManageAppliance.cpp" line="2319"/>
     1013        <location filename="../VBoxManageAppliance.cpp" line="2474"/>
    9141014        <source>Using SHA-1 instead of SHA-3 for the PKCS#7/CMS signature.</source>
    9151015        <translation>Используется SHA-1 вместо SHA-3 для PKCS#7/CMS подписи.</translation>
    9161016    </message>
    9171017    <message>
    918         <location filename="../VBoxManageAppliance.cpp" line="2328"/>
     1018        <location filename="../VBoxManageAppliance.cpp" line="2483"/>
    9191019        <source>RTCrPemWriteBlobToVfsFile failed: %Rrc</source>
    9201020        <translation>RTCrPemWriteBlobToVfsFile завершился с ошибкой: %Rrc</translation>
    9211021    </message>
    9221022    <message>
    923         <location filename="../VBoxManageAppliance.cpp" line="2336"/>
     1023        <location filename="../VBoxManageAppliance.cpp" line="2491"/>
    9241024        <source>RTCrPkcs7SimpleSignSignedData failed: %Rrc%#RTeim</source>
    9251025        <translation>RTCrPkcs7SimpleSignSignedData завершился с ошибкой: %Rrc%#RTeim</translation>
    9261026    </message>
    9271027    <message>
    928         <location filename="../VBoxManageAppliance.cpp" line="2340"/>
     1028        <location filename="../VBoxManageAppliance.cpp" line="2495"/>
    9291029        <source>RTVfsFileReadAt failed: %Rrc</source>
    9301030        <translation>RTVfsFileReadAt завершился с ошибкой: %Rrc</translation>
    9311031    </message>
    9321032    <message>
    933         <location filename="../VBoxManageAppliance.cpp" line="2393"/>
     1033        <location filename="../VBoxManageAppliance.cpp" line="2548"/>
    9341034        <source>Unsupported digest type: %s</source>
    9351035        <translation>Неподдерживаемый тип дайджеста: %s</translation>
    9361036    </message>
    9371037    <message>
    938         <location filename="../VBoxManageAppliance.cpp" line="2402"/>
     1038        <location filename="../VBoxManageAppliance.cpp" line="2557"/>
    9391039        <source>Failed to create digest for %s: %Rrc</source>
    9401040        <translation>Не удалось создать дайджест для %s: %Rrc</translation>
    9411041    </message>
    9421042    <message numerus="yes">
    943         <location filename="../VBoxManageAppliance.cpp" line="2428"/>
     1043        <location filename="../VBoxManageAppliance.cpp" line="2583"/>
    9441044        <source>Created OVA signature: %zu bytes, %s</source>
    9451045        <translation>
     
    9501050    </message>
    9511051    <message>
    952         <location filename="../VBoxManageAppliance.cpp" line="2441"/>
     1052        <location filename="../VBoxManageAppliance.cpp" line="2596"/>
    9531053        <source>  Successfully decoded and verified the OVA signature.
    9541054</source>
     
    9571057    </message>
    9581058    <message>
    959         <location filename="../VBoxManageAppliance.cpp" line="2472"/>
     1059        <location filename="../VBoxManageAppliance.cpp" line="2627"/>
    9601060        <source>Failed to write certificate to signature file: %Rrc%#RTeim</source>
    9611061        <translation>Не удалось записать сертификат в файл подписи: %Rrc%#RTeim</translation>
    9621062    </message>
    9631063    <message>
    964         <location filename="../VBoxManageAppliance.cpp" line="2476"/>
     1064        <location filename="../VBoxManageAppliance.cpp" line="2631"/>
    9651065        <source>Failed to produce signature file: %Rrc</source>
    9661066        <translation>Не удалось сделать файл сигнатуры: %Rrc</translation>
    9671067    </message>
    9681068    <message>
    969         <location filename="../VBoxManageAppliance.cpp" line="2480"/>
     1069        <location filename="../VBoxManageAppliance.cpp" line="2635"/>
    9701070        <source>RTVfsMemFileCreate failed: %Rrc</source>
    9711071        <translation>RTVfsMemFileCreate завершен с ошибкой: %Rrc</translation>
    9721072    </message>
    9731073    <message>
    974         <location filename="../VBoxManageAppliance.cpp" line="2483"/>
     1074        <location filename="../VBoxManageAppliance.cpp" line="2638"/>
     1075        <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim
     1076Please make sure the certificate and private key matches.</source>
     1077        <translation type="unfinished"></translation>
     1078    </message>
     1079    <message>
    9751080        <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim
    9761081Plase make sure the certificate and private key matches.</source>
    977         <translation>Столкнулись с проблемой при проверке только что созданной подписи: %Rrc%#RTeim
     1082        <translation type="vanished">Столкнулись с проблемой при проверке только что созданной подписи: %Rrc%#RTeim
    9781083Пожалуйста, убедитесь, что сертификат и приватный ключ соответствуют друг другу.</translation>
    9791084    </message>
    9801085    <message>
    981         <location filename="../VBoxManageAppliance.cpp" line="2489"/>
     1086        <location filename="../VBoxManageAppliance.cpp" line="2643"/>
    9821087        <source>2nd RTCrPkixPubKeySignDigest call failed: %Rrc%#RTeim</source>
    9831088        <translation>Второй вызов RTCrPkixPubKeySignDigest завершился с ошибкой: %Rrc%#RTeim</translation>
    9841089    </message>
    9851090    <message>
    986         <location filename="../VBoxManageAppliance.cpp" line="2496"/>
     1091        <location filename="../VBoxManageAppliance.cpp" line="2650"/>
    9871092        <source>RTCrPkixPubKeySignDigest failed: %Rrc%#RTeim</source>
    9881093        <translation>RTCrPkixPubKeySignDigest завершился с ошибкой: %Rrc%#RTeim</translation>
    9891094    </message>
    9901095    <message>
    991         <location filename="../VBoxManageAppliance.cpp" line="2499"/>
     1096        <location filename="../VBoxManageAppliance.cpp" line="2653"/>
    9921097        <source>Failed to create digest %s: %Rrc</source>
    9931098        <translation>Не удалось создать дайджест %s: %Rrc</translation>
    9941099    </message>
    9951100    <message>
    996         <location filename="../VBoxManageAppliance.cpp" line="2563"/>
    997         <location filename="../VBoxManageAppliance.cpp" line="2570"/>
     1101        <location filename="../VBoxManageAppliance.cpp" line="2717"/>
     1102        <location filename="../VBoxManageAppliance.cpp" line="2724"/>
    9981103        <source>Password is given more than once.</source>
    9991104        <translation>Пароль указан несколько раз.</translation>
    10001105    </message>
    10011106    <message>
    1002         <location filename="../VBoxManageAppliance.cpp" line="2588"/>
     1107        <location filename="../VBoxManageAppliance.cpp" line="2742"/>
    10031108        <source>Unknown digest type: %s</source>
    10041109        <translation>Неизвестный тип дайджеста: %s</translation>
    10051110    </message>
    10061111    <message>
    1007         <location filename="../VBoxManageAppliance.cpp" line="2601"/>
     1112        <location filename="../VBoxManageAppliance.cpp" line="2755"/>
    10081113        <source>Too many intermediate certificates: max %zu</source>
    10091114        <translation>Слишком много промежуточных сертификатов: максимально %zu</translation>
    10101115    </message>
    10111116    <message>
    1012         <location filename="../VBoxManageAppliance.cpp" line="2637"/>
     1117        <location filename="../VBoxManageAppliance.cpp" line="2791"/>
    10131118        <source>No OVA file was specified!</source>
    10141119        <translation>Не указан файл OVA!</translation>
    10151120    </message>
    10161121    <message>
    1017         <location filename="../VBoxManageAppliance.cpp" line="2639"/>
     1122        <location filename="../VBoxManageAppliance.cpp" line="2793"/>
    10181123        <source>No signing certificate (--certificate=&lt;file&gt;) was specified!</source>
    10191124        <translation>Не указан сертификат (--certificate=&lt;файл&gt;)!</translation>
    10201125    </message>
    10211126    <message>
    1022         <location filename="../VBoxManageAppliance.cpp" line="2641"/>
     1127        <location filename="../VBoxManageAppliance.cpp" line="2795"/>
    10231128        <source>No signing private key (--private-key=&lt;file&gt;) was specified!</source>
    10241129        <translation>Не указан приватный ключ (--private-key=&lt;файл&gt;)!</translation>
    10251130    </message>
    10261131    <message>
    1027         <location filename="../VBoxManageAppliance.cpp" line="2645"/>
     1132        <location filename="../VBoxManageAppliance.cpp" line="2799"/>
    10281133        <source>The specified OVA file was not found: %s</source>
    10291134        <translation>Не найден указанный файл OVA: %s</translation>
    10301135    </message>
    10311136    <message>
    1032         <location filename="../VBoxManageAppliance.cpp" line="2647"/>
     1137        <location filename="../VBoxManageAppliance.cpp" line="2801"/>
    10331138        <source>The specified certificate file was not found: %s</source>
    10341139        <translation>Указанный файл сертификата не найден: %s</translation>
    10351140    </message>
    10361141    <message>
    1037         <location filename="../VBoxManageAppliance.cpp" line="2649"/>
     1142        <location filename="../VBoxManageAppliance.cpp" line="2803"/>
    10381143        <source>The specified private key file was not found: %s</source>
    10391144        <translation>Указанный файл приватного ключа не найден: %s</translation>
    10401145    </message>
    10411146    <message>
    1042         <location filename="../VBoxManageAppliance.cpp" line="2670"/>
     1147        <location filename="../VBoxManageAppliance.cpp" line="2824"/>
    10431148        <source>Error reading certificate from &apos;%s&apos;: %Rrc%#RTeim</source>
    10441149        <translation>Ошибка чтения сертификата из &apos;%s&apos;: %Rrc%#RTeim</translation>
    10451150    </message>
    10461151    <message>
    1047         <location filename="../VBoxManageAppliance.cpp" line="2679"/>
     1152        <location filename="../VBoxManageAppliance.cpp" line="2833"/>
    10481153        <source>Successfully read the certificate and private key.</source>
    10491154        <translation>Успешно прочтены сертификат и приватный ключ.</translation>
    10501155    </message>
    10511156    <message>
    1052         <location filename="../VBoxManageAppliance.cpp" line="2705"/>
     1157        <location filename="../VBoxManageAppliance.cpp" line="2859"/>
    10531158        <source>Successfully signed &apos;%s&apos;.</source>
    10541159        <translation>&apos;%s&apos; подписан успешно.</translation>
    10551160    </message>
    10561161    <message>
    1057         <location filename="../VBoxManageAppliance.cpp" line="2711"/>
     1162        <location filename="../VBoxManageAppliance.cpp" line="2865"/>
    10581163        <source>Error reading the private key from %s: %Rrc%#RTeim</source>
    10591164        <translation>Ошибка чтения приватного ключа из %s: %Rrc%#RTeim</translation>
     
    10631168    <name>BWControl</name>
    10641169    <message>
    1065         <location filename="../VBoxManageBandwidthControl.cpp" line="67"/>
    1066         <location filename="../VBoxManageBandwidthControl.cpp" line="90"/>
     1170        <location filename="../VBoxManageBandwidthControl.cpp" line="65"/>
     1171        <location filename="../VBoxManageBandwidthControl.cpp" line="88"/>
    10671172        <source>Limit is too big
    10681173</source>
     
    10711176    </message>
    10721177    <message>
    1073         <location filename="../VBoxManageBandwidthControl.cpp" line="77"/>
     1178        <location filename="../VBoxManageBandwidthControl.cpp" line="75"/>
    10741179        <source>Invalid unit suffix. Valid suffixes are: k, m, g, K, M, G
    10751180</source>
     
    10781183    </message>
    10791184    <message>
     1185        <location filename="../VBoxManageBandwidthControl.cpp" line="79"/>
     1186        <source>Trailing spaces in limit!
     1187</source>
     1188        <translation>У лимита пробелы в конце строки!
     1189</translation>
     1190    </message>
     1191    <message>
    10801192        <location filename="../VBoxManageBandwidthControl.cpp" line="81"/>
    1081         <source>Trailing spaces in limit!
    1082 </source>
    1083         <translation>У лимита пробелы в конце строки!
     1193        <source>No digits in limit specifier
     1194</source>
     1195        <translation>Нет цифр в спецификаторе лимита
    10841196</translation>
    10851197    </message>
    10861198    <message>
    10871199        <location filename="../VBoxManageBandwidthControl.cpp" line="83"/>
    1088         <source>No digits in limit specifier
    1089 </source>
    1090         <translation>Нет цифр в спецификаторе лимита
    1091 </translation>
    1092     </message>
    1093     <message>
    1094         <location filename="../VBoxManageBandwidthControl.cpp" line="85"/>
    10951200        <source>Invalid limit specifier
    10961201</source>
     
    10991204    </message>
    11001205    <message>
    1101         <location filename="../VBoxManageBandwidthControl.cpp" line="88"/>
     1206        <location filename="../VBoxManageBandwidthControl.cpp" line="86"/>
    11021207        <source>Limit cannot be negative
    11031208</source>
     
    11061211    </message>
    11071212    <message>
    1108         <location filename="../VBoxManageBandwidthControl.cpp" line="115"/>
     1213        <location filename="../VBoxManageBandwidthControl.cpp" line="114"/>
    11091214        <source>Bandwidth group name must not be empty!
    11101215</source>
     
    11131218    </message>
    11141219    <message>
    1115         <location filename="../VBoxManageBandwidthControl.cpp" line="175"/>
     1220        <location filename="../VBoxManageBandwidthControl.cpp" line="174"/>
    11161221        <source>Invalid bandwidth group type
    11171222</source>
     
    11201225    </message>
    11211226    <message>
    1122         <location filename="../VBoxManageBandwidthControl.cpp" line="315"/>
     1227        <location filename="../VBoxManageBandwidthControl.cpp" line="318"/>
    11231228        <source>Too few parameters</source>
    11241229        <translation>Слишком мало параметров</translation>
    11251230    </message>
    11261231    <message>
    1127         <location filename="../VBoxManageBandwidthControl.cpp" line="317"/>
     1232        <location filename="../VBoxManageBandwidthControl.cpp" line="320"/>
    11281233        <source>Too many parameters</source>
    11291234        <translation>Слишком много параметров</translation>
    11301235    </message>
    11311236    <message>
    1132         <location filename="../VBoxManageBandwidthControl.cpp" line="338"/>
     1237        <location filename="../VBoxManageBandwidthControl.cpp" line="341"/>
    11331238        <source>Bandwidth groups cannot be created while the VM is running
    11341239</source>
     
    11371242    </message>
    11381243    <message>
    1139         <location filename="../VBoxManageBandwidthControl.cpp" line="347"/>
     1244        <location filename="../VBoxManageBandwidthControl.cpp" line="350"/>
    11401245        <source>Bandwidth groups cannot be deleted while the VM is running
    11411246</source>
     
    11441249    </message>
    11451250    <message>
    1146         <location filename="../VBoxManageBandwidthControl.cpp" line="358"/>
     1251        <location filename="../VBoxManageBandwidthControl.cpp" line="361"/>
    11471252        <source>Invalid parameter &apos;%s&apos;</source>
    11481253        <translation>Недопустимый параметр &apos;%s&apos;</translation>
     
    11671272    </message>
    11681273    <message>
    1169         <location filename="../VBoxManageCloud.cpp" line="211"/>
    1170         <location filename="../VBoxManageCloud.cpp" line="373"/>
     1274        <location filename="../VBoxManageCloud.cpp" line="210"/>
     1275        <location filename="../VBoxManageCloud.cpp" line="371"/>
    11711276        <source>Parameter &apos;compartment&apos; is empty or absent.
    11721277Trying to get the compartment from the passed cloud profile &apos;%s&apos;
     
    11771282    </message>
    11781283    <message>
    1179         <location filename="../VBoxManageCloud.cpp" line="220"/>
     1284        <location filename="../VBoxManageCloud.cpp" line="219"/>
     1285        <location filename="../VBoxManageCloud.cpp" line="380"/>
     1286        <source>Found the compartment &apos;%s&apos;:
     1287</source>
     1288        <translation>Найдена секция &apos;%s&apos;:
     1289</translation>
     1290    </message>
     1291    <message>
     1292        <location filename="../VBoxManageCloud.cpp" line="221"/>
    11801293        <location filename="../VBoxManageCloud.cpp" line="382"/>
    1181         <source>Found the compartment &apos;%s&apos;:
    1182 </source>
    1183         <translation>Найдена секция &apos;%s&apos;:
    1184 </translation>
    1185     </message>
    1186     <message>
    1187         <location filename="../VBoxManageCloud.cpp" line="222"/>
    1188         <location filename="../VBoxManageCloud.cpp" line="384"/>
    11891294        <source>Parameter --compartment-id is required</source>
    11901295        <translation>Требуется параметр --compartment-id</translation>
    11911296    </message>
    11921297    <message>
    1193         <location filename="../VBoxManageCloud.cpp" line="239"/>
     1298        <location filename="../VBoxManageCloud.cpp" line="238"/>
    11941299        <source>Reply is in the form &apos;instance name&apos; = &apos;instance id&apos;
    11951300</source>
     
    11981303    </message>
    11991304    <message>
    1200         <location filename="../VBoxManageCloud.cpp" line="248"/>
     1305        <location filename="../VBoxManageCloud.cpp" line="247"/>
    12011306        <source>Failed to list instances</source>
    12021307        <translation>Не удалось перечислить экземпляры</translation>
    12031308    </message>
    12041309    <message>
    1205         <location filename="../VBoxManageCloud.cpp" line="257"/>
     1310        <location filename="../VBoxManageCloud.cpp" line="256"/>
    12061311        <source>The list of the instances for the cloud profile &apos;%ls&apos;
    12071312and compartment &apos;%s&apos;:
     
    12121317    </message>
    12131318    <message>
    1214         <location filename="../VBoxManageCloud.cpp" line="325"/>
     1319        <location filename="../VBoxManageCloud.cpp" line="324"/>
    12151320        <source>Unknown cloud image state &quot;%s&quot;</source>
    12161321        <translation>Неизвестное состояние облачного образа &quot;%s&quot;</translation>
    12171322    </message>
    12181323    <message>
    1219         <location filename="../VBoxManageCloud.cpp" line="401"/>
     1324        <location filename="../VBoxManageCloud.cpp" line="399"/>
    12201325        <source>Reply is in the form &apos;image name&apos; = &apos;image id&apos;
    12211326</source>
     
    12241329    </message>
    12251330    <message>
    1226         <location filename="../VBoxManageCloud.cpp" line="409"/>
     1331        <location filename="../VBoxManageCloud.cpp" line="407"/>
    12271332        <source>Failed to list images</source>
    12281333        <translation>Не удалось перечислить образы</translation>
    12291334    </message>
    12301335    <message>
    1231         <location filename="../VBoxManageCloud.cpp" line="418"/>
     1336        <location filename="../VBoxManageCloud.cpp" line="416"/>
    12321337        <source>The list of the images for the cloud profile &apos;%ls&apos;
    12331338and compartment &apos;%s&apos;:
     
    12381343    </message>
    12391344    <message>
    1240         <location filename="../VBoxManageCloud.cpp" line="475"/>
    1241         <location filename="../VBoxManageCloud.cpp" line="546"/>
    1242         <location filename="../VBoxManageCloud.cpp" line="729"/>
    1243         <location filename="../VBoxManageCloud.cpp" line="881"/>
    1244         <location filename="../VBoxManageCloud.cpp" line="964"/>
    1245         <location filename="../VBoxManageCloud.cpp" line="1047"/>
    1246         <location filename="../VBoxManageCloud.cpp" line="1145"/>
    1247         <location filename="../VBoxManageCloud.cpp" line="1222"/>
    1248         <location filename="../VBoxManageCloud.cpp" line="1329"/>
    1249         <location filename="../VBoxManageCloud.cpp" line="1525"/>
    1250         <location filename="../VBoxManageCloud.cpp" line="1611"/>
    1251         <location filename="../VBoxManageCloud.cpp" line="1703"/>
    1252         <location filename="../VBoxManageCloud.cpp" line="1799"/>
     1345        <location filename="../VBoxManageCloud.cpp" line="473"/>
     1346        <location filename="../VBoxManageCloud.cpp" line="553"/>
     1347        <location filename="../VBoxManageCloud.cpp" line="747"/>
     1348        <location filename="../VBoxManageCloud.cpp" line="898"/>
     1349        <location filename="../VBoxManageCloud.cpp" line="980"/>
     1350        <location filename="../VBoxManageCloud.cpp" line="1062"/>
     1351        <location filename="../VBoxManageCloud.cpp" line="1159"/>
     1352        <location filename="../VBoxManageCloud.cpp" line="1236"/>
     1353        <location filename="../VBoxManageCloud.cpp" line="1342"/>
     1354        <location filename="../VBoxManageCloud.cpp" line="1537"/>
     1355        <location filename="../VBoxManageCloud.cpp" line="1622"/>
     1356        <location filename="../VBoxManageCloud.cpp" line="1713"/>
     1357        <location filename="../VBoxManageCloud.cpp" line="1808"/>
    12531358        <source>Empty command parameter list, show help.
    12541359</source>
     
    12571362    </message>
    12581363    <message>
    1259         <location filename="../VBoxManageCloud.cpp" line="645"/>
     1364        <location filename="../VBoxManageCloud.cpp" line="663"/>
    12601365        <source>Warning!!! Public SSH key doesn&apos;t present in the passed arguments...
    12611366</source>
     
    12641369    </message>
    12651370    <message>
    1266         <location filename="../VBoxManageCloud.cpp" line="648"/>
     1371        <location filename="../VBoxManageCloud.cpp" line="666"/>
    12671372        <source>Parameters --image-id and --boot-volume-id are mutually exclusive. Only one of them must be presented.</source>
    12681373        <translation>Параметры --image-id и --boot-volume-id взаимоисключающие. Может быть указан только один из них.</translation>
    12691374    </message>
    12701375    <message>
    1271         <location filename="../VBoxManageCloud.cpp" line="652"/>
     1376        <location filename="../VBoxManageCloud.cpp" line="670"/>
    12721377        <source>Missing parameter --image-id or --boot-volume-id. One of them must be presented.</source>
    12731378        <translation>Отсутствуют параметры --image-id и --boot-volume-id. Один из них должен быть указан.</translation>
    12741379    </message>
    12751380    <message>
    1276         <location filename="../VBoxManageCloud.cpp" line="674"/>
     1381        <location filename="../VBoxManageCloud.cpp" line="692"/>
    12771382        <source>Checking the cloud image with id &apos;%s&apos;...
    12781383</source>
     
    12811386    </message>
    12821387    <message>
    1283         <location filename="../VBoxManageCloud.cpp" line="682"/>
     1388        <location filename="../VBoxManageCloud.cpp" line="700"/>
    12841389        <source>Checking the cloud image failed</source>
    12851390        <translation>Не удалось проверить облачный образ</translation>
    12861391    </message>
    12871392    <message>
    1288         <location filename="../VBoxManageCloud.cpp" line="688"/>
     1393        <location filename="../VBoxManageCloud.cpp" line="706"/>
    12891394        <source>Creating cloud instance with name &apos;%s&apos; from the image &apos;%s&apos;...
    12901395</source>
     
    12931398    </message>
    12941399    <message>
    1295         <location filename="../VBoxManageCloud.cpp" line="691"/>
     1400        <location filename="../VBoxManageCloud.cpp" line="709"/>
    12961401        <source>Creating cloud instance with name &apos;%s&apos; from the boot volume &apos;%s&apos;...
    12971402</source>
     
    13001405    </message>
    13011406    <message>
    1302         <location filename="../VBoxManageCloud.cpp" line="697"/>
     1407        <location filename="../VBoxManageCloud.cpp" line="715"/>
    13031408        <source>Creating cloud instance failed</source>
    13041409        <translation>Не удалось создать облачный экземпляр</translation>
    13051410    </message>
    13061411    <message>
    1307         <location filename="../VBoxManageCloud.cpp" line="700"/>
     1412        <location filename="../VBoxManageCloud.cpp" line="718"/>
    13081413        <source>Cloud instance was created successfully
    13091414</source>
     
    13121417    </message>
    13131418    <message>
    1314         <location filename="../VBoxManageCloud.cpp" line="744"/>
    1315         <location filename="../VBoxManageCloud.cpp" line="896"/>
    1316         <location filename="../VBoxManageCloud.cpp" line="979"/>
    1317         <location filename="../VBoxManageCloud.cpp" line="1062"/>
    1318         <location filename="../VBoxManageCloud.cpp" line="1373"/>
    1319         <location filename="../VBoxManageCloud.cpp" line="1718"/>
     1419        <location filename="../VBoxManageCloud.cpp" line="762"/>
     1420        <location filename="../VBoxManageCloud.cpp" line="913"/>
     1421        <location filename="../VBoxManageCloud.cpp" line="995"/>
     1422        <location filename="../VBoxManageCloud.cpp" line="1077"/>
     1423        <location filename="../VBoxManageCloud.cpp" line="1386"/>
     1424        <location filename="../VBoxManageCloud.cpp" line="1728"/>
    13201425        <source>Duplicate parameter: --id</source>
    13211426        <translation>Дублированный параметр: --id</translation>
    13221427    </message>
    13231428    <message>
    1324         <location filename="../VBoxManageCloud.cpp" line="748"/>
    1325         <location filename="../VBoxManageCloud.cpp" line="900"/>
    1326         <location filename="../VBoxManageCloud.cpp" line="983"/>
    1327         <location filename="../VBoxManageCloud.cpp" line="1066"/>
    1328         <location filename="../VBoxManageCloud.cpp" line="1377"/>
    1329         <location filename="../VBoxManageCloud.cpp" line="1722"/>
     1429        <location filename="../VBoxManageCloud.cpp" line="766"/>
     1430        <location filename="../VBoxManageCloud.cpp" line="917"/>
     1431        <location filename="../VBoxManageCloud.cpp" line="999"/>
     1432        <location filename="../VBoxManageCloud.cpp" line="1081"/>
     1433        <location filename="../VBoxManageCloud.cpp" line="1390"/>
     1434        <location filename="../VBoxManageCloud.cpp" line="1732"/>
    13301435        <source>Empty parameter: --id</source>
    13311436        <translation>Пустой параметр: --id</translation>
    13321437    </message>
    13331438    <message>
    1334         <location filename="../VBoxManageCloud.cpp" line="770"/>
    1335         <location filename="../VBoxManageCloud.cpp" line="922"/>
    1336         <location filename="../VBoxManageCloud.cpp" line="1005"/>
    1337         <location filename="../VBoxManageCloud.cpp" line="1088"/>
    1338         <location filename="../VBoxManageCloud.cpp" line="1427"/>
    1339         <location filename="../VBoxManageCloud.cpp" line="1745"/>
     1439        <location filename="../VBoxManageCloud.cpp" line="787"/>
     1440        <location filename="../VBoxManageCloud.cpp" line="938"/>
     1441        <location filename="../VBoxManageCloud.cpp" line="1020"/>
     1442        <location filename="../VBoxManageCloud.cpp" line="1102"/>
     1443        <location filename="../VBoxManageCloud.cpp" line="1439"/>
     1444        <location filename="../VBoxManageCloud.cpp" line="1754"/>
    13401445        <source>Missing parameter: --id</source>
    13411446        <translation>Отсутствует параметр: --id</translation>
    13421447    </message>
    13431448    <message>
    1344         <location filename="../VBoxManageCloud.cpp" line="778"/>
     1449        <location filename="../VBoxManageCloud.cpp" line="795"/>
    13451450        <source>Getting information about cloud instance with id %s...
    13461451</source>
     
    13491454    </message>
    13501455    <message>
    1351         <location filename="../VBoxManageCloud.cpp" line="779"/>
     1456        <location filename="../VBoxManageCloud.cpp" line="796"/>
    13521457        <source>Reply is in the form &apos;setting name&apos; = &apos;value&apos;
    13531458</source>
     
    13561461    </message>
    13571462    <message>
    1358         <location filename="../VBoxManageCloud.cpp" line="800"/>
     1463        <location filename="../VBoxManageCloud.cpp" line="817"/>
    13591464        <source>Getting information about cloud instance failed</source>
    13601465        <translation>Не удалось получить информацию об облачном экземпляре</translation>
    13611466    </message>
    13621467    <message>
    1363         <location filename="../VBoxManageCloud.cpp" line="802"/>
     1468        <location filename="../VBoxManageCloud.cpp" line="819"/>
    13641469        <source>Cloud instance info (provider &apos;%s&apos;):
    13651470</source>
     
    13681473    </message>
    13691474    <message>
    1370         <location filename="../VBoxManageCloud.cpp" line="813"/>
     1475        <location filename="../VBoxManageCloud.cpp" line="830"/>
    13711476        <source>Availability domain = %ls
    13721477</source>
     
    13751480    </message>
    13761481    <message>
    1377         <location filename="../VBoxManageCloud.cpp" line="813"/>
     1482        <location filename="../VBoxManageCloud.cpp" line="830"/>
    13781483        <source>Availability domain wasn&apos;t found
    13791484</source>
     
    13821487    </message>
    13831488    <message>
    1384         <location filename="../VBoxManageCloud.cpp" line="814"/>
     1489        <location filename="../VBoxManageCloud.cpp" line="831"/>
    13851490        <source>Instance displayed name = %ls
    13861491</source>
     
    13891494    </message>
    13901495    <message>
    1391         <location filename="../VBoxManageCloud.cpp" line="814"/>
     1496        <location filename="../VBoxManageCloud.cpp" line="831"/>
    13921497        <source>Instance displayed name wasn&apos;t found
    13931498</source>
     
    13961501    </message>
    13971502    <message>
    1398         <location filename="../VBoxManageCloud.cpp" line="815"/>
     1503        <location filename="../VBoxManageCloud.cpp" line="832"/>
    13991504        <source>Instance state = %ls
    14001505</source>
     
    14031508    </message>
    14041509    <message>
    1405         <location filename="../VBoxManageCloud.cpp" line="815"/>
     1510        <location filename="../VBoxManageCloud.cpp" line="832"/>
    14061511        <source>Instance state wasn&apos;t found
    14071512</source>
     
    14101515    </message>
    14111516    <message>
    1412         <location filename="../VBoxManageCloud.cpp" line="816"/>
     1517        <location filename="../VBoxManageCloud.cpp" line="833"/>
    14131518        <source>Instance Id = %ls
    14141519</source>
     
    14171522    </message>
    14181523    <message>
    1419         <location filename="../VBoxManageCloud.cpp" line="816"/>
     1524        <location filename="../VBoxManageCloud.cpp" line="833"/>
    14201525        <source>Instance Id wasn&apos;t found
    14211526</source>
     
    14241529    </message>
    14251530    <message>
    1426         <location filename="../VBoxManageCloud.cpp" line="817"/>
     1531        <location filename="../VBoxManageCloud.cpp" line="834"/>
    14271532        <source>Instance name = %ls
    14281533</source>
     
    14311536    </message>
    14321537    <message>
    1433         <location filename="../VBoxManageCloud.cpp" line="817"/>
     1538        <location filename="../VBoxManageCloud.cpp" line="834"/>
    14341539        <source>Instance name wasn&apos;t found
    14351540</source>
     
    14381543    </message>
    14391544    <message>
    1440         <location filename="../VBoxManageCloud.cpp" line="818"/>
     1545        <location filename="../VBoxManageCloud.cpp" line="835"/>
    14411546        <source>Bootable image Id = %ls
    14421547</source>
     
    14451550    </message>
    14461551    <message>
    1447         <location filename="../VBoxManageCloud.cpp" line="819"/>
     1552        <location filename="../VBoxManageCloud.cpp" line="836"/>
    14481553        <source>Image Id whom the instance is booted up wasn&apos;t found
    14491554</source>
     
    14521557    </message>
    14531558    <message>
    1454         <location filename="../VBoxManageCloud.cpp" line="820"/>
     1559        <location filename="../VBoxManageCloud.cpp" line="837"/>
    14551560        <source>Shape of the instance = %ls
    14561561</source>
     
    14591564    </message>
    14601565    <message>
    1461         <location filename="../VBoxManageCloud.cpp" line="821"/>
     1566        <location filename="../VBoxManageCloud.cpp" line="838"/>
    14621567        <source>The shape of the instance wasn&apos;t found
    14631568</source>
     
    14661571    </message>
    14671572    <message>
    1468         <location filename="../VBoxManageCloud.cpp" line="822"/>
     1573        <location filename="../VBoxManageCloud.cpp" line="839"/>
    14691574        <source>Type of guest OS = %ls
    14701575</source>
     
    14731578    </message>
    14741579    <message>
    1475         <location filename="../VBoxManageCloud.cpp" line="822"/>
     1580        <location filename="../VBoxManageCloud.cpp" line="839"/>
    14761581        <source>Type of guest OS wasn&apos;t found
    14771582</source>
     
    14801585    </message>
    14811586    <message>
    1482         <location filename="../VBoxManageCloud.cpp" line="823"/>
     1587        <location filename="../VBoxManageCloud.cpp" line="840"/>
    14831588        <source>RAM = %ls MB
    14841589</source>
     
    14871592    </message>
    14881593    <message>
    1489         <location filename="../VBoxManageCloud.cpp" line="823"/>
     1594        <location filename="../VBoxManageCloud.cpp" line="840"/>
    14901595        <source>Value for RAM wasn&apos;t found
    14911596</source>
     
    14941599    </message>
    14951600    <message>
    1496         <location filename="../VBoxManageCloud.cpp" line="824"/>
     1601        <location filename="../VBoxManageCloud.cpp" line="841"/>
    14971602        <source>CPUs = %ls
    14981603</source>
     
    15011606    </message>
    15021607    <message>
    1503         <location filename="../VBoxManageCloud.cpp" line="824"/>
     1608        <location filename="../VBoxManageCloud.cpp" line="841"/>
    15041609        <source>Numbers of CPUs weren&apos;t found
    15051610</source>
     
    15081613    </message>
    15091614    <message>
    1510         <location filename="../VBoxManageCloud.cpp" line="825"/>
     1615        <location filename="../VBoxManageCloud.cpp" line="842"/>
    15111616        <source>Instance public IP = %ls
    15121617</source>
     
    15151620    </message>
    15161621    <message>
    1517         <location filename="../VBoxManageCloud.cpp" line="825"/>
     1622        <location filename="../VBoxManageCloud.cpp" line="842"/>
    15181623        <source>Public IP wasn&apos;t found
    15191624</source>
     
    15221627    </message>
    15231628    <message>
    1524         <location filename="../VBoxManageCloud.cpp" line="826"/>
     1629        <location filename="../VBoxManageCloud.cpp" line="843"/>
    15251630        <source>Free-form tags or metadata weren&apos;t found
    15261631</source>
     
    15291634    </message>
    15301635    <message>
    1531         <location filename="../VBoxManageCloud.cpp" line="827"/>
     1636        <location filename="../VBoxManageCloud.cpp" line="844"/>
    15321637        <source>Cloud-init script wasn&apos;t found
    15331638</source>
     
    15361641    </message>
    15371642    <message>
    1538         <location filename="../VBoxManageCloud.cpp" line="930"/>
     1643        <location filename="../VBoxManageCloud.cpp" line="946"/>
    15391644        <source>Starting cloud instance with id %s...
    15401645</source>
     
    15431648    </message>
    15441649    <message>
    1545         <location filename="../VBoxManageCloud.cpp" line="937"/>
     1650        <location filename="../VBoxManageCloud.cpp" line="953"/>
    15461651        <source>Starting the cloud instance failed</source>
    15471652        <translation>Не удалось запустить облачный экземпляр</translation>
    15481653    </message>
    15491654    <message>
    1550         <location filename="../VBoxManageCloud.cpp" line="940"/>
     1655        <location filename="../VBoxManageCloud.cpp" line="956"/>
    15511656        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was started
    15521657</source>
     
    15551660    </message>
    15561661    <message>
    1557         <location filename="../VBoxManageCloud.cpp" line="1013"/>
     1662        <location filename="../VBoxManageCloud.cpp" line="1028"/>
    15581663        <source>Pausing cloud instance with id %s...
    15591664</source>
     
    15621667    </message>
    15631668    <message>
    1564         <location filename="../VBoxManageCloud.cpp" line="1020"/>
     1669        <location filename="../VBoxManageCloud.cpp" line="1035"/>
    15651670        <source>Pause the cloud instance failed</source>
    15661671        <translation>Не удалось приостановить облачный экземпляр</translation>
    15671672    </message>
    15681673    <message>
    1569         <location filename="../VBoxManageCloud.cpp" line="1023"/>
     1674        <location filename="../VBoxManageCloud.cpp" line="1038"/>
    15701675        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was paused
    15711676</source>
     
    15741679    </message>
    15751680    <message>
    1576         <location filename="../VBoxManageCloud.cpp" line="1097"/>
     1681        <location filename="../VBoxManageCloud.cpp" line="1111"/>
    15771682        <source>Terminating cloud instance with id %s...
    15781683</source>
     
    15811686    </message>
    15821687    <message>
    1583         <location filename="../VBoxManageCloud.cpp" line="1104"/>
     1688        <location filename="../VBoxManageCloud.cpp" line="1118"/>
    15841689        <source>Termination the cloud instance failed</source>
    15851690        <translation>Не удалось завершить работу облачного экземпляра</translation>
    15861691    </message>
    15871692    <message>
    1588         <location filename="../VBoxManageCloud.cpp" line="1107"/>
     1693        <location filename="../VBoxManageCloud.cpp" line="1121"/>
    15891694        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was terminated
    15901695</source>
     
    15931698    </message>
    15941699    <message>
    1595         <location filename="../VBoxManageCloud.cpp" line="1280"/>
     1700        <location filename="../VBoxManageCloud.cpp" line="1293"/>
    15961701        <source>Conflicting parameters: --instance-id and --object-name can&apos;t be used together. Choose one.</source>
    15971702        <translation>Конфликтующие параметры: --instance-id и --object-name не могут быть использованы вместе. Выберите один.</translation>
    15981703    </message>
    15991704    <message>
    1600         <location filename="../VBoxManageCloud.cpp" line="1289"/>
     1705        <location filename="../VBoxManageCloud.cpp" line="1302"/>
    16011706        <source>Creating cloud image with name &apos;%s&apos; from the instance &apos;%s&apos;...
    16021707</source>
     
    16051710    </message>
    16061711    <message>
    1607         <location filename="../VBoxManageCloud.cpp" line="1292"/>
     1712        <location filename="../VBoxManageCloud.cpp" line="1305"/>
    16081713        <source>Creating cloud image with name &apos;%s&apos; from the object &apos;%s&apos; in the bucket &apos;%s&apos;...
    16091714</source>
     
    16121717    </message>
    16131718    <message>
    1614         <location filename="../VBoxManageCloud.cpp" line="1300"/>
     1719        <location filename="../VBoxManageCloud.cpp" line="1313"/>
    16151720        <source>Creating cloud image failed</source>
    16161721        <translation>Не удалось создать облачный образ</translation>
    16171722    </message>
    16181723    <message>
    1619         <location filename="../VBoxManageCloud.cpp" line="1303"/>
     1724        <location filename="../VBoxManageCloud.cpp" line="1316"/>
    16201725        <source>Cloud image was created successfully
    16211726</source>
     
    16241729    </message>
    16251730    <message>
    1626         <location filename="../VBoxManageCloud.cpp" line="1349"/>
     1731        <location filename="../VBoxManageCloud.cpp" line="1362"/>
    16271732        <source>Duplicate parameter: --bucket-name</source>
    16281733        <translation>Дублированный параметр: --bucket-name</translation>
    16291734    </message>
    16301735    <message>
    1631         <location filename="../VBoxManageCloud.cpp" line="1353"/>
     1736        <location filename="../VBoxManageCloud.cpp" line="1366"/>
    16321737        <source>Empty parameter: --bucket-name</source>
    16331738        <translation>Пустой параметр: --bucket-name</translation>
    16341739    </message>
    16351740    <message>
    1636         <location filename="../VBoxManageCloud.cpp" line="1361"/>
     1741        <location filename="../VBoxManageCloud.cpp" line="1374"/>
    16371742        <source>Duplicate parameter: --object-name</source>
    16381743        <translation>Дублированный параметр: --object-name</translation>
    16391744    </message>
    16401745    <message>
    1641         <location filename="../VBoxManageCloud.cpp" line="1365"/>
     1746        <location filename="../VBoxManageCloud.cpp" line="1378"/>
    16421747        <source>Empty parameter: --object-name</source>
    16431748        <translation>Пустой параметр: --object-name</translation>
    16441749    </message>
    16451750    <message>
    1646         <location filename="../VBoxManageCloud.cpp" line="1385"/>
     1751        <location filename="../VBoxManageCloud.cpp" line="1398"/>
    16471752        <source>Duplicate parameter: --display-name</source>
    16481753        <translation>Дублированный параметр: --display-name</translation>
    16491754    </message>
    16501755    <message>
    1651         <location filename="../VBoxManageCloud.cpp" line="1389"/>
     1756        <location filename="../VBoxManageCloud.cpp" line="1402"/>
    16521757        <source>Empty parameter: --display-name</source>
    16531758        <translation>Пустой параметр: --display-name</translation>
    16541759    </message>
    16551760    <message>
    1656         <location filename="../VBoxManageCloud.cpp" line="1397"/>
     1761        <location filename="../VBoxManageCloud.cpp" line="1410"/>
    16571762        <source>Duplicate parameter: --launch-mode</source>
    16581763        <translation>Дублированный параметр: --launch-mode</translation>
    16591764    </message>
    16601765    <message>
    1661         <location filename="../VBoxManageCloud.cpp" line="1401"/>
     1766        <location filename="../VBoxManageCloud.cpp" line="1414"/>
    16621767        <source>Empty parameter: --launch-mode</source>
    16631768        <translation>Пустой параметр: --launch-mode</translation>
    16641769    </message>
    16651770    <message>
    1666         <location filename="../VBoxManageCloud.cpp" line="1432"/>
     1771        <location filename="../VBoxManageCloud.cpp" line="1444"/>
    16671772        <source>Missing parameter: --bucket-name</source>
    16681773        <translation>Отсутствует параметр: --bucket-name</translation>
    16691774    </message>
    16701775    <message>
    1671         <location filename="../VBoxManageCloud.cpp" line="1452"/>
     1776        <location filename="../VBoxManageCloud.cpp" line="1464"/>
    16721777        <source>Exporting image &apos;%s&apos; to the Cloud with name &apos;%s&apos;...
    16731778</source>
     
    16761781    </message>
    16771782    <message>
    1678         <location filename="../VBoxManageCloud.cpp" line="1455"/>
     1783        <location filename="../VBoxManageCloud.cpp" line="1467"/>
    16791784        <source>Exporting image &apos;%s&apos; to the Cloud with default name
    16801785</source>
     
    16831788    </message>
    16841789    <message>
    1685         <location filename="../VBoxManageCloud.cpp" line="1483"/>
     1790        <location filename="../VBoxManageCloud.cpp" line="1495"/>
    16861791        <source>Image %s was found
    16871792</source>
     
    16901795    </message>
    16911796    <message>
    1692         <location filename="../VBoxManageCloud.cpp" line="1490"/>
     1797        <location filename="../VBoxManageCloud.cpp" line="1502"/>
    16931798        <source>Process of exporting the image to the Cloud was interrupted. The image wasn&apos;t found.
    16941799</source>
     
    16971802    </message>
    16981803    <message>
    1699         <location filename="../VBoxManageCloud.cpp" line="1499"/>
     1804        <location filename="../VBoxManageCloud.cpp" line="1511"/>
    17001805        <source>Export the image to the Cloud failed</source>
    17011806        <translation>Не удалось экспортировать образ в облако</translation>
    17021807    </message>
    17031808    <message>
    1704         <location filename="../VBoxManageCloud.cpp" line="1502"/>
     1809        <location filename="../VBoxManageCloud.cpp" line="1514"/>
    17051810        <source>Export the image to the Cloud was successfull
    17061811</source>
     
    17091814    </message>
    17101815    <message>
    1711         <location filename="../VBoxManageCloud.cpp" line="1576"/>
     1816        <location filename="../VBoxManageCloud.cpp" line="1587"/>
    17121817        <source>Creating an object &apos;%s&apos; from the cloud image &apos;%s&apos;...
    17131818</source>
     
    17161821    </message>
    17171822    <message>
    1718         <location filename="../VBoxManageCloud.cpp" line="1583"/>
     1823        <location filename="../VBoxManageCloud.cpp" line="1594"/>
    17191824        <source>Cloud image import failed</source>
    17201825        <translation>Не удалось импортировать облачный образ</translation>
    17211826    </message>
    17221827    <message>
    1723         <location filename="../VBoxManageCloud.cpp" line="1587"/>
     1828        <location filename="../VBoxManageCloud.cpp" line="1598"/>
    17241829        <source>Cloud image was imported successfully. Find the downloaded object with the name %s in the system temp folder (find the possible environment variables like TEMP, TMP and etc.)
    17251830</source>
     
    17281833    </message>
    17291834    <message>
    1730         <location filename="../VBoxManageCloud.cpp" line="1648"/>
     1835        <location filename="../VBoxManageCloud.cpp" line="1658"/>
    17311836        <source>Getting information about the cloud image with id &apos;%s&apos;...
    17321837</source>
     
    17351840    </message>
    17361841    <message>
    1737         <location filename="../VBoxManageCloud.cpp" line="1654"/>
     1842        <location filename="../VBoxManageCloud.cpp" line="1664"/>
    17381843        <source>Reply is in the form &apos;image property&apos; = &apos;value&apos;
    17391844</source>
     
    17421847    </message>
    17431848    <message>
    1744         <location filename="../VBoxManageCloud.cpp" line="1662"/>
     1849        <location filename="../VBoxManageCloud.cpp" line="1672"/>
    17451850        <source>Getting information about the cloud image failed</source>
    17461851        <translation>Не удалось получить информацию об облачном образе</translation>
    17471852    </message>
    17481853    <message>
    1749         <location filename="../VBoxManageCloud.cpp" line="1668"/>
     1854        <location filename="../VBoxManageCloud.cpp" line="1678"/>
    17501855        <source>General information about the image:
    17511856</source>
     
    17541859    </message>
    17551860    <message>
    1756         <location filename="../VBoxManageCloud.cpp" line="1754"/>
     1861        <location filename="../VBoxManageCloud.cpp" line="1763"/>
    17571862        <source>Deleting cloud image with id %s...
    17581863</source>
     
    17611866    </message>
    17621867    <message>
    1763         <location filename="../VBoxManageCloud.cpp" line="1761"/>
     1868        <location filename="../VBoxManageCloud.cpp" line="1770"/>
    17641869        <source>Deleting cloud image failed</source>
    17651870        <translation>Не удалось удалить облачный образ</translation>
    17661871    </message>
    17671872    <message>
    1768         <location filename="../VBoxManageCloud.cpp" line="1764"/>
     1873        <location filename="../VBoxManageCloud.cpp" line="1773"/>
    17691874        <source>Cloud image was deleted successfully
    17701875</source>
     
    17731878    </message>
    17741879    <message>
    1775         <location filename="../VBoxManageCloud.cpp" line="1947"/>
    1776         <location filename="../VBoxManageCloud.cpp" line="1998"/>
    1777         <location filename="../VBoxManageCloud.cpp" line="2072"/>
    1778         <location filename="../VBoxManageCloud.cpp" line="2119"/>
     1880        <location filename="../VBoxManageCloud.cpp" line="1956"/>
     1881        <location filename="../VBoxManageCloud.cpp" line="2007"/>
     1882        <location filename="../VBoxManageCloud.cpp" line="2081"/>
     1883        <location filename="../VBoxManageCloud.cpp" line="2128"/>
    17791884        <source>Missing --name parameter</source>
    17801885        <translation>Отсутствует параметр --name</translation>
    17811886    </message>
    17821887    <message>
    1783         <location filename="../VBoxManageCloud.cpp" line="1949"/>
     1888        <location filename="../VBoxManageCloud.cpp" line="1958"/>
    17841889        <source>Missing --network-id parameter</source>
    17851890        <translation>Отсутствует параметр --network-id</translation>
    17861891    </message>
    17871892    <message>
    1788         <location filename="../VBoxManageCloud.cpp" line="1961"/>
     1893        <location filename="../VBoxManageCloud.cpp" line="1970"/>
    17891894        <source>Cloud network was created successfully
    17901895</source>
     
    17931898    </message>
    17941899    <message>
    1795         <location filename="../VBoxManageCloud.cpp" line="2006"/>
     1900        <location filename="../VBoxManageCloud.cpp" line="2015"/>
    17961901        <source>Name:            %ls
    17971902</source>
     
    18001905    </message>
    18011906    <message>
    1802         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1907        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    18031908        <source>State:           %s
    18041909</source>
     
    18071912    </message>
    18081913    <message>
    1809         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1914        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    18101915        <source>Enabled</source>
    18111916        <translation>Включено</translation>
    18121917    </message>
    18131918    <message>
    1814         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1919        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    18151920        <source>Disabled</source>
    18161921        <translation>Отключено</translation>
    18171922    </message>
    18181923    <message>
    1819         <location filename="../VBoxManageCloud.cpp" line="2012"/>
     1924        <location filename="../VBoxManageCloud.cpp" line="2021"/>
    18201925        <source>CloudProvider:   %ls
    18211926</source>
     
    18241929    </message>
    18251930    <message>
    1826         <location filename="../VBoxManageCloud.cpp" line="2015"/>
     1931        <location filename="../VBoxManageCloud.cpp" line="2024"/>
    18271932        <source>CloudProfile:    %ls
    18281933</source>
     
    18311936    </message>
    18321937    <message>
    1833         <location filename="../VBoxManageCloud.cpp" line="2018"/>
     1938        <location filename="../VBoxManageCloud.cpp" line="2027"/>
    18341939        <source>CloudNetworkId:  %ls
    18351940</source>
     
    18381943    </message>
    18391944    <message>
    1840         <location filename="../VBoxManageCloud.cpp" line="2020"/>
     1945        <location filename="../VBoxManageCloud.cpp" line="2029"/>
    18411946        <source>VBoxNetworkName: %ls
    18421947
     
    18471952    </message>
    18481953    <message>
    1849         <location filename="../VBoxManageCloud.cpp" line="2082"/>
     1954        <location filename="../VBoxManageCloud.cpp" line="2091"/>
    18501955        <source>Cloud network %ls was updated successfully
    18511956</source>
     
    18541959    </message>
    18551960    <message>
    1856         <location filename="../VBoxManageCloud.cpp" line="2132"/>
     1961        <location filename="../VBoxManageCloud.cpp" line="2141"/>
    18571962        <source>Cloud network %ls was deleted successfully
    18581963</source>
     
    18611966    </message>
    18621967    <message>
    1863         <location filename="../VBoxManageCloud.cpp" line="2164"/>
    18641968        <source>Failed to compose path to the unattended installer script templates (%Rrc)</source>
    1865         <translation>Не удалось собрать путь для шаблонов скриптов unattended инсталлятора (%Rrc)</translation>
    1866     </message>
    1867     <message>
    1868         <location filename="../VBoxManageCloud.cpp" line="2289"/>
     1969        <translation type="vanished">Не удалось собрать путь для шаблонов скриптов unattended инсталлятора (%Rrc)</translation>
     1970    </message>
     1971    <message>
    18691972        <source>Failed to obtain system properties.</source>
    1870         <translation>Не удалось получить свойства системы.</translation>
    1871     </message>
    1872     <message>
    1873         <location filename="../VBoxManageCloud.cpp" line="2296"/>
     1973        <translation type="vanished">Не удалось получить свойства системы.</translation>
     1974    </message>
     1975    <message>
    18741976        <source>Failed to obtain proxy mode.</source>
    1875         <translation>Не удалось получить режим прокси.</translation>
    1876     </message>
    1877     <message>
    1878         <location filename="../VBoxManageCloud.cpp" line="2305"/>
     1977        <translation type="vanished">Не удалось получить режим прокси.</translation>
     1978    </message>
     1979    <message>
    18791980        <source>Failed to obtain proxy URL.</source>
    1880         <translation>Не удалось получить URL прокси.</translation>
    1881     </message>
    1882     <message>
    1883         <location filename="../VBoxManageCloud.cpp" line="2311"/>
     1981        <translation type="vanished">Не удалось получить URL прокси.</translation>
     1982    </message>
     1983    <message>
    18841984        <source>Failed to get system proxy for https://dl.fedoraproject.org. Will use direct connection.</source>
    1885         <translation>Не удалось получить системный прокси для https://dl.fedoraproject.org. Будет использовано прямое соединение.</translation>
    1886     </message>
    1887     <message>
    1888         <location filename="../VBoxManageCloud.cpp" line="2320"/>
     1985        <translation type="vanished">Не удалось получить системный прокси для https://dl.fedoraproject.org. Будет использовано прямое соединение.</translation>
     1986    </message>
     1987    <message>
    18891988        <source>Failed to obtain default machine folder.</source>
    1890         <translation>Не удалось получить папку машины по умолчанию.</translation>
    1891     </message>
    1892     <message>
    1893         <location filename="../VBoxManageCloud.cpp" line="2325"/>
     1989        <translation type="vanished">Не удалось получить папку машины по умолчанию.</translation>
     1990    </message>
     1991    <message>
    18941992        <source>Failed to obtain default guest additions ISO path.</source>
    1895         <translation>Не удалось получить путь по умолчанию к ISO Дополнений Гостевой ОС.</translation>
    1896     </message>
    1897     <message>
    1898         <location filename="../VBoxManageCloud.cpp" line="2329"/>
     1993        <translation type="vanished">Не удалось получить путь по умолчанию к ISO Дополнений Гостевой ОС.</translation>
     1994    </message>
     1995    <message>
    18991996        <source>The default guest additions ISO path is empty nor it is provided as --guest-additions-iso parameter. Cannot proceed without it.</source>
    1900         <translation>Путь по умолчанию к ISO Дополнений Гостевой ОС пуст или не указан через --guest-additions-iso parameter. Продолжение невозможно без этого.</translation>
    1901     </message>
    1902     <message>
    1903         <location filename="../VBoxManageCloud.cpp" line="2340"/>
     1997        <translation type="vanished">Путь по умолчанию к ISO Дополнений Гостевой ОС пуст или не указан через --guest-additions-iso parameter. Продолжение невозможно без этого.</translation>
     1998    </message>
     1999    <message>
    19042000        <source>Failed to compose a path to the local gateway image (%Rrc)</source>
    1905         <translation>Не удалось собрать путь к образу локального шлюза (%Rrc)</translation>
    1906     </message>
    1907     <message>
    1908         <location filename="../VBoxManageCloud.cpp" line="2348"/>
     2001        <translation type="vanished">Не удалось собрать путь к образу локального шлюза (%Rrc)</translation>
     2002    </message>
     2003    <message>
    19092004        <source>Local gateway image already exists, skipping image preparation step.
    19102005</source>
    1911         <translation>Образ локального шлюза уже существует, пропуск шага подготовки образа.
    1912 </translation>
    1913     </message>
    1914     <message>
    1915         <location filename="../VBoxManageCloud.cpp" line="2352"/>
     2006        <translation type="vanished">Образ локального шлюза уже существует, пропуск шага подготовки образа.
     2007</translation>
     2008    </message>
     2009    <message>
    19162010        <source>Preparing unattended install of temporary local gateway machine from %ls...
    19172011</source>
    1918         <translation>Подготовка unattended установки  машины временного локального шлюза из %ls...
    1919 </translation>
    1920     </message>
    1921     <message>
    1922         <location filename="../VBoxManageCloud.cpp" line="2356"/>
     2012        <translation type="vanished">Подготовка unattended установки  машины временного локального шлюза из %ls...
     2013</translation>
     2014    </message>
     2015    <message>
    19232016        <source>Failed to open %ls.</source>
    1924         <translation>Не удалось открыть %ls.</translation>
    1925     </message>
    1926     <message>
    1927         <location filename="../VBoxManageCloud.cpp" line="2363"/>
     2017        <translation type="vanished">Не удалось открыть %ls.</translation>
     2018    </message>
     2019    <message>
    19282020        <source>Failed to create &apos;%ls&apos;.</source>
    1929         <translation>Не удалось создать &apos;%ls&apos;.</translation>
    1930     </message>
    1931     <message>
    1932         <location filename="../VBoxManageCloud.cpp" line="2367"/>
     2021        <translation type="vanished">Не удалось создать &apos;%ls&apos;.</translation>
     2022    </message>
     2023    <message>
    19332024        <source>Failed to apply defaults to &apos;%ls&apos;.</source>
    1934         <translation>Не удалось применить настройки по умолчанию к &apos;%ls&apos;.</translation>
    1935     </message>
    1936     <message>
    1937         <location filename="../VBoxManageCloud.cpp" line="2371"/>
     2025        <translation type="vanished">Не удалось применить настройки по умолчанию к &apos;%ls&apos;.</translation>
     2026    </message>
     2027    <message>
    19382028        <source>Failed to adjust CPU count for &apos;%ls&apos;.</source>
    1939         <translation>Не удалось подстроить количество ЦПУ для &apos;%ls&apos;.</translation>
    1940     </message>
    1941     <message>
    1942         <location filename="../VBoxManageCloud.cpp" line="2375"/>
     2029        <translation type="vanished">Не удалось подстроить количество ЦПУ для &apos;%ls&apos;.</translation>
     2030    </message>
     2031    <message>
    19432032        <source>Failed to adjust memory size for &apos;%ls&apos;.</source>
    1944         <translation>Не удалось подстроить размер памяти для &apos;%ls&apos;.</translation>
    1945     </message>
    1946     <message>
    1947         <location filename="../VBoxManageCloud.cpp" line="2381"/>
     2033        <translation type="vanished">Не удалось подстроить размер памяти для &apos;%ls&apos;.</translation>
     2034    </message>
     2035    <message>
    19482036        <source>Failed to set attachment type for the second network adapter.</source>
    1949         <translation>Не удалось установить тип подключения для второго сетевого адаптера.</translation>
    1950     </message>
    1951     <message>
    1952         <location filename="../VBoxManageCloud.cpp" line="2385"/>
     2037        <translation type="vanished">Не удалось установить тип подключения для второго сетевого адаптера.</translation>
     2038    </message>
     2039    <message>
    19532040        <source>Failed to disable the audio adapter.</source>
    1954         <translation>Не удалось отключить аудио адаптер.</translation>
    1955     </message>
    1956     <message>
    1957         <location filename="../VBoxManageCloud.cpp" line="2390"/>
     2041        <translation type="vanished">Не удалось отключить аудио адаптер.</translation>
     2042    </message>
     2043    <message>
    19582044        <source>Failed to register &apos;%ls&apos;.</source>
    1959         <translation>Не удалось зарегистрировать &apos;%ls&apos;.</translation>
    1960     </message>
    1961     <message>
    1962         <location filename="../VBoxManageCloud.cpp" line="2394"/>
     2045        <translation type="vanished">Не удалось зарегистрировать &apos;%ls&apos;.</translation>
     2046    </message>
     2047    <message>
    19632048        <source>Failed to create %ls.</source>
    1964         <translation>Не удалось создать %ls.</translation>
    1965     </message>
    1966     <message>
    1967         <location filename="../VBoxManageCloud.cpp" line="2405"/>
    1968         <location filename="../VBoxManageCloud.cpp" line="2409"/>
     2049        <translation type="vanished">Не удалось создать %ls.</translation>
     2050    </message>
     2051    <message>
    19692052        <source>Failed to create base storage for local gateway image.</source>
    1970         <translation>Не удалось создать базовое хранилище для образа локального шлюза.</translation>
    1971     </message>
    1972     <message>
    1973         <location filename="../VBoxManageCloud.cpp" line="2414"/>
    1974         <location filename="../VBoxManageCloud.cpp" line="2588"/>
     2053        <translation type="vanished">Не удалось создать базовое хранилище для образа локального шлюза.</translation>
     2054    </message>
     2055    <message>
    19752056        <source>Failed to lock &apos;%ls&apos; for modifications.</source>
    1976         <translation>Не удалось заблокировать &apos;%ls&apos; для изменения.</translation>
    1977     </message>
    1978     <message>
    1979         <location filename="../VBoxManageCloud.cpp" line="2419"/>
    1980         <location filename="../VBoxManageCloud.cpp" line="2593"/>
     2057        <translation type="vanished">Не удалось заблокировать &apos;%ls&apos; для изменения.</translation>
     2058    </message>
     2059    <message>
    19812060        <source>Failed to obtain a mutable machine.</source>
    1982         <translation>Не удалось получить изменяемую машину.</translation>
    1983     </message>
    1984     <message>
    1985         <location filename="../VBoxManageCloud.cpp" line="2423"/>
     2061        <translation type="vanished">Не удалось получить изменяемую машину.</translation>
     2062    </message>
     2063    <message>
    19862064        <source>Failed to attach HD to &apos;%ls&apos;.</source>
    1987         <translation>Не удалось подключить жесткий диск к &apos;%ls&apos;.</translation>
    1988     </message>
    1989     <message>
    1990         <location filename="../VBoxManageCloud.cpp" line="2427"/>
     2065        <translation type="vanished">Не удалось подключить жесткий диск к &apos;%ls&apos;.</translation>
     2066    </message>
     2067    <message>
    19912068        <source>Failed to attach ISO to &apos;%ls&apos;.</source>
    1992         <translation>Не удалось подключить ISO к &apos;%ls&apos;.</translation>
    1993     </message>
    1994     <message>
    1995         <location filename="../VBoxManageCloud.cpp" line="2432"/>
    1996         <location filename="../VBoxManageCloud.cpp" line="2605"/>
     2069        <translation type="vanished">Не удалось подключить ISO к &apos;%ls&apos;.</translation>
     2070    </message>
     2071    <message>
    19972072        <source>Failed to save &apos;%ls&apos; settings.</source>
    1998         <translation>Не удалось сохранить настройки &apos;%ls&apos;.</translation>
    1999     </message>
    2000     <message>
    2001         <location filename="../VBoxManageCloud.cpp" line="2439"/>
     2073        <translation type="vanished">Не удалось сохранить настройки &apos;%ls&apos;.</translation>
     2074    </message>
     2075    <message>
    20022076        <source>Failed to create unattended installer.</source>
    2003         <translation>Не удалось создать unattended инсталлятор.</translation>
    2004     </message>
    2005     <message>
    2006         <location filename="../VBoxManageCloud.cpp" line="2443"/>
    2007         <location filename="../VBoxManageCloud.cpp" line="2447"/>
     2077        <translation type="vanished">Не удалось создать unattended инсталлятор.</translation>
     2078    </message>
     2079    <message>
    20082080        <source>Failed to set machine for the unattended installer.</source>
    2009         <translation>Не удалось задать машину для unattended инсталлятора.</translation>
    2010     </message>
    2011     <message>
    2012         <location filename="../VBoxManageCloud.cpp" line="2451"/>
     2081        <translation type="vanished">Не удалось задать машину для unattended инсталлятора.</translation>
     2082    </message>
     2083    <message>
    20132084        <source>Failed to set user for the unattended installer.</source>
    2014         <translation>Не удалось задать пользователя для unattended инсталлятора.</translation>
    2015     </message>
    2016     <message>
    2017         <location filename="../VBoxManageCloud.cpp" line="2455"/>
     2085        <translation type="vanished">Не удалось задать пользователя для unattended инсталлятора.</translation>
     2086    </message>
     2087    <message>
    20182088        <source>Failed to set password for the unattended installer.</source>
    2019         <translation>Не удалось задать пользователя для unattended инсталлятора.</translation>
    2020     </message>
    2021     <message>
    2022         <location filename="../VBoxManageCloud.cpp" line="2459"/>
     2089        <translation type="vanished">Не удалось задать пользователя для unattended инсталлятора.</translation>
     2090    </message>
     2091    <message>
    20232092        <source>Failed to set full user name for the unattended installer.</source>
    2024         <translation>Не удалось задать полное имя пользователя для unattended инсталлятора.</translation>
    2025     </message>
    2026     <message>
    2027         <location filename="../VBoxManageCloud.cpp" line="2463"/>
     2093        <translation type="vanished">Не удалось задать полное имя пользователя для unattended инсталлятора.</translation>
     2094    </message>
     2095    <message>
    20282096        <source>Failed to enable guest addtions for the unattended installer.</source>
    2029         <translation>Не удалось включить Дополнения Гостевой ОС для unattended инсталлятора.</translation>
    2030     </message>
    2031     <message>
    2032         <location filename="../VBoxManageCloud.cpp" line="2467"/>
     2097        <translation type="vanished">Не удалось включить Дополнения Гостевой ОС для unattended инсталлятора.</translation>
     2098    </message>
     2099    <message>
    20332100        <source>Failed to set guest addtions ISO path for the unattended installer.</source>
    2034         <translation>Не удалось задать путь к Дополнениям Гостевой ОС для unattended инсталлятора.</translation>
    2035     </message>
    2036     <message>
    2037         <location filename="../VBoxManageCloud.cpp" line="2471"/>
     2101        <translation type="vanished">Не удалось задать путь к Дополнениям Гостевой ОС для unattended инсталлятора.</translation>
     2102    </message>
     2103    <message>
    20382104        <source>Failed to set script template for the unattended installer.</source>
    2039         <translation>Не удалось задать шаблон скрипта для unattended инсталлятора.</translation>
    2040     </message>
    2041     <message>
    2042         <location filename="../VBoxManageCloud.cpp" line="2475"/>
    2043         <location filename="../VBoxManageCloud.cpp" line="2481"/>
     2105        <translation type="vanished">Не удалось задать шаблон скрипта для unattended инсталлятора.</translation>
     2106    </message>
     2107    <message>
    20442108        <source>Failed to set post install script template for the unattended installer.</source>
    2045         <translation>Не удалось задать шалон post-install скрипта для unattended инсталлятора.</translation>
    2046     </message>
    2047     <message>
    2048         <location filename="../VBoxManageCloud.cpp" line="2486"/>
     2109        <translation type="vanished">Не удалось задать шалон post-install скрипта для unattended инсталлятора.</translation>
     2110    </message>
     2111    <message>
    20492112        <source>Failed to prepare unattended installation.</source>
    2050         <translation>Не удалось подготовить unattended установку.</translation>
    2051     </message>
    2052     <message>
    2053         <location filename="../VBoxManageCloud.cpp" line="2490"/>
     2113        <translation type="vanished">Не удалось подготовить unattended установку.</translation>
     2114    </message>
     2115    <message>
    20542116        <source>Failed to construct media for unattended installation.</source>
    2055         <translation>Не удалось собрать носитель для unattended установки.</translation>
    2056     </message>
    2057     <message>
    2058         <location filename="../VBoxManageCloud.cpp" line="2494"/>
     2117        <translation type="vanished">Не удалось собрать носитель для unattended установки.</translation>
     2118    </message>
     2119    <message>
    20592120        <source>Failed to reconfigure %ls for unattended installation.</source>
    2060         <translation>Не удалось переконфигурировать %ls  для unattended установки.</translation>
    2061     </message>
    2062     <message>
    2063         <location filename="../VBoxManageCloud.cpp" line="2503"/>
    2064         <location filename="../VBoxManageCloud.cpp" line="2511"/>
     2121        <translation type="vanished">Не удалось переконфигурировать %ls  для unattended установки.</translation>
     2122    </message>
     2123    <message>
    20652124        <source>  %32s = failed: %Rhrc
    20662125</source>
    2067         <translation>  %32s = завершено с ошибкой: %Rhrc
    2068 </translation>
    2069     </message>
    2070     <message>
    2071         <location filename="../VBoxManageCloud.cpp" line="2548"/>
     2126        <translation type="vanished">  %32s = завершено с ошибкой: %Rhrc
     2127</translation>
     2128    </message>
     2129    <message>
    20722130        <source>Performing unattended install of temporary local gateway...
    20732131</source>
    2074         <translation>Производится unattended установка временного локального шлюза...
    2075 </translation>
    2076     </message>
    2077     <message>
    2078         <location filename="../VBoxManageCloud.cpp" line="2551"/>
    2079         <location filename="../VBoxManageCloud.cpp" line="2555"/>
     2132        <translation type="vanished">Производится unattended установка временного локального шлюза...
     2133</translation>
     2134    </message>
     2135    <message>
    20802136        <source>Failed to launch &apos;%ls&apos;.</source>
    2081         <translation>Не удалось запустить &apos;%ls&apos;.</translation>
    2082     </message>
    2083     <message>
    2084         <location filename="../VBoxManageCloud.cpp" line="2566"/>
     2137        <translation type="vanished">Не удалось запустить &apos;%ls&apos;.</translation>
     2138    </message>
     2139    <message>
    20852140        <source>Failed to get machine state.</source>
    2086         <translation>Не удалось получить состояние машины.</translation>
    2087     </message>
    2088     <message>
    2089         <location filename="../VBoxManageCloud.cpp" line="2571"/>
     2141        <translation type="vanished">Не удалось получить состояние машины.</translation>
     2142    </message>
     2143    <message>
    20902144        <source>Temporary local gateway VM has aborted.</source>
    2091         <translation>ВМ временного локального шлюза прервана.</translation>
    2092     </message>
    2093     <message>
    2094         <location filename="../VBoxManageCloud.cpp" line="2579"/>
     2145        <translation type="vanished">ВМ временного локального шлюза прервана.</translation>
     2146    </message>
     2147    <message>
    20952148        <source>Timed out (40min) while waiting for unattended install to finish.</source>
    2096         <translation>Превышено время ожидания (40 мин) завершения unattended установки.</translation>
    2097     </message>
    2098     <message>
    2099         <location filename="../VBoxManageCloud.cpp" line="2585"/>
     2149        <translation type="vanished">Превышено время ожидания (40 мин) завершения unattended установки.</translation>
     2150    </message>
     2151    <message>
    21002152        <source><byte value="xd"/>Done.
    21012153</source>
    2102         <translation><byte value="xd"/>Сделано.
    2103 </translation>
    2104     </message>
    2105     <message>
    2106         <location filename="../VBoxManageCloud.cpp" line="2591"/>
     2154        <translation type="vanished"><byte value="xd"/>Сделано.
     2155</translation>
     2156    </message>
     2157    <message>
    21072158        <source>Detaching local gateway image...
    21082159</source>
    2109         <translation>Отключение образа локального шлюза...
    2110 </translation>
    2111     </message>
    2112     <message>
    2113         <location filename="../VBoxManageCloud.cpp" line="2597"/>
     2160        <translation type="vanished">Отключение образа локального шлюза...
     2161</translation>
     2162    </message>
     2163    <message>
    21142164        <source>Failed to detach HD to &apos;%ls&apos;.</source>
    2115         <translation>Не удалось отключить жесткий диск от &apos;%ls&apos;.</translation>
    2116     </message>
    2117     <message>
    2118         <location filename="../VBoxManageCloud.cpp" line="2611"/>
     2165        <translation type="vanished">Не удалось отключить жесткий диск от &apos;%ls&apos;.</translation>
     2166    </message>
     2167    <message>
    21192168        <source>Unregistering temporary local gateway machine...
    21202169</source>
    2121         <translation>Отмена регистрации машины временного локального шлюза...
    2122 </translation>
    2123     </message>
    2124     <message>
    2125         <location filename="../VBoxManageCloud.cpp" line="2614"/>
     2170        <translation type="vanished">Отмена регистрации машины временного локального шлюза...
     2171</translation>
     2172    </message>
     2173    <message>
    21262174        <source>Failed to unregister &apos;%ls&apos;.</source>
    2127         <translation>Не удалось отменить регистрацию &apos;%ls&apos;.</translation>
    2128     </message>
    2129     <message>
    2130         <location filename="../VBoxManageCloud.cpp" line="2617"/>
    2131         <location filename="../VBoxManageCloud.cpp" line="2620"/>
     2175        <translation type="vanished">Не удалось отменить регистрацию &apos;%ls&apos;.</translation>
     2176    </message>
     2177    <message>
    21322178        <source>Failed to delete config for &apos;%ls&apos;.</source>
    2133         <translation>Не удалось удалить конфигурацию для &apos;%ls&apos;.</translation>
    2134     </message>
    2135     <message>
    2136         <location filename="../VBoxManageCloud.cpp" line="2624"/>
     2179        <translation type="vanished">Не удалось удалить конфигурацию для &apos;%ls&apos;.</translation>
     2180    </message>
     2181    <message>
    21372182        <source>Making local gateway image immutable...
    21382183</source>
    2139         <translation>Преобразование образа локального шлюза в неизменяемый...
    2140 </translation>
    2141     </message>
    2142     <message>
    2143         <location filename="../VBoxManageCloud.cpp" line="2626"/>
     2184        <translation type="vanished">Преобразование образа локального шлюза в неизменяемый...
     2185</translation>
     2186    </message>
     2187    <message>
    21442188        <source>Failed to open &apos;%ls&apos;.</source>
    2145         <translation>Не удалось открыть &apos;%ls&apos;.</translation>
    2146     </message>
    2147     <message>
    2148         <location filename="../VBoxManageCloud.cpp" line="2629"/>
     2189        <translation type="vanished">Не удалось открыть &apos;%ls&apos;.</translation>
     2190    </message>
     2191    <message>
    21492192        <source>Failed to make &apos;%ls&apos; immutable.</source>
    2150         <translation>Не удалось сделать &apos;%ls&apos; неизменяемым.</translation>
    2151     </message>
    2152     <message>
    2153         <location filename="../VBoxManageCloud.cpp" line="2712"/>
     2193        <translation type="vanished">Не удалось сделать &apos;%ls&apos; неизменяемым.</translation>
     2194    </message>
     2195    <message>
    21542196        <source>Missing --local-gateway-iso parameter</source>
    2155         <translation>Отсутствует параметр --local-gateway-iso</translation>
    2156     </message>
    2157     <message>
    2158         <location filename="../VBoxManageCloud.cpp" line="2720"/>
     2197        <translation type="vanished">Отсутствует параметр --local-gateway-iso</translation>
     2198    </message>
     2199    <message>
     2200        <location filename="../VBoxManageCloud.cpp" line="2209"/>
    21592201        <source>Setting up tunnel network in the cloud...
    21602202</source>
     
    21632205    </message>
    21642206    <message>
    2165         <location filename="../VBoxManageCloud.cpp" line="2746"/>
     2207        <location filename="../VBoxManageCloud.cpp" line="2235"/>
    21662208        <source>Setting up cloud network environment failed</source>
    21672209        <translation>Не удалось установить окружение облачной сети</translation>
    21682210    </message>
    21692211    <message>
    2170         <location filename="../VBoxManageCloud.cpp" line="2750"/>
     2212        <location filename="../VBoxManageCloud.cpp" line="2239"/>
    21712213        <source>Cloud network environment was set up successfully. Tunnel network id is: %ls
    21722214</source>
     
    24062448    <name>CloudVM</name>
    24072449    <message>
    2408         <location filename="../VBoxManageControlVM.cpp" line="65"/>
    24092450        <source>Invalid %s number &apos;%s&apos;</source>
    2410         <translation>Недействительный номер %s &apos;%s&apos;</translation>
    2411     </message>
    2412     <message>
    2413         <location filename="../VBoxManageControlVM.cpp" line="223"/>
     2451        <translation type="vanished">Недействительный номер %s &apos;%s&apos;</translation>
     2452    </message>
     2453    <message>
    24142454        <source>Failed to send a scancode</source>
    2415         <translation>Не удалось послать сканкод</translation>
     2455        <translation type="vanished">Не удалось послать сканкод</translation>
    24162456    </message>
    24172457    <message numerus="yes">
    2418         <location filename="../VBoxManageControlVM.cpp" line="236"/>
    24192458        <source>Only %d scancodes were stored</source>
    2420         <translation>
     2459        <translation type="vanished">
    24212460            <numerusform>Сохранен только %d сканкод</numerusform>
    24222461            <numerusform>Сохранено только %d сканкода</numerusform>
     
    24252464    </message>
    24262465    <message numerus="yes">
    2427         <location filename="../VBoxManageControlVM.cpp" line="335"/>
    24282466        <source>Out of memory allocating %d bytes</source>
    2429         <translation>
     2467        <translation type="vanished">
    24302468            <numerusform>Не хватает памяти под буфер %d байт</numerusform>
    24312469            <numerusform>Не хватает памяти под буфер %d байта</numerusform>
     
    24342472    </message>
    24352473    <message>
    2436         <location filename="../VBoxManageControlVM.cpp" line="338"/>
    24372474        <source>File size %RI64 is greater than %RI64: &apos;%s&apos;</source>
    2438         <translation>Размер файла %RI64 больше чем %RI64: &apos;%s&apos;</translation>
    2439     </message>
    2440     <message>
    2441         <location filename="../VBoxManageControlVM.cpp" line="341"/>
     2475        <translation type="vanished">Размер файла %RI64 больше чем %RI64: &apos;%s&apos;</translation>
     2476    </message>
     2477    <message>
    24422478        <source>Cannot get size of file &apos;%s&apos;: %Rrc</source>
    2443         <translation>Невозможно получить размер файла &apos;%s&apos;: %Rrc</translation>
    2444     </message>
    2445     <message>
    2446         <location filename="../VBoxManageControlVM.cpp" line="346"/>
     2479        <translation type="vanished">Невозможно получить размер файла &apos;%s&apos;: %Rrc</translation>
     2480    </message>
     2481    <message>
    24472482        <source>Cannot open file &apos;%s&apos;: %Rrc</source>
    2448         <translation>Невозможно открыть файл &apos;%s&apos;: %Rrc</translation>
    2449     </message>
    2450     <message>
    2451         <location filename="../VBoxManageControlVM.cpp" line="363"/>
     2483        <translation type="vanished">Невозможно открыть файл &apos;%s&apos;: %Rrc</translation>
     2484    </message>
     2485    <message>
     2486        <source>Not enough parameters</source>
     2487        <translation type="vanished">Недостаточно параметров</translation>
     2488    </message>
     2489    <message>
     2490        <source>Machine &apos;%s&apos; is not currently running</source>
     2491        <translation type="vanished">Машина &apos;%s&apos; сейчас не запущена</translation>
     2492    </message>
     2493    <message>
     2494        <source>Missing argument to &apos;%s&apos;. Expected CPU number.</source>
     2495        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается номер ЦПУ.</translation>
     2496    </message>
     2497    <message>
     2498        <source>Missing argument to &apos;%s&apos;. Expected execution cap number.</source>
     2499        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается %% времени в %% выделенного для выполнения.</translation>
     2500    </message>
     2501    <message>
     2502        <source>Invalid value &apos;%s&apos;</source>
     2503        <translation type="vanished">Недопустимое значение &apos;%s&apos;</translation>
     2504    </message>
     2505    <message>
     2506        <source>audio adapter not enabled in VM configuration</source>
     2507        <translation type="vanished">аудио адаптер не включен в конфигурации ВМ</translation>
     2508    </message>
     2509    <message>
     2510        <source>Missing argument to &apos;%s&apos;.</source>
     2511        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;.</translation>
     2512    </message>
     2513    <message>
     2514        <source>Invalid &apos;%s&apos; argument &apos;%s&apos;.</source>
     2515        <translation type="vanished">Недопустимый аргумент к &apos;%s&apos; &apos;%s&apos;.</translation>
     2516    </message>
     2517    <message>
     2518        <source>Missing argument to &apos;%s&apos;. Expected enabled / disabled.</source>
     2519        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается enabled / disabled.</translation>
     2520    </message>
     2521    <message>
     2522        <source>Missing argument to &apos;%s&apos;. Expected drag and drop mode.</source>
     2523        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается режим drag and drop.</translation>
     2524    </message>
     2525    <message>
     2526        <source>Failed to power off machine</source>
     2527        <translation type="vanished">Не удалось выключить машину</translation>
     2528    </message>
     2529    <message>
     2530        <source>Machine in invalid state %d -- %s
     2531</source>
     2532        <translation type="vanished">Машина в недопустимом состоянии %d -- %s
     2533</translation>
     2534    </message>
     2535    <message>
     2536        <source>Failed to save machine state</source>
     2537        <translation type="vanished">Не удалось сохранить состояние машины</translation>
     2538    </message>
     2539    <message>
     2540        <source>Guest not running</source>
     2541        <translation type="vanished">Гостевая система не запущена</translation>
     2542    </message>
     2543    <message>
     2544        <source>Current installed Guest Additions don&apos;t support %s the guest.</source>
     2545        <translation type="vanished">Текущие установленные Дополнения Гостевой ОС не поддерживают %s гостевой системы.</translation>
     2546    </message>
     2547    <message>
     2548        <source>rebooting</source>
     2549        <translation type="vanished">перезагрузку</translation>
     2550    </message>
     2551    <message>
     2552        <source>shutting down</source>
     2553        <translation type="vanished">завершение</translation>
     2554    </message>
     2555    <message>
     2556        <source>Missing argument to &apos;%s&apos;. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source>
     2557        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидаются сканкоды клавиатуры IBM PC AT set 2 в виде hex байтов.</translation>
     2558    </message>
     2559    <message>
     2560        <source>Converting &apos;%s&apos; returned %Rrc!</source>
     2561        <translation type="vanished">Преобразование &apos;%s&apos; вернуло %Rrc!</translation>
     2562    </message>
     2563    <message>
     2564        <source>Error: &apos;%s&apos; is not a hex byte!</source>
     2565        <translation type="vanished">Ошибка: &apos;%s&apos; не является hex байтом!</translation>
     2566    </message>
     2567    <message>
     2568        <source>Missing argument to &apos;%s&apos;. Expected ASCII string(s).</source>
     2569        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается строка ASCII.</translation>
     2570    </message>
     2571    <message>
     2572        <source>Missing argument to &apos;%s&apos;. Expected file name.</source>
     2573        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;. Ожидается имя файла.</translation>
     2574    </message>
     2575    <message>
     2576        <source>Missing argument to &apos;%s&apos;</source>
     2577        <translation type="vanished">Отсутствует аргумент к &apos;%s&apos;</translation>
     2578    </message>
     2579    <message>
     2580        <source>Invalid link state &apos;%s&apos;</source>
     2581        <translation type="vanished">Недопустимое состояние подключения &apos;%s&apos;</translation>
     2582    </message>
     2583    <message>
     2584        <source>Invalid filename or filename not specified for NIC %lu</source>
     2585        <translation type="vanished">Недействительное имя файла или имя файла не указано для сетевого адаптера %lu</translation>
     2586    </message>
     2587    <message>
     2588        <source>The NIC %d is currently disabled and thus its tracefile can&apos;t be changed</source>
     2589        <translation type="vanished">NIC %d в настоящее время отключен и поэтому его трассировочный файл не может быть изменен</translation>
     2590    </message>
     2591    <message>
     2592        <source>Invalid nictrace%lu argument &apos;%s&apos;</source>
     2593        <translation type="vanished">Недопустимый аргумент к nictrace%lu &apos;%s&apos;</translation>
     2594    </message>
     2595    <message>
     2596        <source>The NIC %d is currently disabled and thus its trace flag can&apos;t be changed</source>
     2597        <translation type="vanished">NIC %d в настоящее время отключен и поэтому его трассировочный флаг не может быть изменен</translation>
     2598    </message>
     2599    <message>
     2600        <source>Missing or invalid argument to &apos;%s&apos;</source>
     2601        <translation type="vanished">Отсутствует или недопустимый аргумент к &apos;%s&apos;</translation>
     2602    </message>
     2603    <message>
     2604        <source>Wrong rule proto &apos;%s&apos; specified -- only &apos;udp&apos; and &apos;tcp&apos; are allowed.</source>
     2605        <translation type="vanished">Указан неправильный протокол правила &apos;%s&apos; -- разрешены только &apos;udp&apos; и &apos;tcp&apos;.</translation>
     2606    </message>
     2607    <message>
     2608        <source>Invalid nicproperty%d argument &apos;%s&apos;</source>
     2609        <translation type="vanished">Недопустимый аргумент к nicproperty%d &apos;%s&apos;</translation>
     2610    </message>
     2611    <message>
     2612        <source>Error: Failed to allocate memory for nicproperty%d &apos;%s&apos;
     2613</source>
     2614        <translation type="vanished">Ошибка: Не удалось выделить память для nicproperty%d &apos;%s&apos;
     2615</translation>
     2616    </message>
     2617    <message>
     2618        <source>The NIC %d is currently disabled and thus its properties can&apos;t be changed</source>
     2619        <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить его свойства</translation>
     2620    </message>
     2621    <message>
     2622        <source>Unknown promiscuous mode policy &apos;%s&apos;</source>
     2623        <translation type="vanished">Неизвестная политика неразборчивого режима &apos;%s&apos;</translation>
     2624    </message>
     2625    <message>
     2626        <source>The NIC %d is currently disabled and thus its promiscuous mode can&apos;t be changed</source>
     2627        <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить неразборчивый режим</translation>
     2628    </message>
     2629    <message>
     2630        <source>Invalid type &apos;%s&apos; specfied for NIC %lu</source>
     2631        <translation type="vanished">Указан недопустимый тип &apos;%s&apos; для NIC %lu</translation>
     2632    </message>
     2633    <message>
     2634        <source>The NIC %d is currently disabled and thus its attachment type can&apos;t be changed</source>
     2635        <translation type="vanished">NIC %d отключен в настоящее время, и поэтому невозможно изменить тип подключения</translation>
     2636    </message>
     2637    <message>
     2638        <source>Warning: &apos;vrdp&apos; is deprecated. Use &apos;vrde&apos;.
     2639</source>
     2640        <translation type="vanished">Предупреждение: &apos;vrdp&apos; устарел. Используйте &apos;vrde&apos;.
     2641</translation>
     2642    </message>
     2643    <message>
     2644        <source>Invalid remote desktop server state &apos;%s&apos;</source>
     2645        <translation type="vanished">Недопустимое состояние сервера удаленного рабочего стола &apos;%s&apos;</translation>
     2646    </message>
     2647    <message>
     2648        <source>Warning: &apos;vrdpport&apos; is deprecated. Use &apos;vrdeport&apos;.
     2649</source>
     2650        <translation type="vanished">Предупреждение: &apos;vrdpport&apos; устарел. Используйте &apos;vrdeport&apos;.
     2651</translation>
     2652    </message>
     2653    <message>
     2654        <source>Warning: &apos;vrdpvideochannelquality&apos; is deprecated. Use &apos;vrdevideochannelquality&apos;.
     2655</source>
     2656        <translation type="vanished">Предупреждение: &apos;vrdpvideochannelquality&apos; устарел. Используйте &apos;vrdevideochannelquality&apos;.
     2657</translation>
     2658    </message>
     2659    <message>
     2660        <source>Invalid vrdeproperty argument &apos;%s&apos;</source>
     2661        <translation type="vanished">Недопустимый аргумент к vrdeproperty &apos;%s&apos;</translation>
     2662    </message>
     2663    <message>
     2664        <source>Error: Failed to allocate memory for VRDE property &apos;%s&apos;
     2665</source>
     2666        <translation type="vanished">Ошибка: Не удалось выделить память для свойства VRDE &apos;%s&apos;
     2667</translation>
     2668    </message>
     2669    <message>
     2670        <source>Wrong number of arguments</source>
     2671        <translation type="vanished">Неправильное количество аргументов</translation>
     2672    </message>
     2673    <message>
     2674        <source>Invalid parameter &apos;%s&apos;</source>
     2675        <translation type="vanished">Недопустимый параметр &apos;%s&apos;</translation>
     2676    </message>
     2677    <message>
     2678        <source>Zero UUID argument &apos;%s&apos;</source>
     2679        <translation type="vanished">Нулевой UUID аргумент &apos;%s&apos;</translation>
     2680    </message>
     2681    <message>
     2682        <source>Incorrect number of parameters</source>
     2683        <translation type="vanished">Некорректное количество параметров</translation>
     2684    </message>
     2685    <message>
     2686        <source>Either &quot;yes&quot; or &quot;no&quot; is expected</source>
     2687        <translation type="vanished">Ожидается только &quot;yes&quot; или &quot;no&quot;</translation>
     2688    </message>
     2689    <message>
     2690        <source>Display status must be &lt;on&gt; or &lt;off&gt;</source>
     2691        <translation type="vanished">Статус экрана должен быть &lt;on&gt; или &lt;off&gt;</translation>
     2692    </message>
     2693    <message>
     2694        <source>Invalid host DVD drive name &quot;%s&quot;</source>
     2695        <translation type="vanished">Недопустимое имя DVD дисковода хоста &quot;%s&quot;</translation>
     2696    </message>
     2697    <message>
     2698        <source>IDE Controller</source>
     2699        <translation type="vanished">IDE Контроллер</translation>
     2700    </message>
     2701    <message>
     2702        <source>Invalid host floppy drive name &quot;%s&quot;</source>
     2703        <translation type="vanished">Недопустимое имя флоппи дисковода хоста &quot;%s&quot;</translation>
     2704    </message>
     2705    <message>
     2706        <source>Floppy Controller</source>
     2707        <translation type="vanished">Флоппи Контроллер</translation>
     2708    </message>
     2709    <message>
     2710        <source>Error parsing guest memory balloon size &apos;%s&apos;</source>
     2711        <translation type="vanished">Ошибка разбора размера balloon памяти гостевой системы &apos;%s&apos;</translation>
     2712    </message>
     2713    <message>
     2714        <source>Teleportation failed</source>
     2715        <translation type="vanished">Не удалось произвести портирование</translation>
     2716    </message>
     2717    <message>
     2718        <source>Error parsing display number &apos;%s&apos;</source>
     2719        <translation type="vanished">Ошибка разбора номера экрана &apos;%s&apos;</translation>
     2720    </message>
     2721    <message>
     2722        <source>Failed to create file &apos;%s&apos; (%Rrc)</source>
     2723        <translation type="vanished">Не удалось создать файл &apos;%s&apos; (%Rrc)</translation>
     2724    </message>
     2725    <message>
     2726        <source>Failed to write screenshot to file &apos;%s&apos; (%Rrc)</source>
     2727        <translation type="vanished">Не удалось записать снимок экрана в файл &apos;%s&apos; (%Rrc)</translation>
     2728    </message>
     2729    <message>
     2730        <source>Invalid screen ID specified &apos;%u&apos;</source>
     2731        <translation type="vanished">Указан недопустимый ID экрана &apos;%u&apos;</translation>
     2732    </message>
     2733    <message>
     2734        <source>Error parsing video width &apos;%s&apos;</source>
     2735        <translation type="vanished">Ошибка при разборе ширины видео &apos;%s&apos;</translation>
     2736    </message>
     2737    <message>
     2738        <source>Error parsing video height &apos;%s&apos;</source>
     2739        <translation type="vanished">Ошибка при разборе высоты видео &apos;%s&apos;</translation>
     2740    </message>
     2741    <message>
     2742        <source>Error parsing video rate &apos;%s&apos;</source>
     2743        <translation type="vanished">Ошибка при разборе битрейта видео &apos;%s&apos;</translation>
     2744    </message>
     2745    <message>
     2746        <source>Error parsing video FPS &apos;%s&apos;</source>
     2747        <translation type="vanished">Ошибка при разборе FPS видео &apos;%s&apos;</translation>
     2748    </message>
     2749    <message>
     2750        <source>Error parsing maximum time &apos;%s&apos;</source>
     2751        <translation type="vanished">Ошибка при разборе максимального времени &apos;%s&apos;</translation>
     2752    </message>
     2753    <message>
     2754        <source>Error parsing maximum file size &apos;%s&apos;</source>
     2755        <translation type="vanished">Ошибка при разборе максимального размера файла &apos;%s&apos;</translation>
     2756    </message>
     2757    <message>
     2758        <source>Invalid argument to &apos;%s&apos;</source>
     2759        <translation type="vanished">Недопустимый аргумент к &apos;%s&apos;</translation>
     2760    </message>
     2761    <message>
     2762        <source>Invalid parameters</source>
     2763        <translation type="vanished">Недопустимые параметры</translation>
     2764    </message>
     2765    <message>
     2766        <source>Enter password:</source>
     2767        <translation type="vanished">Введите пароль:</translation>
     2768    </message>
     2769    <message>
     2770        <source>Failed to read new password from file</source>
     2771        <translation type="vanished">Не удалось прочесть новый пароль из файла</translation>
     2772    </message>
     2773    <message>
     2774        <source>Incorrect arguments to &apos;%s&apos;</source>
     2775        <translation type="vanished">Некорректные аргументы к &apos;%s&apos;</translation>
     2776    </message>
     2777    <message>
     2778        <source>Invalid vm-process-priority &apos;%s&apos;</source>
     2779        <translation type="vanished">Недопустимый vm-process-priority &apos;%s&apos;</translation>
     2780    </message>
     2781    <message>
     2782        <source>Invalid autostart delay number &apos;%s&apos;</source>
     2783        <translation type="vanished">Недопустимое время задержки автостарта &apos;%s&apos;</translation>
     2784    </message>
     2785</context>
     2786<context>
     2787    <name>ControlVM</name>
     2788    <message>
     2789        <location filename="../VBoxManageControlVM.cpp" line="65"/>
     2790        <source>Invalid %s number &apos;%s&apos;.</source>
     2791        <translation type="unfinished"></translation>
     2792    </message>
     2793    <message>
     2794        <location filename="../VBoxManageControlVM.cpp" line="222"/>
     2795        <source>Failed to send a scancode.</source>
     2796        <translation type="unfinished"></translation>
     2797    </message>
     2798    <message numerus="yes">
     2799        <location filename="../VBoxManageControlVM.cpp" line="323"/>
     2800        <source>Out of memory allocating %d bytes.</source>
     2801        <translation type="unfinished">
     2802            <numerusform></numerusform>
     2803            <numerusform></numerusform>
     2804            <numerusform></numerusform>
     2805        </translation>
     2806    </message>
     2807    <message>
     2808        <location filename="../VBoxManageControlVM.cpp" line="326"/>
     2809        <source>File size %RI64 is greater than %RI64: &apos;%s&apos;.</source>
     2810        <translation type="unfinished"></translation>
     2811    </message>
     2812    <message>
     2813        <location filename="../VBoxManageControlVM.cpp" line="329"/>
     2814        <source>Cannot get size of file &apos;%s&apos;: %Rrc.</source>
     2815        <translation type="unfinished"></translation>
     2816    </message>
     2817    <message>
     2818        <location filename="../VBoxManageControlVM.cpp" line="334"/>
     2819        <source>Cannot open file &apos;%s&apos;: %Rrc.</source>
     2820        <translation type="unfinished"></translation>
     2821    </message>
     2822    <message>
     2823        <location filename="../VBoxManageControlVM.cpp" line="351"/>
     2824        <location filename="../VBoxManageControlVM.cpp" line="1372"/>
     2825        <source>Not enough parameters.</source>
     2826        <translation type="unfinished"></translation>
     2827    </message>
     2828    <message>
     2829        <location filename="../VBoxManageControlVM.cpp" line="371"/>
     2830        <source>Machine &apos;%s&apos; is not currently running.</source>
     2831        <translation type="unfinished">Машина &apos;%s&apos; сейчас не запущена.</translation>
     2832    </message>
     2833    <message>
     2834        <location filename="../VBoxManageControlVM.cpp" line="397"/>
     2835        <location filename="../VBoxManageControlVM.cpp" line="411"/>
     2836        <location filename="../VBoxManageControlVM.cpp" line="425"/>
     2837        <location filename="../VBoxManageControlVM.cpp" line="487"/>
     2838        <location filename="../VBoxManageControlVM.cpp" line="558"/>
     2839        <location filename="../VBoxManageControlVM.cpp" line="782"/>
     2840        <location filename="../VBoxManageControlVM.cpp" line="802"/>
     2841        <location filename="../VBoxManageControlVM.cpp" line="840"/>
     2842        <location filename="../VBoxManageControlVM.cpp" line="884"/>
     2843        <location filename="../VBoxManageControlVM.cpp" line="925"/>
     2844        <location filename="../VBoxManageControlVM.cpp" line="1019"/>
     2845        <location filename="../VBoxManageControlVM.cpp" line="1081"/>
     2846        <location filename="../VBoxManageControlVM.cpp" line="1131"/>
     2847        <location filename="../VBoxManageControlVM.cpp" line="1160"/>
     2848        <location filename="../VBoxManageControlVM.cpp" line="1172"/>
     2849        <location filename="../VBoxManageControlVM.cpp" line="1184"/>
     2850        <location filename="../VBoxManageControlVM.cpp" line="1197"/>
     2851        <location filename="../VBoxManageControlVM.cpp" line="1208"/>
     2852        <location filename="../VBoxManageControlVM.cpp" line="1237"/>
     2853        <location filename="../VBoxManageControlVM.cpp" line="1266"/>
     2854        <location filename="../VBoxManageControlVM.cpp" line="1297"/>
     2855        <location filename="../VBoxManageControlVM.cpp" line="1318"/>
     2856        <location filename="../VBoxManageControlVM.cpp" line="1992"/>
     2857        <location filename="../VBoxManageControlVM.cpp" line="2115"/>
     2858        <source>Missing argument to &apos;%s&apos;.</source>
     2859        <translation type="unfinished">Отсутствует аргумент к &apos;%s&apos;.</translation>
     2860    </message>
     2861    <message>
     2862        <location filename="../VBoxManageControlVM.cpp" line="444"/>
     2863        <location filename="../VBoxManageControlVM.cpp" line="468"/>
     2864        <location filename="../VBoxManageControlVM.cpp" line="2226"/>
     2865        <source>Invalid value &apos;%s&apos;.</source>
     2866        <translation type="unfinished"></translation>
     2867    </message>
     2868    <message>
     2869        <location filename="../VBoxManageControlVM.cpp" line="453"/>
     2870        <location filename="../VBoxManageControlVM.cpp" line="477"/>
     2871        <source>Audio adapter not enabled in VM configuration.</source>
     2872        <translation type="unfinished"></translation>
     2873    </message>
     2874    <message>
     2875        <location filename="../VBoxManageControlVM.cpp" line="498"/>
     2876        <location filename="../VBoxManageControlVM.cpp" line="528"/>
     2877        <source>Missing argument to &apos;%s %s&apos;.</source>
     2878        <translation type="unfinished"></translation>
     2879    </message>
     2880    <message>
     2881        <location filename="../VBoxManageControlVM.cpp" line="513"/>
     2882        <location filename="../VBoxManageControlVM.cpp" line="536"/>
     2883        <source>Invalid &apos;%s %s&apos; argument &apos;%s&apos;.</source>
     2884        <translation type="unfinished"></translation>
     2885    </message>
     2886    <message>
     2887        <location filename="../VBoxManageControlVM.cpp" line="547"/>
     2888        <location filename="../VBoxManageControlVM.cpp" line="574"/>
     2889        <source>Invalid &apos;%s&apos; argument &apos;%s&apos;.</source>
     2890        <translation type="unfinished">Недопустимый аргумент к &apos;%s&apos; &apos;%s&apos;.</translation>
     2891    </message>
     2892    <message>
     2893        <location filename="../VBoxManageControlVM.cpp" line="591"/>
     2894        <source>Failed to power off machine.</source>
     2895        <translation type="unfinished"></translation>
     2896    </message>
     2897    <message>
     2898        <location filename="../VBoxManageControlVM.cpp" line="611"/>
     2899        <source>Machine in invalid state %d -- %s.</source>
     2900        <translation type="unfinished"></translation>
     2901    </message>
     2902    <message>
     2903        <location filename="../VBoxManageControlVM.cpp" line="634"/>
     2904        <source>Failed to save machine state.</source>
     2905        <translation type="unfinished"></translation>
     2906    </message>
     2907    <message>
     2908        <location filename="../VBoxManageControlVM.cpp" line="665"/>
     2909        <location filename="../VBoxManageControlVM.cpp" line="700"/>
     2910        <location filename="../VBoxManageControlVM.cpp" line="754"/>
     2911        <location filename="../VBoxManageControlVM.cpp" line="775"/>
     2912        <location filename="../VBoxManageControlVM.cpp" line="1478"/>
     2913        <location filename="../VBoxManageControlVM.cpp" line="1500"/>
     2914        <location filename="../VBoxManageControlVM.cpp" line="1624"/>
     2915        <location filename="../VBoxManageControlVM.cpp" line="1658"/>
     2916        <location filename="../VBoxManageControlVM.cpp" line="1755"/>
     2917        <location filename="../VBoxManageControlVM.cpp" line="2001"/>
     2918        <source>Guest not running.</source>
     2919        <translation type="unfinished"></translation>
     2920    </message>
     2921    <message>
     2922        <location filename="../VBoxManageControlVM.cpp" line="686"/>
     2923        <source>Current installed Guest Additions don&apos;t support rebooting the guest.</source>
     2924        <translation type="unfinished"></translation>
     2925    </message>
     2926    <message>
     2927        <location filename="../VBoxManageControlVM.cpp" line="688"/>
     2928        <source>Current installed Guest Additions don&apos;t support shutting down the guest.</source>
     2929        <translation type="unfinished"></translation>
     2930    </message>
     2931    <message>
     2932        <location filename="../VBoxManageControlVM.cpp" line="707"/>
     2933        <source>Missing argument to &apos;%s&apos;. Expected IBM PC AT set 2 keyboard scancode(s).</source>
     2934        <translation type="unfinished"></translation>
     2935    </message>
     2936    <message>
     2937        <location filename="../VBoxManageControlVM.cpp" line="727"/>
     2938        <source>Converting &apos;%s&apos; returned %Rrc!</source>
     2939        <translation type="unfinished">Преобразование &apos;%s&apos; вернуло %Rrc!</translation>
     2940    </message>
     2941    <message>
     2942        <location filename="../VBoxManageControlVM.cpp" line="736"/>
     2943        <source>&apos;%s&apos; is not a hex byte!</source>
     2944        <translation type="unfinished"></translation>
     2945    </message>
     2946    <message>
     2947        <location filename="../VBoxManageControlVM.cpp" line="761"/>
     2948        <source>Missing argument to &apos;%s&apos;. Expected ASCII string(s).</source>
     2949        <translation type="unfinished">Отсутствует аргумент к &apos;%s&apos;. Ожидается строка ASCII.</translation>
     2950    </message>
     2951    <message>
     2952        <location filename="../VBoxManageControlVM.cpp" line="814"/>
     2953        <source>Invalid link state &apos;%s&apos;.</source>
     2954        <translation type="unfinished"></translation>
     2955    </message>
     2956    <message>
     2957        <location filename="../VBoxManageControlVM.cpp" line="860"/>
     2958        <source>Filename not specified for NIC %lu.</source>
     2959        <translation type="unfinished"></translation>
     2960    </message>
     2961    <message>
     2962        <location filename="../VBoxManageControlVM.cpp" line="868"/>
     2963        <source>The NIC %d is currently disabled and thus its tracefile can&apos;t be changed.</source>
     2964        <translation type="unfinished"></translation>
     2965    </message>
     2966    <message>
     2967        <location filename="../VBoxManageControlVM.cpp" line="901"/>
     2968        <source>Invalid nictrace%lu argument &apos;%s&apos;.</source>
     2969        <translation type="unfinished"></translation>
     2970    </message>
     2971    <message>
     2972        <location filename="../VBoxManageControlVM.cpp" line="909"/>
     2973        <source>The NIC %d is currently disabled and thus its trace flag can&apos;t be changed.</source>
     2974        <translation type="unfinished"></translation>
     2975    </message>
     2976    <message>
     2977        <location filename="../VBoxManageControlVM.cpp" line="961"/>
     2978        <source>Missing or invalid argument to &apos;%s&apos;.</source>
     2979        <translation type="unfinished"></translation>
     2980    </message>
     2981    <message>
     2982        <location filename="../VBoxManageControlVM.cpp" line="996"/>
     2983        <source>Wrong rule proto &apos;%s&apos; specified -- only &apos;udp&apos; and &apos;tcp&apos; are allowed.</source>
     2984        <translation type="unfinished">Указан неправильный протокол правила &apos;%s&apos; -- разрешены только &apos;udp&apos; и &apos;tcp&apos;.</translation>
     2985    </message>
     2986    <message>
     2987        <location filename="../VBoxManageControlVM.cpp" line="1050"/>
     2988        <source>Invalid nicproperty%d argument &apos;%s&apos;.</source>
     2989        <translation type="unfinished"></translation>
     2990    </message>
     2991    <message>
     2992        <location filename="../VBoxManageControlVM.cpp" line="1057"/>
     2993        <source>Failed to allocate memory for nicproperty%d &apos;%s&apos;.</source>
     2994        <translation type="unfinished"></translation>
     2995    </message>
     2996    <message>
     2997        <location filename="../VBoxManageControlVM.cpp" line="1065"/>
     2998        <source>The NIC %d is currently disabled and thus its properties can&apos;t be changed.</source>
     2999        <translation type="unfinished"></translation>
     3000    </message>
     3001    <message>
     3002        <location filename="../VBoxManageControlVM.cpp" line="1105"/>
     3003        <source>Unknown promiscuous mode policy &apos;%s&apos;.</source>
     3004        <translation type="unfinished"></translation>
     3005    </message>
     3006    <message>
     3007        <location filename="../VBoxManageControlVM.cpp" line="1115"/>
     3008        <source>The NIC %d is currently disabled and thus its promiscuous mode can&apos;t be changed.</source>
     3009        <translation type="unfinished"></translation>
     3010    </message>
     3011    <message>
     3012        <location filename="../VBoxManageControlVM.cpp" line="1217"/>
     3013        <source>Invalid type &apos;%s&apos; specfied for NIC %lu.</source>
     3014        <translation type="unfinished"></translation>
     3015    </message>
     3016    <message>
     3017        <location filename="../VBoxManageControlVM.cpp" line="1225"/>
     3018        <source>The NIC %d is currently disabled and thus its attachment type can&apos;t be changed.</source>
     3019        <translation type="unfinished"></translation>
     3020    </message>
     3021    <message>
     3022        <location filename="../VBoxManageControlVM.cpp" line="1233"/>
     3023        <source>&apos;vrdp&apos; is deprecated. Use &apos;vrde&apos;.</source>
     3024        <translation type="unfinished"></translation>
     3025    </message>
     3026    <message>
     3027        <location filename="../VBoxManageControlVM.cpp" line="1249"/>
     3028        <source>Invalid remote desktop server state &apos;%s&apos;.</source>
     3029        <translation type="unfinished"></translation>
     3030    </message>
     3031    <message>
     3032        <location filename="../VBoxManageControlVM.cpp" line="1262"/>
     3033        <source>&apos;vrdpport&apos; is deprecated. Use &apos;vrdeport&apos;.</source>
     3034        <translation type="unfinished"></translation>
     3035    </message>
     3036    <message>
     3037        <location filename="../VBoxManageControlVM.cpp" line="1293"/>
     3038        <source>&apos;vrdpvideochannelquality&apos; is deprecated. Use &apos;vrdevideochannelquality&apos;.</source>
     3039        <translation type="unfinished"></translation>
     3040    </message>
     3041    <message>
     3042        <location filename="../VBoxManageControlVM.cpp" line="1344"/>
     3043        <source>Invalid vrdeproperty argument &apos;%s&apos;.</source>
     3044        <translation type="unfinished"></translation>
     3045    </message>
     3046    <message>
     3047        <location filename="../VBoxManageControlVM.cpp" line="1351"/>
     3048        <source>Failed to allocate memory for VRDE property &apos;%s&apos;.</source>
     3049        <translation type="unfinished"></translation>
     3050    </message>
     3051    <message>
     3052        <location filename="../VBoxManageControlVM.cpp" line="1378"/>
     3053        <source>Wrong number of arguments.</source>
     3054        <translation type="unfinished"></translation>
     3055    </message>
     3056    <message>
    24523057        <location filename="../VBoxManageControlVM.cpp" line="1392"/>
    2453         <source>Not enough parameters</source>
    2454         <translation>Недостаточно параметров</translation>
    2455     </message>
    2456     <message>
    2457         <location filename="../VBoxManageControlVM.cpp" line="383"/>
    2458         <source>Machine &apos;%s&apos; is not currently running</source>
    2459         <translation>Машина &apos;%s&apos; сейчас не запущена</translation>
    2460     </message>
    2461     <message>
    2462         <location filename="../VBoxManageControlVM.cpp" line="405"/>
    2463         <location filename="../VBoxManageControlVM.cpp" line="418"/>
    2464         <source>Missing argument to &apos;%s&apos;. Expected CPU number.</source>
    2465         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается номер ЦПУ.</translation>
    2466     </message>
    2467     <message>
    2468         <location filename="../VBoxManageControlVM.cpp" line="431"/>
    2469         <source>Missing argument to &apos;%s&apos;. Expected execution cap number.</source>
    2470         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается %% времени в %% выделенного для выполнения.</translation>
    2471     </message>
    2472     <message>
    2473         <location filename="../VBoxManageControlVM.cpp" line="456"/>
    2474         <location filename="../VBoxManageControlVM.cpp" line="486"/>
    2475         <location filename="../VBoxManageControlVM.cpp" line="2385"/>
    2476         <source>Invalid value &apos;%s&apos;</source>
    2477         <translation>Недопустимое значение &apos;%s&apos;</translation>
    2478     </message>
    2479     <message>
    2480         <location filename="../VBoxManageControlVM.cpp" line="465"/>
    2481         <location filename="../VBoxManageControlVM.cpp" line="495"/>
    2482         <source>audio adapter not enabled in VM configuration</source>
    2483         <translation>аудио адаптер не включен в конфигурации ВМ</translation>
    2484     </message>
    2485     <message>
    2486         <location filename="../VBoxManageControlVM.cpp" line="505"/>
    2487         <source>Missing argument to &apos;%s&apos;.</source>
    2488         <translation>Отсутствует аргумент к &apos;%s&apos;.</translation>
    2489     </message>
    2490     <message>
    2491         <location filename="../VBoxManageControlVM.cpp" line="523"/>
    2492         <location filename="../VBoxManageControlVM.cpp" line="553"/>
    2493         <location filename="../VBoxManageControlVM.cpp" line="565"/>
    2494         <location filename="../VBoxManageControlVM.cpp" line="591"/>
    2495         <source>Invalid &apos;%s&apos; argument &apos;%s&apos;.</source>
    2496         <translation>Недопустимый аргумент к &apos;%s&apos; &apos;%s&apos;.</translation>
    2497     </message>
    2498     <message>
    2499         <location filename="../VBoxManageControlVM.cpp" line="537"/>
    2500         <source>Missing argument to &apos;%s&apos;. Expected enabled / disabled.</source>
    2501         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается enabled / disabled.</translation>
    2502     </message>
    2503     <message>
    2504         <location filename="../VBoxManageControlVM.cpp" line="575"/>
    2505         <source>Missing argument to &apos;%s&apos;. Expected drag and drop mode.</source>
    2506         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается режим drag and drop.</translation>
    2507     </message>
    2508     <message>
    2509         <location filename="../VBoxManageControlVM.cpp" line="607"/>
    2510         <source>Failed to power off machine</source>
    2511         <translation>Не удалось выключить машину</translation>
    2512     </message>
    2513     <message>
    2514         <location filename="../VBoxManageControlVM.cpp" line="626"/>
    2515         <source>Machine in invalid state %d -- %s
    2516 </source>
    2517         <translation>Машина в недопустимом состоянии %d -- %s
    2518 </translation>
    2519     </message>
    2520     <message>
    2521         <location filename="../VBoxManageControlVM.cpp" line="649"/>
    2522         <source>Failed to save machine state</source>
    2523         <translation>Не удалось сохранить состояние машины</translation>
    2524     </message>
    2525     <message>
    2526         <location filename="../VBoxManageControlVM.cpp" line="672"/>
    2527         <location filename="../VBoxManageControlVM.cpp" line="704"/>
    2528         <location filename="../VBoxManageControlVM.cpp" line="757"/>
    2529         <location filename="../VBoxManageControlVM.cpp" line="777"/>
    2530         <location filename="../VBoxManageControlVM.cpp" line="1501"/>
    2531         <location filename="../VBoxManageControlVM.cpp" line="1522"/>
    2532         <location filename="../VBoxManageControlVM.cpp" line="1645"/>
    2533         <location filename="../VBoxManageControlVM.cpp" line="1800"/>
    2534         <location filename="../VBoxManageControlVM.cpp" line="1896"/>
    2535         <location filename="../VBoxManageControlVM.cpp" line="2162"/>
    2536         <source>Guest not running</source>
    2537         <translation>Гостевая система не запущена</translation>
    2538     </message>
    2539     <message>
    2540         <location filename="../VBoxManageControlVM.cpp" line="693"/>
    2541         <source>Current installed Guest Additions don&apos;t support %s the guest.</source>
    2542         <translation>Текущие установленные Дополнения Гостевой ОС не поддерживают %s гостевой системы.</translation>
    2543     </message>
    2544     <message>
    2545         <location filename="../VBoxManageControlVM.cpp" line="694"/>
    2546         <source>rebooting</source>
    2547         <translation>перезагрузку</translation>
    2548     </message>
    2549     <message>
    2550         <location filename="../VBoxManageControlVM.cpp" line="694"/>
    2551         <source>shutting down</source>
    2552         <translation>завершение</translation>
    2553     </message>
    2554     <message>
    2555         <location filename="../VBoxManageControlVM.cpp" line="711"/>
    2556         <source>Missing argument to &apos;%s&apos;. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source>
    2557         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидаются сканкоды клавиатуры IBM PC AT set 2 в виде hex байтов.</translation>
    2558     </message>
    2559     <message>
    2560         <location filename="../VBoxManageControlVM.cpp" line="731"/>
    2561         <source>Converting &apos;%s&apos; returned %Rrc!</source>
    2562         <translation>Преобразование &apos;%s&apos; вернуло %Rrc!</translation>
    2563     </message>
    2564     <message>
    2565         <location filename="../VBoxManageControlVM.cpp" line="740"/>
    2566         <source>Error: &apos;%s&apos; is not a hex byte!</source>
    2567         <translation>Ошибка: &apos;%s&apos; не является hex байтом!</translation>
    2568     </message>
    2569     <message>
    2570         <location filename="../VBoxManageControlVM.cpp" line="764"/>
    2571         <source>Missing argument to &apos;%s&apos;. Expected ASCII string(s).</source>
    2572         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается строка ASCII.</translation>
    2573     </message>
    2574     <message>
    2575         <location filename="../VBoxManageControlVM.cpp" line="784"/>
    2576         <source>Missing argument to &apos;%s&apos;. Expected file name.</source>
    2577         <translation>Отсутствует аргумент к &apos;%s&apos;. Ожидается имя файла.</translation>
    2578     </message>
    2579     <message>
    2580         <location filename="../VBoxManageControlVM.cpp" line="803"/>
    2581         <location filename="../VBoxManageControlVM.cpp" line="847"/>
    2582         <location filename="../VBoxManageControlVM.cpp" line="890"/>
    2583         <location filename="../VBoxManageControlVM.cpp" line="938"/>
    2584         <location filename="../VBoxManageControlVM.cpp" line="1031"/>
    2585         <location filename="../VBoxManageControlVM.cpp" line="1092"/>
    2586         <location filename="../VBoxManageControlVM.cpp" line="1141"/>
    2587         <location filename="../VBoxManageControlVM.cpp" line="1170"/>
    2588         <location filename="../VBoxManageControlVM.cpp" line="1182"/>
    2589         <location filename="../VBoxManageControlVM.cpp" line="1194"/>
    2590         <location filename="../VBoxManageControlVM.cpp" line="1207"/>
    2591         <location filename="../VBoxManageControlVM.cpp" line="1218"/>
    2592         <location filename="../VBoxManageControlVM.cpp" line="1230"/>
    2593         <location filename="../VBoxManageControlVM.cpp" line="1258"/>
    2594         <location filename="../VBoxManageControlVM.cpp" line="1293"/>
    2595         <location filename="../VBoxManageControlVM.cpp" line="1324"/>
    2596         <location filename="../VBoxManageControlVM.cpp" line="1344"/>
    2597         <location filename="../VBoxManageControlVM.cpp" line="2153"/>
    2598         <location filename="../VBoxManageControlVM.cpp" line="2269"/>
    2599         <source>Missing argument to &apos;%s&apos;</source>
    2600         <translation>Отсутствует аргумент к &apos;%s&apos;</translation>
    2601     </message>
    2602     <message>
    2603         <location filename="../VBoxManageControlVM.cpp" line="822"/>
    2604         <source>Invalid link state &apos;%s&apos;</source>
    2605         <translation>Недопустимое состояние подключения &apos;%s&apos;</translation>
    2606     </message>
    2607     <message>
    2608         <location filename="../VBoxManageControlVM.cpp" line="867"/>
    2609         <source>Invalid filename or filename not specified for NIC %lu</source>
    2610         <translation>Недействительное имя файла или имя файла не указано для сетевого адаптера %lu</translation>
    2611     </message>
    2612     <message>
    2613         <location filename="../VBoxManageControlVM.cpp" line="875"/>
    2614         <source>The NIC %d is currently disabled and thus its tracefile can&apos;t be changed</source>
    2615         <translation>NIC %d в настоящее время отключен и поэтому его трассировочный файл не может быть изменен</translation>
    2616     </message>
    2617     <message>
    2618         <location filename="../VBoxManageControlVM.cpp" line="914"/>
    2619         <source>Invalid nictrace%lu argument &apos;%s&apos;</source>
    2620         <translation>Недопустимый аргумент к nictrace%lu &apos;%s&apos;</translation>
    2621     </message>
    2622     <message>
    2623         <location filename="../VBoxManageControlVM.cpp" line="922"/>
    2624         <source>The NIC %d is currently disabled and thus its trace flag can&apos;t be changed</source>
    2625         <translation>NIC %d в настоящее время отключен и поэтому его трассировочный флаг не может быть изменен</translation>
    2626     </message>
    2627     <message>
    2628         <location filename="../VBoxManageControlVM.cpp" line="973"/>
    2629         <source>Missing or invalid argument to &apos;%s&apos;</source>
    2630         <translation>Отсутствует или недопустимый аргумент к &apos;%s&apos;</translation>
    2631     </message>
    2632     <message>
    2633         <location filename="../VBoxManageControlVM.cpp" line="1009"/>
    2634         <source>Wrong rule proto &apos;%s&apos; specified -- only &apos;udp&apos; and &apos;tcp&apos; are allowed.</source>
    2635         <translation>Указан неправильный протокол правила &apos;%s&apos; -- разрешены только &apos;udp&apos; и &apos;tcp&apos;.</translation>
    2636     </message>
    2637     <message>
    2638         <location filename="../VBoxManageControlVM.cpp" line="1062"/>
    2639         <source>Invalid nicproperty%d argument &apos;%s&apos;</source>
    2640         <translation>Недопустимый аргумент к nicproperty%d &apos;%s&apos;</translation>
    2641     </message>
    2642     <message>
    2643         <location filename="../VBoxManageControlVM.cpp" line="1069"/>
    2644         <source>Error: Failed to allocate memory for nicproperty%d &apos;%s&apos;
    2645 </source>
    2646         <translation>Ошибка: Не удалось выделить память для nicproperty%d &apos;%s&apos;
    2647 </translation>
    2648     </message>
    2649     <message>
    2650         <location filename="../VBoxManageControlVM.cpp" line="1077"/>
    2651         <source>The NIC %d is currently disabled and thus its properties can&apos;t be changed</source>
    2652         <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить его свойства</translation>
    2653     </message>
    2654     <message>
    2655         <location filename="../VBoxManageControlVM.cpp" line="1116"/>
    2656         <source>Unknown promiscuous mode policy &apos;%s&apos;</source>
    2657         <translation>Неизвестная политика неразборчивого режима &apos;%s&apos;</translation>
    2658     </message>
    2659     <message>
    2660         <location filename="../VBoxManageControlVM.cpp" line="1126"/>
    2661         <source>The NIC %d is currently disabled and thus its promiscuous mode can&apos;t be changed</source>
    2662         <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить неразборчивый режим</translation>
    2663     </message>
    2664     <message>
    2665         <location filename="../VBoxManageControlVM.cpp" line="1239"/>
    2666         <source>Invalid type &apos;%s&apos; specfied for NIC %lu</source>
    2667         <translation>Указан недопустимый тип &apos;%s&apos; для NIC %lu</translation>
    2668     </message>
    2669     <message>
    2670         <location filename="../VBoxManageControlVM.cpp" line="1247"/>
    2671         <source>The NIC %d is currently disabled and thus its attachment type can&apos;t be changed</source>
    2672         <translation>NIC %d отключен в настоящее время, и поэтому невозможно изменить тип подключения</translation>
    2673     </message>
    2674     <message>
    2675         <location filename="../VBoxManageControlVM.cpp" line="1254"/>
    2676         <source>Warning: &apos;vrdp&apos; is deprecated. Use &apos;vrde&apos;.
    2677 </source>
    2678         <translation>Предупреждение: &apos;vrdp&apos; устарел. Используйте &apos;vrde&apos;.
    2679 </translation>
    2680     </message>
    2681     <message>
    2682         <location filename="../VBoxManageControlVM.cpp" line="1277"/>
    2683         <source>Invalid remote desktop server state &apos;%s&apos;</source>
    2684         <translation>Недопустимое состояние сервера удаленного рабочего стола &apos;%s&apos;</translation>
    2685     </message>
    2686     <message>
    2687         <location filename="../VBoxManageControlVM.cpp" line="1289"/>
    2688         <source>Warning: &apos;vrdpport&apos; is deprecated. Use &apos;vrdeport&apos;.
    2689 </source>
    2690         <translation>Предупреждение: &apos;vrdpport&apos; устарел. Используйте &apos;vrdeport&apos;.
    2691 </translation>
    2692     </message>
    2693     <message>
    2694         <location filename="../VBoxManageControlVM.cpp" line="1320"/>
    2695         <source>Warning: &apos;vrdpvideochannelquality&apos; is deprecated. Use &apos;vrdevideochannelquality&apos;.
    2696 </source>
    2697         <translation>Предупреждение: &apos;vrdpvideochannelquality&apos; устарел. Используйте &apos;vrdevideochannelquality&apos;.
    2698 </translation>
    2699     </message>
    2700     <message>
    2701         <location filename="../VBoxManageControlVM.cpp" line="1370"/>
    2702         <source>Invalid vrdeproperty argument &apos;%s&apos;</source>
    2703         <translation>Недопустимый аргумент к vrdeproperty &apos;%s&apos;</translation>
    2704     </message>
    2705     <message>
    2706         <location filename="../VBoxManageControlVM.cpp" line="1377"/>
    2707         <source>Error: Failed to allocate memory for VRDE property &apos;%s&apos;
    2708 </source>
    2709         <translation>Ошибка: Не удалось выделить память для свойства VRDE &apos;%s&apos;
    2710 </translation>
    2711     </message>
    2712     <message>
    2713         <location filename="../VBoxManageControlVM.cpp" line="1398"/>
    2714         <source>Wrong number of arguments</source>
    2715         <translation>Неправильное количество аргументов</translation>
    2716     </message>
    2717     <message>
    2718         <location filename="../VBoxManageControlVM.cpp" line="1414"/>
    2719         <location filename="../VBoxManageControlVM.cpp" line="1608"/>
    2720         <location filename="../VBoxManageControlVM.cpp" line="2417"/>
    2721         <source>Invalid parameter &apos;%s&apos;</source>
    2722         <translation>Недопустимый параметр &apos;%s&apos;</translation>
    2723     </message>
    2724     <message>
    2725         <location filename="../VBoxManageControlVM.cpp" line="1447"/>
    2726         <source>Zero UUID argument &apos;%s&apos;</source>
    2727         <translation>Нулевой UUID аргумент &apos;%s&apos;</translation>
    2728     </message>
    2729     <message>
    2730         <location filename="../VBoxManageControlVM.cpp" line="1465"/>
    2731         <location filename="../VBoxManageControlVM.cpp" line="1513"/>
    2732         <location filename="../VBoxManageControlVM.cpp" line="1564"/>
    2733         <location filename="../VBoxManageControlVM.cpp" line="1620"/>
    2734         <location filename="../VBoxManageControlVM.cpp" line="1660"/>
    2735         <location filename="../VBoxManageControlVM.cpp" line="1724"/>
    2736         <location filename="../VBoxManageControlVM.cpp" line="1780"/>
    2737         <location filename="../VBoxManageControlVM.cpp" line="1876"/>
    2738         <location filename="../VBoxManageControlVM.cpp" line="1928"/>
    2739         <location filename="../VBoxManageControlVM.cpp" line="2009"/>
    2740         <location filename="../VBoxManageControlVM.cpp" line="2022"/>
    2741         <location filename="../VBoxManageControlVM.cpp" line="2055"/>
    2742         <location filename="../VBoxManageControlVM.cpp" line="2076"/>
    2743         <location filename="../VBoxManageControlVM.cpp" line="2097"/>
    2744         <location filename="../VBoxManageControlVM.cpp" line="2118"/>
    2745         <location filename="../VBoxManageControlVM.cpp" line="2139"/>
     3058        <location filename="../VBoxManageControlVM.cpp" line="1587"/>
     3059        <location filename="../VBoxManageControlVM.cpp" line="2259"/>
     3060        <source>Invalid parameter &apos;%s&apos;.</source>
     3061        <translation type="unfinished"></translation>
     3062    </message>
     3063    <message>
     3064        <location filename="../VBoxManageControlVM.cpp" line="1425"/>
     3065        <source>Zero UUID argument &apos;%s&apos;.</source>
     3066        <translation type="unfinished"></translation>
     3067    </message>
     3068    <message>
     3069        <location filename="../VBoxManageControlVM.cpp" line="1444"/>
     3070        <location filename="../VBoxManageControlVM.cpp" line="1491"/>
     3071        <location filename="../VBoxManageControlVM.cpp" line="1542"/>
     3072        <location filename="../VBoxManageControlVM.cpp" line="1599"/>
     3073        <location filename="../VBoxManageControlVM.cpp" line="1638"/>
     3074        <location filename="../VBoxManageControlVM.cpp" line="1735"/>
     3075        <location filename="../VBoxManageControlVM.cpp" line="1787"/>
     3076        <location filename="../VBoxManageControlVM.cpp" line="1821"/>
     3077        <location filename="../VBoxManageControlVM.cpp" line="1840"/>
     3078        <location filename="../VBoxManageControlVM.cpp" line="1854"/>
     3079        <location filename="../VBoxManageControlVM.cpp" line="1888"/>
     3080        <location filename="../VBoxManageControlVM.cpp" line="1910"/>
     3081        <location filename="../VBoxManageControlVM.cpp" line="1932"/>
     3082        <location filename="../VBoxManageControlVM.cpp" line="1954"/>
     3083        <location filename="../VBoxManageControlVM.cpp" line="1978"/>
     3084        <location filename="../VBoxManageControlVM.cpp" line="2048"/>
     3085        <location filename="../VBoxManageControlVM.cpp" line="2093"/>
     3086        <source>Incorrect number of parameters.</source>
     3087        <translation type="unfinished"></translation>
     3088    </message>
     3089    <message>
     3090        <location filename="../VBoxManageControlVM.cpp" line="1462"/>
     3091        <source>Either &quot;yes&quot; or &quot;no&quot; is expected.</source>
     3092        <translation type="unfinished"></translation>
     3093    </message>
     3094    <message>
     3095        <location filename="../VBoxManageControlVM.cpp" line="1527"/>
     3096        <source>Display status must be &lt;on&gt; or &lt;off&gt;.</source>
     3097        <translation type="unfinished"></translation>
     3098    </message>
     3099    <message>
     3100        <location filename="../VBoxManageControlVM.cpp" line="1647"/>
     3101        <source>Error parsing guest memory balloon size &apos;%s&apos;.</source>
     3102        <translation type="unfinished"></translation>
     3103    </message>
     3104    <message>
     3105        <location filename="../VBoxManageControlVM.cpp" line="1728"/>
     3106        <source>Teleportation failed</source>
     3107        <translation type="unfinished">Не удалось произвести портирование</translation>
     3108    </message>
     3109    <message>
     3110        <location filename="../VBoxManageControlVM.cpp" line="1746"/>
     3111        <source>Error parsing display number &apos;%s&apos;.</source>
     3112        <translation type="unfinished"></translation>
     3113    </message>
     3114    <message>
     3115        <location filename="../VBoxManageControlVM.cpp" line="1769"/>
     3116        <source>Failed to create file &apos;%s&apos; (%Rrc).</source>
     3117        <translation type="unfinished"></translation>
     3118    </message>
     3119    <message>
     3120        <location filename="../VBoxManageControlVM.cpp" line="1776"/>
     3121        <source>Failed to write screenshot to file &apos;%s&apos; (%Rrc).</source>
     3122        <translation type="unfinished"></translation>
     3123    </message>
     3124    <message>
     3125        <location filename="../VBoxManageControlVM.cpp" line="1827"/>
     3126        <source>Error parsing list of screen IDs &apos;%s&apos;.</source>
     3127        <translation type="unfinished"></translation>
     3128    </message>
     3129    <message>
     3130        <location filename="../VBoxManageControlVM.cpp" line="1863"/>
     3131        <source>Error parsing video width &apos;%s&apos;.</source>
     3132        <translation type="unfinished"></translation>
     3133    </message>
     3134    <message>
     3135        <location filename="../VBoxManageControlVM.cpp" line="1872"/>
     3136        <source>Error parsing video height &apos;%s&apos;.</source>
     3137        <translation type="unfinished"></translation>
     3138    </message>
     3139    <message>
     3140        <location filename="../VBoxManageControlVM.cpp" line="1897"/>
     3141        <source>Error parsing video rate &apos;%s&apos;.</source>
     3142        <translation type="unfinished"></translation>
     3143    </message>
     3144    <message>
     3145        <location filename="../VBoxManageControlVM.cpp" line="1919"/>
     3146        <source>Error parsing video FPS &apos;%s&apos;.</source>
     3147        <translation type="unfinished"></translation>
     3148    </message>
     3149    <message>
     3150        <location filename="../VBoxManageControlVM.cpp" line="1941"/>
     3151        <source>Error parsing maximum time &apos;%s&apos;.</source>
     3152        <translation type="unfinished"></translation>
     3153    </message>
     3154    <message>
     3155        <location filename="../VBoxManageControlVM.cpp" line="1963"/>
     3156        <source>Error parsing maximum file size &apos;%s&apos;.</source>
     3157        <translation type="unfinished"></translation>
     3158    </message>
     3159    <message>
     3160        <location filename="../VBoxManageControlVM.cpp" line="2037"/>
     3161        <source>Invalid argument to &apos;%s&apos;.</source>
     3162        <translation type="unfinished"></translation>
     3163    </message>
     3164    <message>
     3165        <location filename="../VBoxManageControlVM.cpp" line="2059"/>
     3166        <source>Invalid parameters.</source>
     3167        <translation type="unfinished"></translation>
     3168    </message>
     3169    <message>
     3170        <location filename="../VBoxManageControlVM.cpp" line="2072"/>
     3171        <source>Enter password:</source>
     3172        <translation type="unfinished">Введите пароль:</translation>
     3173    </message>
     3174    <message>
     3175        <location filename="../VBoxManageControlVM.cpp" line="2081"/>
     3176        <source>Failed to read new password from file.</source>
     3177        <translation type="unfinished"></translation>
     3178    </message>
     3179    <message>
     3180        <location filename="../VBoxManageControlVM.cpp" line="2129"/>
     3181        <location filename="../VBoxManageControlVM.cpp" line="2144"/>
     3182        <location filename="../VBoxManageControlVM.cpp" line="2185"/>
     3183        <location filename="../VBoxManageControlVM.cpp" line="2198"/>
     3184        <location filename="../VBoxManageControlVM.cpp" line="2219"/>
     3185        <location filename="../VBoxManageControlVM.cpp" line="2239"/>
     3186        <source>Incorrect arguments to &apos;%s&apos;.</source>
     3187        <translation type="unfinished"></translation>
     3188    </message>
     3189    <message>
    27463190        <location filename="../VBoxManageControlVM.cpp" line="2205"/>
    2747         <location filename="../VBoxManageControlVM.cpp" line="2249"/>
    2748         <source>Incorrect number of parameters</source>
    2749         <translation>Некорректное количество параметров</translation>
    2750     </message>
    2751     <message>
    2752         <location filename="../VBoxManageControlVM.cpp" line="1484"/>
    2753         <source>Either &quot;yes&quot; or &quot;no&quot; is expected</source>
    2754         <translation>Ожидается только &quot;yes&quot; или &quot;no&quot;</translation>
    2755     </message>
    2756     <message>
    2757         <location filename="../VBoxManageControlVM.cpp" line="1549"/>
    2758         <source>Display status must be &lt;on&gt; or &lt;off&gt;</source>
    2759         <translation>Статус экрана должен быть &lt;on&gt; или &lt;off&gt;</translation>
    2760     </message>
    2761     <message>
    2762         <location filename="../VBoxManageControlVM.cpp" line="1681"/>
    2763         <source>Invalid host DVD drive name &quot;%s&quot;</source>
    2764         <translation>Недопустимое имя DVD дисковода хоста &quot;%s&quot;</translation>
    2765     </message>
    2766     <message>
    2767         <location filename="../VBoxManageControlVM.cpp" line="1717"/>
    2768         <source>IDE Controller</source>
    2769         <translation>IDE Контроллер</translation>
    2770     </message>
    2771     <message>
    2772         <location filename="../VBoxManageControlVM.cpp" line="1744"/>
    2773         <source>Invalid host floppy drive name &quot;%s&quot;</source>
    2774         <translation>Недопустимое имя флоппи дисковода хоста &quot;%s&quot;</translation>
    2775     </message>
    2776     <message>
    2777         <location filename="../VBoxManageControlVM.cpp" line="1773"/>
    2778         <source>Floppy Controller</source>
    2779         <translation>Флоппи Контроллер</translation>
    2780     </message>
    2781     <message>
    2782         <location filename="../VBoxManageControlVM.cpp" line="1789"/>
    2783         <source>Error parsing guest memory balloon size &apos;%s&apos;</source>
    2784         <translation>Ошибка разбора размера balloon памяти гостевой системы &apos;%s&apos;</translation>
    2785     </message>
    2786     <message>
    2787         <location filename="../VBoxManageControlVM.cpp" line="1870"/>
    2788         <source>Teleportation failed</source>
    2789         <translation>Не удалось произвести портирование</translation>
    2790     </message>
    2791     <message>
    2792         <location filename="../VBoxManageControlVM.cpp" line="1887"/>
    2793         <location filename="../VBoxManageControlVM.cpp" line="1988"/>
    2794         <source>Error parsing display number &apos;%s&apos;</source>
    2795         <translation>Ошибка разбора номера экрана &apos;%s&apos;</translation>
    2796     </message>
    2797     <message>
    2798         <location filename="../VBoxManageControlVM.cpp" line="1910"/>
    2799         <source>Failed to create file &apos;%s&apos; (%Rrc)</source>
    2800         <translation>Не удалось создать файл &apos;%s&apos; (%Rrc)</translation>
    2801     </message>
    2802     <message>
    2803         <location filename="../VBoxManageControlVM.cpp" line="1917"/>
    2804         <source>Failed to write screenshot to file &apos;%s&apos; (%Rrc)</source>
    2805         <translation>Не удалось записать снимок экрана в файл &apos;%s&apos; (%Rrc)</translation>
    2806     </message>
    2807     <message>
    2808         <location filename="../VBoxManageControlVM.cpp" line="1994"/>
    2809         <source>Invalid screen ID specified &apos;%u&apos;</source>
    2810         <translation>Указан недопустимый ID экрана &apos;%u&apos;</translation>
    2811     </message>
    2812     <message>
    2813         <location filename="../VBoxManageControlVM.cpp" line="2031"/>
    2814         <source>Error parsing video width &apos;%s&apos;</source>
    2815         <translation>Ошибка при разборе ширины видео &apos;%s&apos;</translation>
    2816     </message>
    2817     <message>
    2818         <location filename="../VBoxManageControlVM.cpp" line="2040"/>
    2819         <source>Error parsing video height &apos;%s&apos;</source>
    2820         <translation>Ошибка при разборе высоты видео &apos;%s&apos;</translation>
    2821     </message>
    2822     <message>
    2823         <location filename="../VBoxManageControlVM.cpp" line="2064"/>
    2824         <source>Error parsing video rate &apos;%s&apos;</source>
    2825         <translation>Ошибка при разборе битрейта видео &apos;%s&apos;</translation>
    2826     </message>
    2827     <message>
    2828         <location filename="../VBoxManageControlVM.cpp" line="2085"/>
    2829         <source>Error parsing video FPS &apos;%s&apos;</source>
    2830         <translation>Ошибка при разборе FPS видео &apos;%s&apos;</translation>
    2831     </message>
    2832     <message>
    2833         <location filename="../VBoxManageControlVM.cpp" line="2106"/>
    2834         <source>Error parsing maximum time &apos;%s&apos;</source>
    2835         <translation>Ошибка при разборе максимального времени &apos;%s&apos;</translation>
    2836     </message>
    2837     <message>
    2838         <location filename="../VBoxManageControlVM.cpp" line="2127"/>
    2839         <source>Error parsing maximum file size &apos;%s&apos;</source>
    2840         <translation>Ошибка при разборе максимального размера файла &apos;%s&apos;</translation>
    2841     </message>
    2842     <message>
    2843         <location filename="../VBoxManageControlVM.cpp" line="2195"/>
    2844         <source>Invalid argument to &apos;%s&apos;</source>
    2845         <translation>Недопустимый аргумент к &apos;%s&apos;</translation>
    2846     </message>
    2847     <message>
    2848         <location filename="../VBoxManageControlVM.cpp" line="2216"/>
    2849         <source>Invalid parameters</source>
    2850         <translation>Недопустимые параметры</translation>
    2851     </message>
    2852     <message>
    2853         <location filename="../VBoxManageControlVM.cpp" line="2229"/>
    2854         <source>Enter password:</source>
    2855         <translation>Введите пароль:</translation>
    2856     </message>
    2857     <message>
    2858         <location filename="../VBoxManageControlVM.cpp" line="2238"/>
    2859         <source>Failed to read new password from file</source>
    2860         <translation>Не удалось прочесть новый пароль из файла</translation>
    2861     </message>
    2862     <message>
    2863         <location filename="../VBoxManageControlVM.cpp" line="2283"/>
    2864         <location filename="../VBoxManageControlVM.cpp" line="2298"/>
    2865         <location filename="../VBoxManageControlVM.cpp" line="2339"/>
    2866         <location filename="../VBoxManageControlVM.cpp" line="2351"/>
    2867         <location filename="../VBoxManageControlVM.cpp" line="2371"/>
    2868         <location filename="../VBoxManageControlVM.cpp" line="2397"/>
    2869         <source>Incorrect arguments to &apos;%s&apos;</source>
    2870         <translation>Некорректные аргументы к &apos;%s&apos;</translation>
    2871     </message>
    2872     <message>
    2873         <location filename="../VBoxManageControlVM.cpp" line="2358"/>
    2874         <source>Invalid vm-process-priority &apos;%s&apos;</source>
    2875         <translation>Недопустимый vm-process-priority &apos;%s&apos;</translation>
    2876     </message>
    2877     <message>
    2878         <location filename="../VBoxManageControlVM.cpp" line="2406"/>
    2879         <source>Invalid autostart delay number &apos;%s&apos;</source>
    2880         <translation>Недопустимое время задержки автостарта &apos;%s&apos;</translation>
     3191        <source>Invalid vm-process-priority &apos;%s&apos;.</source>
     3192        <translation type="unfinished"></translation>
     3193    </message>
     3194    <message>
     3195        <location filename="../VBoxManageControlVM.cpp" line="2248"/>
     3196        <source>Invalid autostart delay number &apos;%s&apos;.</source>
     3197        <translation type="unfinished"></translation>
    28813198    </message>
    28823199</context>
     
    32853602    <name>Disk</name>
    32863603    <message>
    3287         <location filename="../VBoxManageDisk.cpp" line="66"/>
     3604        <location filename="../VBoxManageDisk.cpp" line="64"/>
    32883605        <source>Error code %Rrc at %s(%u) in function %s</source>
    32893606        <translation>Код ошибки %Rrc в %s(%u) в функции %s</translation>
    32903607    </message>
    32913608    <message>
    3292         <location filename="../VBoxManageDisk.cpp" line="186"/>
    3293         <location filename="../VBoxManageDisk.cpp" line="221"/>
     3609        <location filename="../VBoxManageDisk.cpp" line="184"/>
     3610        <location filename="../VBoxManageDisk.cpp" line="219"/>
    32943611        <source>Cannot convert filename &quot;%s&quot; to absolute path</source>
    32953612        <translation>Невозможно преобразовать имя файла &quot;%s&quot; в абсолютный путь</translation>
    32963613    </message>
    32973614    <message>
    3298         <location filename="../VBoxManageDisk.cpp" line="290"/>
     3615        <location filename="../VBoxManageDisk.cpp" line="288"/>
    32993616        <source>Out of memory copying &apos;%s&apos;</source>
    33003617        <translation>Не хватает памяти для копирования &apos;%s&apos;</translation>
    33013618    </message>
    33023619    <message>
    3303         <location filename="../VBoxManageDisk.cpp" line="330"/>
    3304         <location filename="../VBoxManageDisk.cpp" line="336"/>
    3305         <location filename="../VBoxManageDisk.cpp" line="342"/>
    3306         <location filename="../VBoxManageDisk.cpp" line="701"/>
    3307         <location filename="../VBoxManageDisk.cpp" line="707"/>
    3308         <location filename="../VBoxManageDisk.cpp" line="713"/>
    3309         <location filename="../VBoxManageDisk.cpp" line="1027"/>
    3310         <location filename="../VBoxManageDisk.cpp" line="1033"/>
    3311         <location filename="../VBoxManageDisk.cpp" line="1039"/>
    3312         <location filename="../VBoxManageDisk.cpp" line="1662"/>
    3313         <location filename="../VBoxManageDisk.cpp" line="1668"/>
    3314         <location filename="../VBoxManageDisk.cpp" line="1674"/>
    3315         <location filename="../VBoxManageDisk.cpp" line="1774"/>
    3316         <location filename="../VBoxManageDisk.cpp" line="1780"/>
    3317         <location filename="../VBoxManageDisk.cpp" line="1786"/>
     3620        <location filename="../VBoxManageDisk.cpp" line="328"/>
     3621        <location filename="../VBoxManageDisk.cpp" line="334"/>
     3622        <location filename="../VBoxManageDisk.cpp" line="340"/>
     3623        <location filename="../VBoxManageDisk.cpp" line="699"/>
     3624        <location filename="../VBoxManageDisk.cpp" line="705"/>
     3625        <location filename="../VBoxManageDisk.cpp" line="711"/>
     3626        <location filename="../VBoxManageDisk.cpp" line="1025"/>
     3627        <location filename="../VBoxManageDisk.cpp" line="1031"/>
     3628        <location filename="../VBoxManageDisk.cpp" line="1037"/>
     3629        <location filename="../VBoxManageDisk.cpp" line="1660"/>
     3630        <location filename="../VBoxManageDisk.cpp" line="1666"/>
     3631        <location filename="../VBoxManageDisk.cpp" line="1672"/>
     3632        <location filename="../VBoxManageDisk.cpp" line="1772"/>
     3633        <location filename="../VBoxManageDisk.cpp" line="1778"/>
     3634        <location filename="../VBoxManageDisk.cpp" line="1784"/>
    33183635        <source>Only one command can be specified: &apos;%s&apos;</source>
    33193636        <translation>Может быть указана только одна команда: &apos;%s&apos;</translation>
    33203637    </message>
    33213638    <message>
    3322         <location filename="../VBoxManageDisk.cpp" line="373"/>
     3639        <location filename="../VBoxManageDisk.cpp" line="371"/>
    33233640        <source>Invalid key value pair: No &apos;=&apos;.</source>
    33243641        <translation>Недопустимая пара ключ/значение: Нет &apos;=&apos;.</translation>
    33253642    </message>
    33263643    <message>
    3327         <location filename="../VBoxManageDisk.cpp" line="389"/>
     3644        <location filename="../VBoxManageDisk.cpp" line="387"/>
    33283645        <source>Cannot open replacement value file &apos;%s&apos;: %Rrc</source>
    33293646        <translation>Невозможно открыть файл с подменяемым значением &apos;%s&apos;: %Rrc</translation>
    33303647    </message>
    33313648    <message>
    3332         <location filename="../VBoxManageDisk.cpp" line="405"/>
     3649        <location filename="../VBoxManageDisk.cpp" line="403"/>
    33333650        <source>Error reading replacement MBR file &apos;%s&apos;: %Rrc</source>
    33343651        <translation>Ошибка чтения файла с подменяемым MBR &apos;%s&apos;: %Rrc</translation>
    33353652    </message>
    33363653    <message>
    3337         <location filename="../VBoxManageDisk.cpp" line="408"/>
     3654        <location filename="../VBoxManageDisk.cpp" line="406"/>
    33383655        <source>Out of memory reading &apos;%s&apos;: %Rrc</source>
    33393656        <translation>Не хватает памяти при чтении &apos;%s&apos;: %Rrc</translation>
    33403657    </message>
    33413658    <message>
    3342         <location filename="../VBoxManageDisk.cpp" line="412"/>
     3659        <location filename="../VBoxManageDisk.cpp" line="410"/>
    33433660        <source>Replacement value file &apos;%s&apos; is to big: %Rhcb, max 16MiB</source>
    33443661        <translation>Файл с подменяемым значением &apos;%s&apos; слишком большой: %Rhcb, максимально 16MiB</translation>
    33453662    </message>
    33463663    <message>
    3347         <location filename="../VBoxManageDisk.cpp" line="416"/>
     3664        <location filename="../VBoxManageDisk.cpp" line="414"/>
    33483665        <source>Cannot get the size of the value file &apos;%s&apos;: %Rrc</source>
    33493666        <translation>Невозможно получить размер файла &apos;%s&apos;, содержащим значение: %Rrc</translation>
    33503667    </message>
    33513668    <message>
    3352         <location filename="../VBoxManageDisk.cpp" line="435"/>
    3353         <location filename="../VBoxManageDisk.cpp" line="1062"/>
    3354         <location filename="../VBoxManageDisk.cpp" line="1247"/>
    3355         <location filename="../VBoxManageDisk.cpp" line="2588"/>
     3669        <location filename="../VBoxManageDisk.cpp" line="433"/>
     3670        <location filename="../VBoxManageDisk.cpp" line="1060"/>
     3671        <location filename="../VBoxManageDisk.cpp" line="1245"/>
     3672        <location filename="../VBoxManageDisk.cpp" line="2585"/>
    33563673        <source>Invalid medium variant &apos;%s&apos;</source>
    33573674        <translation>Недопустимый вариант носителя &apos;%s&apos;</translation>
    33583675    </message>
    33593676    <message>
    3360         <location filename="../VBoxManageDisk.cpp" line="439"/>
    3361         <location filename="../VBoxManageDisk.cpp" line="801"/>
    3362         <location filename="../VBoxManageDisk.cpp" line="1071"/>
    3363         <location filename="../VBoxManageDisk.cpp" line="1263"/>
    3364         <location filename="../VBoxManageDisk.cpp" line="1682"/>
    3365         <location filename="../VBoxManageDisk.cpp" line="1798"/>
    3366         <location filename="../VBoxManageDisk.cpp" line="2010"/>
     3677        <location filename="../VBoxManageDisk.cpp" line="437"/>
     3678        <location filename="../VBoxManageDisk.cpp" line="799"/>
     3679        <location filename="../VBoxManageDisk.cpp" line="1069"/>
     3680        <location filename="../VBoxManageDisk.cpp" line="1261"/>
     3681        <location filename="../VBoxManageDisk.cpp" line="1680"/>
     3682        <location filename="../VBoxManageDisk.cpp" line="1796"/>
     3683        <location filename="../VBoxManageDisk.cpp" line="2008"/>
    33673684        <source>Invalid parameter &apos;%s&apos;</source>
    33683685        <translation>Недопустимый параметр &apos;%s&apos;</translation>
     3686    </message>
     3687    <message>
     3688        <location filename="../VBoxManageDisk.cpp" line="443"/>
     3689        <location filename="../VBoxManageDisk.cpp" line="806"/>
     3690        <location filename="../VBoxManageDisk.cpp" line="1687"/>
     3691        <location filename="../VBoxManageDisk.cpp" line="1803"/>
     3692        <location filename="../VBoxManageDisk.cpp" line="2015"/>
     3693        <source>Invalid option -%c</source>
     3694        <translation>Недопустимая опция -%c</translation>
    33693695    </message>
    33703696    <message>
     
    33743700        <location filename="../VBoxManageDisk.cpp" line="1805"/>
    33753701        <location filename="../VBoxManageDisk.cpp" line="2017"/>
    3376         <source>Invalid option -%c</source>
    3377         <translation>Недопустимая опция -%c</translation>
    3378     </message>
    3379     <message>
    3380         <location filename="../VBoxManageDisk.cpp" line="447"/>
    3381         <location filename="../VBoxManageDisk.cpp" line="810"/>
    3382         <location filename="../VBoxManageDisk.cpp" line="1691"/>
    3383         <location filename="../VBoxManageDisk.cpp" line="1807"/>
    3384         <location filename="../VBoxManageDisk.cpp" line="2019"/>
    33853702        <source>Invalid option case %i</source>
    33863703        <translation>Недопустимый вариант опции %i</translation>
    33873704    </message>
    33883705    <message>
    3389         <location filename="../VBoxManageDisk.cpp" line="450"/>
    3390         <location filename="../VBoxManageDisk.cpp" line="813"/>
    3391         <location filename="../VBoxManageDisk.cpp" line="1694"/>
    3392         <location filename="../VBoxManageDisk.cpp" line="1810"/>
    3393         <location filename="../VBoxManageDisk.cpp" line="2022"/>
     3706        <location filename="../VBoxManageDisk.cpp" line="448"/>
     3707        <location filename="../VBoxManageDisk.cpp" line="811"/>
     3708        <location filename="../VBoxManageDisk.cpp" line="1692"/>
     3709        <location filename="../VBoxManageDisk.cpp" line="1808"/>
     3710        <location filename="../VBoxManageDisk.cpp" line="2020"/>
    33943711        <source>unknown option: %s
    33953712</source>
     
    33983715    </message>
    33993716    <message>
    3400         <location filename="../VBoxManageDisk.cpp" line="454"/>
    3401         <location filename="../VBoxManageDisk.cpp" line="817"/>
    3402         <location filename="../VBoxManageDisk.cpp" line="1087"/>
    3403         <location filename="../VBoxManageDisk.cpp" line="1698"/>
    3404         <location filename="../VBoxManageDisk.cpp" line="1814"/>
    3405         <location filename="../VBoxManageDisk.cpp" line="2026"/>
     3717        <location filename="../VBoxManageDisk.cpp" line="452"/>
     3718        <location filename="../VBoxManageDisk.cpp" line="815"/>
     3719        <location filename="../VBoxManageDisk.cpp" line="1085"/>
     3720        <location filename="../VBoxManageDisk.cpp" line="1696"/>
     3721        <location filename="../VBoxManageDisk.cpp" line="1812"/>
     3722        <location filename="../VBoxManageDisk.cpp" line="2024"/>
    34063723        <source>error: %Rrs</source>
    34073724        <translation>ошибка: %Rrs</translation>
    34083725    </message>
    34093726    <message>
    3410         <location filename="../VBoxManageDisk.cpp" line="465"/>
    3411         <location filename="../VBoxManageDisk.cpp" line="485"/>
     3727        <location filename="../VBoxManageDisk.cpp" line="463"/>
     3728        <location filename="../VBoxManageDisk.cpp" line="483"/>
    34123729        <source>Parameters --filename is required</source>
    34133730        <translation>Требуется параметр --filename</translation>
    34143731    </message>
    34153732    <message>
    3416         <location filename="../VBoxManageDisk.cpp" line="467"/>
     3733        <location filename="../VBoxManageDisk.cpp" line="465"/>
    34173734        <source>Parameters --size is required</source>
    34183735        <translation>Требуется параметр --size</translation>
    34193736    </message>
    34203737    <message>
    3421         <location filename="../VBoxManageDisk.cpp" line="488"/>
     3738        <location filename="../VBoxManageDisk.cpp" line="486"/>
    34223739        <source>Creating a differencing medium is only supported for hard disks</source>
    34233740        <translation>Создание разностного носителя поддерживается только для жестких дисков</translation>
    34243741    </message>
    34253742    <message>
    3426         <location filename="../VBoxManageDisk.cpp" line="507"/>
     3743        <location filename="../VBoxManageDisk.cpp" line="505"/>
    34273744        <source>Invalid parent hard disk reference, avoiding crash</source>
    34283745        <translation>Недопустимая ссылка на родительский жесткий диск, предотвращение краха</translation>
    34293746    </message>
    34303747    <message>
    3431         <location filename="../VBoxManageDisk.cpp" line="590"/>
     3748        <location filename="../VBoxManageDisk.cpp" line="588"/>
    34323749        <source>The %s is not found in the property list of the requested medium format.</source>
    34333750        <translation>%s не найден в списке свойств запрошенного формата носителя.</translation>
    34343751    </message>
    34353752    <message>
    3436         <location filename="../VBoxManageDisk.cpp" line="600"/>
     3753        <location filename="../VBoxManageDisk.cpp" line="598"/>
    34373754        <source>Base64 encoding of the property %s failed. (%Rhrc)</source>
    34383755        <translation>Не удалось закодировать свойство, используя Base64. (%Rhrc)</translation>
    34393756    </message>
    34403757    <message>
    3441         <location filename="../VBoxManageDisk.cpp" line="624"/>
     3758        <location filename="../VBoxManageDisk.cpp" line="622"/>
    34423759        <source>Failed to create medium</source>
    34433760        <translation>Не удалось создать носитель</translation>
    34443761    </message>
    34453762    <message>
    3446         <location filename="../VBoxManageDisk.cpp" line="632"/>
     3763        <location filename="../VBoxManageDisk.cpp" line="630"/>
    34473764        <source>Medium created. UUID: %s
    34483765</source>
     
    34513768    </message>
    34523769    <message>
    3453         <location filename="../VBoxManageDisk.cpp" line="720"/>
     3770        <location filename="../VBoxManageDisk.cpp" line="718"/>
    34543771        <source>Invalid medium type &apos;%s&apos;</source>
    34553772        <translation>Недопустимый тип носителя &apos;%s&apos;</translation>
    34563773    </message>
    34573774    <message>
    3458         <location filename="../VBoxManageDisk.cpp" line="727"/>
     3775        <location filename="../VBoxManageDisk.cpp" line="725"/>
    34593776        <source>Invalid autoreset parameter &apos;%s&apos;</source>
    34603777        <translation>Недопустимый параметр автосброса &apos;%s&apos;</translation>
    34613778    </message>
    34623779    <message>
    3463         <location filename="../VBoxManageDisk.cpp" line="750"/>
     3780        <location filename="../VBoxManageDisk.cpp" line="748"/>
    34643781        <source>Invalid --property argument &apos;%s&apos;</source>
    34653782        <translation>Недопустимый аргумент к --property &apos;%s&apos;</translation>
    34663783    </message>
    34673784    <message>
    3468         <location filename="../VBoxManageDisk.cpp" line="757"/>
     3785        <location filename="../VBoxManageDisk.cpp" line="755"/>
    34693786        <source>Error: Failed to allocate memory for medium property &apos;%s&apos;
    34703787</source>
     
    34733790    </message>
    34743791    <message>
    3475         <location filename="../VBoxManageDisk.cpp" line="825"/>
    3476         <location filename="../VBoxManageDisk.cpp" line="1707"/>
    3477         <location filename="../VBoxManageDisk.cpp" line="1822"/>
     3792        <location filename="../VBoxManageDisk.cpp" line="823"/>
     3793        <location filename="../VBoxManageDisk.cpp" line="1705"/>
     3794        <location filename="../VBoxManageDisk.cpp" line="1820"/>
    34783795        <source>Medium name or UUID required</source>
    34793796        <translation>Требуется имя или UUID носителя</translation>
    34803797    </message>
    34813798    <message>
    3482         <location filename="../VBoxManageDisk.cpp" line="836"/>
     3799        <location filename="../VBoxManageDisk.cpp" line="834"/>
    34833800        <source>No operation specified</source>
    34843801        <translation>Не указана операция</translation>
    34853802    </message>
    34863803    <message>
    3487         <location filename="../VBoxManageDisk.cpp" line="857"/>
     3804        <location filename="../VBoxManageDisk.cpp" line="855"/>
    34883805        <source>Invalid medium reference, avoiding crash</source>
    34893806        <translation>Недопустимая ссылка на носитель, предотвращение краха</translation>
    34903807    </message>
    34913808    <message>
    3492         <location filename="../VBoxManageDisk.cpp" line="878"/>
     3809        <location filename="../VBoxManageDisk.cpp" line="876"/>
    34933810        <source>Error: Attempt to resize the medium from %RU64.%RU64 MB to %RU64.%RU64 MB. Use --resizebyte if this is intended!
    34943811</source>
     
    34973814    </message>
    34983815    <message>
    3499         <location filename="../VBoxManageDisk.cpp" line="912"/>
     3816        <location filename="../VBoxManageDisk.cpp" line="910"/>
    35003817        <source>Compact medium operation is not implemented!</source>
    35013818        <translation>Операция сжатия носителя не реализована!</translation>
    35023819    </message>
    35033820    <message>
    3504         <location filename="../VBoxManageDisk.cpp" line="914"/>
     3821        <location filename="../VBoxManageDisk.cpp" line="912"/>
    35053822        <source>Compact medium operation for this format is not implemented yet!</source>
    35063823        <translation>Операция сжатия носителя для этого формата еще не реализована!</translation>
    35073824    </message>
    35083825    <message>
    3509         <location filename="../VBoxManageDisk.cpp" line="916"/>
     3826        <location filename="../VBoxManageDisk.cpp" line="914"/>
    35103827        <source>Failed to compact medium</source>
    35113828        <translation>Не удалось сжать носитель</translation>
    35123829    </message>
    35133830    <message>
    3514         <location filename="../VBoxManageDisk.cpp" line="918"/>
     3831        <location filename="../VBoxManageDisk.cpp" line="916"/>
    35153832        <source>Failed to compact medium!</source>
    35163833        <translation>Не удалось сжать носитель!</translation>
    35173834    </message>
    35183835    <message>
    3519         <location filename="../VBoxManageDisk.cpp" line="931"/>
     3836        <location filename="../VBoxManageDisk.cpp" line="929"/>
    35203837        <source>Failed to resize medium</source>
    35213838        <translation>Не удалось изменить размер носителя</translation>
    35223839    </message>
    35233840    <message>
    3524         <location filename="../VBoxManageDisk.cpp" line="933"/>
     3841        <location filename="../VBoxManageDisk.cpp" line="931"/>
    35253842        <source>Resize medium operation is not implemented!</source>
    35263843        <translation>Операция изменения размера носителя не реализована!</translation>
    35273844    </message>
    35283845    <message>
    3529         <location filename="../VBoxManageDisk.cpp" line="935"/>
     3846        <location filename="../VBoxManageDisk.cpp" line="933"/>
    35303847        <source>Resize medium operation for this format is not implemented yet!</source>
    35313848        <translation>Операция изменения размера носителя для этого формата еще не реализована!</translation>
    35323849    </message>
    35333850    <message>
    3534         <location filename="../VBoxManageDisk.cpp" line="937"/>
     3851        <location filename="../VBoxManageDisk.cpp" line="935"/>
    35353852        <source>Failed to resize medium!</source>
    35363853        <translation>Не удалось изменить размер носителя!</translation>
    35373854    </message>
    35383855    <message>
    3539         <location filename="../VBoxManageDisk.cpp" line="953"/>
     3856        <location filename="../VBoxManageDisk.cpp" line="951"/>
    35403857        <source>Failed to move medium</source>
    35413858        <translation>Не удалось переместить носитель</translation>
    35423859    </message>
    35433860    <message>
    3544         <location filename="../VBoxManageDisk.cpp" line="959"/>
     3861        <location filename="../VBoxManageDisk.cpp" line="957"/>
    35453862        <source>Move medium with UUID %s finished
    35463863</source>
     
    35493866    </message>
    35503867    <message>
    3551         <location filename="../VBoxManageDisk.cpp" line="972"/>
     3868        <location filename="../VBoxManageDisk.cpp" line="970"/>
    35523869        <source>Set new location of medium with UUID %s finished
    35533870</source>
     
    35563873    </message>
    35573874    <message>
    3558         <location filename="../VBoxManageDisk.cpp" line="979"/>
     3875        <location filename="../VBoxManageDisk.cpp" line="977"/>
    35593876        <source>Medium description has been changed.
    35603877</source>
     
    35633880    </message>
    35643881    <message>
    3565         <location filename="../VBoxManageDisk.cpp" line="1078"/>
     3882        <location filename="../VBoxManageDisk.cpp" line="1076"/>
    35663883        <source>unhandled option: -%c</source>
    35673884        <translation>необработанная опция: -%c</translation>
    35683885    </message>
    35693886    <message>
    3570         <location filename="../VBoxManageDisk.cpp" line="1080"/>
     3887        <location filename="../VBoxManageDisk.cpp" line="1078"/>
    35713888        <source>unhandled option: %i</source>
    35723889        <translation>необработанная опция: %i</translation>
    35733890    </message>
    35743891    <message>
    3575         <location filename="../VBoxManageDisk.cpp" line="1083"/>
     3892        <location filename="../VBoxManageDisk.cpp" line="1081"/>
    35763893        <source>unknown option: %s</source>
    35773894        <translation>неизвестная опция: %s</translation>
    35783895    </message>
    35793896    <message>
    3580         <location filename="../VBoxManageDisk.cpp" line="1094"/>
     3897        <location filename="../VBoxManageDisk.cpp" line="1092"/>
    35813898        <source>Mandatory UUID or input file parameter missing</source>
    35823899        <translation>Отсутствует обязательный параметр: или UUID или входной файл</translation>
    35833900    </message>
    35843901    <message>
    3585         <location filename="../VBoxManageDisk.cpp" line="1096"/>
     3902        <location filename="../VBoxManageDisk.cpp" line="1094"/>
    35863903        <source>Mandatory output file parameter missing</source>
    35873904        <translation>Отсутствует обязательный параметр: выходной файл</translation>
    35883905    </message>
    35893906    <message>
    3590         <location filename="../VBoxManageDisk.cpp" line="1098"/>
     3907        <location filename="../VBoxManageDisk.cpp" line="1096"/>
    35913908        <source>Specified options which cannot be used with --existing</source>
    35923909        <translation>Указана опция, которая не может использоваться с --existing</translation>
    35933910    </message>
    35943911    <message>
    3595         <location filename="../VBoxManageDisk.cpp" line="1186"/>
     3912        <location filename="../VBoxManageDisk.cpp" line="1184"/>
    35963913        <source>Failed to clone medium</source>
    35973914        <translation>Не удалось клонировать носитель</translation>
    35983915    </message>
    35993916    <message>
    3600         <location filename="../VBoxManageDisk.cpp" line="1191"/>
     3917        <location filename="../VBoxManageDisk.cpp" line="1189"/>
    36013918        <source>Clone medium created in format &apos;%ls&apos;. UUID: %s
    36023919</source>
     
    36053922    </message>
    36063923    <message>
    3607         <location filename="../VBoxManageDisk.cpp" line="1235"/>
     3924        <location filename="../VBoxManageDisk.cpp" line="1233"/>
    36083925        <source>Invalid UUID &apos;%s&apos;</source>
    36093926        <translation>Недопустимый UUID &apos;%s&apos;</translation>
    36103927    </message>
    36113928    <message>
    3612         <location filename="../VBoxManageDisk.cpp" line="1272"/>
     3929        <location filename="../VBoxManageDisk.cpp" line="1270"/>
    36133930        <source>Incorrect number of parameters</source>
    36143931        <translation>Некорректное количество параметров</translation>
    36153932    </message>
    36163933    <message>
    3617         <location filename="../VBoxManageDisk.cpp" line="1273"/>
     3934        <location filename="../VBoxManageDisk.cpp" line="1271"/>
    36183935        <source>Converting from raw image file=&quot;%s&quot; to file=&quot;%s&quot;...
    36193936</source>
     
    36223939    </message>
    36233940    <message>
    3624         <location filename="../VBoxManageDisk.cpp" line="1295"/>
     3941        <location filename="../VBoxManageDisk.cpp" line="1293"/>
    36253942        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    36263943        <translation>Невозможно открыть файл &quot;%s&quot;: %Rrc</translation>
    36273944    </message>
    36283945    <message>
    3629         <location filename="../VBoxManageDisk.cpp" line="1307"/>
     3946        <location filename="../VBoxManageDisk.cpp" line="1305"/>
    36303947        <source>Cannot get image size for file &quot;%s&quot;: %Rrc</source>
    36313948        <translation>Невозможно получить размер образа для файла &quot;%s&quot;: %Rrc</translation>
    36323949    </message>
    36333950    <message numerus="yes">
    3634         <location filename="../VBoxManageDisk.cpp" line="1311"/>
     3951        <location filename="../VBoxManageDisk.cpp" line="1309"/>
    36353952        <source>Creating %s image with size %RU64 bytes (%RU64MB)...
    36363953</source>
     
    36453962    </message>
    36463963    <message>
    3647         <location filename="../VBoxManageDisk.cpp" line="1520"/>
     3964        <location filename="../VBoxManageDisk.cpp" line="1518"/>
    36483965        <source>fixed</source>
    36493966        <translation>фиксированный</translation>
    36503967    </message>
    36513968    <message>
    3652         <location filename="../VBoxManageDisk.cpp" line="1518"/>
     3969        <location filename="../VBoxManageDisk.cpp" line="1516"/>
    36533970        <source>dynamic</source>
    36543971        <translation>динамический</translation>
    36553972    </message>
    36563973    <message>
    3657         <location filename="../VBoxManageDisk.cpp" line="1312"/>
     3974        <location filename="../VBoxManageDisk.cpp" line="1310"/>
    36583975        <source>fixed</source>
    36593976        <comment>adjective</comment>
     
    36613978    </message>
    36623979    <message>
    3663         <location filename="../VBoxManageDisk.cpp" line="1312"/>
     3980        <location filename="../VBoxManageDisk.cpp" line="1310"/>
    36643981        <source>dynamic</source>
    36653982        <comment>adjective</comment>
     
    36673984    </message>
    36683985    <message>
    3669         <location filename="../VBoxManageDisk.cpp" line="1315"/>
     3986        <location filename="../VBoxManageDisk.cpp" line="1313"/>
    36703987        <source>Converted image from %s</source>
    36713988        <translation>Преобразован образ из %s</translation>
    36723989    </message>
    36733990    <message>
    3674         <location filename="../VBoxManageDisk.cpp" line="1319"/>
     3991        <location filename="../VBoxManageDisk.cpp" line="1317"/>
    36753992        <source>Cannot create the virtual disk container: %Rrc</source>
    36763993        <translation>Невозможно создать контейнер виртуального диска: %Rrc</translation>
    36773994    </message>
    36783995    <message>
    3679         <location filename="../VBoxManageDisk.cpp" line="1337"/>
     3996        <location filename="../VBoxManageDisk.cpp" line="1335"/>
    36803997        <source>Cannot create the disk image &quot;%s&quot;: %Rrc</source>
    36813998        <translation>Невозможно создать образ диска &quot;%s&quot;: %Rrc</translation>
    36823999    </message>
    36834000    <message>
    3684         <location filename="../VBoxManageDisk.cpp" line="1347"/>
     4001        <location filename="../VBoxManageDisk.cpp" line="1345"/>
    36854002        <source>Out of memory allocating buffers for image &quot;%s&quot;: %Rrc</source>
    36864003        <translation>Не хватает памяти под буферов для образа &quot;%s&quot;: %Rrc</translation>
    36874004    </message>
    36884005    <message>
    3689         <location filename="../VBoxManageDisk.cpp" line="1366"/>
     4006        <location filename="../VBoxManageDisk.cpp" line="1364"/>
    36904007        <source>Failed to write to disk image &quot;%s&quot;: %Rrc</source>
    36914008        <translation>Не удалось записать в образ диска &quot;%s&quot;: %Rrc</translation>
    36924009    </message>
    36934010    <message>
    3694         <location filename="../VBoxManageDisk.cpp" line="1395"/>
     4011        <location filename="../VBoxManageDisk.cpp" line="1393"/>
    36954012        <source>Parent UUID:    %s
    36964013</source>
     
    36994016    </message>
    37004017    <message>
    3701         <location filename="../VBoxManageDisk.cpp" line="1400"/>
    3702         <location filename="../VBoxManageDisk.cpp" line="1447"/>
    3703         <location filename="../VBoxManageDisk.cpp" line="1502"/>
     4018        <location filename="../VBoxManageDisk.cpp" line="1398"/>
     4019        <location filename="../VBoxManageDisk.cpp" line="1445"/>
     4020        <location filename="../VBoxManageDisk.cpp" line="1500"/>
    37044021        <source>unknown</source>
    37054022        <translation>неизвестно</translation>
    37064023    </message>
    37074024    <message>
    3708         <location filename="../VBoxManageDisk.cpp" line="1404"/>
     4025        <location filename="../VBoxManageDisk.cpp" line="1402"/>
    37094026        <source>not created</source>
    37104027        <translation>не создан</translation>
    37114028    </message>
    37124029    <message>
    3713         <location filename="../VBoxManageDisk.cpp" line="1407"/>
     4030        <location filename="../VBoxManageDisk.cpp" line="1405"/>
    37144031        <source>created</source>
    37154032        <translation>создан</translation>
    37164033    </message>
    37174034    <message>
    3718         <location filename="../VBoxManageDisk.cpp" line="1410"/>
     4035        <location filename="../VBoxManageDisk.cpp" line="1408"/>
    37194036        <source>locked read</source>
    37204037        <translation>заблокирован на чтение</translation>
    37214038    </message>
    37224039    <message>
    3723         <location filename="../VBoxManageDisk.cpp" line="1413"/>
     4040        <location filename="../VBoxManageDisk.cpp" line="1411"/>
    37244041        <source>locked write</source>
    37254042        <translation>заблокирован на запись</translation>
    37264043    </message>
    37274044    <message>
    3728         <location filename="../VBoxManageDisk.cpp" line="1416"/>
     4045        <location filename="../VBoxManageDisk.cpp" line="1414"/>
    37294046        <source>inaccessible</source>
    37304047        <translation>недоступен</translation>
    37314048    </message>
    37324049    <message>
    3733         <location filename="../VBoxManageDisk.cpp" line="1419"/>
     4050        <location filename="../VBoxManageDisk.cpp" line="1417"/>
    37344051        <source>creating</source>
    37354052        <translation>создание</translation>
    37364053    </message>
    37374054    <message>
    3738         <location filename="../VBoxManageDisk.cpp" line="1422"/>
     4055        <location filename="../VBoxManageDisk.cpp" line="1420"/>
    37394056        <source>deleting</source>
    37404057        <translation>удаление</translation>
    37414058    </message>
    37424059    <message>
    3743         <location filename="../VBoxManageDisk.cpp" line="1428"/>
     4060        <location filename="../VBoxManageDisk.cpp" line="1426"/>
    37444061        <source>State:          %s
    37454062</source>
     
    37484065    </message>
    37494066    <message>
    3750         <location filename="../VBoxManageDisk.cpp" line="1434"/>
     4067        <location filename="../VBoxManageDisk.cpp" line="1432"/>
    37514068        <source>Access Error:   %ls
    37524069</source>
     
    37554072    </message>
    37564073    <message>
    3757         <location filename="../VBoxManageDisk.cpp" line="1442"/>
     4074        <location filename="../VBoxManageDisk.cpp" line="1440"/>
    37584075        <source>Description:    %ls
    37594076</source>
     
    37624079    </message>
    37634080    <message>
    3764         <location filename="../VBoxManageDisk.cpp" line="1452"/>
     4081        <location filename="../VBoxManageDisk.cpp" line="1450"/>
    37654082        <source>normal (differencing)</source>
    37664083        <translation>нормальный (разностный)</translation>
    37674084    </message>
    37684085    <message>
    3769         <location filename="../VBoxManageDisk.cpp" line="1454"/>
     4086        <location filename="../VBoxManageDisk.cpp" line="1452"/>
    37704087        <source>normal (base)</source>
    37714088        <translation>нормальный (базовый)</translation>
    37724089    </message>
    37734090    <message>
    3774         <location filename="../VBoxManageDisk.cpp" line="1457"/>
     4091        <location filename="../VBoxManageDisk.cpp" line="1455"/>
    37754092        <source>immutable</source>
    37764093        <translation>неизменяемый</translation>
    37774094    </message>
    37784095    <message>
    3779         <location filename="../VBoxManageDisk.cpp" line="1460"/>
     4096        <location filename="../VBoxManageDisk.cpp" line="1458"/>
    37804097        <source>writethrough</source>
    37814098        <translation>сквозная запись</translation>
    37824099    </message>
    37834100    <message>
    3784         <location filename="../VBoxManageDisk.cpp" line="1463"/>
     4101        <location filename="../VBoxManageDisk.cpp" line="1461"/>
    37854102        <source>shareable</source>
    37864103        <translation>разделяемый</translation>
    37874104    </message>
    37884105    <message>
    3789         <location filename="../VBoxManageDisk.cpp" line="1466"/>
     4106        <location filename="../VBoxManageDisk.cpp" line="1464"/>
    37904107        <source>readonly</source>
    37914108        <translation>только для чтения</translation>
    37924109    </message>
    37934110    <message>
    3794         <location filename="../VBoxManageDisk.cpp" line="1469"/>
     4111        <location filename="../VBoxManageDisk.cpp" line="1467"/>
    37954112        <source>multiattach</source>
    37964113        <translation>множественное подключение</translation>
    37974114    </message>
    37984115    <message>
    3799         <location filename="../VBoxManageDisk.cpp" line="1475"/>
     4116        <location filename="../VBoxManageDisk.cpp" line="1473"/>
    38004117        <source>Type:           %s
    38014118</source>
     
    38044121    </message>
    38054122    <message>
    3806         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     4123        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    38074124        <source>Auto-Reset:     %s
    38084125</source>
     
    38114128    </message>
    38124129    <message>
    3813         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     4130        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    38144131        <source>on</source>
    38154132        <translation>вкл</translation>
    38164133    </message>
    38174134    <message>
    3818         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     4135        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    38194136        <source>off</source>
    38204137        <translation>выкл</translation>
    38214138    </message>
    38224139    <message>
    3823         <location filename="../VBoxManageDisk.cpp" line="1487"/>
     4140        <location filename="../VBoxManageDisk.cpp" line="1485"/>
    38244141        <source>Location:       %ls
    38254142</source>
     
    38284145    </message>
    38294146    <message>
    3830         <location filename="../VBoxManageDisk.cpp" line="1491"/>
     4147        <location filename="../VBoxManageDisk.cpp" line="1489"/>
    38314148        <source>Storage format: %ls
    38324149</source>
     
    38354152    </message>
    38364153    <message>
    3837         <location filename="../VBoxManageDisk.cpp" line="1506"/>
     4154        <location filename="../VBoxManageDisk.cpp" line="1504"/>
    38384155        <source>split2G</source>
    38394156        <translation>Делить по 2G</translation>
    38404157    </message>
    38414158    <message>
    3842         <location filename="../VBoxManageDisk.cpp" line="1509"/>
     4159        <location filename="../VBoxManageDisk.cpp" line="1507"/>
    38434160        <source>streamOptimized</source>
    38444161        <translation>оптимизирован для потока</translation>
    38454162    </message>
    38464163    <message>
    3847         <location filename="../VBoxManageDisk.cpp" line="1512"/>
     4164        <location filename="../VBoxManageDisk.cpp" line="1510"/>
    38484165        <source>ESX</source>
    38494166        <translation>ESX</translation>
    38504167    </message>
    38514168    <message>
    3852         <location filename="../VBoxManageDisk.cpp" line="1515"/>
     4169        <location filename="../VBoxManageDisk.cpp" line="1513"/>
    38534170        <source>default</source>
    38544171        <translation>по умолчанию</translation>
    38554172    </message>
    38564173    <message>
    3857         <location filename="../VBoxManageDisk.cpp" line="1522"/>
     4174        <location filename="../VBoxManageDisk.cpp" line="1520"/>
    38584175        <source>differencing</source>
    38594176        <translation>разностный</translation>
    38604177    </message>
    38614178    <message>
    3862         <location filename="../VBoxManageDisk.cpp" line="1523"/>
     4179        <location filename="../VBoxManageDisk.cpp" line="1521"/>
    38634180        <source>Format variant: %s %s
    38644181</source>
     
    38674184    </message>
    38684185    <message>
    3869         <location filename="../VBoxManageDisk.cpp" line="1528"/>
     4186        <location filename="../VBoxManageDisk.cpp" line="1526"/>
    38704187        <source>Capacity:       %lld MBytes
    38714188</source>
     
    38744191    </message>
    38754192    <message>
    3876         <location filename="../VBoxManageDisk.cpp" line="1533"/>
     4193        <location filename="../VBoxManageDisk.cpp" line="1531"/>
    38774194        <source>Size on disk:   %lld MBytes
    38784195</source>
     
    38814198    </message>
    38824199    <message>
    3883         <location filename="../VBoxManageDisk.cpp" line="1541"/>
     4200        <location filename="../VBoxManageDisk.cpp" line="1539"/>
    38844201        <source>Encryption:     enabled
    38854202</source>
     
    38884205    </message>
    38894206    <message>
    3890         <location filename="../VBoxManageDisk.cpp" line="1544"/>
     4207        <location filename="../VBoxManageDisk.cpp" line="1542"/>
    38914208        <source>Cipher:         %ls
    38924209</source>
     
    38954212    </message>
    38964213    <message>
    3897         <location filename="../VBoxManageDisk.cpp" line="1545"/>
     4214        <location filename="../VBoxManageDisk.cpp" line="1543"/>
    38984215        <source>Password ID:    %ls
    38994216</source>
     
    39024219    </message>
    39034220    <message>
    3904         <location filename="../VBoxManageDisk.cpp" line="1549"/>
     4221        <location filename="../VBoxManageDisk.cpp" line="1547"/>
    39054222        <source>Encryption:     disabled
    39064223</source>
     
    39094226    </message>
    39104227    <message>
    3911         <location filename="../VBoxManageDisk.cpp" line="1565"/>
     4228        <location filename="../VBoxManageDisk.cpp" line="1563"/>
    39124229        <source>Property:       </source>
    39134230        <translation>Свойство:       </translation>
    39144231    </message>
    39154232    <message>
    3916         <location filename="../VBoxManageDisk.cpp" line="1586"/>
     4233        <location filename="../VBoxManageDisk.cpp" line="1584"/>
    39174234        <source>In use by VMs:  </source>
    39184235        <translation>Используется в ВМ:  </translation>
    39194236    </message>
    39204237    <message>
    3921         <location filename="../VBoxManageDisk.cpp" line="1621"/>
     4238        <location filename="../VBoxManageDisk.cpp" line="1619"/>
    39224239        <source>Child UUIDs:    </source>
    39234240        <translation>Дочерние UUID:    </translation>
    39244241    </message>
    39254242    <message>
    3926         <location filename="../VBoxManageDisk.cpp" line="1727"/>
     4243        <location filename="../VBoxManageDisk.cpp" line="1725"/>
    39274244        <source>base</source>
    39284245        <translation>базовый</translation>
    39294246    </message>
    39304247    <message>
    3931         <location filename="../VBoxManageDisk.cpp" line="1847"/>
     4248        <location filename="../VBoxManageDisk.cpp" line="1845"/>
    39324249        <source>Failed to delete medium</source>
    39334250        <translation>Не удалось удалить носитель</translation>
    39344251    </message>
    39354252    <message>
    3936         <location filename="../VBoxManageDisk.cpp" line="1850"/>
     4253        <location filename="../VBoxManageDisk.cpp" line="1848"/>
    39374254        <source>Failed to delete medium. Error code %Rrc</source>
    39384255        <translation>Не удалось удалить носитель. Код ошибки %Rrc</translation>
    39394256    </message>
    39404257    <message>
    3941         <location filename="../VBoxManageDisk.cpp" line="1886"/>
     4258        <location filename="../VBoxManageDisk.cpp" line="1884"/>
    39424259        <source>unexpected parameter %s
    39434260</source>
     
    39464263    </message>
    39474264    <message>
    3948         <location filename="../VBoxManageDisk.cpp" line="1899"/>
     4265        <location filename="../VBoxManageDisk.cpp" line="1897"/>
    39494266        <source>Missing action</source>
    39504267        <translation>Отсутствует действие</translation>
    39514268    </message>
    39524269    <message>
    3953         <location filename="../VBoxManageDisk.cpp" line="1905"/>
     4270        <location filename="../VBoxManageDisk.cpp" line="1903"/>
    39544271        <source>Invalid action given: %s</source>
    39554272        <translation>Указано недопустимое действие: %s</translation>
    39564273    </message>
    39574274    <message>
    3958         <location filename="../VBoxManageDisk.cpp" line="1911"/>
     4275        <location filename="../VBoxManageDisk.cpp" line="1909"/>
    39594276        <source>Invalid number of arguments given for action: %s</source>
    39604277        <translation>Недопустимое число аргументов, указанное для действия: %s</translation>
    39614278    </message>
    39624279    <message>
    3963         <location filename="../VBoxManageDisk.cpp" line="2031"/>
     4280        <location filename="../VBoxManageDisk.cpp" line="2029"/>
    39644281        <source>Disk name or UUID required</source>
    39654282        <translation>Требуется имя или UUID диска</translation>
    39664283    </message>
    39674284    <message>
    3968         <location filename="../VBoxManageDisk.cpp" line="2034"/>
     4285        <location filename="../VBoxManageDisk.cpp" line="2032"/>
    39694286        <source>No password specified</source>
    39704287        <translation>Не указан пароль</translation>
    39714288    </message>
    39724289    <message>
    3973         <location filename="../VBoxManageDisk.cpp" line="2039"/>
     4290        <location filename="../VBoxManageDisk.cpp" line="2036"/>
    39744291        <source>A new password must always have a valid identifier set at the same time</source>
    39754292        <translation>Новый пароль должен всегда иметь действительный идентификатор заданный в то же время</translation>
    39764293    </message>
    39774294    <message>
    3978         <location filename="../VBoxManageDisk.cpp" line="2046"/>
     4295        <location filename="../VBoxManageDisk.cpp" line="2043"/>
    39794296        <source>Enter new password:</source>
    39804297        <translation>Введите новый пароль:</translation>
    39814298    </message>
    39824299    <message>
    3983         <location filename="../VBoxManageDisk.cpp" line="2055"/>
     4300        <location filename="../VBoxManageDisk.cpp" line="2052"/>
    39844301        <source>Failed to read new password from file</source>
    39854302        <translation>Не удалось прочесть новый пароль из файла</translation>
    39864303    </message>
    39874304    <message>
    3988         <location filename="../VBoxManageDisk.cpp" line="2066"/>
     4305        <location filename="../VBoxManageDisk.cpp" line="2063"/>
    39894306        <source>Enter old password:</source>
    39904307        <translation>Введите старый пароль:</translation>
    39914308    </message>
    39924309    <message>
    3993         <location filename="../VBoxManageDisk.cpp" line="2075"/>
     4310        <location filename="../VBoxManageDisk.cpp" line="2072"/>
    39944311        <source>Failed to read old password from file</source>
    39954312        <translation>Не удалось прочесть старый пароль из файла</translation>
    39964313    </message>
    39974314    <message>
    3998         <location filename="../VBoxManageDisk.cpp" line="2088"/>
    3999         <location filename="../VBoxManageDisk.cpp" line="2147"/>
     4315        <location filename="../VBoxManageDisk.cpp" line="2085"/>
     4316        <location filename="../VBoxManageDisk.cpp" line="2144"/>
    40004317        <source>Invalid hard disk reference, avoiding crash</source>
    40014318        <translation>Недопустимая ссылка на жесткий диск, предотвращение краха</translation>
    40024319    </message>
    40034320    <message>
    4004         <location filename="../VBoxManageDisk.cpp" line="2099"/>
     4321        <location filename="../VBoxManageDisk.cpp" line="2096"/>
    40054322        <source>Encrypt hard disk operation is not implemented!</source>
    40064323        <translation>Операция шифрования жесткого диска не реализована!</translation>
    40074324    </message>
    40084325    <message>
    4009         <location filename="../VBoxManageDisk.cpp" line="2101"/>
     4326        <location filename="../VBoxManageDisk.cpp" line="2098"/>
    40104327        <source>Encrypt hard disk operation for this cipher is not implemented yet!</source>
    40114328        <translation>Операция шфирования жесткого диска для этого шифра еще не реализована!</translation>
    40124329    </message>
    40134330    <message>
    4014         <location filename="../VBoxManageDisk.cpp" line="2103"/>
     4331        <location filename="../VBoxManageDisk.cpp" line="2100"/>
    40154332        <source>Failed to encrypt hard disk</source>
    40164333        <translation>Не удалось зашифровать жесткий диск</translation>
    40174334    </message>
    40184335    <message>
    4019         <location filename="../VBoxManageDisk.cpp" line="2105"/>
     4336        <location filename="../VBoxManageDisk.cpp" line="2102"/>
    40204337        <source>Failed to encrypt hard disk!</source>
    40214338        <translation>Не удалось зашифровать жесткий диск!</translation>
    40224339    </message>
    40234340    <message>
    4024         <location filename="../VBoxManageDisk.cpp" line="2119"/>
     4341        <location filename="../VBoxManageDisk.cpp" line="2116"/>
    40254342        <source>Invalid number of arguments: %d</source>
    40264343        <translation>Неправильное количество аргументов: %d</translation>
    40274344    </message>
    40284345    <message>
    4029         <location filename="../VBoxManageDisk.cpp" line="2126"/>
     4346        <location filename="../VBoxManageDisk.cpp" line="2123"/>
    40304347        <source>Enter password:</source>
    40314348        <translation>Введите пароль:</translation>
    40324349    </message>
    40334350    <message>
    4034         <location filename="../VBoxManageDisk.cpp" line="2135"/>
     4351        <location filename="../VBoxManageDisk.cpp" line="2132"/>
    40354352        <source>Failed to read password from file</source>
    40364353        <translation>Не удалось прочесть пароль из файла</translation>
    40374354    </message>
    40384355    <message>
    4039         <location filename="../VBoxManageDisk.cpp" line="2151"/>
     4356        <location filename="../VBoxManageDisk.cpp" line="2148"/>
    40404357        <source>The given password is correct
    40414358</source>
     
    40444361    </message>
    40454362    <message>
    4046         <location filename="../VBoxManageDisk.cpp" line="2229"/>
     4363        <location filename="../VBoxManageDisk.cpp" line="2226"/>
    40474364        <source>No medium specified!</source>
    40484365        <translation>Не указан носитель!</translation>
    40494366    </message>
    40504367    <message>
    4051         <location filename="../VBoxManageDisk.cpp" line="2240"/>
     4368        <location filename="../VBoxManageDisk.cpp" line="2237"/>
    40524369        <source>Enter encryption password:</source>
    40534370        <translation>Введите пароль для шифрования:</translation>
    40544371    </message>
    40554372    <message>
    4056         <location filename="../VBoxManageDisk.cpp" line="2392"/>
    4057         <location filename="../VBoxManageDisk.cpp" line="2613"/>
     4373        <location filename="../VBoxManageDisk.cpp" line="2389"/>
     4374        <location filename="../VBoxManageDisk.cpp" line="2610"/>
    40584375        <source>Error opening &apos;%s&apos; for writing: %Rrc</source>
    40594376        <translation>Не удалось открыть &apos;%s&apos; для записи: %Rrc</translation>
    40604377    </message>
    40614378    <message>
    4062         <location filename="../VBoxManageDisk.cpp" line="2408"/>
     4379        <location filename="../VBoxManageDisk.cpp" line="2405"/>
    40634380        <source>Specified offset (%#RX64) is beyond the end of the medium (%#RX64)</source>
    40644381        <translation>Указанная позиция (%#RX64) выходит за границу носителя (%#RX64)</translation>
    40654382    </message>
    40664383    <message numerus="yes">
    4067         <location filename="../VBoxManageDisk.cpp" line="2438"/>
     4384        <location filename="../VBoxManageDisk.cpp" line="2435"/>
    40684385        <source>Read(%zu bytes at %#RX64)</source>
    40694386        <translation>
     
    40744391    </message>
    40754392    <message>
    4076         <location filename="../VBoxManageDisk.cpp" line="2467"/>
     4393        <location filename="../VBoxManageDisk.cpp" line="2464"/>
    40774394        <source>**********  &lt;ditto x %RU64&gt;
    40784395</source>
     
    40814398    </message>
    40824399    <message>
    4083         <location filename="../VBoxManageDisk.cpp" line="2516"/>
    4084         <location filename="../VBoxManageDisk.cpp" line="2657"/>
     4400        <location filename="../VBoxManageDisk.cpp" line="2513"/>
     4401        <location filename="../VBoxManageDisk.cpp" line="2654"/>
    40854402        <source>Error writing to &apos;%s&apos;: %Rrc</source>
    40864403        <translation>Ошибка при записи в &apos;%s&apos;: %Rrc</translation>
    40874404    </message>
    40884405    <message numerus="yes">
    4089         <location filename="../VBoxManageDisk.cpp" line="2524"/>
     4406        <location filename="../VBoxManageDisk.cpp" line="2521"/>
    40904407        <source>Expected read() at offset %RU64 (%#RX64) to return %#zx bytes, only got %#zx!
    40914408</source>
     
    41004417    </message>
    41014418    <message>
    4102         <location filename="../VBoxManageDisk.cpp" line="2540"/>
    4103         <location filename="../VBoxManageDisk.cpp" line="2678"/>
     4419        <location filename="../VBoxManageDisk.cpp" line="2537"/>
     4420        <location filename="../VBoxManageDisk.cpp" line="2675"/>
    41044421        <source>Error closing &apos;%s&apos;: %Rrc</source>
    41054422        <translation>Ошибка при закрытии &apos;%s&apos;: %Rrc</translation>
     
    41094426    <name>GuestCtrl</name>
    41104427    <message>
    4111         <location filename="../VBoxManageGuestCtrl.cpp" line="419"/>
     4428        <location filename="../VBoxManageGuestCtrl.cpp" line="276"/>
    41124429        <source>Unable to install console control handler, rc=%Rrc
    41134430</source>
     
    41164433    </message>
    41174434    <message>
    4118         <location filename="../VBoxManageGuestCtrl.cpp" line="446"/>
     4435        <location filename="../VBoxManageGuestCtrl.cpp" line="303"/>
    41194436        <source>Unable to uninstall console control handler, rc=%Rrc
    41204437</source>
     
    41234440    </message>
    41244441    <message>
    4125         <location filename="../VBoxManageGuestCtrl.cpp" line="473"/>
    4126         <location filename="../VBoxManageGuestCtrl.cpp" line="539"/>
     4442        <location filename="../VBoxManageGuestCtrl.cpp" line="332"/>
     4443        <location filename="../VBoxManageGuestCtrl.cpp" line="398"/>
    41274444        <source>starting</source>
    41284445        <translation>запуск</translation>
    41294446    </message>
    41304447    <message>
    4131         <location filename="../VBoxManageGuestCtrl.cpp" line="475"/>
    4132         <location filename="../VBoxManageGuestCtrl.cpp" line="508"/>
    4133         <location filename="../VBoxManageGuestCtrl.cpp" line="541"/>
     4448        <location filename="../VBoxManageGuestCtrl.cpp" line="334"/>
     4449        <location filename="../VBoxManageGuestCtrl.cpp" line="367"/>
     4450        <location filename="../VBoxManageGuestCtrl.cpp" line="400"/>
    41344451        <source>started</source>
    41354452        <translation>запущен</translation>
    41364453    </message>
    41374454    <message>
    4138         <location filename="../VBoxManageGuestCtrl.cpp" line="477"/>
     4455        <location filename="../VBoxManageGuestCtrl.cpp" line="336"/>
    41394456        <source>paused</source>
    41404457        <translation>приостановлен</translation>
    41414458    </message>
    41424459    <message>
    4143         <location filename="../VBoxManageGuestCtrl.cpp" line="479"/>
    4144         <location filename="../VBoxManageGuestCtrl.cpp" line="543"/>
     4460        <location filename="../VBoxManageGuestCtrl.cpp" line="338"/>
     4461        <location filename="../VBoxManageGuestCtrl.cpp" line="402"/>
    41454462        <source>terminating</source>
    41464463        <translation>завершение</translation>
    41474464    </message>
    41484465    <message>
    4149         <location filename="../VBoxManageGuestCtrl.cpp" line="481"/>
     4466        <location filename="../VBoxManageGuestCtrl.cpp" line="340"/>
    41504467        <source>successfully terminated</source>
    41514468        <translation>успешно завершен</translation>
    41524469    </message>
    41534470    <message>
    4154         <location filename="../VBoxManageGuestCtrl.cpp" line="483"/>
     4471        <location filename="../VBoxManageGuestCtrl.cpp" line="342"/>
    41554472        <source>terminated by signal</source>
    41564473        <translation>завершен по сигналу</translation>
    41574474    </message>
    41584475    <message>
    4159         <location filename="../VBoxManageGuestCtrl.cpp" line="485"/>
     4476        <location filename="../VBoxManageGuestCtrl.cpp" line="344"/>
    41604477        <source>abnormally aborted</source>
    41614478        <translation>ненормально прерван</translation>
    41624479    </message>
    41634480    <message>
    4164         <location filename="../VBoxManageGuestCtrl.cpp" line="487"/>
    4165         <location filename="../VBoxManageGuestCtrl.cpp" line="516"/>
    4166         <location filename="../VBoxManageGuestCtrl.cpp" line="547"/>
     4481        <location filename="../VBoxManageGuestCtrl.cpp" line="346"/>
     4482        <location filename="../VBoxManageGuestCtrl.cpp" line="375"/>
     4483        <location filename="../VBoxManageGuestCtrl.cpp" line="406"/>
    41674484        <source>timed out</source>
    41684485        <translation>превышено время ожидания</translation>
    41694486    </message>
    41704487    <message>
    4171         <location filename="../VBoxManageGuestCtrl.cpp" line="489"/>
    4172         <location filename="../VBoxManageGuestCtrl.cpp" line="549"/>
     4488        <location filename="../VBoxManageGuestCtrl.cpp" line="348"/>
     4489        <location filename="../VBoxManageGuestCtrl.cpp" line="408"/>
    41734490        <source>timed out, hanging</source>
    41744491        <translation>превышено время ожидания, завис</translation>
    41754492    </message>
    41764493    <message>
    4177         <location filename="../VBoxManageGuestCtrl.cpp" line="491"/>
    4178         <location filename="../VBoxManageGuestCtrl.cpp" line="551"/>
    4179         <location filename="../VBoxManageGuestCtrl.cpp" line="576"/>
     4494        <location filename="../VBoxManageGuestCtrl.cpp" line="350"/>
     4495        <location filename="../VBoxManageGuestCtrl.cpp" line="410"/>
     4496        <location filename="../VBoxManageGuestCtrl.cpp" line="435"/>
    41804497        <source>killed</source>
    41814498        <translation>убит</translation>
    41824499    </message>
    41834500    <message>
    4184         <location filename="../VBoxManageGuestCtrl.cpp" line="493"/>
    4185         <location filename="../VBoxManageGuestCtrl.cpp" line="514"/>
    4186         <location filename="../VBoxManageGuestCtrl.cpp" line="553"/>
    4187         <location filename="../VBoxManageGuestCtrl.cpp" line="578"/>
     4501        <location filename="../VBoxManageGuestCtrl.cpp" line="352"/>
     4502        <location filename="../VBoxManageGuestCtrl.cpp" line="373"/>
     4503        <location filename="../VBoxManageGuestCtrl.cpp" line="412"/>
     4504        <location filename="../VBoxManageGuestCtrl.cpp" line="437"/>
    41884505        <source>error</source>
    41894506        <translation>ошибка</translation>
    41904507    </message>
    41914508    <message>
    4192         <location filename="../VBoxManageGuestCtrl.cpp" line="497"/>
    4193         <location filename="../VBoxManageGuestCtrl.cpp" line="528"/>
    4194         <location filename="../VBoxManageGuestCtrl.cpp" line="557"/>
    4195         <location filename="../VBoxManageGuestCtrl.cpp" line="582"/>
    4196         <location filename="../VBoxManageGuestCtrl.cpp" line="592"/>
    4197         <location filename="../VBoxManageGuestCtrl.cpp" line="605"/>
     4509        <location filename="../VBoxManageGuestCtrl.cpp" line="356"/>
     4510        <location filename="../VBoxManageGuestCtrl.cpp" line="387"/>
     4511        <location filename="../VBoxManageGuestCtrl.cpp" line="416"/>
     4512        <location filename="../VBoxManageGuestCtrl.cpp" line="441"/>
     4513        <location filename="../VBoxManageGuestCtrl.cpp" line="451"/>
     4514        <location filename="../VBoxManageGuestCtrl.cpp" line="464"/>
    41984515        <source>unknown</source>
    41994516        <translation>неизвестно</translation>
    42004517    </message>
    42014518    <message>
    4202         <location filename="../VBoxManageGuestCtrl.cpp" line="510"/>
    4203         <location filename="../VBoxManageGuestCtrl.cpp" line="545"/>
     4519        <location filename="../VBoxManageGuestCtrl.cpp" line="369"/>
     4520        <location filename="../VBoxManageGuestCtrl.cpp" line="404"/>
    42044521        <source>terminated</source>
    42054522        <translation>завершен</translation>
    42064523    </message>
    42074524    <message>
    4208         <location filename="../VBoxManageGuestCtrl.cpp" line="512"/>
     4525        <location filename="../VBoxManageGuestCtrl.cpp" line="371"/>
    42094526        <source>status changed</source>
    42104527        <translation>статус изменен</translation>
    42114528    </message>
    42124529    <message>
    4213         <location filename="../VBoxManageGuestCtrl.cpp" line="518"/>
     4530        <location filename="../VBoxManageGuestCtrl.cpp" line="377"/>
    42144531        <source>stdin ready</source>
    42154532        <translation>stdin готов</translation>
    42164533    </message>
    42174534    <message>
    4218         <location filename="../VBoxManageGuestCtrl.cpp" line="520"/>
     4535        <location filename="../VBoxManageGuestCtrl.cpp" line="379"/>
    42194536        <source>data on stdout</source>
    42204537        <translation>данные в stdout</translation>
    42214538    </message>
    42224539    <message>
    4223         <location filename="../VBoxManageGuestCtrl.cpp" line="522"/>
     4540        <location filename="../VBoxManageGuestCtrl.cpp" line="381"/>
    42244541        <source>data on stderr</source>
    42254542        <translation>данные в stderr</translation>
    42264543    </message>
    42274544    <message>
    4228         <location filename="../VBoxManageGuestCtrl.cpp" line="524"/>
     4545        <location filename="../VBoxManageGuestCtrl.cpp" line="383"/>
    42294546        <source>waiting flag not supported</source>
    42304547        <translation>флаг ожидания не поддерживается</translation>
    42314548    </message>
    42324549    <message>
    4233         <location filename="../VBoxManageGuestCtrl.cpp" line="568"/>
     4550        <location filename="../VBoxManageGuestCtrl.cpp" line="427"/>
    42344551        <source>opening</source>
    42354552        <translation>открывается</translation>
    42364553    </message>
    42374554    <message>
    4238         <location filename="../VBoxManageGuestCtrl.cpp" line="570"/>
     4555        <location filename="../VBoxManageGuestCtrl.cpp" line="429"/>
    42394556        <source>open</source>
    42404557        <translation>открыт</translation>
    42414558    </message>
    42424559    <message>
    4243         <location filename="../VBoxManageGuestCtrl.cpp" line="572"/>
     4560        <location filename="../VBoxManageGuestCtrl.cpp" line="431"/>
    42444561        <source>closing</source>
    42454562        <translation>закрывается</translation>
    42464563    </message>
    42474564    <message>
    4248         <location filename="../VBoxManageGuestCtrl.cpp" line="574"/>
     4565        <location filename="../VBoxManageGuestCtrl.cpp" line="433"/>
    42494566        <source>closed</source>
    42504567        <translation>закрыт</translation>
    42514568    </message>
    42524569    <message>
    4253         <location filename="../VBoxManageGuestCtrl.cpp" line="593"/>
     4570        <location filename="../VBoxManageGuestCtrl.cpp" line="452"/>
    42544571        <source>fifo</source>
    42554572        <translation>fifo</translation>
    42564573    </message>
    42574574    <message>
    4258         <location filename="../VBoxManageGuestCtrl.cpp" line="594"/>
     4575        <location filename="../VBoxManageGuestCtrl.cpp" line="453"/>
    42594576        <source>char-device</source>
    42604577        <translation>символьное устройство</translation>
    42614578    </message>
    42624579    <message>
    4263         <location filename="../VBoxManageGuestCtrl.cpp" line="595"/>
     4580        <location filename="../VBoxManageGuestCtrl.cpp" line="454"/>
    42644581        <source>directory</source>
    42654582        <translation>директория</translation>
    42664583    </message>
    42674584    <message>
    4268         <location filename="../VBoxManageGuestCtrl.cpp" line="596"/>
     4585        <location filename="../VBoxManageGuestCtrl.cpp" line="455"/>
    42694586        <source>block-device</source>
    42704587        <translation>блочное устройство</translation>
    42714588    </message>
    42724589    <message>
    4273         <location filename="../VBoxManageGuestCtrl.cpp" line="597"/>
     4590        <location filename="../VBoxManageGuestCtrl.cpp" line="456"/>
    42744591        <source>file</source>
    42754592        <translation>файл</translation>
    42764593    </message>
    42774594    <message>
    4278         <location filename="../VBoxManageGuestCtrl.cpp" line="598"/>
     4595        <location filename="../VBoxManageGuestCtrl.cpp" line="457"/>
    42794596        <source>symlink</source>
    42804597        <translation>сиволическая ссылка</translation>
    42814598    </message>
    42824599    <message>
    4283         <location filename="../VBoxManageGuestCtrl.cpp" line="599"/>
     4600        <location filename="../VBoxManageGuestCtrl.cpp" line="458"/>
    42844601        <source>socket</source>
    42854602        <translation>сокет</translation>
    42864603    </message>
    42874604    <message>
    4288         <location filename="../VBoxManageGuestCtrl.cpp" line="600"/>
     4605        <location filename="../VBoxManageGuestCtrl.cpp" line="459"/>
    42894606        <source>white-out</source>
    42904607        <translation>white-out</translation>
    42914608    </message>
    42924609    <message>
    4293         <location filename="../VBoxManageGuestCtrl.cpp" line="619"/>
     4610        <location filename="../VBoxManageGuestCtrl.cpp" line="478"/>
    42944611        <source>Error details:</source>
    42954612        <translation>Подробности ошибки:</translation>
    42964613    </message>
    42974614    <message>
    4298         <location filename="../VBoxManageGuestCtrl.cpp" line="624"/>
     4615        <location filename="../VBoxManageGuestCtrl.cpp" line="483"/>
    42994616        <source>Object has indicated no error (%Rhrc)!?
    43004617</source>
     
    43034620    </message>
    43044621    <message>
    4305         <location filename="../VBoxManageGuestCtrl.cpp" line="656"/>
     4622        <location filename="../VBoxManageGuestCtrl.cpp" line="515"/>
    43064623        <source>Could not lookup progress information
    43074624</source>
     
    43104627    </message>
    43114628    <message>
    4312         <location filename="../VBoxManageGuestCtrl.cpp" line="715"/>
    4313         <location filename="../VBoxManageGuestCtrl.cpp" line="3400"/>
     4629        <location filename="../VBoxManageGuestCtrl.cpp" line="574"/>
     4630        <location filename="../VBoxManageGuestCtrl.cpp" line="3247"/>
    43144631        <source>Out of memory</source>
    43154632        <translation>Не хватает памяти</translation>
    43164633    </message>
    43174634    <message>
    4318         <location filename="../VBoxManageGuestCtrl.cpp" line="743"/>
     4635        <location filename="../VBoxManageGuestCtrl.cpp" line="602"/>
    43194636        <source>The --username|-u option is ignored by &apos;%s&apos;</source>
    43204637        <translation>Опция --username|-u проигнорирована &apos;%s&apos;</translation>
    43214638    </message>
    43224639    <message>
    4323         <location filename="../VBoxManageGuestCtrl.cpp" line="750"/>
     4640        <location filename="../VBoxManageGuestCtrl.cpp" line="609"/>
    43244641        <source>Password is given more than once.</source>
    43254642        <translation>Пароль указан несколько раз.</translation>
    43264643    </message>
    43274644    <message>
    4328         <location filename="../VBoxManageGuestCtrl.cpp" line="754"/>
     4645        <location filename="../VBoxManageGuestCtrl.cpp" line="613"/>
    43294646        <source>The --password option is ignored by &apos;%s&apos;</source>
    43304647        <translation>Опция --password проигнорирована &apos;%s&apos;</translation>
    43314648    </message>
    43324649    <message>
    4333         <location filename="../VBoxManageGuestCtrl.cpp" line="761"/>
     4650        <location filename="../VBoxManageGuestCtrl.cpp" line="620"/>
    43344651        <source>The --password-file|-p option is ignored by &apos;%s&apos;</source>
    43354652        <translation>Опция --password-file|-p проигнорирована &apos;%s&apos;</translation>
    43364653    </message>
    43374654    <message>
    4338         <location filename="../VBoxManageGuestCtrl.cpp" line="768"/>
     4655        <location filename="../VBoxManageGuestCtrl.cpp" line="627"/>
    43394656        <source>The --domain option is ignored by &apos;%s&apos;</source>
    43404657        <translation>Опци --domain проигнорирована &apos;%s&apos;</translation>
    43414658    </message>
    43424659    <message>
    4343         <location filename="../VBoxManageGuestCtrl.cpp" line="833"/>
     4660        <location filename="../VBoxManageGuestCtrl.cpp" line="692"/>
    43444661        <source>Failed to get a IConsole pointer for the machine. Is it still running?
    43454662</source>
     
    43484665    </message>
    43494666    <message>
    4350         <location filename="../VBoxManageGuestCtrl.cpp" line="838"/>
     4667        <location filename="../VBoxManageGuestCtrl.cpp" line="697"/>
    43514668        <source>Machine &quot;%s&quot; is not running (currently %s)!
    43524669</source>
     
    43554672    </message>
    43564673    <message>
    4357         <location filename="../VBoxManageGuestCtrl.cpp" line="867"/>
     4674        <location filename="../VBoxManageGuestCtrl.cpp" line="726"/>
    43584675        <source>[%RU32] VBoxManage Guest Control [%s] - %s</source>
    43594676        <translation>[%RU32] VBoxManage Гостевое Управление [%s] - %s</translation>
    43604677    </message>
    43614678    <message>
    4362         <location filename="../VBoxManageGuestCtrl.cpp" line="869"/>
     4679        <location filename="../VBoxManageGuestCtrl.cpp" line="728"/>
    43634680        <source>No enough memory for session name</source>
    43644681        <translation>Недостаточно памяти для имени сессии</translation>
    43654682    </message>
    43664683    <message>
    4367         <location filename="../VBoxManageGuestCtrl.cpp" line="875"/>
     4684        <location filename="../VBoxManageGuestCtrl.cpp" line="734"/>
    43684685        <source>Creating guest session as user &apos;%s&apos;...
    43694686</source>
     
    43724689    </message>
    43734690    <message>
    4374         <location filename="../VBoxManageGuestCtrl.cpp" line="886"/>
     4691        <location filename="../VBoxManageGuestCtrl.cpp" line="745"/>
    43754692        <source>Out of memory setting up IGuest::CreateSession call</source>
    43764693        <translation>Не хватает памяти для настройки вызова IGuest::CreateSession</translation>
    43774694    </message>
    43784695    <message>
    4379         <location filename="../VBoxManageGuestCtrl.cpp" line="895"/>
     4696        <location filename="../VBoxManageGuestCtrl.cpp" line="754"/>
    43804697        <source>Waiting for guest session to start...
    43814698</source>
     
    43844701    </message>
    43854702    <message>
    4386         <location filename="../VBoxManageGuestCtrl.cpp" line="907"/>
     4703        <location filename="../VBoxManageGuestCtrl.cpp" line="766"/>
    43874704        <source>Out of memory setting up IGuestSession::WaitForArray call</source>
    43884705        <translation>Не хватает памяти для настройки вызова IGuestSession::WaitForArray</translation>
    43894706    </message>
    43904707    <message>
    4391         <location filename="../VBoxManageGuestCtrl.cpp" line="923"/>
     4708        <location filename="../VBoxManageGuestCtrl.cpp" line="782"/>
    43924709        <source>Successfully started guest session (ID %RU32)
    43934710</source>
     
    43964713    </message>
    43974714    <message>
    4398         <location filename="../VBoxManageGuestCtrl.cpp" line="932"/>
     4715        <location filename="../VBoxManageGuestCtrl.cpp" line="791"/>
    43994716        <source>Error starting guest session (current status is: %s)
    44004717</source>
     
    44034720    </message>
    44044721    <message>
    4405         <location filename="../VBoxManageGuestCtrl.cpp" line="933"/>
     4722        <location filename="../VBoxManageGuestCtrl.cpp" line="792"/>
    44064723        <source>&lt;unknown&gt;</source>
    44074724        <translation>&lt;неизвестно&gt;</translation>
    44084725    </message>
    44094726    <message>
    4410         <location filename="../VBoxManageGuestCtrl.cpp" line="992"/>
     4727        <location filename="../VBoxManageGuestCtrl.cpp" line="851"/>
    44114728        <source>No user name specified!</source>
    44124729        <translation>Не указано имя пользователя!</translation>
    44134730    </message>
    44144731    <message>
    4415         <location filename="../VBoxManageGuestCtrl.cpp" line="1032"/>
     4732        <location filename="../VBoxManageGuestCtrl.cpp" line="891"/>
    44164733        <source>Closing guest session ...
    44174734</source>
     
    44204737    </message>
    44214738    <message>
    4422         <location filename="../VBoxManageGuestCtrl.cpp" line="1038"/>
     4739        <location filename="../VBoxManageGuestCtrl.cpp" line="897"/>
    44234740        <source>Guest session detached
    44244741</source>
     
    44274744    </message>
    44284745    <message>
    4429         <location filename="../VBoxManageGuestCtrl.cpp" line="1199"/>
     4746        <location filename="../VBoxManageGuestCtrl.cpp" line="1058"/>
    44304747        <source>Unable to write output, rc=%Rrc
    44314748</source>
     
    44344751    </message>
    44354752    <message>
    4436         <location filename="../VBoxManageGuestCtrl.cpp" line="1229"/>
     4753        <location filename="../VBoxManageGuestCtrl.cpp" line="1088"/>
    44374754        <source>Unsupported %s line ending conversion</source>
    44384755        <translation>Неподдерживаемое преобразование %s завершения строки</translation>
    44394756    </message>
    44404757    <message>
    4441         <location filename="../VBoxManageGuestCtrl.cpp" line="1234"/>
     4758        <location filename="../VBoxManageGuestCtrl.cpp" line="1093"/>
    44424759        <source>Error getting %s handle: %Rrc</source>
    44434760        <translation>Ошибка при получении %s обработчика: %Rrc</translation>
    44444761    </message>
    44454762    <message>
    4446         <location filename="../VBoxManageGuestCtrl.cpp" line="1360"/>
     4763        <location filename="../VBoxManageGuestCtrl.cpp" line="1216"/>
    44474764        <source>Invalid argument variable[=value]: &apos;%s&apos;</source>
    44484765        <translation>Недопустимая переменная аргумента[=значение]: &apos;%s&apos;</translation>
    44494766    </message>
    44504767    <message>
    4451         <location filename="../VBoxManageGuestCtrl.cpp" line="1370"/>
     4768        <location filename="../VBoxManageGuestCtrl.cpp" line="1226"/>
    44524769        <source>Warning: Deprecated option &quot;--no-profile&quot; specified
    44534770</source>
     
    44564773    </message>
    44574774    <message>
    4458         <location filename="../VBoxManageGuestCtrl.cpp" line="1436"/>
     4775        <location filename="../VBoxManageGuestCtrl.cpp" line="1292"/>
    44594776        <source>No executable specified!</source>
    44604777        <translation>Не указан выполняемый файл!</translation>
    44614778    </message>
    44624779    <message>
    4463         <location filename="../VBoxManageGuestCtrl.cpp" line="1488"/>
     4780        <location filename="../VBoxManageGuestCtrl.cpp" line="1344"/>
    44644781        <source>Starting guest process ...
    44654782</source>
     
    44684785    </message>
    44694786    <message>
    4470         <location filename="../VBoxManageGuestCtrl.cpp" line="1490"/>
     4787        <location filename="../VBoxManageGuestCtrl.cpp" line="1346"/>
    44714788        <source>Starting guest process (within %ums)
    44724789</source>
     
    44754792    </message>
    44764793    <message>
    4477         <location filename="../VBoxManageGuestCtrl.cpp" line="1512"/>
     4794        <location filename="../VBoxManageGuestCtrl.cpp" line="1368"/>
    44784795        <source>Process &apos;%s&apos; (PID %RU32) started
    44794796</source>
     
    44824799    </message>
    44834800    <message>
    4484         <location filename="../VBoxManageGuestCtrl.cpp" line="1517"/>
     4801        <location filename="../VBoxManageGuestCtrl.cpp" line="1373"/>
    44854802        <source>[%RU32 - Session %RU32]
    44864803</source>
     
    44894806    </message>
    44904807    <message>
    4491         <location filename="../VBoxManageGuestCtrl.cpp" line="1538"/>
     4808        <location filename="../VBoxManageGuestCtrl.cpp" line="1394"/>
    44924809        <source>waitResult: %d
    44934810</source>
     
    44964813    </message>
    44974814    <message>
    4498         <location filename="../VBoxManageGuestCtrl.cpp" line="1554"/>
     4815        <location filename="../VBoxManageGuestCtrl.cpp" line="1410"/>
    44994816        <source>Process terminated
    45004817</source>
     
    45034820    </message>
    45044821    <message>
    4505         <location filename="../VBoxManageGuestCtrl.cpp" line="1631"/>
     4822        <location filename="../VBoxManageGuestCtrl.cpp" line="1487"/>
    45064823        <source>Process execution aborted!
    45074824</source>
     
    45104827    </message>
    45114828    <message>
    4512         <location filename="../VBoxManageGuestCtrl.cpp" line="1637"/>
     4829        <location filename="../VBoxManageGuestCtrl.cpp" line="1493"/>
    45134830        <source>Process successfully started!
    45144831</source>
     
    45174834    </message>
    45184835    <message>
    4519         <location filename="../VBoxManageGuestCtrl.cpp" line="1651"/>
     4836        <location filename="../VBoxManageGuestCtrl.cpp" line="1507"/>
    45204837        <source>Exit code=%u (Status=%u [%s])
    45214838</source>
     
    45244841    </message>
    45254842    <message>
    4526         <location filename="../VBoxManageGuestCtrl.cpp" line="1660"/>
     4843        <location filename="../VBoxManageGuestCtrl.cpp" line="1516"/>
    45274844        <source>Process timed out (guest side) and %s
    45284845</source>
     
    45314848    </message>
    45324849    <message>
    4533         <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>
     4850        <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/>
    45344851        <source>failed to terminate so far</source>
    45354852        <translation>не удалось до сих пор завершить</translation>
    45364853    </message>
    45374854    <message>
    4538         <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>
     4855        <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/>
    45394856        <source>was terminated</source>
    45404857        <translation>завершен</translation>
    45414858    </message>
    45424859    <message>
    4543         <location filename="../VBoxManageGuestCtrl.cpp" line="1668"/>
     4860        <location filename="../VBoxManageGuestCtrl.cpp" line="1524"/>
    45444861        <source>Process now is in status [%s] (unexpected)
    45454862</source>
     
    45484865    </message>
    45494866    <message>
    4550         <location filename="../VBoxManageGuestCtrl.cpp" line="1676"/>
     4867        <location filename="../VBoxManageGuestCtrl.cpp" line="1532"/>
    45514868        <source>Process monitor loop quit with vrc=%Rrc
    45524869</source>
     
    45554872    </message>
    45564873    <message>
    4557         <location filename="../VBoxManageGuestCtrl.cpp" line="1682"/>
     4874        <location filename="../VBoxManageGuestCtrl.cpp" line="1538"/>
    45584875        <source>Process monitor loop timed out
    45594876</source>
     
    45624879    </message>
    45634880    <message>
    4564         <location filename="../VBoxManageGuestCtrl.cpp" line="1786"/>
     4881        <location filename="../VBoxManageGuestCtrl.cpp" line="1641"/>
    45654882        <source>No sources specified!</source>
    45664883        <translation>Не указан источник!</translation>
    45674884    </message>
    45684885    <message>
    4569         <location filename="../VBoxManageGuestCtrl.cpp" line="1794"/>
    4570         <location filename="../VBoxManageGuestCtrl.cpp" line="2348"/>
     4886        <location filename="../VBoxManageGuestCtrl.cpp" line="1649"/>
     4887        <location filename="../VBoxManageGuestCtrl.cpp" line="2201"/>
    45714888        <source>No destination specified!</source>
    45724889        <translation>Не указано назначение!</translation>
    45734890    </message>
    45744891    <message>
    4575         <location filename="../VBoxManageGuestCtrl.cpp" line="1803"/>
    4576         <location filename="../VBoxManageGuestCtrl.cpp" line="1907"/>
     4892        <location filename="../VBoxManageGuestCtrl.cpp" line="1658"/>
     4893        <location filename="../VBoxManageGuestCtrl.cpp" line="1762"/>
    45774894        <source>RTPathAbs failed on &apos;%s&apos;: %Rrc</source>
    45784895        <translation>RTPathAbs завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    45794896    </message>
    45804897    <message>
    4581         <location filename="../VBoxManageGuestCtrl.cpp" line="1816"/>
     4898        <location filename="../VBoxManageGuestCtrl.cpp" line="1671"/>
    45824899        <source>Copying from host to guest ...
    45834900</source>
     
    45864903    </message>
    45874904    <message>
    4588         <location filename="../VBoxManageGuestCtrl.cpp" line="1818"/>
     4905        <location filename="../VBoxManageGuestCtrl.cpp" line="1673"/>
    45894906        <source>Copying from guest to host ...
    45904907</source>
     
    45934910    </message>
    45944911    <message>
    4595         <location filename="../VBoxManageGuestCtrl.cpp" line="1880"/>
    4596         <location filename="../VBoxManageGuestCtrl.cpp" line="1941"/>
     4912        <location filename="../VBoxManageGuestCtrl.cpp" line="1735"/>
     4913        <location filename="../VBoxManageGuestCtrl.cpp" line="1796"/>
    45974914        <source>File &apos;%s&apos; -&gt; &apos;%s&apos;
    45984915</source>
     
    46014918    </message>
    46024919    <message>
    4603         <location filename="../VBoxManageGuestCtrl.cpp" line="1889"/>
    4604         <location filename="../VBoxManageGuestCtrl.cpp" line="1927"/>
     4920        <location filename="../VBoxManageGuestCtrl.cpp" line="1744"/>
     4921        <location filename="../VBoxManageGuestCtrl.cpp" line="1782"/>
    46054922        <source>Directory &apos;%s&apos; -&gt; &apos;%s&apos;
    46064923</source>
     
    46094926    </message>
    46104927    <message>
    4611         <location filename="../VBoxManageGuestCtrl.cpp" line="1901"/>
    4612         <location filename="../VBoxManageGuestCtrl.cpp" line="1950"/>
     4928        <location filename="../VBoxManageGuestCtrl.cpp" line="1756"/>
     4929        <location filename="../VBoxManageGuestCtrl.cpp" line="1805"/>
    46134930        <source>Not a file or directory: %s
    46144931</source>
     
    46174934    </message>
    46184935    <message>
    4619         <location filename="../VBoxManageGuestCtrl.cpp" line="1830"/>
    4620         <location filename="../VBoxManageGuestCtrl.cpp" line="1904"/>
     4936        <location filename="../VBoxManageGuestCtrl.cpp" line="1685"/>
     4937        <location filename="../VBoxManageGuestCtrl.cpp" line="1759"/>
    46214938        <source>RTPathQueryInfo failed on &apos;%s&apos;: %Rrc</source>
    46224939        <translation>RTPathQueryInfo завершен с ошибкой на &apos;%s&apos;: %Rrc</translation>
    46234940    </message>
    46244941    <message>
    4625         <location filename="../VBoxManageGuestCtrl.cpp" line="1848"/>
     4942        <location filename="../VBoxManageGuestCtrl.cpp" line="1703"/>
    46264943        <source>Destination must be a directory!</source>
    46274944        <translation>Назначение должно быть директорией!</translation>
    46284945    </message>
    46294946    <message>
    4630         <location filename="../VBoxManageGuestCtrl.cpp" line="1956"/>
     4947        <location filename="../VBoxManageGuestCtrl.cpp" line="1811"/>
    46314948        <source>FsObjQueryInfo failed on &apos;%s&apos;: %Rhrc</source>
    46324949        <translation>FsObjQueryInfo завершен с ошибкой на &apos;%s&apos;: %Rhrc</translation>
    46334950    </message>
    46344951    <message>
    4635         <location filename="../VBoxManageGuestCtrl.cpp" line="1970"/>
     4952        <location filename="../VBoxManageGuestCtrl.cpp" line="1825"/>
    46364953        <source>File copy failed</source>
    46374954        <translation>Не удалось скопировать файл</translation>
    46384955    </message>
    46394956    <message numerus="yes">
    4640         <location filename="../VBoxManageGuestCtrl.cpp" line="2039"/>
     4957        <location filename="../VBoxManageGuestCtrl.cpp" line="1894"/>
    46414958        <source>Creating %RU32 directories...
    46424959</source>
     
    46514968    </message>
    46524969    <message>
    4653         <location filename="../VBoxManageGuestCtrl.cpp" line="2043"/>
     4970        <location filename="../VBoxManageGuestCtrl.cpp" line="1898"/>
    46544971        <source>mkdir was interrupted by Ctrl-C (%u left)
    46554972</source>
     
    46584975    </message>
    46594976    <message>
    4660         <location filename="../VBoxManageGuestCtrl.cpp" line="2056"/>
     4977        <location filename="../VBoxManageGuestCtrl.cpp" line="1911"/>
    46614978        <source>Creating directory &quot;%s&quot; ...
    46624979</source>
     
    46654982    </message>
    46664983    <message>
    4667         <location filename="../VBoxManageGuestCtrl.cpp" line="2067"/>
    4668         <location filename="../VBoxManageGuestCtrl.cpp" line="2151"/>
    4669         <location filename="../VBoxManageGuestCtrl.cpp" line="2272"/>
     4984        <location filename="../VBoxManageGuestCtrl.cpp" line="1922"/>
     4985        <location filename="../VBoxManageGuestCtrl.cpp" line="2006"/>
     4986        <location filename="../VBoxManageGuestCtrl.cpp" line="2127"/>
    46704987        <source>Out of memory
    46714988</source>
     
    46744991    </message>
    46754992    <message>
    4676         <location filename="../VBoxManageGuestCtrl.cpp" line="2077"/>
     4993        <location filename="../VBoxManageGuestCtrl.cpp" line="1932"/>
    46774994        <source>No directory to create specified!</source>
    46784995        <translation>Не указана директория для создания!</translation>
    46794996    </message>
    46804997    <message numerus="yes">
    4681         <location filename="../VBoxManageGuestCtrl.cpp" line="2125"/>
     4998        <location filename="../VBoxManageGuestCtrl.cpp" line="1980"/>
    46824999        <source>Removing %RU32 directory tree(s)...
    46835000</source>
     
    46925009    </message>
    46935010    <message numerus="yes">
    4694         <location filename="../VBoxManageGuestCtrl.cpp" line="2128"/>
     5011        <location filename="../VBoxManageGuestCtrl.cpp" line="1983"/>
    46955012        <source>Removing %RU32 directorie(s)...
    46965013</source>
     
    47055022    </message>
    47065023    <message>
    4707         <location filename="../VBoxManageGuestCtrl.cpp" line="2133"/>
     5024        <location filename="../VBoxManageGuestCtrl.cpp" line="1988"/>
    47085025        <source>rmdir was interrupted by Ctrl-C (%u left)
    47095026</source>
     
    47125029    </message>
    47135030    <message>
    4714         <location filename="../VBoxManageGuestCtrl.cpp" line="2144"/>
     5031        <location filename="../VBoxManageGuestCtrl.cpp" line="1999"/>
    47155032        <source>Removing directory &quot;%s&quot; ...
    47165033</source>
     
    47195036    </message>
    47205037    <message>
    4721         <location filename="../VBoxManageGuestCtrl.cpp" line="2163"/>
     5038        <location filename="../VBoxManageGuestCtrl.cpp" line="2018"/>
    47225039        <source>Recursively removing directory &quot;%s&quot; ...
    47235040</source>
     
    47265043    </message>
    47275044    <message>
    4728         <location filename="../VBoxManageGuestCtrl.cpp" line="2181"/>
     5045        <location filename="../VBoxManageGuestCtrl.cpp" line="2036"/>
    47295046        <source>Directory deletion failed</source>
    47305047        <translation>Не удалось удалить директорию</translation>
    47315048    </message>
    47325049    <message>
    4733         <location filename="../VBoxManageGuestCtrl.cpp" line="2187"/>
     5050        <location filename="../VBoxManageGuestCtrl.cpp" line="2042"/>
    47345051        <source>Out of memory during recursive rmdir
    47355052</source>
     
    47385055    </message>
    47395056    <message>
    4740         <location filename="../VBoxManageGuestCtrl.cpp" line="2205"/>
     5057        <location filename="../VBoxManageGuestCtrl.cpp" line="2060"/>
    47415058        <source>No directory to remove specified!</source>
    47425059        <translation>Не указана директория для удаления!</translation>
    47435060    </message>
    47445061    <message numerus="yes">
    4745         <location filename="../VBoxManageGuestCtrl.cpp" line="2245"/>
     5062        <location filename="../VBoxManageGuestCtrl.cpp" line="2100"/>
    47465063        <source>Removing %RU32 file(s)...
    47475064</source>
     
    47565073    </message>
    47575074    <message>
    4758         <location filename="../VBoxManageGuestCtrl.cpp" line="2249"/>
     5075        <location filename="../VBoxManageGuestCtrl.cpp" line="2104"/>
    47595076        <source>rm was interrupted by Ctrl-C (%u left)
    47605077</source>
     
    47635080    </message>
    47645081    <message>
    4765         <location filename="../VBoxManageGuestCtrl.cpp" line="2260"/>
     5082        <location filename="../VBoxManageGuestCtrl.cpp" line="2115"/>
    47665083        <source>Removing file &quot;%s&quot; ...
    47675084</source>
     
    47705087    </message>
    47715088    <message>
    4772         <location filename="../VBoxManageGuestCtrl.cpp" line="2282"/>
     5089        <location filename="../VBoxManageGuestCtrl.cpp" line="2137"/>
    47735090        <source>No file to remove specified!</source>
    47745091        <translation>Не указан файл для удаления!</translation>
    47755092    </message>
    47765093    <message>
    4777         <location filename="../VBoxManageGuestCtrl.cpp" line="2340"/>
     5094        <location filename="../VBoxManageGuestCtrl.cpp" line="2195"/>
    47785095        <source>Failed to initialize, rc=%Rrc
    47795096</source>
     
    47825099    </message>
    47835100    <message>
    4784         <location filename="../VBoxManageGuestCtrl.cpp" line="2345"/>
     5101        <location filename="../VBoxManageGuestCtrl.cpp" line="2199"/>
    47855102        <source>No source(s) to move specified!</source>
    47865103        <translation>Не указан источник(и) для перемещения!</translation>
    47875104    </message>
    47885105    <message>
    4789         <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/>
     5106        <location filename="../VBoxManageGuestCtrl.cpp" line="2220"/>
    47905107        <source>Destination does not exist
    47915108</source>
     
    47945111    </message>
    47955112    <message>
    4796         <location filename="../VBoxManageGuestCtrl.cpp" line="2377"/>
     5113        <location filename="../VBoxManageGuestCtrl.cpp" line="2230"/>
    47975114        <source>Destination must be a directory when specifying multiple sources
    47985115</source>
     
    48015118    </message>
    48025119    <message>
    4803         <location filename="../VBoxManageGuestCtrl.cpp" line="2381"/>
     5120        <location filename="../VBoxManageGuestCtrl.cpp" line="2234"/>
    48045121        <source>Unable to determine destination type: %Rhrc
    48055122</source>
     
    48085125    </message>
    48095126    <message>
    4810         <location filename="../VBoxManageGuestCtrl.cpp" line="2390"/>
     5127        <location filename="../VBoxManageGuestCtrl.cpp" line="2243"/>
    48115128        <source>Renaming %RU32 %s ...
    48125129</source>
     
    48155132    </message>
    48165133    <message numerus="yes">
    4817         <location filename="../VBoxManageGuestCtrl.cpp" line="2391"/>
     5134        <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/>
    48185135        <source>sources</source>
    48195136        <translation>
     
    48245141    </message>
    48255142    <message>
    4826         <location filename="../VBoxManageGuestCtrl.cpp" line="2391"/>
     5143        <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/>
    48275144        <source>source</source>
    48285145        <translation>источника</translation>
    48295146    </message>
    48305147    <message>
    4831         <location filename="../VBoxManageGuestCtrl.cpp" line="2406"/>
     5148        <location filename="../VBoxManageGuestCtrl.cpp" line="2259"/>
    48325149        <source>Cannot stat &quot;%s&quot;: No such file or directory
    48335150</source>
     
    48365153    </message>
    48375154    <message>
    4838         <location filename="../VBoxManageGuestCtrl.cpp" line="2423"/>
     5155        <location filename="../VBoxManageGuestCtrl.cpp" line="2276"/>
    48395156        <source>Renaming %s &quot;%s&quot; to &quot;%s&quot; ...
    48405157</source>
     
    48435160    </message>
    48445161    <message>
    4845         <location filename="../VBoxManageGuestCtrl.cpp" line="2424"/>
     5162        <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/>
    48465163        <source>directory</source>
    48475164        <comment>object</comment>
     
    48495166    </message>
    48505167    <message>
    4851         <location filename="../VBoxManageGuestCtrl.cpp" line="2424"/>
     5168        <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/>
    48525169        <source>file</source>
    48535170        <comment>object</comment>
     
    48555172    </message>
    48565173    <message>
    4857         <location filename="../VBoxManageGuestCtrl.cpp" line="2443"/>
     5174        <location filename="../VBoxManageGuestCtrl.cpp" line="2296"/>
    48585175        <source>Warning: Not all sources were renamed
    48595176</source>
     
    48625179    </message>
    48635180    <message>
    4864         <location filename="../VBoxManageGuestCtrl.cpp" line="2503"/>
     5181        <location filename="../VBoxManageGuestCtrl.cpp" line="2355"/>
    48655182        <source>More than one template specified!
    48665183</source>
     
    48695186    </message>
    48705187    <message>
    4871         <location filename="../VBoxManageGuestCtrl.cpp" line="2513"/>
     5188        <location filename="../VBoxManageGuestCtrl.cpp" line="2364"/>
    48725189        <source>No template specified!</source>
    48735190        <translation>Шаблоны не указаны!</translation>
    48745191    </message>
    48755192    <message>
    4876         <location filename="../VBoxManageGuestCtrl.cpp" line="2517"/>
     5193        <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/>
    48775194        <source>Creating temporary files is currently not supported!</source>
    48785195        <translation>Создание временных файлов сейчас не поддерживается!</translation>
    48795196    </message>
    48805197    <message>
    4881         <location filename="../VBoxManageGuestCtrl.cpp" line="2529"/>
     5198        <location filename="../VBoxManageGuestCtrl.cpp" line="2379"/>
    48825199        <source>Creating temporary directory from template &apos;%s&apos; in directory &apos;%s&apos; ...
    48835200</source>
     
    48865203    </message>
    48875204    <message>
    4888         <location filename="../VBoxManageGuestCtrl.cpp" line="2532"/>
     5205        <location filename="../VBoxManageGuestCtrl.cpp" line="2382"/>
    48895206        <source>Creating temporary directory from template &apos;%s&apos; in default temporary directory ...
    48905207</source>
     
    48935210    </message>
    48945211    <message>
    4895         <location filename="../VBoxManageGuestCtrl.cpp" line="2535"/>
     5212        <location filename="../VBoxManageGuestCtrl.cpp" line="2385"/>
    48965213        <source>Creating temporary file from template &apos;%s&apos; in directory &apos;%s&apos; ...
    48975214</source>
     
    49005217    </message>
    49015218    <message>
    4902         <location filename="../VBoxManageGuestCtrl.cpp" line="2538"/>
     5219        <location filename="../VBoxManageGuestCtrl.cpp" line="2388"/>
    49035220        <source>Creating temporary file from template &apos;%s&apos; in default temporary directory ...
    49045221</source>
     
    49075224    </message>
    49085225    <message>
    4909         <location filename="../VBoxManageGuestCtrl.cpp" line="2551"/>
     5226        <location filename="../VBoxManageGuestCtrl.cpp" line="2401"/>
    49105227        <source>Directory name: %ls
    49115228</source>
     
    49145231    </message>
    49155232    <message>
    4916         <location filename="../VBoxManageGuestCtrl.cpp" line="2595"/>
     5233        <location filename="../VBoxManageGuestCtrl.cpp" line="2444"/>
    49175234        <source>Command &quot;%s&quot; not implemented yet!</source>
    49185235        <translation>Команда &quot;%s&quot; еще не реализована!</translation>
    49195236    </message>
    49205237    <message>
    4921         <location filename="../VBoxManageGuestCtrl.cpp" line="2603"/>
     5238        <location filename="../VBoxManageGuestCtrl.cpp" line="2452"/>
    49225239        <source>Nothing to stat!</source>
    49235240        <translation>Нет объекта для запроса информации!</translation>
    49245241    </message>
    49255242    <message>
    4926         <location filename="../VBoxManageGuestCtrl.cpp" line="2616"/>
     5243        <location filename="../VBoxManageGuestCtrl.cpp" line="2465"/>
    49275244        <source>Checking for element &quot;%s&quot; ...
    49285245</source>
     
    49315248    </message>
    49325249    <message>
    4933         <location filename="../VBoxManageGuestCtrl.cpp" line="2626"/>
     5250        <location filename="../VBoxManageGuestCtrl.cpp" line="2475"/>
    49345251        <source>Failed to stat &apos;%s&apos;: No such file
    49355252</source>
     
    49385255    </message>
    49395256    <message>
    4940         <location filename="../VBoxManageGuestCtrl.cpp" line="2631"/>
     5257        <location filename="../VBoxManageGuestCtrl.cpp" line="2480"/>
    49415258        <source>  File: &apos;%s&apos;
    49425259</source>
     
    49455262    </message>
    49465263    <message>
    4947         <location filename="../VBoxManageGuestCtrl.cpp" line="2666"/>
     5264        <location filename="../VBoxManageGuestCtrl.cpp" line="2515"/>
    49485265        <source>  Size: %-17RU64 Alloc: %-19RU64 Type: %s
    49495266</source>
     
    49525269    </message>
    49535270    <message>
    4954         <location filename="../VBoxManageGuestCtrl.cpp" line="2668"/>
     5271        <location filename="../VBoxManageGuestCtrl.cpp" line="2517"/>
    49555272        <source>Device: %#-17RX32 INode: %-18RU64 Links: %u
    49565273</source>
     
    49595276    </message>
    49605277    <message>
    4961         <location filename="../VBoxManageGuestCtrl.cpp" line="2679"/>
     5278        <location filename="../VBoxManageGuestCtrl.cpp" line="2528"/>
    49625279        <source>  Mode: %-16s Attrib: %-17s Dev ID: %#RX32
    49635280</source>
     
    49665283    </message>
    49675284    <message>
    4968         <location filename="../VBoxManageGuestCtrl.cpp" line="2681"/>
     5285        <location filename="../VBoxManageGuestCtrl.cpp" line="2530"/>
    49695286        <source>  Mode: %-16s Attrib: %s
    49705287</source>
     
    49735290    </message>
    49745291    <message>
    4975         <location filename="../VBoxManageGuestCtrl.cpp" line="2683"/>
     5292        <location filename="../VBoxManageGuestCtrl.cpp" line="2532"/>
    49765293        <source> Owner: %4d/%-12ls Group: %4d/%ls
    49775294</source>
     
    49805297    </message>
    49815298    <message>
    4982         <location filename="../VBoxManageGuestCtrl.cpp" line="2687"/>
     5299        <location filename="../VBoxManageGuestCtrl.cpp" line="2536"/>
    49835300        <source> Birth: %s
    49845301</source>
     
    49875304    </message>
    49885305    <message>
    4989         <location filename="../VBoxManageGuestCtrl.cpp" line="2689"/>
     5306        <location filename="../VBoxManageGuestCtrl.cpp" line="2538"/>
    49905307        <source>Change: %s
    49915308</source>
     
    49945311    </message>
    49955312    <message>
    4996         <location filename="../VBoxManageGuestCtrl.cpp" line="2691"/>
     5313        <location filename="../VBoxManageGuestCtrl.cpp" line="2540"/>
    49975314        <source>Modify: %s
    49985315</source>
     
    50015318    </message>
    50025319    <message>
    5003         <location filename="../VBoxManageGuestCtrl.cpp" line="2693"/>
     5320        <location filename="../VBoxManageGuestCtrl.cpp" line="2542"/>
    50045321        <source>Access: %s
    50055322</source>
     
    50085325    </message>
    50095326    <message>
    5010         <location filename="../VBoxManageGuestCtrl.cpp" line="2746"/>
     5327        <location filename="../VBoxManageGuestCtrl.cpp" line="2595"/>
    50115328        <source>Current run level is %RU32
    50125329</source>
     
    50155332    </message>
    50165333    <message>
    5017         <location filename="../VBoxManageGuestCtrl.cpp" line="2753"/>
     5334        <location filename="../VBoxManageGuestCtrl.cpp" line="2602"/>
    50185335        <source>Waiting for run level %RU32 ...
    50195336</source>
     
    50225339    </message>
    50235340    <message>
    5024         <location filename="../VBoxManageGuestCtrl.cpp" line="2766"/>
    5025         <location filename="../VBoxManageGuestCtrl.cpp" line="3724"/>
     5341        <location filename="../VBoxManageGuestCtrl.cpp" line="2615"/>
     5342        <location filename="../VBoxManageGuestCtrl.cpp" line="3565"/>
    50265343        <source>Waiting failed with %Rrc
    50275344</source>
     
    50305347    </message>
    50315348    <message>
    5032         <location filename="../VBoxManageGuestCtrl.cpp" line="2772"/>
     5349        <location filename="../VBoxManageGuestCtrl.cpp" line="2621"/>
    50335350        <source>Run level %RU32 reached
    50345351</source>
     
    50375354    </message>
    50385355    <message>
    5039         <location filename="../VBoxManageGuestCtrl.cpp" line="2781"/>
     5356        <location filename="../VBoxManageGuestCtrl.cpp" line="2630"/>
    50405357        <source>Run level %RU32 not reached within time
    50415358</source>
     
    50445361    </message>
    50455362    <message>
    5046         <location filename="../VBoxManageGuestCtrl.cpp" line="2867"/>
     5363        <location filename="../VBoxManageGuestCtrl.cpp" line="2716"/>
    50475364        <source>RTPathAbsCxx failed on &apos;%s&apos;: %Rrc</source>
    50485365        <translation>RTPathAbsCxx завершился с ошибкой &apos;%s&apos;: %Rrc</translation>
    50495366    </message>
    50505367    <message>
    5051         <location filename="../VBoxManageGuestCtrl.cpp" line="2896"/>
     5368        <location filename="../VBoxManageGuestCtrl.cpp" line="2745"/>
    50525369        <source>Updating Guest Additions ...
    50535370</source>
     
    50565373    </message>
    50575374    <message>
    5058         <location filename="../VBoxManageGuestCtrl.cpp" line="2912"/>
     5375        <location filename="../VBoxManageGuestCtrl.cpp" line="2761"/>
    50595376        <source>No Guest Additions source found or specified, aborting
    50605377</source>
     
    50635380    </message>
    50645381    <message>
    5065         <location filename="../VBoxManageGuestCtrl.cpp" line="2917"/>
     5382        <location filename="../VBoxManageGuestCtrl.cpp" line="2766"/>
    50665383        <source>Source &quot;%s&quot; does not exist!
    50675384</source>
     
    50705387    </message>
    50715388    <message>
    5072         <location filename="../VBoxManageGuestCtrl.cpp" line="2928"/>
     5389        <location filename="../VBoxManageGuestCtrl.cpp" line="2777"/>
    50735390        <source>OS type:</source>
    50745391        <translation>Тип ОС:</translation>
    50755392    </message>
    50765393    <message>
    5077         <location filename="../VBoxManageGuestCtrl.cpp" line="2933"/>
     5394        <location filename="../VBoxManageGuestCtrl.cpp" line="2782"/>
    50785395        <source>Additions run level:</source>
    50795396        <translation>Уровень выполнения Дополнений:</translation>
    50805397    </message>
    50815398    <message>
    5082         <location filename="../VBoxManageGuestCtrl.cpp" line="2945"/>
     5399        <location filename="../VBoxManageGuestCtrl.cpp" line="2794"/>
    50835400        <source>Additions version:</source>
    50845401        <translation>Версия Дополнений:</translation>
    50855402    </message>
    50865403    <message>
    5087         <location filename="../VBoxManageGuestCtrl.cpp" line="2953"/>
     5404        <location filename="../VBoxManageGuestCtrl.cpp" line="2802"/>
    50885405        <source>Using source: %s
    50895406</source>
     
    50925409    </message>
    50935410    <message>
    5094         <location filename="../VBoxManageGuestCtrl.cpp" line="2962"/>
     5411        <location filename="../VBoxManageGuestCtrl.cpp" line="2811"/>
    50955412        <source>Waiting for current Guest Additions inside VM getting ready for updating ...
    50965413</source>
     
    50995416    </message>
    51005417    <message>
    5101         <location filename="../VBoxManageGuestCtrl.cpp" line="2983"/>
     5418        <location filename="../VBoxManageGuestCtrl.cpp" line="2832"/>
    51025419        <source>Guest Additions %lsr%RU64 currently installed, waiting for Guest Additions installer to start ...
    51035420</source>
     
    51065423    </message>
    51075424    <message>
    5108         <location filename="../VBoxManageGuestCtrl.cpp" line="3007"/>
     5425        <location filename="../VBoxManageGuestCtrl.cpp" line="2856"/>
    51095426        <source>Guest Additions update failed</source>
    51105427        <translation>Не удалось обновить Дополнения Гостевой ОС</translation>
    51115428    </message>
    51125429    <message>
    5113         <location filename="../VBoxManageGuestCtrl.cpp" line="3012"/>
     5430        <location filename="../VBoxManageGuestCtrl.cpp" line="2861"/>
    51145431        <source>Guest Additions update successful.
    51155432</source>
     
    51185435    </message>
    51195436    <message>
    5120         <location filename="../VBoxManageGuestCtrl.cpp" line="3017"/>
     5437        <location filename="../VBoxManageGuestCtrl.cpp" line="2866"/>
    51215438        <source>Rebooting guest ...
    51225439</source>
     
    51255442    </message>
    51265443    <message>
    5127         <location filename="../VBoxManageGuestCtrl.cpp" line="3025"/>
     5444        <location filename="../VBoxManageGuestCtrl.cpp" line="2874"/>
    51285445        <source>Current installed Guest Additions don&apos;t support automatic rebooting. Please reboot manually.
    51295446</source>
     
    51325449    </message>
    51335450    <message>
    5134         <location filename="../VBoxManageGuestCtrl.cpp" line="3037"/>
     5451        <location filename="../VBoxManageGuestCtrl.cpp" line="2886"/>
    51355452        <source>Waiting for new Guest Additions inside VM getting ready ...
    51365453</source>
     
    51395456    </message>
    51405457    <message>
    5141         <location filename="../VBoxManageGuestCtrl.cpp" line="3045"/>
     5458        <location filename="../VBoxManageGuestCtrl.cpp" line="2894"/>
    51425459        <source>Verifying Guest Additions update ...
    51435460</source>
     
    51465463    </message>
    51475464    <message>
    5148         <location filename="../VBoxManageGuestCtrl.cpp" line="3064"/>
     5465        <location filename="../VBoxManageGuestCtrl.cpp" line="2913"/>
    51495466        <source>Old Guest Additions: %ls%RU64
    51505467</source>
     
    51535470    </message>
    51545471    <message>
    5155         <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/>
     5472        <location filename="../VBoxManageGuestCtrl.cpp" line="2915"/>
    51565473        <source>New Guest Additions: %ls%RU64
    51575474</source>
     
    51605477    </message>
    51615478    <message>
    5162         <location filename="../VBoxManageGuestCtrl.cpp" line="3071"/>
     5479        <location filename="../VBoxManageGuestCtrl.cpp" line="2920"/>
    51635480        <source>
    51645481Error updating Guest Additions, please check guest installer log
     
    51695486    </message>
    51705487    <message>
    5171         <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/>
     5488        <location filename="../VBoxManageGuestCtrl.cpp" line="2925"/>
    51725489        <source>
    51735490WARNING: Guest Additions were downgraded
     
    51785495    </message>
    51795496    <message>
    5180         <location filename="../VBoxManageGuestCtrl.cpp" line="3083"/>
     5497        <location filename="../VBoxManageGuestCtrl.cpp" line="2932"/>
    51815498        <source>The guest needs to be restarted in order to make use of the updated Guest Additions.
    51825499</source>
     
    51855502    </message>
    51865503    <message>
    5187         <location filename="../VBoxManageGuestCtrl.cpp" line="3157"/>
     5504        <location filename="../VBoxManageGuestCtrl.cpp" line="3005"/>
    51885505        <source>Invalid run level specified. Valid values are: system, userland, desktop</source>
    51895506        <translation>Указан недопустимый уровень выполнения. Допустимые значения: system, userland, desktop</translation>
    51905507    </message>
    51915508    <message>
    5192         <location filename="../VBoxManageGuestCtrl.cpp" line="3171"/>
     5509        <location filename="../VBoxManageGuestCtrl.cpp" line="3019"/>
    51935510        <source>Missing run level to wait for</source>
    51945511        <translation>Отсутствует уровень выполнения для ожидания</translation>
    51955512    </message>
    51965513    <message>
    5197         <location filename="../VBoxManageGuestCtrl.cpp" line="3219"/>
     5514        <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/>
    51985515        <source>Unknown list: &apos;%s&apos;</source>
    51995516        <translation>Неизвестный список: &apos;%s&apos;</translation>
    52005517    </message>
    52015518    <message>
    5202         <location filename="../VBoxManageGuestCtrl.cpp" line="3229"/>
     5519        <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/>
    52035520        <source>Missing list name</source>
    52045521        <translation>Отсутствует имя списка</translation>
    52055522    </message>
    52065523    <message>
    5207         <location filename="../VBoxManageGuestCtrl.cpp" line="3250"/>
     5524        <location filename="../VBoxManageGuestCtrl.cpp" line="3097"/>
    52085525        <source>Active guest sessions:
    52095526</source>
     
    52125529    </message>
    52135530    <message>
    5214         <location filename="../VBoxManageGuestCtrl.cpp" line="3269"/>
     5531        <location filename="../VBoxManageGuestCtrl.cpp" line="3116"/>
    52155532        <source>
    52165533        Session #%-3zu ID=%-3RU32 User=%-16ls Status=[%s] Name=%ls</source>
     
    52195536    </message>
    52205537    <message>
    5221         <location filename="../VBoxManageGuestCtrl.cpp" line="3292"/>
     5538        <location filename="../VBoxManageGuestCtrl.cpp" line="3139"/>
    52225539        <source>
    52235540                Process #%-03zu PID=%-6RU32 Status=[%s] Command=%ls</source>
     
    52265543    </message>
    52275544    <message>
    5228         <location filename="../VBoxManageGuestCtrl.cpp" line="3320"/>
     5545        <location filename="../VBoxManageGuestCtrl.cpp" line="3167"/>
    52295546        <source>
    52305547                File #%-03zu ID=%-6RU32 Status=[%s] Name=%ls</source>
     
    52335550    </message>
    52345551    <message>
    5235         <location filename="../VBoxManageGuestCtrl.cpp" line="3331"/>
     5552        <location filename="../VBoxManageGuestCtrl.cpp" line="3178"/>
    52365553        <source>
    52375554
     
    52445561    </message>
    52455562    <message>
    5246         <location filename="../VBoxManageGuestCtrl.cpp" line="3333"/>
     5563        <location filename="../VBoxManageGuestCtrl.cpp" line="3180"/>
    52475564        <source>Total guest processes: %zu
    52485565</source>
     
    52515568    </message>
    52525569    <message>
    5253         <location filename="../VBoxManageGuestCtrl.cpp" line="3335"/>
     5570        <location filename="../VBoxManageGuestCtrl.cpp" line="3182"/>
    52545571        <source>Total guest files: %zu
    52555572</source>
     
    52585575    </message>
    52595576    <message>
    5260         <location filename="../VBoxManageGuestCtrl.cpp" line="3338"/>
     5577        <location filename="../VBoxManageGuestCtrl.cpp" line="3185"/>
    52615578        <source>No active guest sessions found
    52625579</source>
     
    52655582    </message>
    52665583    <message>
    5267         <location filename="../VBoxManageGuestCtrl.cpp" line="3405"/>
     5584        <location filename="../VBoxManageGuestCtrl.cpp" line="3251"/>
    52685585        <source>Invalid PID value: 0</source>
    52695586        <translation>Недопустимое значение PID: 0</translation>
    52705587    </message>
    52715588    <message>
    5272         <location filename="../VBoxManageGuestCtrl.cpp" line="3409"/>
     5589        <location filename="../VBoxManageGuestCtrl.cpp" line="3254"/>
    52735590        <source>Error parsing PID value: %Rrc</source>
    52745591        <translation>Ошибка при разборе значения PID: %Rrc</translation>
    52755592    </message>
    52765593    <message>
    5277         <location filename="../VBoxManageGuestCtrl.cpp" line="3420"/>
     5594        <location filename="../VBoxManageGuestCtrl.cpp" line="3264"/>
    52785595        <source>At least one PID must be specified to kill!</source>
    52795596        <translation>Нужно указать хотя бы один PID, который надо убить!</translation>
    52805597    </message>
    52815598    <message>
    5282         <location filename="../VBoxManageGuestCtrl.cpp" line="3424"/>
    5283         <location filename="../VBoxManageGuestCtrl.cpp" line="3580"/>
     5599        <location filename="../VBoxManageGuestCtrl.cpp" line="3268"/>
     5600        <location filename="../VBoxManageGuestCtrl.cpp" line="3422"/>
    52845601        <source>No session ID specified!</source>
    52855602        <translation>Не указан ID сессии!</translation>
    52865603    </message>
    52875604    <message>
    5288         <location filename="../VBoxManageGuestCtrl.cpp" line="3429"/>
    5289         <location filename="../VBoxManageGuestCtrl.cpp" line="3585"/>
     5605        <location filename="../VBoxManageGuestCtrl.cpp" line="3272"/>
     5606        <location filename="../VBoxManageGuestCtrl.cpp" line="3426"/>
    52905607        <source>Either session ID or name (pattern) must be specified</source>
    52915608        <translation>Нужно указать либо ID сессии либо имя (шаблон)</translation>
    52925609    </message>
    52935610    <message>
    5294         <location filename="../VBoxManageGuestCtrl.cpp" line="3492"/>
     5611        <location filename="../VBoxManageGuestCtrl.cpp" line="3335"/>
    52955612        <source>Terminating process (PID %RU32) (session ID %RU32) ...
    52965613</source>
     
    52995616    </message>
    53005617    <message>
    5301         <location filename="../VBoxManageGuestCtrl.cpp" line="3500"/>
     5618        <location filename="../VBoxManageGuestCtrl.cpp" line="3343"/>
    53025619        <source>No matching process(es) for session ID %RU32 found
    53035620</source>
     
    53065623    </message>
    53075624    <message>
    5308         <location filename="../VBoxManageGuestCtrl.cpp" line="3512"/>
     5625        <location filename="../VBoxManageGuestCtrl.cpp" line="3355"/>
    53095626        <source>No matching session(s) found
    53105627</source>
     
    53135630    </message>
    53145631    <message numerus="yes">
    5315         <location filename="../VBoxManageGuestCtrl.cpp" line="3515"/>
     5632        <location filename="../VBoxManageGuestCtrl.cpp" line="3358"/>
    53165633        <source>%RU32 process(es) terminated
    53175634</source>
     
    53265643    </message>
    53275644    <message>
    5328         <location filename="../VBoxManageGuestCtrl.cpp" line="3623"/>
     5645        <location filename="../VBoxManageGuestCtrl.cpp" line="3464"/>
    53295646        <source>Closing guest session ID=#%RU32 &quot;%s&quot; ...
    53305647</source>
     
    53335650    </message>
    53345651    <message>
    5335         <location filename="../VBoxManageGuestCtrl.cpp" line="3627"/>
     5652        <location filename="../VBoxManageGuestCtrl.cpp" line="3468"/>
    53365653        <source>Guest session successfully closed
    53375654</source>
     
    53405657    </message>
    53415658    <message>
    5342         <location filename="../VBoxManageGuestCtrl.cpp" line="3635"/>
     5659        <location filename="../VBoxManageGuestCtrl.cpp" line="3476"/>
    53435660        <source>No guest session(s) found
    53445661</source>
     
    53475664    </message>
    53485665    <message>
    5349         <location filename="../VBoxManageGuestCtrl.cpp" line="3713"/>
     5666        <location filename="../VBoxManageGuestCtrl.cpp" line="3554"/>
    53505667        <source>Waiting for events ...
    53515668</source>
     
    53545671    </message>
    53555672    <message>
    5356         <location filename="../VBoxManageGuestCtrl.cpp" line="3867"/>
     5673        <location filename="../VBoxManageGuestCtrl.cpp" line="3709"/>
    53575674        <source>Unknown sub-command: &apos;%s&apos;</source>
    53585675        <translation>Неизвестная подкоманда: &apos;%s&apos;</translation>
    53595676    </message>
    53605677    <message>
    5361         <location filename="../VBoxManageGuestCtrl.cpp" line="3876"/>
     5678        <location filename="../VBoxManageGuestCtrl.cpp" line="3718"/>
    53625679        <source>Missing sub-command</source>
    53635680        <translation>Отсутствует подкоманда</translation>
    53645681    </message>
    53655682    <message>
    5366         <location filename="../VBoxManageGuestCtrl.cpp" line="3878"/>
     5683        <location filename="../VBoxManageGuestCtrl.cpp" line="3720"/>
    53675684        <source>Missing VM name and sub-command</source>
    53685685        <translation>Отсутствует имя ВМ и подкоманда</translation>
     
    53725689    <name>GuestCtrlLsnr</name>
    53735690    <message>
    5374         <location filename="../VBoxManageGuestCtrlListener.cpp" line="108"/>
     5691        <location filename="../VBoxManageGuestCtrlListener.cpp" line="106"/>
    53755692        <source>File ID=%RU32 &quot;%s&quot; changed status to [%s]
    53765693</source>
     
    53795696    </message>
    53805697    <message>
    5381         <location filename="../VBoxManageGuestCtrlListener.cpp" line="164"/>
     5698        <location filename="../VBoxManageGuestCtrlListener.cpp" line="162"/>
    53825699        <source>Process PID=%RU32 &quot;%s&quot; changed status to [%s]
    53835700</source>
     
    53865703    </message>
    53875704    <message>
     5705        <location filename="../VBoxManageGuestCtrlListener.cpp" line="254"/>
     5706        <source>File &quot;%s&quot; %s
     5707</source>
     5708        <translation>Файл &quot;%s&quot; %s
     5709</translation>
     5710    </message>
     5711    <message>
    53885712        <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/>
    5389         <source>File &quot;%s&quot; %s
    5390 </source>
    5391         <translation>Файл &quot;%s&quot; %s
    5392 </translation>
    5393     </message>
    5394     <message>
    5395         <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/>
    5396         <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/>
    5397         <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/>
     5713        <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     5714        <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
    53985715        <source>registered</source>
    53995716        <translation>регистрация сделана</translation>
    54005717    </message>
    54015718    <message>
    5402         <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/>
    5403         <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/>
    5404         <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/>
     5719        <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/>
     5720        <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     5721        <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
    54055722        <source>unregistered</source>
    54065723        <translation>регистрация отменена</translation>
    54075724    </message>
    54085725    <message>
    5409         <location filename="../VBoxManageGuestCtrlListener.cpp" line="262"/>
    5410         <location filename="../VBoxManageGuestCtrlListener.cpp" line="326"/>
    5411         <location filename="../VBoxManageGuestCtrlListener.cpp" line="467"/>
     5726        <location filename="../VBoxManageGuestCtrlListener.cpp" line="260"/>
     5727        <location filename="../VBoxManageGuestCtrlListener.cpp" line="324"/>
     5728        <location filename="../VBoxManageGuestCtrlListener.cpp" line="465"/>
    54125729        <source>Registering ...
    54135730</source>
     
    54165733    </message>
    54175734    <message>
    5418         <location filename="../VBoxManageGuestCtrlListener.cpp" line="285"/>
     5735        <location filename="../VBoxManageGuestCtrlListener.cpp" line="283"/>
    54195736        <source>Unregistering file ...
    54205737</source>
     
    54235740    </message>
    54245741    <message>
    5425         <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     5742        <location filename="../VBoxManageGuestCtrlListener.cpp" line="318"/>
    54265743        <source>Process &quot;%s&quot; %s
    54275744</source>
     
    54305747    </message>
    54315748    <message>
    5432         <location filename="../VBoxManageGuestCtrlListener.cpp" line="349"/>
     5749        <location filename="../VBoxManageGuestCtrlListener.cpp" line="347"/>
    54335750        <source>Unregistering process ...
    54345751</source>
     
    54375754    </message>
    54385755    <message>
    5439         <location filename="../VBoxManageGuestCtrlListener.cpp" line="386"/>
     5756        <location filename="../VBoxManageGuestCtrlListener.cpp" line="384"/>
    54405757        <source>Session ID=%RU32 &quot;%s&quot; changed status to [%s]
    54415758</source>
     
    54445761    </message>
    54455762    <message>
    5446         <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
     5763        <location filename="../VBoxManageGuestCtrlListener.cpp" line="459"/>
    54475764        <source>Session ID=%RU32 &quot;%s&quot; %s
    54485765</source>
     
    54515768    </message>
    54525769    <message>
    5453         <location filename="../VBoxManageGuestCtrlListener.cpp" line="492"/>
     5770        <location filename="../VBoxManageGuestCtrlListener.cpp" line="490"/>
    54545771        <source>Unregistering ...
    54555772</source>
     
    54585775    </message>
    54595776    <message>
    5460         <location filename="../VBoxManageGuestCtrlListener.cpp" line="554"/>
     5777        <location filename="../VBoxManageGuestCtrlListener.cpp" line="552"/>
    54615778        <source>Reached run level %RU32
    54625779</source>
     
    54685785    <name>GuestProp</name>
    54695786    <message>
    5470         <location filename="../VBoxManageGuestProp.cpp" line="87"/>
    5471         <location filename="../VBoxManageGuestProp.cpp" line="146"/>
    5472         <location filename="../VBoxManageGuestProp.cpp" line="190"/>
    5473         <location filename="../VBoxManageGuestProp.cpp" line="232"/>
    5474         <location filename="../VBoxManageGuestProp.cpp" line="319"/>
    5475         <location filename="../VBoxManageGuestProp.cpp" line="417"/>
    5476         <location filename="../VBoxManageGuestProp.cpp" line="432"/>
     5787        <location filename="../VBoxManageGuestProp.cpp" line="64"/>
     5788        <location filename="../VBoxManageGuestProp.cpp" line="125"/>
     5789        <location filename="../VBoxManageGuestProp.cpp" line="171"/>
     5790        <location filename="../VBoxManageGuestProp.cpp" line="215"/>
     5791        <location filename="../VBoxManageGuestProp.cpp" line="304"/>
     5792        <location filename="../VBoxManageGuestProp.cpp" line="407"/>
     5793        <location filename="../VBoxManageGuestProp.cpp" line="422"/>
    54775794        <source>Incorrect parameters</source>
    54785795        <translation>Некорректные параметры</translation>
    54795796    </message>
    54805797    <message>
    5481         <location filename="../VBoxManageGuestProp.cpp" line="107"/>
     5798        <location filename="../VBoxManageGuestProp.cpp" line="84"/>
    54825799        <source>No value set!
    54835800</source>
     
    54865803    </message>
    54875804    <message>
    5488         <location filename="../VBoxManageGuestProp.cpp" line="109"/>
     5805        <location filename="../VBoxManageGuestProp.cpp" line="86"/>
    54895806        <source>Value: %ls
    54905807</source>
     
    54935810    </message>
    54945811    <message>
    5495         <location filename="../VBoxManageGuestProp.cpp" line="112"/>
     5812        <location filename="../VBoxManageGuestProp.cpp" line="89"/>
    54965813        <source>Timestamp: %lld
    54975814</source>
     
    55005817    </message>
    55015818    <message>
    5502         <location filename="../VBoxManageGuestProp.cpp" line="113"/>
     5819        <location filename="../VBoxManageGuestProp.cpp" line="90"/>
    55035820        <source>Flags: %ls
    55045821</source>
     
    55075824    </message>
    55085825    <message>
    5509         <location filename="../VBoxManageGuestProp.cpp" line="268"/>
     5826        <location filename="../VBoxManageGuestProp.cpp" line="251"/>
    55105827        <source>No properties found.
    55115828</source>
     
    55145831    </message>
    55155832    <message>
    5516         <location filename="../VBoxManageGuestProp.cpp" line="270"/>
     5833        <location filename="../VBoxManageGuestProp.cpp" line="253"/>
    55175834        <source>Name: %ls, value: %ls, timestamp: %lld, flags: %ls
    55185835</source>
     
    55215838    </message>
    55225839    <message>
    5523         <location filename="../VBoxManageGuestProp.cpp" line="374"/>
     5840        <location filename="../VBoxManageGuestProp.cpp" line="362"/>
     5841        <source>Property %ls was deleted
     5842</source>
     5843        <translation type="unfinished"></translation>
     5844    </message>
     5845    <message>
     5846        <location filename="../VBoxManageGuestProp.cpp" line="364"/>
    55245847        <source>Name: %ls, value: %ls, flags: %ls
    55255848</source>
     
    55285851    </message>
    55295852    <message>
    5530         <location filename="../VBoxManageGuestProp.cpp" line="391"/>
     5853        <location filename="../VBoxManageGuestProp.cpp" line="381"/>
    55315854        <source>Time out or interruption while waiting for a notification.</source>
    55325855        <translation>Превышено время ожидания или прерывание во время ожидания оповещения.</translation>
     
    55665889    <message>
    55675890        <location filename="../VBoxManageHelp.cpp" line="397"/>
    5568         <location filename="../VBoxManageHelp.cpp" line="1164"/>
    55695891        <source>Invalid parameter &apos;%s&apos;</source>
    55705892        <translation>Недопустимый параметр &apos;%s&apos;</translation>
     
    55725894    <message>
    55735895        <location filename="../VBoxManageHelp.cpp" line="401"/>
    5574         <location filename="../VBoxManageHelp.cpp" line="1168"/>
    55755896        <source>Invalid option -%c</source>
    55765897        <translation>Недопустимая опция -%c</translation>
     
    55785899    <message>
    55795900        <location filename="../VBoxManageHelp.cpp" line="403"/>
    5580         <location filename="../VBoxManageHelp.cpp" line="1169"/>
    55815901        <source>Invalid option case %i</source>
    55825902        <translation>Недопустимый вариант опции %i</translation>
     
    55845904    <message>
    55855905        <location filename="../VBoxManageHelp.cpp" line="406"/>
    5586         <location filename="../VBoxManageHelp.cpp" line="1172"/>
    55875906        <source>Unknown option: %s</source>
    55885907        <translation>Неизвестная опция: %s</translation>
     
    55905909    <message>
    55915910        <location filename="../VBoxManageHelp.cpp" line="408"/>
    5592         <location filename="../VBoxManageHelp.cpp" line="1174"/>
    55935911        <source>Invalid argument format: %s</source>
    55945912        <translation>Недопустимый формат аргумента: %s</translation>
     
    56205938    </message>
    56215939    <message>
    5622         <location filename="../VBoxManageHelp.cpp" line="563"/>
    56235940        <source>Usage:
    56245941
    56255942</source>
    5626         <translation>Использование:
     5943        <translation type="vanished">Использование:
    56275944
    56285945</translation>
    56295946    </message>
    56305947    <message>
    5631         <location filename="../VBoxManageHelp.cpp" line="1081"/>
    5632         <location filename="../VBoxManageHelp.cpp" line="1105"/>
    56335948        <source>
    56345949Syntax error: %N
    56355950</source>
    5636         <translation>
     5951        <translation type="vanished">
    56375952Синтаксическая ошибка: %N
    56385953</translation>
     
    56425957    <name>HostOnly</name>
    56435958    <message>
    5644         <location filename="../VBoxManageHostonly.cpp" line="97"/>
     5959        <location filename="../VBoxManageHostonly.cpp" line="95"/>
    56455960        <source>Failed to create the host-only adapter</source>
    56465961        <translation>Не удалось создать виртуальный адаптер хоста</translation>
    56475962    </message>
    56485963    <message>
    5649         <location filename="../VBoxManageHostonly.cpp" line="106"/>
     5964        <location filename="../VBoxManageHostonly.cpp" line="104"/>
    56505965        <source>Interface &apos;%ls&apos; was successfully created
    56515966</source>
     
    56545969    </message>
    56555970    <message>
    5656         <location filename="../VBoxManageHostonly.cpp" line="125"/>
    5657         <location filename="../VBoxManageHostonly.cpp" line="216"/>
     5971        <location filename="../VBoxManageHostonly.cpp" line="123"/>
     5972        <location filename="../VBoxManageHostonly.cpp" line="214"/>
    56585973        <source>Only one interface name can be specified</source>
    56595974        <translation>Может быть указано только одно имя интерфейса</translation>
    56605975    </message>
    56615976    <message>
    5662         <location filename="../VBoxManageHostonly.cpp" line="133"/>
     5977        <location filename="../VBoxManageHostonly.cpp" line="131"/>
    56635978        <source>No interface name was specified</source>
    56645979        <translation>Не указано имя интерфейса</translation>
    56655980    </message>
    56665981    <message>
    5667         <location filename="../VBoxManageHostonly.cpp" line="151"/>
     5982        <location filename="../VBoxManageHostonly.cpp" line="149"/>
    56685983        <source>Failed to remove the host-only adapter</source>
    56695984        <translation>Не удалось удалить виртуальный адаптер хоста</translation>
    56705985    </message>
    56715986    <message>
    5672         <location filename="../VBoxManageHostonly.cpp" line="195"/>
     5987        <location filename="../VBoxManageHostonly.cpp" line="193"/>
    56735988        <source>The --ip option is specified more than once</source>
    56745989        <translation>Опция --ip указана более одного раза</translation>
    56755990    </message>
    56765991    <message>
    5677         <location filename="../VBoxManageHostonly.cpp" line="200"/>
     5992        <location filename="../VBoxManageHostonly.cpp" line="198"/>
    56785993        <source>The --netmask option is specified more than once</source>
    56795994        <translation>Опция --netmask указана более одного раза</translation>
    56805995    </message>
    56815996    <message>
    5682         <location filename="../VBoxManageHostonly.cpp" line="205"/>
     5997        <location filename="../VBoxManageHostonly.cpp" line="203"/>
    56835998        <source>The --ipv6 option is specified more than once</source>
    56845999        <translation>Опция --ipv6 указана более одного раза</translation>
    56856000    </message>
    56866001    <message>
    5687         <location filename="../VBoxManageHostonly.cpp" line="210"/>
     6002        <location filename="../VBoxManageHostonly.cpp" line="208"/>
    56886003        <source>The --netmasklengthv6 option is specified more than once</source>
    56896004        <translation>Опция --netmasklengthv6 указана более одного раза</translation>
    56906005    </message>
    56916006    <message>
    5692         <location filename="../VBoxManageHostonly.cpp" line="227"/>
     6007        <location filename="../VBoxManageHostonly.cpp" line="224"/>
    56936008        <source>You can not use --dhcp with static ip configuration parameters: --ip, --netmask, --ipv6 and --netmasklengthv6.</source>
    56946009        <translation>Нельзя использовать --dhcp с параметрами конфигурации статического ip: --ip, --netmask, --ipv6 and --netmasklengthv6.</translation>
    56956010    </message>
    56966011    <message>
    5697         <location filename="../VBoxManageHostonly.cpp" line="230"/>
     6012        <location filename="../VBoxManageHostonly.cpp" line="226"/>
    56986013        <source>You can not use ipv4 configuration (--ip and --netmask) with ipv6 (--ipv6 and --netmasklengthv6) simultaneously.</source>
    56996014        <translation>Нельзя использовать конфигурацию ipv4 (--ip и --netmask) с ipv6 (--ipv6 и --netmasklengthv6) одновременно.</translation>
    57006015    </message>
    57016016    <message>
    5702         <location filename="../VBoxManageHostonly.cpp" line="238"/>
     6017        <location filename="../VBoxManageHostonly.cpp" line="234"/>
    57036018        <source>Could not find interface &apos;%s&apos;</source>
    57046019        <translation>Невозможно найти интерфейс &apos;%s&apos;</translation>
    57056020    </message>
    57066021    <message>
    5707         <location filename="../VBoxManageHostonly.cpp" line="254"/>
     6022        <location filename="../VBoxManageHostonly.cpp" line="250"/>
    57086023        <source>IPv6 setting is not supported for this adapter</source>
    57096024        <translation>Найстройки IPv6 не поддерживаются для этого адаптера</translation>
    57106025    </message>
    57116026    <message>
    5712         <location filename="../VBoxManageHostonly.cpp" line="263"/>
     6027        <location filename="../VBoxManageHostonly.cpp" line="259"/>
    57136028        <source>Neither -dhcp nor -ip nor -ipv6 was specfified</source>
    57146029        <translation>Не указаны ни -dhcp ни -ip ни -ipv6</translation>
    57156030    </message>
    57166031    <message>
    5717         <location filename="../VBoxManageHostonly.cpp" line="272"/>
    5718         <location filename="../VBoxManageHostonly.cpp" line="509"/>
     6032        <location filename="../VBoxManageHostonly.cpp" line="268"/>
     6033        <location filename="../VBoxManageHostonly.cpp" line="514"/>
    57196034        <source>No sub-command specified</source>
    57206035        <translation>Не указана подкоманда</translation>
    57216036    </message>
    57226037    <message>
    5723         <location filename="../VBoxManageHostonly.cpp" line="284"/>
    5724         <location filename="../VBoxManageHostonly.cpp" line="528"/>
     6038        <location filename="../VBoxManageHostonly.cpp" line="289"/>
     6039        <location filename="../VBoxManageHostonly.cpp" line="533"/>
    57256040        <source>Unknown sub-command &apos;%s&apos;</source>
    57266041        <translation>Неизвестная подкоманда: &apos;%s&apos;</translation>
    57276042    </message>
    57286043    <message>
    5729         <location filename="../VBoxManageHostonly.cpp" line="405"/>
     6044        <location filename="../VBoxManageHostonly.cpp" line="410"/>
    57306045        <source>The --name parameter must be specified</source>
    57316046        <translation>Параметр --name должен быть указан</translation>
    57326047    </message>
    57336048    <message>
    5734         <location filename="../VBoxManageHostonly.cpp" line="407"/>
     6049        <location filename="../VBoxManageHostonly.cpp" line="412"/>
    57356050        <source>The --netmask parameter must be specified</source>
    57366051        <translation>Параметр --netmask должен быть указан</translation>
    57376052    </message>
    57386053    <message>
    5739         <location filename="../VBoxManageHostonly.cpp" line="409"/>
     6054        <location filename="../VBoxManageHostonly.cpp" line="414"/>
    57406055        <source>The --lower-ip parameter must be specified</source>
    57416056        <translation>Параметр --lower-ip должен быть указан</translation>
    57426057    </message>
    57436058    <message>
    5744         <location filename="../VBoxManageHostonly.cpp" line="411"/>
     6059        <location filename="../VBoxManageHostonly.cpp" line="416"/>
    57456060        <source>The --upper-ip parameter must be specified</source>
    57466061        <translation>Параметр --upper-ip должен быть указан</translation>
    57476062    </message>
    57486063    <message>
    5749         <location filename="../VBoxManageHostonly.cpp" line="442"/>
    5750         <location filename="../VBoxManageHostonly.cpp" line="498"/>
     6064        <location filename="../VBoxManageHostonly.cpp" line="447"/>
     6065        <location filename="../VBoxManageHostonly.cpp" line="503"/>
    57516066        <source>Either --name or --id parameter must be specified</source>
    57526067        <translation>Необходимо указать либо --name либо --id</translation>
     
    57566071    <name>Info</name>
    57576072    <message>
    5758         <location filename="../VBoxManageInfo.cpp" line="286"/>
     6073        <location filename="../VBoxManageInfo.cpp" line="284"/>
    57596074        <source>   %sName: %ls (UUID: %s)%s
    57606075</source>
     
    57636078    </message>
    57646079    <message>
    5765         <location filename="../VBoxManageInfo.cpp" line="294"/>
     6080        <location filename="../VBoxManageInfo.cpp" line="292"/>
    57666081        <source>   %sDescription:
    57676082%ls
     
    57726087    </message>
    57736088    <message>
    5774         <location filename="../VBoxManageInfo.cpp" line="343"/>
     6089        <location filename="../VBoxManageInfo.cpp" line="341"/>
    57756090        <source>powered off</source>
    57766091        <translation>выключена</translation>
    57776092    </message>
    57786093    <message>
    5779         <location filename="../VBoxManageInfo.cpp" line="345"/>
     6094        <location filename="../VBoxManageInfo.cpp" line="343"/>
    57806095        <source>saved</source>
    57816096        <translation>сохранена</translation>
    57826097    </message>
    57836098    <message>
    5784         <location filename="../VBoxManageInfo.cpp" line="347"/>
     6099        <location filename="../VBoxManageInfo.cpp" line="345"/>
    57856100        <source>teleported</source>
    57866101        <translation>портирована</translation>
    57876102    </message>
    57886103    <message>
    5789         <location filename="../VBoxManageInfo.cpp" line="349"/>
     6104        <location filename="../VBoxManageInfo.cpp" line="347"/>
    57906105        <source>aborted</source>
    57916106        <translation>прервана</translation>
    57926107    </message>
    57936108    <message>
    5794         <location filename="../VBoxManageInfo.cpp" line="351"/>
     6109        <location filename="../VBoxManageInfo.cpp" line="349"/>
    57956110        <source>aborted-saved</source>
    57966111        <translation>прервана-сохранена</translation>
    57976112    </message>
    57986113    <message>
    5799         <location filename="../VBoxManageInfo.cpp" line="353"/>
     6114        <location filename="../VBoxManageInfo.cpp" line="351"/>
    58006115        <source>running</source>
    58016116        <translation>работает</translation>
    58026117    </message>
    58036118    <message>
    5804         <location filename="../VBoxManageInfo.cpp" line="355"/>
    5805         <location filename="../VBoxManageInfo.cpp" line="401"/>
     6119        <location filename="../VBoxManageInfo.cpp" line="353"/>
     6120        <location filename="../VBoxManageInfo.cpp" line="399"/>
    58066121        <source>paused</source>
    58076122        <translation>приостановлена</translation>
    58086123    </message>
    58096124    <message>
    5810         <location filename="../VBoxManageInfo.cpp" line="357"/>
     6125        <location filename="../VBoxManageInfo.cpp" line="355"/>
    58116126        <source>guru meditation</source>
    58126127        <translation>гуру медитация</translation>
    58136128    </message>
    58146129    <message>
    5815         <location filename="../VBoxManageInfo.cpp" line="359"/>
     6130        <location filename="../VBoxManageInfo.cpp" line="357"/>
    58166131        <source>teleporting</source>
    58176132        <translation>портирование</translation>
    58186133    </message>
    58196134    <message>
    5820         <location filename="../VBoxManageInfo.cpp" line="361"/>
     6135        <location filename="../VBoxManageInfo.cpp" line="359"/>
    58216136        <source>live snapshotting</source>
    58226137        <translation>создание живого снимка</translation>
    58236138    </message>
    58246139    <message>
    5825         <location filename="../VBoxManageInfo.cpp" line="363"/>
     6140        <location filename="../VBoxManageInfo.cpp" line="361"/>
    58266141        <source>starting</source>
    58276142        <translation>запуск</translation>
    58286143    </message>
    58296144    <message>
    5830         <location filename="../VBoxManageInfo.cpp" line="365"/>
     6145        <location filename="../VBoxManageInfo.cpp" line="363"/>
    58316146        <source>stopping</source>
    58326147        <translation>остановка</translation>
    58336148    </message>
    58346149    <message>
    5835         <location filename="../VBoxManageInfo.cpp" line="367"/>
     6150        <location filename="../VBoxManageInfo.cpp" line="365"/>
    58366151        <source>saving</source>
    58376152        <translation>сохранение</translation>
    58386153    </message>
    58396154    <message>
    5840         <location filename="../VBoxManageInfo.cpp" line="369"/>
     6155        <location filename="../VBoxManageInfo.cpp" line="367"/>
    58416156        <source>restoring</source>
    58426157        <translation>восстановление</translation>
    58436158    </message>
    58446159    <message>
    5845         <location filename="../VBoxManageInfo.cpp" line="371"/>
     6160        <location filename="../VBoxManageInfo.cpp" line="369"/>
    58466161        <source>teleporting paused vm</source>
    58476162        <translation>портирование приостановленной вм</translation>
    58486163    </message>
    58496164    <message>
    5850         <location filename="../VBoxManageInfo.cpp" line="373"/>
     6165        <location filename="../VBoxManageInfo.cpp" line="371"/>
    58516166        <source>teleporting (incoming)</source>
    58526167        <translation>портирование (извне)</translation>
    58536168    </message>
    58546169    <message>
    5855         <location filename="../VBoxManageInfo.cpp" line="375"/>
     6170        <location filename="../VBoxManageInfo.cpp" line="373"/>
    58566171        <source>deleting snapshot live</source>
    58576172        <translation>удаление живого снимка</translation>
    58586173    </message>
    58596174    <message>
    5860         <location filename="../VBoxManageInfo.cpp" line="377"/>
     6175        <location filename="../VBoxManageInfo.cpp" line="375"/>
    58616176        <source>deleting snapshot live paused</source>
    58626177        <translation>удаление живого снимка приостановлено</translation>
    58636178    </message>
    58646179    <message>
    5865         <location filename="../VBoxManageInfo.cpp" line="379"/>
     6180        <location filename="../VBoxManageInfo.cpp" line="377"/>
    58666181        <source>online snapshotting</source>
    58676182        <translation>создание онлайн снимка</translation>
    58686183    </message>
    58696184    <message>
    5870         <location filename="../VBoxManageInfo.cpp" line="381"/>
     6185        <location filename="../VBoxManageInfo.cpp" line="379"/>
    58716186        <source>restoring snapshot</source>
    58726187        <translation>восстановление снимка</translation>
    58736188    </message>
    58746189    <message>
    5875         <location filename="../VBoxManageInfo.cpp" line="383"/>
     6190        <location filename="../VBoxManageInfo.cpp" line="381"/>
    58766191        <source>deleting snapshot</source>
    58776192        <translation>удаление снимка</translation>
    58786193    </message>
    58796194    <message>
    5880         <location filename="../VBoxManageInfo.cpp" line="385"/>
     6195        <location filename="../VBoxManageInfo.cpp" line="383"/>
    58816196        <source>setting up</source>
    58826197        <translation>настройка</translation>
    58836198    </message>
    58846199    <message>
    5885         <location filename="../VBoxManageInfo.cpp" line="387"/>
     6200        <location filename="../VBoxManageInfo.cpp" line="385"/>
    58866201        <source>offline snapshotting</source>
    58876202        <translation>создание офлайн снимка</translation>
    58886203    </message>
    58896204    <message>
    5890         <location filename="../VBoxManageInfo.cpp" line="391"/>
    5891         <location filename="../VBoxManageInfo.cpp" line="418"/>
    5892         <location filename="../VBoxManageInfo.cpp" line="448"/>
    5893         <location filename="../VBoxManageInfo.cpp" line="691"/>
    5894         <location filename="../VBoxManageInfo.cpp" line="1153"/>
    5895         <location filename="../VBoxManageInfo.cpp" line="1173"/>
    5896         <location filename="../VBoxManageInfo.cpp" line="1773"/>
    5897         <location filename="../VBoxManageInfo.cpp" line="1825"/>
    5898         <location filename="../VBoxManageInfo.cpp" line="2377"/>
     6205        <location filename="../VBoxManageInfo.cpp" line="389"/>
     6206        <location filename="../VBoxManageInfo.cpp" line="416"/>
     6207        <location filename="../VBoxManageInfo.cpp" line="446"/>
     6208        <location filename="../VBoxManageInfo.cpp" line="699"/>
     6209        <location filename="../VBoxManageInfo.cpp" line="1186"/>
     6210        <location filename="../VBoxManageInfo.cpp" line="1206"/>
     6211        <location filename="../VBoxManageInfo.cpp" line="1806"/>
     6212        <location filename="../VBoxManageInfo.cpp" line="1860"/>
     6213        <location filename="../VBoxManageInfo.cpp" line="2412"/>
    58996214        <source>unknown</source>
    59006215        <translation>неизвестно</translation>
    59016216    </message>
    59026217    <message>
    5903         <location filename="../VBoxManageInfo.cpp" line="399"/>
    5904         <location filename="../VBoxManageInfo.cpp" line="2703"/>
    5905         <location filename="../VBoxManageInfo.cpp" line="2793"/>
    5906         <location filename="../VBoxManageInfo.cpp" line="2795"/>
     6218        <location filename="../VBoxManageInfo.cpp" line="397"/>
     6219        <location filename="../VBoxManageInfo.cpp" line="2738"/>
     6220        <location filename="../VBoxManageInfo.cpp" line="2828"/>
     6221        <location filename="../VBoxManageInfo.cpp" line="2830"/>
    59076222        <source>not active</source>
    59086223        <translation>неактивно</translation>
    59096224    </message>
    59106225    <message>
    5911         <location filename="../VBoxManageInfo.cpp" line="403"/>
     6226        <location filename="../VBoxManageInfo.cpp" line="401"/>
    59126227        <source>pre-initializing</source>
    59136228        <translation>преинициализация</translation>
    59146229    </message>
    59156230    <message>
    5916         <location filename="../VBoxManageInfo.cpp" line="405"/>
     6231        <location filename="../VBoxManageInfo.cpp" line="403"/>
    59176232        <source>initializing</source>
    59186233        <translation>инициализация</translation>
    59196234    </message>
    59206235    <message>
    5921         <location filename="../VBoxManageInfo.cpp" line="407"/>
     6236        <location filename="../VBoxManageInfo.cpp" line="405"/>
    59226237        <source>active/running</source>
    59236238        <translation>активно/работает</translation>
    59246239    </message>
    59256240    <message>
    5926         <location filename="../VBoxManageInfo.cpp" line="409"/>
     6241        <location filename="../VBoxManageInfo.cpp" line="407"/>
    59276242        <source>terminating</source>
    59286243        <translation>завершение</translation>
    59296244    </message>
    59306245    <message>
    5931         <location filename="../VBoxManageInfo.cpp" line="411"/>
     6246        <location filename="../VBoxManageInfo.cpp" line="409"/>
    59326247        <source>terminated</source>
    59336248        <translation>завершено</translation>
    59346249    </message>
    59356250    <message>
    5936         <location filename="../VBoxManageInfo.cpp" line="413"/>
     6251        <location filename="../VBoxManageInfo.cpp" line="411"/>
    59376252        <source>failed</source>
    59386253        <translation>отказ</translation>
    59396254    </message>
    59406255    <message>
    5941         <location filename="../VBoxManageInfo.cpp" line="684"/>
    5942         <location filename="../VBoxManageInfo.cpp" line="1371"/>
    5943         <location filename="../VBoxManageInfo.cpp" line="2104"/>
     6256        <location filename="../VBoxManageInfo.cpp" line="692"/>
     6257        <location filename="../VBoxManageInfo.cpp" line="1404"/>
     6258        <location filename="../VBoxManageInfo.cpp" line="2139"/>
    59446259        <source>Null</source>
    59456260        <translation>Пусто</translation>
    59466261    </message>
    59476262    <message>
    5948         <location filename="../VBoxManageInfo.cpp" line="685"/>
     6263        <location filename="../VBoxManageInfo.cpp" line="693"/>
    59496264        <source>Disk</source>
    59506265        <translation>Диск</translation>
    59516266    </message>
    59526267    <message>
    5953         <location filename="../VBoxManageInfo.cpp" line="686"/>
    5954         <location filename="../VBoxManageInfo.cpp" line="1262"/>
     6268        <location filename="../VBoxManageInfo.cpp" line="694"/>
     6269        <location filename="../VBoxManageInfo.cpp" line="1295"/>
    59556270        <source>Network</source>
    59566271        <translation>Сеть</translation>
    59576272    </message>
    59586273    <message>
    5959         <location filename="../VBoxManageInfo.cpp" line="723"/>
    59606274        <source>Name: &apos;%ls&apos;, Type: %s, Limit: none (disabled)
    59616275</source>
    5962         <translation>Имя: &apos;%ls&apos;, Тип: %s, Лимит: нет(отключено)
    5963 </translation>
    5964     </message>
    5965     <message>
    5966         <location filename="../VBoxManageInfo.cpp" line="764"/>
     6276        <translation type="vanished">Имя: &apos;%ls&apos;, Тип: %s, Лимит: нет(отключено)
     6277</translation>
     6278    </message>
     6279    <message>
    59676280        <source>Name: &apos;%ls&apos;, Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec)
    59686281</source>
    5969         <translation>Имя: &apos;%ls&apos;, Тип: %s, Лимит: %lld %sбит/сек (%lld %sбайт/сек)
    5970 </translation>
    5971     </message>
    5972     <message>
    5973         <location filename="../VBoxManageInfo.cpp" line="769"/>
     6282        <translation type="vanished">Имя: &apos;%ls&apos;, Тип: %s, Лимит: %lld %sбит/сек (%lld %sбайт/сек)
     6283</translation>
     6284    </message>
     6285    <message>
    59746286        <source>Name: &apos;%ls&apos;, Type: %s, Limit: %lld %sbytes/sec
    59756287</source>
    5976         <translation>Имя: &apos;%ls&apos;, Тип: %s, Лимит: %lld %sбайт/сек
    5977 </translation>
    5978     </message>
    5979     <message>
    5980         <location filename="../VBoxManageInfo.cpp" line="800"/>
     6288        <translation type="vanished">Имя: &apos;%ls&apos;, Тип: %s, Лимит: %lld %sбайт/сек
     6289</translation>
     6290    </message>
     6291    <message>
     6292        <location filename="../VBoxManageInfo.cpp" line="813"/>
    59816293        <source>Name: &apos;%ls&apos;, Host path: &apos;%ls&apos; (%s), %s%s</source>
    59826294        <translation>Имя: &apos;%ls&apos;, Путь хоста: &apos;%ls&apos; (%s), %s%s</translation>
    59836295    </message>
    59846296    <message>
    5985         <location filename="../VBoxManageInfo.cpp" line="801"/>
     6297        <location filename="../VBoxManageInfo.cpp" line="814"/>
    59866298        <source>writable</source>
    59876299        <translation>записываемый</translation>
    59886300    </message>
    59896301    <message>
    5990         <location filename="../VBoxManageInfo.cpp" line="801"/>
     6302        <location filename="../VBoxManageInfo.cpp" line="814"/>
    59916303        <source>readonly</source>
    59926304        <translation>только для чтения</translation>
    59936305    </message>
    59946306    <message>
    5995         <location filename="../VBoxManageInfo.cpp" line="802"/>
     6307        <location filename="../VBoxManageInfo.cpp" line="815"/>
    59966308        <source>, auto-mount</source>
    59976309        <translation>, автомонтирование</translation>
    59986310    </message>
    59996311    <message>
    6000         <location filename="../VBoxManageInfo.cpp" line="804"/>
     6312        <location filename="../VBoxManageInfo.cpp" line="817"/>
    60016313        <source>, mount-point: &apos;%ls&apos;
    60026314</source>
     
    60056317    </message>
    60066318    <message>
    6007         <location filename="../VBoxManageInfo.cpp" line="962"/>
    6008         <location filename="../VBoxManageInfo.cpp" line="994"/>
    6009         <location filename="../VBoxManageInfo.cpp" line="1879"/>
    6010         <location filename="../VBoxManageInfo.cpp" line="1915"/>
     6319        <location filename="../VBoxManageInfo.cpp" line="995"/>
     6320        <location filename="../VBoxManageInfo.cpp" line="1027"/>
     6321        <location filename="../VBoxManageInfo.cpp" line="1914"/>
     6322        <location filename="../VBoxManageInfo.cpp" line="1950"/>
    60116323        <source>None</source>
    60126324        <translation>Нет</translation>
    60136325    </message>
    60146326    <message>
    6015         <location filename="../VBoxManageInfo.cpp" line="967"/>
     6327        <location filename="../VBoxManageInfo.cpp" line="1000"/>
    60166328        <source>Automatic</source>
    60176329        <translation>Автоматически</translation>
    60186330    </message>
    60196331    <message>
    6020         <location filename="../VBoxManageInfo.cpp" line="982"/>
    6021         <location filename="../VBoxManageInfo.cpp" line="1024"/>
    6022         <location filename="../VBoxManageInfo.cpp" line="1395"/>
    6023         <location filename="../VBoxManageInfo.cpp" line="1873"/>
    6024         <location filename="../VBoxManageInfo.cpp" line="1910"/>
    6025         <location filename="../VBoxManageInfo.cpp" line="2089"/>
    6026         <location filename="../VBoxManageInfo.cpp" line="2090"/>
    6027         <location filename="../VBoxManageInfo.cpp" line="2091"/>
    6028         <location filename="../VBoxManageInfo.cpp" line="2234"/>
    6029         <location filename="../VBoxManageInfo.cpp" line="2263"/>
     6332        <location filename="../VBoxManageInfo.cpp" line="1015"/>
     6333        <location filename="../VBoxManageInfo.cpp" line="1057"/>
     6334        <location filename="../VBoxManageInfo.cpp" line="1428"/>
     6335        <location filename="../VBoxManageInfo.cpp" line="1908"/>
     6336        <location filename="../VBoxManageInfo.cpp" line="1945"/>
     6337        <location filename="../VBoxManageInfo.cpp" line="2124"/>
     6338        <location filename="../VBoxManageInfo.cpp" line="2125"/>
     6339        <location filename="../VBoxManageInfo.cpp" line="2126"/>
     6340        <location filename="../VBoxManageInfo.cpp" line="2269"/>
     6341        <location filename="../VBoxManageInfo.cpp" line="2298"/>
    60306342        <source>Unknown</source>
    60316343        <translation>Неизвестно</translation>
    60326344    </message>
    60336345    <message>
    6034         <location filename="../VBoxManageInfo.cpp" line="999"/>
     6346        <location filename="../VBoxManageInfo.cpp" line="1032"/>
    60356347        <source>Default</source>
    60366348        <translation>По умолчанию</translation>
    60376349    </message>
    60386350    <message>
    6039         <location filename="../VBoxManageInfo.cpp" line="1004"/>
     6351        <location filename="../VBoxManageInfo.cpp" line="1037"/>
    60406352        <source>Legacy</source>
    60416353        <translation>Устаревший</translation>
    60426354    </message>
    60436355    <message>
    6044         <location filename="../VBoxManageInfo.cpp" line="1009"/>
     6356        <location filename="../VBoxManageInfo.cpp" line="1042"/>
    60456357        <source>Minimal</source>
    60466358        <translation>Минимальный</translation>
    60476359    </message>
    60486360    <message>
    6049         <location filename="../VBoxManageInfo.cpp" line="87"/>
    6050         <location filename="../VBoxManageInfo.cpp" line="110"/>
    6051         <location filename="../VBoxManageInfo.cpp" line="133"/>
    6052         <location filename="../VBoxManageInfo.cpp" line="2205"/>
    6053         <location filename="../VBoxManageInfo.cpp" line="2314"/>
    6054         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    6055         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     6361        <location filename="../VBoxManageInfo.cpp" line="85"/>
     6362        <location filename="../VBoxManageInfo.cpp" line="108"/>
     6363        <location filename="../VBoxManageInfo.cpp" line="131"/>
     6364        <location filename="../VBoxManageInfo.cpp" line="2240"/>
     6365        <location filename="../VBoxManageInfo.cpp" line="2349"/>
     6366        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     6367        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    60566368        <source>enabled</source>
    60576369        <translation>включено</translation>
    60586370    </message>
    60596371    <message>
    6060         <location filename="../VBoxManageInfo.cpp" line="87"/>
    6061         <location filename="../VBoxManageInfo.cpp" line="110"/>
    6062         <location filename="../VBoxManageInfo.cpp" line="133"/>
    6063         <location filename="../VBoxManageInfo.cpp" line="1230"/>
    6064         <location filename="../VBoxManageInfo.cpp" line="1284"/>
    6065         <location filename="../VBoxManageInfo.cpp" line="2205"/>
    6066         <location filename="../VBoxManageInfo.cpp" line="2315"/>
    6067         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    6068         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     6372        <location filename="../VBoxManageInfo.cpp" line="85"/>
     6373        <location filename="../VBoxManageInfo.cpp" line="108"/>
     6374        <location filename="../VBoxManageInfo.cpp" line="131"/>
     6375        <location filename="../VBoxManageInfo.cpp" line="1263"/>
     6376        <location filename="../VBoxManageInfo.cpp" line="1317"/>
     6377        <location filename="../VBoxManageInfo.cpp" line="2240"/>
     6378        <location filename="../VBoxManageInfo.cpp" line="2350"/>
     6379        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     6380        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    60696381        <source>disabled</source>
    60706382        <translation>выключено</translation>
    60716383    </message>
    60726384    <message>
    6073         <location filename="../VBoxManageInfo.cpp" line="292"/>
     6385        <location filename="../VBoxManageInfo.cpp" line="290"/>
    60746386        <source>   %sDescription: %ls
    60756387</source>
     
    60786390    </message>
    60796391    <message>
    6080         <location filename="../VBoxManageInfo.cpp" line="849"/>
    6081         <location filename="../VBoxManageInfo.cpp" line="1509"/>
    6082         <location filename="../VBoxManageInfo.cpp" line="2537"/>
    6083         <location filename="../VBoxManageInfo.cpp" line="2950"/>
     6392        <location filename="../VBoxManageInfo.cpp" line="862"/>
     6393        <location filename="../VBoxManageInfo.cpp" line="1542"/>
     6394        <location filename="../VBoxManageInfo.cpp" line="2572"/>
     6395        <location filename="../VBoxManageInfo.cpp" line="2985"/>
    60846396        <source>&lt;none&gt;</source>
    60856397        <translation>&lt;нет&gt;</translation>
    60866398    </message>
    60876399    <message>
    6088         <location filename="../VBoxManageInfo.cpp" line="901"/>
    60896400        <source>  Port %u, Unit %u: UUID: %ls%s%s%s
    60906401    Location: &quot;%ls&quot;
    60916402</source>
    6092         <translation>  Порт %u, Устройство %u: UUID: %ls%s%s%s
     6403        <translation type="vanished">  Порт %u, Устройство %u: UUID: %ls%s%s%s
    60936404    Расположение: &quot;%ls&quot;
    60946405</translation>
    60956406    </message>
    60966407    <message>
    6097         <location filename="../VBoxManageInfo.cpp" line="903"/>
     6408        <location filename="../VBoxManageInfo.cpp" line="922"/>
    60986409        <source>, passthrough enabled</source>
    60996410        <translation>, прямой доступ включен</translation>
    61006411    </message>
    61016412    <message>
    6102         <location filename="../VBoxManageInfo.cpp" line="904"/>
    6103         <location filename="../VBoxManageInfo.cpp" line="933"/>
     6413        <location filename="../VBoxManageInfo.cpp" line="923"/>
     6414        <location filename="../VBoxManageInfo.cpp" line="966"/>
    61046415        <source>, temp eject</source>
    61056416        <translation>, временно извлечь</translation>
    61066417    </message>
    61076418    <message>
    6108         <location filename="../VBoxManageInfo.cpp" line="905"/>
    6109         <location filename="../VBoxManageInfo.cpp" line="934"/>
     6419        <location filename="../VBoxManageInfo.cpp" line="924"/>
     6420        <location filename="../VBoxManageInfo.cpp" line="967"/>
    61106421        <source>, ejected</source>
    61116422        <translation>, извлечено</translation>
    61126423    </message>
    61136424    <message>
    6114         <location filename="../VBoxManageInfo.cpp" line="932"/>
     6425        <location filename="../VBoxManageInfo.cpp" line="925"/>
     6426        <source>, hot-pluggable</source>
     6427        <translation type="unfinished"></translation>
     6428    </message>
     6429    <message>
     6430        <location filename="../VBoxManageInfo.cpp" line="926"/>
     6431        <source>, non-rotational (SSD)</source>
     6432        <translation type="unfinished"></translation>
     6433    </message>
     6434    <message>
     6435        <location filename="../VBoxManageInfo.cpp" line="927"/>
     6436        <source>, discards unused blocks</source>
     6437        <translation type="unfinished"></translation>
     6438    </message>
     6439    <message>
     6440        <location filename="../VBoxManageInfo.cpp" line="965"/>
    61156441        <source>  Port %u, Unit %u: Empty%s%s
    61166442</source>
     
    61196445    </message>
    61206446    <message>
    6121         <location filename="../VBoxManageInfo.cpp" line="946"/>
     6447        <location filename="../VBoxManageInfo.cpp" line="979"/>
    61226448        <source>  Port %u, Unit %u: GetMedium failed: %Rhrc
    61236449</source>
     
    61266452    </message>
    61276453    <message>
    6128         <location filename="../VBoxManageInfo.cpp" line="1073"/>
     6454        <location filename="../VBoxManageInfo.cpp" line="1106"/>
    61296455        <source>&quot;&lt;inaccessible&gt;&quot; {%s}
    61306456</source>
     
    61336459    </message>
    61346460    <message>
    6135         <location filename="../VBoxManageInfo.cpp" line="1079"/>
     6461        <location filename="../VBoxManageInfo.cpp" line="1112"/>
    61366462        <source>Name:            &lt;inaccessible!&gt;
    61376463</source>
     
    61406466    </message>
    61416467    <message>
    6142         <location filename="../VBoxManageInfo.cpp" line="1088"/>
     6468        <location filename="../VBoxManageInfo.cpp" line="1121"/>
    61436469        <source>Config file:     %ls
    61446470</source>
     
    61476473    </message>
    61486474    <message>
    6149         <location filename="../VBoxManageInfo.cpp" line="1091"/>
     6475        <location filename="../VBoxManageInfo.cpp" line="1124"/>
    61506476        <source>Access error details:
    61516477</source>
     
    61546480    </message>
    61556481    <message>
    6156         <location filename="../VBoxManageInfo.cpp" line="1111"/>
     6482        <location filename="../VBoxManageInfo.cpp" line="1144"/>
    61576483        <source>Name:</source>
    61586484        <translation>Имя:</translation>
    61596485    </message>
    61606486    <message>
    6161         <location filename="../VBoxManageInfo.cpp" line="1112"/>
     6487        <location filename="../VBoxManageInfo.cpp" line="1145"/>
    61626488        <source>Groups:</source>
    61636489        <translation>Группы:</translation>
    61646490    </message>
    61656491    <message>
    6166         <location filename="../VBoxManageInfo.cpp" line="1118"/>
    6167         <location filename="../VBoxManageInfo.cpp" line="1120"/>
     6492        <location filename="../VBoxManageInfo.cpp" line="1151"/>
     6493        <location filename="../VBoxManageInfo.cpp" line="1153"/>
    61686494        <source>Guest OS:</source>
    61696495        <translation>Гостевая ОС:</translation>
    61706496    </message>
    61716497    <message>
    6172         <location filename="../VBoxManageInfo.cpp" line="1122"/>
     6498        <location filename="../VBoxManageInfo.cpp" line="1155"/>
    61736499        <source>Config file:</source>
    61746500        <translation>Файл конфигурации:</translation>
    61756501    </message>
    61766502    <message>
    6177         <location filename="../VBoxManageInfo.cpp" line="1123"/>
     6503        <location filename="../VBoxManageInfo.cpp" line="1156"/>
    61786504        <source>Snapshot folder:</source>
    61796505        <translation>Папка снимков:</translation>
    61806506    </message>
    61816507    <message>
    6182         <location filename="../VBoxManageInfo.cpp" line="1124"/>
     6508        <location filename="../VBoxManageInfo.cpp" line="1157"/>
    61836509        <source>Log folder:</source>
    61846510        <translation>Папка журналов:</translation>
    61856511    </message>
    61866512    <message>
    6187         <location filename="../VBoxManageInfo.cpp" line="1125"/>
     6513        <location filename="../VBoxManageInfo.cpp" line="1158"/>
    61886514        <source>Hardware UUID:</source>
    61896515        <translation>Аппаратный UUID:</translation>
    61906516    </message>
    61916517    <message>
    6192         <location filename="../VBoxManageInfo.cpp" line="1126"/>
     6518        <location filename="../VBoxManageInfo.cpp" line="1159"/>
    61936519        <source>Memory size:</source>
    61946520        <translation>Размер памяти:</translation>
    61956521    </message>
    61966522    <message>
    6197         <location filename="../VBoxManageInfo.cpp" line="1127"/>
     6523        <location filename="../VBoxManageInfo.cpp" line="1160"/>
    61986524        <source>Page Fusion:</source>
    61996525        <translation>Page Fusion:</translation>
    62006526    </message>
    62016527    <message>
    6202         <location filename="../VBoxManageInfo.cpp" line="1130"/>
     6528        <location filename="../VBoxManageInfo.cpp" line="1163"/>
    62036529        <source>VRAM size:</source>
    62046530        <translation>Размер VRAM:</translation>
    62056531    </message>
    62066532    <message>
    6207         <location filename="../VBoxManageInfo.cpp" line="1131"/>
     6533        <location filename="../VBoxManageInfo.cpp" line="1164"/>
    62086534        <source>CPU exec cap:</source>
    62096535        <translation>Процент выполнения ЦПУ:</translation>
    62106536    </message>
    62116537    <message>
    6212         <location filename="../VBoxManageInfo.cpp" line="1132"/>
     6538        <location filename="../VBoxManageInfo.cpp" line="1165"/>
    62136539        <source>HPET:</source>
    62146540        <translation>HPET:</translation>
    62156541    </message>
    62166542    <message>
    6217         <location filename="../VBoxManageInfo.cpp" line="1133"/>
     6543        <location filename="../VBoxManageInfo.cpp" line="1166"/>
    62186544        <source>CPUProfile:</source>
    62196545        <translation>Профиль ЦПУ:</translation>
    62206546    </message>
    62216547    <message>
    6222         <location filename="../VBoxManageInfo.cpp" line="1144"/>
     6548        <location filename="../VBoxManageInfo.cpp" line="1177"/>
    62236549        <source>invalid</source>
    62246550        <translation>недействительный</translation>
    62256551    </message>
    62266552    <message>
    6227         <location filename="../VBoxManageInfo.cpp" line="1156"/>
     6553        <location filename="../VBoxManageInfo.cpp" line="1189"/>
    62286554        <source>Chipset:</source>
    62296555        <translation>Чипсет:</translation>
    62306556    </message>
    62316557    <message>
    6232         <location filename="../VBoxManageInfo.cpp" line="1176"/>
     6558        <location filename="../VBoxManageInfo.cpp" line="1209"/>
    62336559        <source>Firmware:</source>
    62346560        <translation>Прошивка:</translation>
    62356561    </message>
    62366562    <message>
    6237         <location filename="../VBoxManageInfo.cpp" line="1178"/>
     6563        <location filename="../VBoxManageInfo.cpp" line="1211"/>
    62386564        <source>Number of CPUs:</source>
    62396565        <translation>Число ЦПУ:</translation>
    62406566    </message>
    62416567    <message>
    6242         <location filename="../VBoxManageInfo.cpp" line="1180"/>
     6568        <location filename="../VBoxManageInfo.cpp" line="1213"/>
    62436569        <source>Long Mode:</source>
    62446570        <translation>Длинный режим:</translation>
    62456571    </message>
    62466572    <message>
    6247         <location filename="../VBoxManageInfo.cpp" line="1181"/>
     6573        <location filename="../VBoxManageInfo.cpp" line="1214"/>
    62486574        <source>Triple Fault Reset:</source>
    62496575        <translation>Сброс Тройного Отказа:</translation>
    62506576    </message>
    62516577    <message>
    6252         <location filename="../VBoxManageInfo.cpp" line="1184"/>
     6578        <location filename="../VBoxManageInfo.cpp" line="1217"/>
    62536579        <source>Nested VT-x/AMD-V:</source>
    62546580        <translation>Вложенные Nested VT-x/AMD-V:</translation>
    62556581    </message>
    62566582    <message>
    6257         <location filename="../VBoxManageInfo.cpp" line="1185"/>
     6583        <location filename="../VBoxManageInfo.cpp" line="1218"/>
    62586584        <source>CPUID Portability Level:</source>
    62596585        <translation>Уровень Портативности CPUID:</translation>
    62606586    </message>
    62616587    <message>
    6262         <location filename="../VBoxManageInfo.cpp" line="1188"/>
     6588        <location filename="../VBoxManageInfo.cpp" line="1221"/>
    62636589        <source>CPUID overrides:</source>
    62646590        <translation>CPUID замены:</translation>
    62656591    </message>
    62666592    <message>
    6267         <location filename="../VBoxManageInfo.cpp" line="1201"/>
     6593        <location filename="../VBoxManageInfo.cpp" line="1234"/>
    62686594        <source>Leaf no.      EAX      EBX      ECX      EDX
    62696595</source>
     
    62726598    </message>
    62736599    <message>
    6274         <location filename="../VBoxManageInfo.cpp" line="1213"/>
     6600        <location filename="../VBoxManageInfo.cpp" line="1246"/>
    62756601        <source>None
    62766602</source>
     
    62796605    </message>
    62806606    <message>
    6281         <location filename="../VBoxManageInfo.cpp" line="1236"/>
     6607        <location filename="../VBoxManageInfo.cpp" line="1269"/>
    62826608        <source>menu only</source>
    62836609        <translation>только меню</translation>
    62846610    </message>
    62856611    <message>
    6286         <location filename="../VBoxManageInfo.cpp" line="1242"/>
     6612        <location filename="../VBoxManageInfo.cpp" line="1275"/>
    62876613        <source>message and menu</source>
    62886614        <translation>сообщения и меню</translation>
    62896615    </message>
    62906616    <message>
    6291         <location filename="../VBoxManageInfo.cpp" line="1244"/>
     6617        <location filename="../VBoxManageInfo.cpp" line="1277"/>
    62926618        <source>Boot menu mode:</source>
    62936619        <translation>Режим загрузочного меню:</translation>
    62946620    </message>
    62956621    <message>
    6296         <location filename="../VBoxManageInfo.cpp" line="1256"/>
     6622        <location filename="../VBoxManageInfo.cpp" line="1289"/>
    62976623        <source>Floppy</source>
    62986624        <translation>Флоппи</translation>
    62996625    </message>
    63006626    <message>
    6301         <location filename="../VBoxManageInfo.cpp" line="1260"/>
     6627        <location filename="../VBoxManageInfo.cpp" line="1293"/>
    63026628        <source>HardDisk</source>
    63036629        <translation>Жесткий Диск</translation>
    63046630    </message>
    63056631    <message>
    6306         <location filename="../VBoxManageInfo.cpp" line="1266"/>
     6632        <location filename="../VBoxManageInfo.cpp" line="1299"/>
    63076633        <source>Shared Folder</source>
    63086634        <translation>Общая папка</translation>
    63096635    </message>
    63106636    <message>
    6311         <location filename="../VBoxManageInfo.cpp" line="1268"/>
     6637        <location filename="../VBoxManageInfo.cpp" line="1301"/>
    63126638        <source>Not Assigned</source>
    63136639        <translation>Не назначено</translation>
    63146640    </message>
    63156641    <message>
    6316         <location filename="../VBoxManageInfo.cpp" line="1269"/>
     6642        <location filename="../VBoxManageInfo.cpp" line="1302"/>
    63176643        <source>Boot Device %u:</source>
    63186644        <translation>Загрузочное устройство %u:</translation>
    63196645    </message>
    63206646    <message>
    6321         <location filename="../VBoxManageInfo.cpp" line="1300"/>
     6647        <location filename="../VBoxManageInfo.cpp" line="1333"/>
    63226648        <source>BIOS APIC mode:</source>
    63236649        <translation>Режим BIOS APIC:</translation>
    63246650    </message>
    63256651    <message>
    6326         <location filename="../VBoxManageInfo.cpp" line="1302"/>
     6652        <location filename="../VBoxManageInfo.cpp" line="1335"/>
    63276653        <source>Time offset:</source>
    63286654        <translation>Часовой пояс:</translation>
    63296655    </message>
    63306656    <message>
    6331         <location filename="../VBoxManageInfo.cpp" line="1302"/>
     6657        <location filename="../VBoxManageInfo.cpp" line="1335"/>
    63326658        <source>ms</source>
    63336659        <translation>мс</translation>
    63346660    </message>
    63356661    <message>
    6336         <location filename="../VBoxManageInfo.cpp" line="1306"/>
     6662        <location filename="../VBoxManageInfo.cpp" line="1339"/>
    63376663        <source>BIOS NVRAM File:</source>
    63386664        <translation>Файл BIOS NVRAM:</translation>
    63396665    </message>
    63406666    <message>
    6341         <location filename="../VBoxManageInfo.cpp" line="1307"/>
     6667        <location filename="../VBoxManageInfo.cpp" line="1340"/>
    63426668        <source>RTC:</source>
    63436669        <translation>RTC:</translation>
    63446670    </message>
    63456671    <message>
    6346         <location filename="../VBoxManageInfo.cpp" line="1307"/>
     6672        <location filename="../VBoxManageInfo.cpp" line="1340"/>
    63476673        <source>local time</source>
    63486674        <translation>локальное время</translation>
    63496675    </message>
    63506676    <message>
    6351         <location filename="../VBoxManageInfo.cpp" line="1308"/>
     6677        <location filename="../VBoxManageInfo.cpp" line="1341"/>
    63526678        <source>Hardware Virtualization:</source>
    63536679        <translation>Аппаратная Виртуализация:</translation>
    63546680    </message>
    63556681    <message>
    6356         <location filename="../VBoxManageInfo.cpp" line="1309"/>
     6682        <location filename="../VBoxManageInfo.cpp" line="1342"/>
    63576683        <source>Nested Paging:</source>
    63586684        <translation>Вложенные страницы:</translation>
    63596685    </message>
    63606686    <message>
    6361         <location filename="../VBoxManageInfo.cpp" line="1310"/>
     6687        <location filename="../VBoxManageInfo.cpp" line="1343"/>
    63626688        <source>Large Pages:</source>
    63636689        <translation>Большие Страницы:</translation>
    63646690    </message>
    63656691    <message>
    6366         <location filename="../VBoxManageInfo.cpp" line="1312"/>
     6692        <location filename="../VBoxManageInfo.cpp" line="1345"/>
    63676693        <source>VT-x Unrestricted Exec.:</source>
    63686694        <translation>VT-x Неограниченное выполнение:</translation>
    63696695    </message>
    63706696    <message>
    6371         <location filename="../VBoxManageInfo.cpp" line="1313"/>
     6697        <location filename="../VBoxManageInfo.cpp" line="1346"/>
    63726698        <source>AMD-V Virt. Vmsave/Vmload:</source>
    63736699        <translation>AMD-V Virt. Vmsave/Vmload:</translation>
    63746700    </message>
    63756701    <message>
    6376         <location filename="../VBoxManageInfo.cpp" line="1325"/>
     6702        <location filename="../VBoxManageInfo.cpp" line="1358"/>
    63776703        <source>Paravirt. Provider:</source>
    63786704        <translation>Паравиртуальный провайдер:</translation>
    63796705    </message>
    63806706    <message>
    6381         <location filename="../VBoxManageInfo.cpp" line="1330"/>
     6707        <location filename="../VBoxManageInfo.cpp" line="1363"/>
    63826708        <source>Effective Paravirt. Prov.:</source>
    63836709        <translation>Эффективный Паравиртуальный провайдер:</translation>
    63846710    </message>
    63856711    <message>
    6386         <location filename="../VBoxManageInfo.cpp" line="1335"/>
     6712        <location filename="../VBoxManageInfo.cpp" line="1368"/>
    63876713        <source>Paravirt. Debug:</source>
    63886714        <translation>Паравирутальная отладка:</translation>
    63896715    </message>
    63906716    <message>
    6391         <location filename="../VBoxManageInfo.cpp" line="1358"/>
     6717        <location filename="../VBoxManageInfo.cpp" line="1391"/>
    63926718        <source>%-28s %s (since %s)
    63936719</source>
     
    63966722    </message>
    63976723    <message>
    6398         <location filename="../VBoxManageInfo.cpp" line="1358"/>
     6724        <location filename="../VBoxManageInfo.cpp" line="1391"/>
    63996725        <source>State:</source>
    64006726        <translation>Состояние:</translation>
    64016727    </message>
    64026728    <message>
    6403         <location filename="../VBoxManageInfo.cpp" line="1402"/>
     6729        <location filename="../VBoxManageInfo.cpp" line="1435"/>
    64046730        <source>Graphics Controller:</source>
    64056731        <translation>Графический Контроллер:</translation>
    64066732    </message>
    64076733    <message>
    6408         <location filename="../VBoxManageInfo.cpp" line="1405"/>
     6734        <location filename="../VBoxManageInfo.cpp" line="1438"/>
    64096735        <source>Monitor count:</source>
    64106736        <translation>Число мониторов:</translation>
    64116737    </message>
    64126738    <message>
    6413         <location filename="../VBoxManageInfo.cpp" line="1406"/>
     6739        <location filename="../VBoxManageInfo.cpp" line="1439"/>
    64146740        <source>3D Acceleration:</source>
    64156741        <translation>3D Ускорение:</translation>
    64166742    </message>
    64176743    <message>
    6418         <location filename="../VBoxManageInfo.cpp" line="1408"/>
     6744        <location filename="../VBoxManageInfo.cpp" line="1441"/>
    64196745        <source>2D Video Acceleration:</source>
    64206746        <translation>2D Видео Ускорение:</translation>
    64216747    </message>
    64226748    <message>
    6423         <location filename="../VBoxManageInfo.cpp" line="1410"/>
     6749        <location filename="../VBoxManageInfo.cpp" line="1443"/>
    64246750        <source>Teleporter Enabled:</source>
    64256751        <translation>Телепортер включен:</translation>
    64266752    </message>
    64276753    <message>
    6428         <location filename="../VBoxManageInfo.cpp" line="1411"/>
     6754        <location filename="../VBoxManageInfo.cpp" line="1444"/>
    64296755        <source>Teleporter Port:</source>
    64306756        <translation>Порт телепортера:</translation>
    64316757    </message>
    64326758    <message>
    6433         <location filename="../VBoxManageInfo.cpp" line="1412"/>
     6759        <location filename="../VBoxManageInfo.cpp" line="1445"/>
    64346760        <source>Teleporter Address:</source>
    64356761        <translation>Адрес телепортера:</translation>
    64366762    </message>
    64376763    <message>
    6438         <location filename="../VBoxManageInfo.cpp" line="1413"/>
     6764        <location filename="../VBoxManageInfo.cpp" line="1446"/>
    64396765        <source>Teleporter Password:</source>
    64406766        <translation>Пароль телепортера:</translation>
    64416767    </message>
    64426768    <message>
    6443         <location filename="../VBoxManageInfo.cpp" line="1414"/>
     6769        <location filename="../VBoxManageInfo.cpp" line="1447"/>
    64446770        <source>Tracing Enabled:</source>
    64456771        <translation>Трассировка включена:</translation>
    64466772    </message>
    64476773    <message>
    6448         <location filename="../VBoxManageInfo.cpp" line="1415"/>
     6774        <location filename="../VBoxManageInfo.cpp" line="1448"/>
    64496775        <source>Allow Tracing to Access VM:</source>
    64506776        <translation>Разрешить трассировке доступ к ВМ:</translation>
    64516777    </message>
    64526778    <message>
    6453         <location filename="../VBoxManageInfo.cpp" line="1416"/>
     6779        <location filename="../VBoxManageInfo.cpp" line="1449"/>
    64546780        <source>Tracing Configuration:</source>
    64556781        <translation>Конфигурация трассировки:</translation>
    64566782    </message>
    64576783    <message>
    6458         <location filename="../VBoxManageInfo.cpp" line="1417"/>
     6784        <location filename="../VBoxManageInfo.cpp" line="1450"/>
    64596785        <source>Autostart Enabled:</source>
    64606786        <translation>Автостарт включен:</translation>
    64616787    </message>
    64626788    <message>
    6463         <location filename="../VBoxManageInfo.cpp" line="1418"/>
     6789        <location filename="../VBoxManageInfo.cpp" line="1451"/>
    64646790        <source>Autostart Delay:</source>
    64656791        <translation>Задержка автостарта:</translation>
    64666792    </message>
    64676793    <message>
    6468         <location filename="../VBoxManageInfo.cpp" line="1419"/>
     6794        <location filename="../VBoxManageInfo.cpp" line="1452"/>
    64696795        <source>Default Frontend:</source>
    64706796        <translation>Фронтэнд по умолчанию:</translation>
    64716797    </message>
    64726798    <message>
    6473         <location filename="../VBoxManageInfo.cpp" line="1430"/>
     6799        <location filename="../VBoxManageInfo.cpp" line="1463"/>
    64746800        <source>flat</source>
    64756801        <translation>равномерный</translation>
    64766802    </message>
    64776803    <message>
    6478         <location filename="../VBoxManageInfo.cpp" line="1436"/>
     6804        <location filename="../VBoxManageInfo.cpp" line="1469"/>
    64796805        <source>low</source>
    64806806        <translation>низкий</translation>
    64816807    </message>
    64826808    <message>
    6483         <location filename="../VBoxManageInfo.cpp" line="1442"/>
     6809        <location filename="../VBoxManageInfo.cpp" line="1475"/>
    64846810        <source>normal</source>
    64856811        <translation>нормальный</translation>
    64866812    </message>
    64876813    <message>
    6488         <location filename="../VBoxManageInfo.cpp" line="1448"/>
     6814        <location filename="../VBoxManageInfo.cpp" line="1481"/>
    64896815        <source>high</source>
    64906816        <translation>высокий</translation>
    64916817    </message>
    64926818    <message>
    6493         <location filename="../VBoxManageInfo.cpp" line="1454"/>
     6819        <location filename="../VBoxManageInfo.cpp" line="1487"/>
    64946820        <source>default</source>
    64956821        <translation>по умолчанию</translation>
    64966822    </message>
    64976823    <message>
    6498         <location filename="../VBoxManageInfo.cpp" line="1457"/>
     6824        <location filename="../VBoxManageInfo.cpp" line="1490"/>
    64996825        <source>VM process priority:</source>
    65006826        <translation>Приоритет процесса ВМ:</translation>
    65016827    </message>
    65026828    <message>
    6503         <location filename="../VBoxManageInfo.cpp" line="2846"/>
     6829        <location filename="../VBoxManageInfo.cpp" line="2881"/>
    65046830        <source>VMMDev Testing</source>
    65056831        <translation>Тестирование VMMDev</translation>
    65066832    </message>
    65076833    <message>
    6508         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    6509         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     6834        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     6835        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    65106836        <source>misconfigured</source>
    65116837        <translation>неправильно настроен</translation>
    65126838    </message>
    65136839    <message>
    6514         <location filename="../VBoxManageInfo.cpp" line="2872"/>
     6840        <location filename="../VBoxManageInfo.cpp" line="2907"/>
    65156841        <source>* Snapshots:
    65166842</source>
     
    65196845    </message>
    65206846    <message>
    6521         <location filename="../VBoxManageInfo.cpp" line="2881"/>
     6847        <location filename="../VBoxManageInfo.cpp" line="2916"/>
    65226848        <source>* Guest:
    65236849</source>
     
    65266852    </message>
    65276853    <message>
    6528         <location filename="../VBoxManageInfo.cpp" line="2918"/>
    6529         <location filename="../VBoxManageInfo.cpp" line="2950"/>
     6854        <location filename="../VBoxManageInfo.cpp" line="2953"/>
     6855        <location filename="../VBoxManageInfo.cpp" line="2985"/>
    65306856        <source>Guest Facilities:</source>
    65316857        <translation>Средства гостевой системы:</translation>
    65326858    </message>
    65336859    <message>
    6534         <location filename="../VBoxManageInfo.cpp" line="1855"/>
    6535         <location filename="../VBoxManageInfo.cpp" line="1856"/>
    6536         <location filename="../VBoxManageInfo.cpp" line="2417"/>
    6537         <location filename="../VBoxManageInfo.cpp" line="2418"/>
     6860        <location filename="../VBoxManageInfo.cpp" line="1890"/>
     6861        <location filename="../VBoxManageInfo.cpp" line="1891"/>
     6862        <location filename="../VBoxManageInfo.cpp" line="2452"/>
     6863        <location filename="../VBoxManageInfo.cpp" line="2453"/>
    65386864        <source>on</source>
    65396865        <translation>вкл</translation>
    65406866    </message>
    65416867    <message>
    6542         <location filename="../VBoxManageInfo.cpp" line="1855"/>
    6543         <location filename="../VBoxManageInfo.cpp" line="1856"/>
    6544         <location filename="../VBoxManageInfo.cpp" line="2417"/>
    6545         <location filename="../VBoxManageInfo.cpp" line="2418"/>
     6868        <location filename="../VBoxManageInfo.cpp" line="1890"/>
     6869        <location filename="../VBoxManageInfo.cpp" line="1891"/>
     6870        <location filename="../VBoxManageInfo.cpp" line="2452"/>
     6871        <location filename="../VBoxManageInfo.cpp" line="2453"/>
    65466872        <source>off</source>
    65476873        <translation>выкл</translation>
    65486874    </message>
    65496875    <message>
    6550         <location filename="../VBoxManageInfo.cpp" line="1528"/>
     6876        <location filename="../VBoxManageInfo.cpp" line="1561"/>
    65516877        <source>NIC %u:</source>
    65526878        <translation>NIC %u:</translation>
    65536879    </message>
    65546880    <message>
    6555         <location filename="../VBoxManageInfo.cpp" line="1537"/>
    6556         <location filename="../VBoxManageInfo.cpp" line="1957"/>
    6557         <location filename="../VBoxManageInfo.cpp" line="2063"/>
    6558         <location filename="../VBoxManageInfo.cpp" line="2424"/>
    6559         <location filename="../VBoxManageInfo.cpp" line="2456"/>
     6881        <location filename="../VBoxManageInfo.cpp" line="732"/>
     6882        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: none (disabled)
     6883</source>
     6884        <translation type="unfinished"></translation>
     6885    </message>
     6886    <message>
     6887        <location filename="../VBoxManageInfo.cpp" line="780"/>
     6888        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: %RI64 %s (%RI64 %s)
     6889</source>
     6890        <translation type="unfinished"></translation>
     6891    </message>
     6892    <message>
     6893        <location filename="../VBoxManageInfo.cpp" line="784"/>
     6894        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: %RI64 %s
     6895</source>
     6896        <translation type="unfinished"></translation>
     6897    </message>
     6898    <message>
     6899        <location filename="../VBoxManageInfo.cpp" line="920"/>
     6900        <source>  Port %u, Unit %u: UUID: %ls%s%s%s%s%s%s
     6901    Location: &quot;%ls&quot;
     6902</source>
     6903        <translation type="unfinished"></translation>
     6904    </message>
     6905    <message>
     6906        <location filename="../VBoxManageInfo.cpp" line="1570"/>
     6907        <location filename="../VBoxManageInfo.cpp" line="1992"/>
     6908        <location filename="../VBoxManageInfo.cpp" line="2098"/>
     6909        <location filename="../VBoxManageInfo.cpp" line="2459"/>
     6910        <location filename="../VBoxManageInfo.cpp" line="2491"/>
    65606911        <source>%-28s disabled
    65616912</source>
     
    65646915    </message>
    65656916    <message>
    6566         <location filename="../VBoxManageInfo.cpp" line="1554"/>
    6567         <location filename="../VBoxManageInfo.cpp" line="1857"/>
    6568         <location filename="../VBoxManageInfo.cpp" line="1862"/>
     6917        <location filename="../VBoxManageInfo.cpp" line="1587"/>
     6918        <location filename="../VBoxManageInfo.cpp" line="1892"/>
     6919        <location filename="../VBoxManageInfo.cpp" line="1897"/>
    65696920        <source>none</source>
    65706921        <translation>нет</translation>
    65716922    </message>
    65726923    <message>
    6573         <location filename="../VBoxManageInfo.cpp" line="1622"/>
     6924        <location filename="../VBoxManageInfo.cpp" line="1655"/>
    65746925        <source>%sNIC %d Rule(%d):   name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s
    65756926</source>
     
    65786929    </message>
    65796930    <message>
    6580         <location filename="../VBoxManageInfo.cpp" line="1645"/>
     6931        <location filename="../VBoxManageInfo.cpp" line="1678"/>
    65816932        <source>NIC %d Settings:  MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d)
    65826933</source>
     
    65856936    </message>
    65866937    <message>
    6587         <location filename="../VBoxManageInfo.cpp" line="1661"/>
     6938        <location filename="../VBoxManageInfo.cpp" line="1694"/>
    65886939        <source>Bridged Interface &apos;%ls&apos;</source>
    65896940        <translation>Интерфейс Сетевого Моста &apos;%ls&apos;</translation>
    65906941    </message>
    65916942    <message>
    6592         <location filename="../VBoxManageInfo.cpp" line="1675"/>
     6943        <location filename="../VBoxManageInfo.cpp" line="1708"/>
    65936944        <source>Internal Network &apos;%s&apos;</source>
    65946945        <translation>Внутренняя Сеть &apos;%s&apos;</translation>
    65956946    </message>
    65966947    <message>
    6597         <location filename="../VBoxManageInfo.cpp" line="1689"/>
     6948        <location filename="../VBoxManageInfo.cpp" line="1722"/>
    65986949        <source>Host-only Interface &apos;%ls&apos;</source>
    65996950        <translation>Интерфейс Виртуальной Сети &apos;%s&apos;</translation>
    66006951    </message>
    66016952    <message>
    6602         <location filename="../VBoxManageInfo.cpp" line="1704"/>
     6953        <location filename="../VBoxManageInfo.cpp" line="1737"/>
    66036954        <source>Generic &apos;%ls&apos;</source>
    66046955        <translation>Общий &apos;%ls&apos;</translation>
    66056956    </message>
    66066957    <message>
    6607         <location filename="../VBoxManageInfo.cpp" line="1733"/>
     6958        <location filename="../VBoxManageInfo.cpp" line="1766"/>
    66086959        <source>NAT Network &apos;%s&apos;</source>
    66096960        <translation>Сеть NAT &apos;%s&apos;</translation>
    66106961    </message>
    66116962    <message>
    6612         <location filename="../VBoxManageInfo.cpp" line="1748"/>
     6963        <location filename="../VBoxManageInfo.cpp" line="1781"/>
    66136964        <source>Host Only Network &apos;%s&apos;</source>
    66146965        <translation>Виртуальная Сеть &apos;%s&apos;</translation>
    66156966    </message>
    66166967    <message>
    6617         <location filename="../VBoxManageInfo.cpp" line="1764"/>
     6968        <location filename="../VBoxManageInfo.cpp" line="1797"/>
    66186969        <source>Cloud Network &apos;%s&apos;</source>
    66196970        <translation>Облачная Сеть &apos;%s&apos;</translation>
    66206971    </message>
    66216972    <message>
    6622         <location filename="../VBoxManageInfo.cpp" line="1787"/>
     6973        <location filename="../VBoxManageInfo.cpp" line="1820"/>
    66236974        <source>deny</source>
    66246975        <translation>запретить</translation>
    66256976    </message>
    66266977    <message>
    6627         <location filename="../VBoxManageInfo.cpp" line="1788"/>
     6978        <location filename="../VBoxManageInfo.cpp" line="1821"/>
    66286979        <source>allow-vms</source>
    66296980        <translation>разрешить вм</translation>
    66306981    </message>
    66316982    <message>
    6632         <location filename="../VBoxManageInfo.cpp" line="1789"/>
     6983        <location filename="../VBoxManageInfo.cpp" line="1822"/>
    66336984        <source>allow-all</source>
    66346985        <translation>разрешить всем</translation>
    66356986    </message>
    66366987    <message>
    6637         <location filename="../VBoxManageInfo.cpp" line="1853"/>
     6988        <location filename="../VBoxManageInfo.cpp" line="1888"/>
    66386989        <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls
    66396990</source>
     
    66426993    </message>
    66436994    <message>
    6644         <location filename="../VBoxManageInfo.cpp" line="1883"/>
     6995        <location filename="../VBoxManageInfo.cpp" line="1918"/>
    66456996        <source>PS/2 Mouse</source>
    66466997        <translation>PS/2 Мышь</translation>
    66476998    </message>
    66486999    <message>
    6649         <location filename="../VBoxManageInfo.cpp" line="1887"/>
     7000        <location filename="../VBoxManageInfo.cpp" line="1922"/>
    66507001        <source>USB Mouse</source>
    66517002        <translation>USB Мышь</translation>
    66527003    </message>
    66537004    <message>
    6654         <location filename="../VBoxManageInfo.cpp" line="1891"/>
     7005        <location filename="../VBoxManageInfo.cpp" line="1926"/>
    66557006        <source>USB Tablet</source>
    66567007        <translation>USB Планшет</translation>
    66577008    </message>
    66587009    <message>
    6659         <location filename="../VBoxManageInfo.cpp" line="1895"/>
     7010        <location filename="../VBoxManageInfo.cpp" line="1930"/>
    66607011        <source>USB Tablet and PS/2 Mouse</source>
    66617012        <translation>USB Планшет и PS/2 Мышь</translation>
    66627013    </message>
    66637014    <message>
    6664         <location filename="../VBoxManageInfo.cpp" line="1899"/>
     7015        <location filename="../VBoxManageInfo.cpp" line="1934"/>
    66657016        <source>USB Multi-Touch</source>
    66667017        <translation>USB Мультитач</translation>
    66677018    </message>
    66687019    <message>
    6669         <location filename="../VBoxManageInfo.cpp" line="1905"/>
     7020        <location filename="../VBoxManageInfo.cpp" line="1940"/>
    66707021        <source>Pointing Device:</source>
    66717022        <translation>Указательное Устройство:</translation>
    66727023    </message>
    66737024    <message>
    6674         <location filename="../VBoxManageInfo.cpp" line="1919"/>
     7025        <location filename="../VBoxManageInfo.cpp" line="1954"/>
    66757026        <source>PS/2 Keyboard</source>
    66767027        <translation>PS/2 Клавиатура</translation>
    66777028    </message>
    66787029    <message>
    6679         <location filename="../VBoxManageInfo.cpp" line="1923"/>
     7030        <location filename="../VBoxManageInfo.cpp" line="1958"/>
    66807031        <source>USB Keyboard</source>
    66817032        <translation>USB Клавиатура</translation>
    66827033    </message>
    66837034    <message>
    6684         <location filename="../VBoxManageInfo.cpp" line="1927"/>
     7035        <location filename="../VBoxManageInfo.cpp" line="1962"/>
    66857036        <source>USB and PS/2 Keyboard</source>
    66867037        <translation>USB и PS/2 Клавиатура</translation>
    66877038    </message>
    66887039    <message>
    6689         <location filename="../VBoxManageInfo.cpp" line="1933"/>
     7040        <location filename="../VBoxManageInfo.cpp" line="1968"/>
    66907041        <source>Keyboard Device:</source>
    66917042        <translation>Клавиатура:</translation>
    66927043    </message>
    66937044    <message>
    6694         <location filename="../VBoxManageInfo.cpp" line="1947"/>
     7045        <location filename="../VBoxManageInfo.cpp" line="1982"/>
    66957046        <source>UART %u:</source>
    66967047        <translation>UART %u:</translation>
    66977048    </message>
    66987049    <message>
    6699         <location filename="../VBoxManageInfo.cpp" line="1976"/>
    6700         <location filename="../VBoxManageInfo.cpp" line="2076"/>
     7050        <location filename="../VBoxManageInfo.cpp" line="2011"/>
     7051        <location filename="../VBoxManageInfo.cpp" line="2111"/>
    67017052        <source>%-28s I/O base: %#06x, IRQ: %d</source>
    67027053        <translation>%-28s База I/O: %#06x, IRQ: %d</translation>
    67037054    </message>
    67047055    <message>
    6705         <location filename="../VBoxManageInfo.cpp" line="1984"/>
     7056        <location filename="../VBoxManageInfo.cpp" line="2019"/>
    67067057        <source>, disconnected</source>
    67077058        <translation>, отсоединен</translation>
    67087059    </message>
    67097060    <message>
    6710         <location filename="../VBoxManageInfo.cpp" line="1991"/>
     7061        <location filename="../VBoxManageInfo.cpp" line="2026"/>
    67117062        <source>, attached to raw file &apos;%ls&apos;
    67127063</source>
     
    67157066    </message>
    67167067    <message>
    6717         <location filename="../VBoxManageInfo.cpp" line="1999"/>
     7068        <location filename="../VBoxManageInfo.cpp" line="2034"/>
    67187069        <source>, attached to tcp (%s) &apos;%ls&apos;</source>
    67197070        <translation>, подключен к tcp (%s) &apos;%ls&apos;</translation>
    67207071    </message>
    67217072    <message>
    6722         <location filename="../VBoxManageInfo.cpp" line="2000"/>
    6723         <location filename="../VBoxManageInfo.cpp" line="2008"/>
     7073        <location filename="../VBoxManageInfo.cpp" line="2035"/>
     7074        <location filename="../VBoxManageInfo.cpp" line="2043"/>
    67247075        <source>server</source>
    67257076        <translation>сервер</translation>
    67267077    </message>
    67277078    <message>
    6728         <location filename="../VBoxManageInfo.cpp" line="2000"/>
    6729         <location filename="../VBoxManageInfo.cpp" line="2008"/>
     7079        <location filename="../VBoxManageInfo.cpp" line="2035"/>
     7080        <location filename="../VBoxManageInfo.cpp" line="2043"/>
    67307081        <source>client</source>
    67317082        <translation>клиент</translation>
    67327083    </message>
    67337084    <message>
    6734         <location filename="../VBoxManageInfo.cpp" line="2007"/>
     7085        <location filename="../VBoxManageInfo.cpp" line="2042"/>
    67357086        <source>, attached to pipe (%s) &apos;%ls&apos;</source>
    67367087        <translation>, подключен к pipe (%s) &apos;%ls&apos;</translation>
    67377088    </message>
    67387089    <message>
    6739         <location filename="../VBoxManageInfo.cpp" line="2015"/>
     7090        <location filename="../VBoxManageInfo.cpp" line="2050"/>
    67407091        <source>, attached to device &apos;%ls&apos;</source>
    67417092        <translation>, подключен к устройству &apos;%ls&apos;</translation>
    67427093    </message>
    67437094    <message>
    6744         <location filename="../VBoxManageInfo.cpp" line="2053"/>
     7095        <location filename="../VBoxManageInfo.cpp" line="2088"/>
    67457096        <source>LPT %u:</source>
    67467097        <translation>LPT %u:</translation>
    67477098    </message>
    67487099    <message>
    6749         <location filename="../VBoxManageInfo.cpp" line="2080"/>
     7100        <location filename="../VBoxManageInfo.cpp" line="2115"/>
    67507101        <source>, attached to device &apos;%ls&apos;
    67517102</source>
     
    67547105    </message>
    67557106    <message>
    6756         <location filename="../VBoxManageInfo.cpp" line="2205"/>
     7107        <location filename="../VBoxManageInfo.cpp" line="2240"/>
    67577108        <source>Audio:</source>
    67587109        <translation>Аудио:</translation>
    67597110    </message>
    67607111    <message>
    6761         <location filename="../VBoxManageInfo.cpp" line="2207"/>
     7112        <location filename="../VBoxManageInfo.cpp" line="2242"/>
    67627113        <source> (Driver: %s, Controller: %s, Codec: %s)</source>
    67637114        <translation> (Драйвер: %s, Контроллер: %s, Кодек: %s)</translation>
    67647115    </message>
    67657116    <message>
    6766         <location filename="../VBoxManageInfo.cpp" line="2210"/>
     7117        <location filename="../VBoxManageInfo.cpp" line="2245"/>
    67677118        <source>Audio playback:</source>
    67687119        <translation>Аудио воспроизведение:</translation>
    67697120    </message>
    67707121    <message>
    6771         <location filename="../VBoxManageInfo.cpp" line="2211"/>
     7122        <location filename="../VBoxManageInfo.cpp" line="2246"/>
    67727123        <source>Audio capture:</source>
    67737124        <translation>Аудио захват:</translation>
    67747125    </message>
    67757126    <message>
    6776         <location filename="../VBoxManageInfo.cpp" line="2225"/>
    6777         <location filename="../VBoxManageInfo.cpp" line="2254"/>
     7127        <location filename="../VBoxManageInfo.cpp" line="2260"/>
     7128        <location filename="../VBoxManageInfo.cpp" line="2289"/>
    67787129        <source>HostToGuest</source>
    67797130        <translation>Хост-&gt;Гость</translation>
    67807131    </message>
    67817132    <message>
    6782         <location filename="../VBoxManageInfo.cpp" line="2228"/>
    6783         <location filename="../VBoxManageInfo.cpp" line="2257"/>
     7133        <location filename="../VBoxManageInfo.cpp" line="2263"/>
     7134        <location filename="../VBoxManageInfo.cpp" line="2292"/>
    67847135        <source>GuestToHost</source>
    67857136        <translation>Гость-&gt;Хост</translation>
    67867137    </message>
    67877138    <message>
    6788         <location filename="../VBoxManageInfo.cpp" line="2231"/>
    6789         <location filename="../VBoxManageInfo.cpp" line="2260"/>
     7139        <location filename="../VBoxManageInfo.cpp" line="2266"/>
     7140        <location filename="../VBoxManageInfo.cpp" line="2295"/>
    67907141        <source>Bidirectional</source>
    67917142        <translation>Двунаправленный</translation>
    67927143    </message>
    67937144    <message>
    6794         <location filename="../VBoxManageInfo.cpp" line="2237"/>
     7145        <location filename="../VBoxManageInfo.cpp" line="2272"/>
    67957146        <source>Clipboard Mode:</source>
    67967147        <translation>Режим буфера обмена:</translation>
    67977148    </message>
    67987149    <message>
    6799         <location filename="../VBoxManageInfo.cpp" line="2239"/>
     7150        <location filename="../VBoxManageInfo.cpp" line="2274"/>
    68007151        <source>Clipboard file transfers:</source>
    68017152        <translation>Передача файлов через буфер обмена:</translation>
    68027153    </message>
    68037154    <message>
    6804         <location filename="../VBoxManageInfo.cpp" line="2266"/>
     7155        <location filename="../VBoxManageInfo.cpp" line="2301"/>
    68057156        <source>Drag and drop Mode:</source>
    68067157        <translation>Режим Drag and Drop:</translation>
    68077158    </message>
    68087159    <message>
    6809         <location filename="../VBoxManageInfo.cpp" line="2277"/>
     7160        <location filename="../VBoxManageInfo.cpp" line="2312"/>
    68107161        <source>Session name:</source>
    68117162        <translation>Имя сессии:</translation>
    68127163    </message>
    68137164    <message>
    6814         <location filename="../VBoxManageInfo.cpp" line="2310"/>
     7165        <location filename="../VBoxManageInfo.cpp" line="2345"/>
    68157166        <source>unknown status</source>
    68167167        <translation>неизвестный статус</translation>
    68177168    </message>
    68187169    <message>
    6819         <location filename="../VBoxManageInfo.cpp" line="2313"/>
     7170        <location filename="../VBoxManageInfo.cpp" line="2348"/>
    68207171        <source>blank</source>
    68217172        <translation>пустой</translation>
    68227173    </message>
    68237174    <message>
    6824         <location filename="../VBoxManageInfo.cpp" line="2318"/>
     7175        <location filename="../VBoxManageInfo.cpp" line="2353"/>
    68257176        <source>Video mode:</source>
    68267177        <translation>Видео режим:</translation>
    68277178    </message>
    68287179    <message>
    6829         <location filename="../VBoxManageInfo.cpp" line="2359"/>
     7180        <location filename="../VBoxManageInfo.cpp" line="2394"/>
    68307181        <source>null</source>
    68317182        <translation>пусто</translation>
    68327183    </message>
    68337184    <message>
    6834         <location filename="../VBoxManageInfo.cpp" line="2365"/>
     7185        <location filename="../VBoxManageInfo.cpp" line="2400"/>
    68357186        <source>external</source>
    68367187        <translation>внешний</translation>
    68377188    </message>
    68387189    <message>
    6839         <location filename="../VBoxManageInfo.cpp" line="2371"/>
     7190        <location filename="../VBoxManageInfo.cpp" line="2406"/>
    68407191        <source>guest</source>
    68417192        <translation>гостевой</translation>
    68427193    </message>
    68437194    <message>
    6844         <location filename="../VBoxManageInfo.cpp" line="2416"/>
     7195        <location filename="../VBoxManageInfo.cpp" line="2451"/>
    68457196        <source>%-28s enabled (Address %ls, Ports %ls, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s)
    68467197</source>
     
    68497200    </message>
    68507201    <message>
    6851         <location filename="../VBoxManageInfo.cpp" line="2420"/>
     7202        <location filename="../VBoxManageInfo.cpp" line="2455"/>
    68527203        <source>VRDE port:</source>
    68537204        <translation>Порт VRDE:</translation>
    68547205    </message>
    68557206    <message>
    6856         <location filename="../VBoxManageInfo.cpp" line="2422"/>
     7207        <location filename="../VBoxManageInfo.cpp" line="2457"/>
    68577208        <source>%-28s enabled (Quality %ls)
    68587209</source>
     
    68617212    </message>
    68627213    <message>
    6863         <location filename="../VBoxManageInfo.cpp" line="2422"/>
    6864         <location filename="../VBoxManageInfo.cpp" line="2424"/>
     7214        <location filename="../VBoxManageInfo.cpp" line="2457"/>
     7215        <location filename="../VBoxManageInfo.cpp" line="2459"/>
    68657216        <source>Video redirection:</source>
    68667217        <translation>Видео перенаправление:</translation>
    68677218    </message>
    68687219    <message>
    6869         <location filename="../VBoxManageInfo.cpp" line="2444"/>
     7220        <location filename="../VBoxManageInfo.cpp" line="2479"/>
    68707221        <source>%-28s: %-10lS = &lt;not set&gt;
    68717222</source>
     
    68747225    </message>
    68757226    <message>
    6876         <location filename="../VBoxManageInfo.cpp" line="2444"/>
    6877         <location filename="../VBoxManageInfo.cpp" line="2446"/>
     7227        <location filename="../VBoxManageInfo.cpp" line="2479"/>
     7228        <location filename="../VBoxManageInfo.cpp" line="2481"/>
    68787229        <source>VRDE property</source>
    68797230        <translation>Свойство VRDE</translation>
    68807231    </message>
    68817232    <message>
    6882         <location filename="../VBoxManageInfo.cpp" line="2517"/>
     7233        <location filename="../VBoxManageInfo.cpp" line="2552"/>
    68837234        <source>Index:</source>
    68847235        <translation>Индекс:</translation>
    68857236    </message>
    68867237    <message>
    6887         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     7238        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    68887239        <source>yes</source>
    68897240        <translation>да</translation>
    68907241    </message>
    68917242    <message>
    6892         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     7243        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    68937244        <source>no</source>
    68947245        <translation>нет</translation>
    68957246    </message>
    68967247    <message>
    6897         <location filename="../VBoxManageInfo.cpp" line="827"/>
     7248        <location filename="../VBoxManageInfo.cpp" line="840"/>
    68987249        <source>VendorId:</source>
    68997250        <translation>ID поставщика:</translation>
    69007251    </message>
    69017252    <message>
    6902         <location filename="../VBoxManageInfo.cpp" line="828"/>
     7253        <location filename="../VBoxManageInfo.cpp" line="841"/>
    69037254        <source>ProductId:</source>
    69047255        <translation>ID продукта:</translation>
    69057256    </message>
    69067257    <message>
    6907         <location filename="../VBoxManageInfo.cpp" line="837"/>
     7258        <location filename="../VBoxManageInfo.cpp" line="850"/>
    69087259        <source>Revision:</source>
    69097260        <translation>Ревизия:</translation>
    69107261    </message>
    69117262    <message>
    6912         <location filename="../VBoxManageInfo.cpp" line="839"/>
     7263        <location filename="../VBoxManageInfo.cpp" line="852"/>
    69137264        <source>Manufacturer:</source>
    69147265        <translation>Производитель:</translation>
    69157266    </message>
    69167267    <message>
    6917         <location filename="../VBoxManageInfo.cpp" line="840"/>
     7268        <location filename="../VBoxManageInfo.cpp" line="853"/>
    69187269        <source>Product:</source>
    69197270        <translation>Продукт:</translation>
    69207271    </message>
    69217272    <message>
    6922         <location filename="../VBoxManageInfo.cpp" line="2532"/>
     7273        <location filename="../VBoxManageInfo.cpp" line="2567"/>
    69237274        <source>Masked Interfaces:</source>
    69247275        <translation>Скрытые Интерфейсы:</translation>
    69257276    </message>
    69267277    <message>
    6927         <location filename="../VBoxManageInfo.cpp" line="841"/>
     7278        <location filename="../VBoxManageInfo.cpp" line="854"/>
    69287279        <source>SerialNumber:</source>
    69297280        <translation>Серийный Номер:</translation>
    69307281    </message>
    69317282    <message>
    6932         <location filename="../VBoxManageInfo.cpp" line="842"/>
     7283        <location filename="../VBoxManageInfo.cpp" line="855"/>
    69337284        <source>Address:</source>
    69347285        <translation>Адрес:</translation>
    69357286    </message>
    69367287    <message>
    6937         <location filename="../VBoxManageInfo.cpp" line="2569"/>
     7288        <location filename="../VBoxManageInfo.cpp" line="2604"/>
    69387289        <source>
    69397290Attached physical PCI devices:
     
    69467297    </message>
    69477298    <message>
    6948         <location filename="../VBoxManageInfo.cpp" line="2588"/>
     7299        <location filename="../VBoxManageInfo.cpp" line="2623"/>
    69497300        <source>   Host device %ls at %s attached as %s
    69507301</source>
     
    69537304    </message>
    69547305    <message>
    6955         <location filename="../VBoxManageInfo.cpp" line="2617"/>
     7306        <location filename="../VBoxManageInfo.cpp" line="2652"/>
    69567307        <source>Shared folders:</source>
    69577308        <translation>Общие Папки:</translation>
    69587309    </message>
    69597310    <message>
    6960         <location filename="../VBoxManageInfo.cpp" line="2627"/>
     7311        <location filename="../VBoxManageInfo.cpp" line="2662"/>
    69617312        <source>global mapping</source>
    69627313        <translation>глобальное отображение</translation>
    69637314    </message>
    69647315    <message>
    6965         <location filename="../VBoxManageInfo.cpp" line="2639"/>
     7316        <location filename="../VBoxManageInfo.cpp" line="2674"/>
    69667317        <source>machine mapping</source>
    69677318        <translation>машинное отображение</translation>
    69687319    </message>
    69697320    <message>
    6970         <location filename="../VBoxManageInfo.cpp" line="2651"/>
     7321        <location filename="../VBoxManageInfo.cpp" line="2686"/>
    69717322        <source>transient mapping</source>
    69727323        <translation>временное отображение</translation>
    69737324    </message>
    69747325    <message>
    6975         <location filename="../VBoxManageInfo.cpp" line="773"/>
    6976         <location filename="../VBoxManageInfo.cpp" line="2658"/>
     7326        <location filename="../VBoxManageInfo.cpp" line="709"/>
     7327        <location filename="../VBoxManageInfo.cpp" line="2693"/>
    69777328        <source>&lt;none&gt;
    69787329</source>
     
    69817332    </message>
    69827333    <message>
    6983         <location filename="../VBoxManageInfo.cpp" line="1469"/>
    6984         <location filename="../VBoxManageInfo.cpp" line="1509"/>
     7334        <location filename="../VBoxManageInfo.cpp" line="1502"/>
     7335        <location filename="../VBoxManageInfo.cpp" line="1542"/>
    69857336        <source>Storage Controllers:</source>
    69867337        <translation>Контроллеры носителей:</translation>
    69877338    </message>
    69887339    <message>
    6989         <location filename="../VBoxManageInfo.cpp" line="1499"/>
     7340        <location filename="../VBoxManageInfo.cpp" line="1532"/>
    69907341        <source>#%u: &apos;%ls&apos;, Type: %s, Instance: %u, Ports: %u (max %u), %s
    69917342</source>
     
    69947345    </message>
    69957346    <message>
    6996         <location filename="../VBoxManageInfo.cpp" line="1501"/>
     7347        <location filename="../VBoxManageInfo.cpp" line="1534"/>
    69977348        <source>Bootable</source>
    69987349        <translation>Загрузочный</translation>
    69997350    </message>
    70007351    <message>
    7001         <location filename="../VBoxManageInfo.cpp" line="1501"/>
     7352        <location filename="../VBoxManageInfo.cpp" line="1534"/>
    70027353        <source>Not bootable</source>
    70037354        <translation>Незагрузочный</translation>
    70047355    </message>
    70057356    <message>
    7006         <location filename="../VBoxManageInfo.cpp" line="2511"/>
     7357        <location filename="../VBoxManageInfo.cpp" line="2546"/>
    70077358        <source>USB Device Filters:
    70087359</source>
     
    70117362    </message>
    70127363    <message>
    7013         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     7364        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    70147365        <source>  Active:</source>
    70157366        <translation>  Активно:</translation>
    70167367    </message>
    70177368    <message>
    7018         <location filename="../VBoxManageInfo.cpp" line="2519"/>
     7369        <location filename="../VBoxManageInfo.cpp" line="2554"/>
    70197370        <source>  Name:</source>
    70207371        <translation>  Имя:</translation>
    70217372    </message>
    70227373    <message>
    7023         <location filename="../VBoxManageInfo.cpp" line="2520"/>
     7374        <location filename="../VBoxManageInfo.cpp" line="2555"/>
    70247375        <source>  VendorId:</source>
    70257376        <translation>  ID поставщика:</translation>
    70267377    </message>
    70277378    <message>
    7028         <location filename="../VBoxManageInfo.cpp" line="2521"/>
     7379        <location filename="../VBoxManageInfo.cpp" line="2556"/>
    70297380        <source>  ProductId:</source>
    70307381        <translation>  ID продукта:</translation>
    70317382    </message>
    70327383    <message>
    7033         <location filename="../VBoxManageInfo.cpp" line="2522"/>
     7384        <location filename="../VBoxManageInfo.cpp" line="2557"/>
    70347385        <source>  Revision:</source>
    70357386        <translation>  Ревизия:</translation>
    70367387    </message>
    70377388    <message>
    7038         <location filename="../VBoxManageInfo.cpp" line="2523"/>
     7389        <location filename="../VBoxManageInfo.cpp" line="2558"/>
    70397390        <source>  Manufacturer:</source>
    70407391        <translation>  Производитель:</translation>
    70417392    </message>
    70427393    <message>
    7043         <location filename="../VBoxManageInfo.cpp" line="2524"/>
     7394        <location filename="../VBoxManageInfo.cpp" line="2559"/>
    70447395        <source>  Product:</source>
    70457396        <translation>  Продукт:</translation>
    70467397    </message>
    70477398    <message>
    7048         <location filename="../VBoxManageInfo.cpp" line="2525"/>
     7399        <location filename="../VBoxManageInfo.cpp" line="2560"/>
    70497400        <source>  Remote:</source>
    70507401        <translation>  Удаленное:</translation>
    70517402    </message>
    70527403    <message>
    7053         <location filename="../VBoxManageInfo.cpp" line="2526"/>
     7404        <location filename="../VBoxManageInfo.cpp" line="2561"/>
    70547405        <source>  Serial Number:</source>
    70557406        <translation>  Серийный номер:</translation>
    70567407    </message>
    70577408    <message>
    7058         <location filename="../VBoxManageInfo.cpp" line="2537"/>
     7409        <location filename="../VBoxManageInfo.cpp" line="2572"/>
    70597410        <source>USB Device Filters:</source>
    70607411        <translation>Фильтры USB устройств:</translation>
    70617412    </message>
    70627413    <message>
    7063         <location filename="../VBoxManageInfo.cpp" line="2545"/>
     7414        <location filename="../VBoxManageInfo.cpp" line="2580"/>
    70647415        <source>Available remote USB devices:</source>
    70657416        <translation>Доступные удаленные USB устройства:</translation>
    70667417    </message>
    70677418    <message>
    7068         <location filename="../VBoxManageInfo.cpp" line="2553"/>
     7419        <location filename="../VBoxManageInfo.cpp" line="2588"/>
    70697420        <source>Currently attached USB devices:</source>
    70707421        <translation>Сейчас подключенные USB устройства:</translation>
    70717422    </message>
    70727423    <message>
    7073         <location filename="../VBoxManageInfo.cpp" line="2604"/>
     7424        <location filename="../VBoxManageInfo.cpp" line="2639"/>
    70747425        <source>Bandwidth groups:</source>
    70757426        <translation>Группы полосы пропускания:</translation>
    70767427    </message>
    70777428    <message>
    7078         <location filename="../VBoxManageInfo.cpp" line="2703"/>
     7429        <location filename="../VBoxManageInfo.cpp" line="2738"/>
    70797430        <source>VRDE Connection:</source>
    70807431        <translation>VRDE Соединение:</translation>
    70817432    </message>
    70827433    <message>
    7083         <location filename="../VBoxManageInfo.cpp" line="2703"/>
    7084         <location filename="../VBoxManageInfo.cpp" line="2793"/>
    7085         <location filename="../VBoxManageInfo.cpp" line="2795"/>
     7434        <location filename="../VBoxManageInfo.cpp" line="2738"/>
     7435        <location filename="../VBoxManageInfo.cpp" line="2828"/>
     7436        <location filename="../VBoxManageInfo.cpp" line="2830"/>
    70867437        <source>active</source>
    70877438        <translation>активное</translation>
    70887439    </message>
    70897440    <message>
    7090         <location filename="../VBoxManageInfo.cpp" line="2704"/>
     7441        <location filename="../VBoxManageInfo.cpp" line="2739"/>
    70917442        <source>Clients so far:</source>
    70927443        <translation>Клиенты на данный момент:</translation>
    70937444    </message>
    70947445    <message>
    7095         <location filename="../VBoxManageInfo.cpp" line="2711"/>
     7446        <location filename="../VBoxManageInfo.cpp" line="2746"/>
    70967447        <source>Start time:</source>
    70977448        <translation>Время старта:</translation>
    70987449    </message>
    70997450    <message>
    7100         <location filename="../VBoxManageInfo.cpp" line="2714"/>
     7451        <location filename="../VBoxManageInfo.cpp" line="2749"/>
    71017452        <source>Last started:</source>
    71027453        <translation>Последний раз начато:</translation>
    71037454    </message>
    71047455    <message>
    7105         <location filename="../VBoxManageInfo.cpp" line="2716"/>
     7456        <location filename="../VBoxManageInfo.cpp" line="2751"/>
    71067457        <source>Last ended:</source>
    71077458        <translation>Последний раз закончено:</translation>
    71087459    </message>
    71097460    <message>
    7110         <location filename="../VBoxManageInfo.cpp" line="2726"/>
     7461        <location filename="../VBoxManageInfo.cpp" line="2761"/>
    71117462        <source>Sent:</source>
    71127463        <translation>Отправлено:</translation>
    71137464    </message>
    71147465    <message>
    7115         <location filename="../VBoxManageInfo.cpp" line="2726"/>
    7116         <location filename="../VBoxManageInfo.cpp" line="2728"/>
    7117         <location filename="../VBoxManageInfo.cpp" line="2730"/>
    7118         <location filename="../VBoxManageInfo.cpp" line="2732"/>
     7466        <location filename="../VBoxManageInfo.cpp" line="2761"/>
     7467        <location filename="../VBoxManageInfo.cpp" line="2763"/>
     7468        <location filename="../VBoxManageInfo.cpp" line="2765"/>
     7469        <location filename="../VBoxManageInfo.cpp" line="2767"/>
    71197470        <source>Bytes</source>
    71207471        <translation>Байт</translation>
    71217472    </message>
    71227473    <message>
    7123         <location filename="../VBoxManageInfo.cpp" line="2727"/>
     7474        <location filename="../VBoxManageInfo.cpp" line="2762"/>
    71247475        <source>Average speed:</source>
    71257476        <translation>Средняя скорость:</translation>
    71267477    </message>
    71277478    <message>
    7128         <location filename="../VBoxManageInfo.cpp" line="2727"/>
    7129         <location filename="../VBoxManageInfo.cpp" line="2731"/>
     7479        <location filename="../VBoxManageInfo.cpp" line="2762"/>
     7480        <location filename="../VBoxManageInfo.cpp" line="2766"/>
    71307481        <source>B/s</source>
    71317482        <translation>Б/с</translation>
    71327483    </message>
    71337484    <message>
    7134         <location filename="../VBoxManageInfo.cpp" line="2728"/>
     7485        <location filename="../VBoxManageInfo.cpp" line="2763"/>
    71357486        <source>Sent total:</source>
    71367487        <translation>Всего отправлено:</translation>
    71377488    </message>
    71387489    <message>
    7139         <location filename="../VBoxManageInfo.cpp" line="2730"/>
     7490        <location filename="../VBoxManageInfo.cpp" line="2765"/>
    71407491        <source>Received:</source>
    71417492        <translation>Получено:</translation>
    71427493    </message>
    71437494    <message>
    7144         <location filename="../VBoxManageInfo.cpp" line="2731"/>
     7495        <location filename="../VBoxManageInfo.cpp" line="2766"/>
    71457496        <source>Speed:</source>
    71467497        <translation>Скорость:</translation>
    71477498    </message>
    71487499    <message>
    7149         <location filename="../VBoxManageInfo.cpp" line="2732"/>
     7500        <location filename="../VBoxManageInfo.cpp" line="2767"/>
    71507501        <source>Received total:</source>
    71517502        <translation>Всего получено:</translation>
    71527503    </message>
    71537504    <message>
    7154         <location filename="../VBoxManageInfo.cpp" line="2736"/>
     7505        <location filename="../VBoxManageInfo.cpp" line="2771"/>
    71557506        <source>User name:</source>
    71567507        <translation>Имя пользователя:</translation>
    71577508    </message>
    71587509    <message>
    7159         <location filename="../VBoxManageInfo.cpp" line="2737"/>
     7510        <location filename="../VBoxManageInfo.cpp" line="2772"/>
    71607511        <source>Domain:</source>
    71617512        <translation>Домен:</translation>
    71627513    </message>
    71637514    <message>
    7164         <location filename="../VBoxManageInfo.cpp" line="2738"/>
     7515        <location filename="../VBoxManageInfo.cpp" line="2773"/>
    71657516        <source>Client name:</source>
    71667517        <translation>Имя клиента:</translation>
    71677518    </message>
    71687519    <message>
    7169         <location filename="../VBoxManageInfo.cpp" line="2739"/>
     7520        <location filename="../VBoxManageInfo.cpp" line="2774"/>
    71707521        <source>Client IP:</source>
    71717522        <translation>IP клиента:</translation>
    71727523    </message>
    71737524    <message>
    7174         <location filename="../VBoxManageInfo.cpp" line="2740"/>
     7525        <location filename="../VBoxManageInfo.cpp" line="2775"/>
    71757526        <source>Client version:</source>
    71767527        <translation>Версия клиента:</translation>
    71777528    </message>
    71787529    <message>
    7179         <location filename="../VBoxManageInfo.cpp" line="2741"/>
     7530        <location filename="../VBoxManageInfo.cpp" line="2776"/>
    71807531        <source>Encryption:</source>
    71817532        <translation>Шифрование:</translation>
    71827533    </message>
    71837534    <message>
    7184         <location filename="../VBoxManageInfo.cpp" line="2793"/>
     7535        <location filename="../VBoxManageInfo.cpp" line="2828"/>
    71857536        <source>Capturing:</source>
    71867537        <translation>Захват:</translation>
    71877538    </message>
    71887539    <message>
    7189         <location filename="../VBoxManageInfo.cpp" line="2795"/>
     7540        <location filename="../VBoxManageInfo.cpp" line="2830"/>
    71907541        <source>Capture audio:</source>
    71917542        <translation>Захват аудио:</translation>
    71927543    </message>
    71937544    <message>
    7194         <location filename="../VBoxManageInfo.cpp" line="2805"/>
     7545        <location filename="../VBoxManageInfo.cpp" line="2840"/>
    71957546        <source>Capture screens:</source>
    71967547        <translation>Захват экранов:</translation>
    71977548    </message>
    71987549    <message>
    7199         <location filename="../VBoxManageInfo.cpp" line="2806"/>
     7550        <location filename="../VBoxManageInfo.cpp" line="2841"/>
    72007551        <source>Capture file:</source>
    72017552        <translation>Файл захвата:</translation>
    72027553    </message>
    72037554    <message>
    7204         <location filename="../VBoxManageInfo.cpp" line="2808"/>
     7555        <location filename="../VBoxManageInfo.cpp" line="2843"/>
    72057556        <source>Capture dimensions:</source>
    72067557        <translation>Размеры захвата:</translation>
    72077558    </message>
    72087559    <message>
    7209         <location filename="../VBoxManageInfo.cpp" line="2809"/>
     7560        <location filename="../VBoxManageInfo.cpp" line="2844"/>
    72107561        <source>Capture rate:</source>
    72117562        <translation>Битрейт захвата:</translation>
    72127563    </message>
    72137564    <message>
    7214         <location filename="../VBoxManageInfo.cpp" line="2809"/>
    7215         <location filename="../VBoxManageInfo.cpp" line="2810"/>
     7565        <location filename="../VBoxManageInfo.cpp" line="2844"/>
     7566        <location filename="../VBoxManageInfo.cpp" line="2845"/>
    72167567        <source>kbps</source>
    72177568        <translation>кб/с</translation>
    72187569    </message>
    72197570    <message>
    7220         <location filename="../VBoxManageInfo.cpp" line="2810"/>
     7571        <location filename="../VBoxManageInfo.cpp" line="2845"/>
    72217572        <source>Capture FPS:</source>
    72227573        <translation>FPS захвата:</translation>
    72237574    </message>
    72247575    <message>
    7225         <location filename="../VBoxManageInfo.cpp" line="2811"/>
     7576        <location filename="../VBoxManageInfo.cpp" line="2846"/>
    72267577        <source>Capture options:</source>
    72277578        <translation>Опции захвата:</translation>
    72287579    </message>
    72297580    <message>
    7230         <location filename="../VBoxManageInfo.cpp" line="2828"/>
     7581        <location filename="../VBoxManageInfo.cpp" line="2863"/>
    72317582        <source>Description:
    72327583%ls
     
    72377588    </message>
    72387589    <message>
    7239         <location filename="../VBoxManageInfo.cpp" line="2884"/>
     7590        <location filename="../VBoxManageInfo.cpp" line="2919"/>
    72407591        <source>MB</source>
    72417592        <translation>МБ</translation>
    72427593    </message>
    72437594    <message>
    7244         <location filename="../VBoxManageInfo.cpp" line="2884"/>
     7595        <location filename="../VBoxManageInfo.cpp" line="2919"/>
    72457596        <source>Configured memory balloon:</source>
    72467597        <translation>Настроенный balloon памяти:</translation>
    72477598    </message>
    72487599    <message>
    7249         <location filename="../VBoxManageInfo.cpp" line="2892"/>
     7600        <location filename="../VBoxManageInfo.cpp" line="2927"/>
    72507601        <source>OS type:</source>
    72517602        <translation>Тип ОС:</translation>
    72527603    </message>
    72537604    <message>
    7254         <location filename="../VBoxManageInfo.cpp" line="2897"/>
     7605        <location filename="../VBoxManageInfo.cpp" line="2932"/>
    72557606        <source>Additions run level:</source>
    72567607        <translation>Уровень выполнения Дополнений:</translation>
    72577608    </message>
    72587609    <message>
    7259         <location filename="../VBoxManageInfo.cpp" line="2909"/>
     7610        <location filename="../VBoxManageInfo.cpp" line="2944"/>
    72607611        <source>Additions version:</source>
    72617612        <translation>Версия Дополнений:</translation>
    72627613    </message>
    72637614    <message>
    7264         <location filename="../VBoxManageInfo.cpp" line="2938"/>
     7615        <location filename="../VBoxManageInfo.cpp" line="2973"/>
    72657616        <source>Facility &quot;%ls&quot;: %s (last update: %s)
    72667617</source>
     
    72697620    </message>
    72707621    <message>
    7271         <location filename="../VBoxManageInfo.cpp" line="3009"/>
     7622        <location filename="../VBoxManageInfo.cpp" line="3044"/>
    72727623        <source>Invalid parameter &apos;%s&apos;</source>
    72737624        <translation>Недопустимый параметр &apos;%s&apos;</translation>
    72747625    </message>
    72757626    <message>
    7276         <location filename="../VBoxManageInfo.cpp" line="3019"/>
     7627        <location filename="../VBoxManageInfo.cpp" line="3054"/>
    72777628        <source>VM name or UUID required</source>
    72787629        <translation>Требуется имя ВМ или UUID</translation>
    72797630    </message>
    72807631    <message>
    7281         <location filename="../VBoxManageInfo.cpp" line="3030"/>
     7632        <location filename="../VBoxManageInfo.cpp" line="3065"/>
    72827633        <source>Option --log is exclusive</source>
    72837634        <translation>Опция --log эксклюзивная</translation>
     
    72877638    <name>Internal</name>
    72887639    <message>
    7289         <location filename="../VBoxInternalManage.cpp" line="145"/>
     7640        <location filename="../VBoxInternalManage.cpp" line="169"/>
    72907641        <source>Usage: VBoxManage internalcommands &lt;command&gt; [command arguments]
    72917642
     
    73077658    </message>
    73087659    <message>
    7309         <location filename="../VBoxInternalManage.cpp" line="156"/>
     7660        <location filename="../VBoxInternalManage.cpp" line="180"/>
    73107661        <source>  loadmap &lt;vmname|uuid&gt; &lt;symfile&gt; &lt;address&gt; [module] [subtrahend] [segment]
    73117662      This will instruct DBGF to load the given map file
     
    73207671    </message>
    73217672    <message>
    7322         <location filename="../VBoxInternalManage.cpp" line="163"/>
     7673        <location filename="../VBoxInternalManage.cpp" line="187"/>
    73237674        <source>  loadsyms &lt;vmname|uuid&gt; &lt;symfile&gt; [delta] [module] [module address]
    73247675      This will instruct DBGF to load the given symbol file
     
    73337684    </message>
    73347685    <message>
    7335         <location filename="../VBoxInternalManage.cpp" line="170"/>
     7686        <location filename="../VBoxInternalManage.cpp" line="194"/>
    73367687        <source>  sethduuid &lt;filepath&gt; [&lt;uuid&gt;]
    73377688       Assigns a new UUID to the given image file. This way, multiple copies
     
    73467697    </message>
    73477698    <message>
    7348         <location filename="../VBoxInternalManage.cpp" line="177"/>
     7699        <location filename="../VBoxInternalManage.cpp" line="201"/>
    73497700        <source>  sethdparentuuid &lt;filepath&gt; &lt;uuid&gt;
    73507701       Assigns a new parent UUID to the given image file.
     
    73577708    </message>
    73587709    <message>
    7359         <location filename="../VBoxInternalManage.cpp" line="183"/>
     7710        <location filename="../VBoxInternalManage.cpp" line="207"/>
    73607711        <source>  dumphdinfo &lt;filepath&gt;
    73617712       Prints information about the image at the given location.
     
    73687719    </message>
    73697720    <message>
    7370         <location filename="../VBoxInternalManage.cpp" line="189"/>
     7721        <location filename="../VBoxInternalManage.cpp" line="213"/>
    73717722        <source>  listpartitions -rawdisk &lt;diskname&gt;
    73727723       Lists all partitions on &lt;diskname&gt;.
     
    73797730    </message>
    73807731    <message>
    7381         <location filename="../VBoxInternalManage.cpp" line="195"/>
     7732        <location filename="../VBoxInternalManage.cpp" line="219"/>
    73827733        <source>  createrawvmdk -filename &lt;filename&gt; -rawdisk &lt;diskname&gt;
    73837734                [-partitions &lt;list of partition numbers&gt; [-mbr &lt;filename&gt;] ]
     
    74147765    </message>
    74157766    <message>
    7416         <location filename="../VBoxInternalManage.cpp" line="214"/>
     7767        <location filename="../VBoxInternalManage.cpp" line="238"/>
    74177768        <source>  renamevmdk -from &lt;filename&gt; -to &lt;filename&gt;
    74187769       Renames an existing VMDK image, including the base file and all its extents.
     
    74257776    </message>
    74267777    <message>
    7427         <location filename="../VBoxInternalManage.cpp" line="221"/>
     7778        <location filename="../VBoxInternalManage.cpp" line="245"/>
    74287779        <source>  converttoraw [-format &lt;fileformat&gt;] &lt;filename&gt; &lt;outputfile&gt;|stdout
    74297780       Convert image to raw, writing to file or stdout.
     
    74367787    </message>
    74377788    <message>
    7438         <location filename="../VBoxInternalManage.cpp" line="227"/>
     7789        <location filename="../VBoxInternalManage.cpp" line="251"/>
    74397790        <source>  converttoraw [-format &lt;fileformat&gt;] &lt;filename&gt; &lt;outputfile&gt;
    74407791       Convert image to raw, writing to file.
     
    74477798    </message>
    74487799    <message>
    7449         <location filename="../VBoxInternalManage.cpp" line="235"/>
     7800        <location filename="../VBoxInternalManage.cpp" line="259"/>
    74507801        <source>  converthd [-srcformat VDI|VMDK|VHD|RAW]
    74517802            [-dstformat VDI|VMDK|VHD|RAW]
     
    74627813    </message>
    74637814    <message>
    7464         <location filename="../VBoxInternalManage.cpp" line="243"/>
     7815        <location filename="../VBoxInternalManage.cpp" line="267"/>
    74657816        <source>  repairhd [-dry-run]
    74667817           [-format VDI|VMDK|VHD|...]
     
    74777828    </message>
    74787829    <message>
    7479         <location filename="../VBoxInternalManage.cpp" line="252"/>
     7830        <location filename="../VBoxInternalManage.cpp" line="276"/>
    74807831        <source>  modinstall
    74817832       Installs the necessary driver for the host OS
     
    74887839    </message>
    74897840    <message>
    7490         <location filename="../VBoxInternalManage.cpp" line="258"/>
     7841        <location filename="../VBoxInternalManage.cpp" line="282"/>
    74917842        <source>  moduninstall
    74927843       Deinstalls the driver
     
    74997850    </message>
    75007851    <message>
    7501         <location filename="../VBoxInternalManage.cpp" line="268"/>
     7852        <location filename="../VBoxInternalManage.cpp" line="292"/>
    75027853        <source>  debuglog &lt;vmname|uuid&gt; [--enable|--disable] [--flags todo]
    75037854           [--groups todo] [--destinations todo]
     
    75127863    </message>
    75137864    <message>
    7514         <location filename="../VBoxInternalManage.cpp" line="275"/>
     7865        <location filename="../VBoxInternalManage.cpp" line="299"/>
    75157866        <source>  passwordhash &lt;password&gt;
    75167867       Generates a password hash.
     
    75237874    </message>
    75247875    <message>
    7525         <location filename="../VBoxInternalManage.cpp" line="281"/>
     7876        <location filename="../VBoxInternalManage.cpp" line="305"/>
    75267877        <source>  gueststats &lt;vmname|uuid&gt; [--interval &lt;seconds&gt;]
    75277878       Obtains and prints internal guest statistics.
     
    75367887    </message>
    75377888    <message>
    7538         <location filename="../VBoxInternalManage.cpp" line="343"/>
     7889        <location filename="../VBoxInternalManage.cpp" line="451"/>
    75397890        <source>Cannot find unique key for &apos;%s&apos;!</source>
    75407891        <translation>Невозможно найти уникальный ключ для &apos;%s&apos;!</translation>
    75417892    </message>
    75427893    <message>
    7543         <location filename="../VBoxInternalManage.cpp" line="406"/>
     7894        <location filename="../VBoxInternalManage.cpp" line="514"/>
    75447895        <source>Failed to delete key &apos;%s&apos; from &apos;%s&apos;,  string conversion error %Rrc!</source>
    75457896        <translation>Не удалось удалить ключ &apos;%s&apos; из &apos;%s&apos;,  ошибка преобразования строк %Rrc!</translation>
    75467897    </message>
    75477898    <message>
    7548         <location filename="../VBoxInternalManage.cpp" line="430"/>
     7899        <location filename="../VBoxInternalManage.cpp" line="538"/>
    75497900        <source>Failed to set &apos;%s/%s/%s&apos; to &apos;%s&apos;! hrc=%#x</source>
    75507901        <translation>Не удалось задать &apos;%s/%s/%s&apos; в &apos;%s&apos;! hrc=%#x</translation>
    75517902    </message>
    75527903    <message>
    7553         <location filename="../VBoxInternalManage.cpp" line="498"/>
    7554         <location filename="../VBoxInternalManage.cpp" line="575"/>
     7904        <location filename="../VBoxInternalManage.cpp" line="606"/>
     7905        <location filename="../VBoxInternalManage.cpp" line="683"/>
    75557906        <source>Missing the filename argument!
    75567907</source>
     
    75597910    </message>
    75607911    <message>
    7561         <location filename="../VBoxInternalManage.cpp" line="506"/>
     7912        <location filename="../VBoxInternalManage.cpp" line="614"/>
    75627913        <source>Failed to read delta &apos;%s&apos;, rc=%Rrc
    75637914</source>
     
    75667917    </message>
    75677918    <message>
    7568         <location filename="../VBoxInternalManage.cpp" line="518"/>
    7569         <location filename="../VBoxInternalManage.cpp" line="583"/>
     7919        <location filename="../VBoxInternalManage.cpp" line="626"/>
     7920        <location filename="../VBoxInternalManage.cpp" line="691"/>
    75707921        <source>Failed to read module address &apos;%s&apos;, rc=%Rrc
    75717922</source>
     
    75747925    </message>
    75757926    <message>
    7576         <location filename="../VBoxInternalManage.cpp" line="526"/>
     7927        <location filename="../VBoxInternalManage.cpp" line="634"/>
    75777928        <source>Failed to read module size &apos;%s&apos;, rc=%Rrc
    75787929</source>
     
    75817932    </message>
    75827933    <message>
    7583         <location filename="../VBoxInternalManage.cpp" line="580"/>
     7934        <location filename="../VBoxInternalManage.cpp" line="688"/>
    75847935        <source>Missing the module address argument!
    75857936</source>
     
    75887939    </message>
    75897940    <message>
    7590         <location filename="../VBoxInternalManage.cpp" line="594"/>
     7941        <location filename="../VBoxInternalManage.cpp" line="702"/>
    75917942        <source>Failed to read subtrahend &apos;%s&apos;, rc=%Rrc
    75927943</source>
     
    75957946    </message>
    75967947    <message>
    7597         <location filename="../VBoxInternalManage.cpp" line="602"/>
     7948        <location filename="../VBoxInternalManage.cpp" line="710"/>
    75987949        <source>Failed to read segment number &apos;%s&apos;, rc=%Rrc
    75997950</source>
     
    76027953    </message>
    76037954    <message>
    7604         <location filename="../VBoxInternalManage.cpp" line="629"/>
     7955        <location filename="../VBoxInternalManage.cpp" line="737"/>
    76057956        <source>Error code %Rrc at %s(%u) in function %s</source>
    76067957        <translation>Код ошибки %Rrc в %s(%u) в функции %s</translation>
    76077958    </message>
    76087959    <message>
    7609         <location filename="../VBoxInternalManage.cpp" line="652"/>
    7610         <location filename="../VBoxInternalManage.cpp" line="666"/>
    7611         <location filename="../VBoxInternalManage.cpp" line="724"/>
     7960        <location filename="../VBoxInternalManage.cpp" line="760"/>
     7961        <location filename="../VBoxInternalManage.cpp" line="774"/>
     7962        <location filename="../VBoxInternalManage.cpp" line="832"/>
    76127963        <source>Not enough parameters</source>
    76137964        <translation>Недостаточно параметров</translation>
    76147965    </message>
    76157966    <message>
    7616         <location filename="../VBoxInternalManage.cpp" line="657"/>
    7617         <location filename="../VBoxInternalManage.cpp" line="668"/>
     7967        <location filename="../VBoxInternalManage.cpp" line="765"/>
     7968        <location filename="../VBoxInternalManage.cpp" line="776"/>
    76187969        <source>Invalid UUID parameter</source>
    76197970        <translation>Недопустимый UUID параметр</translation>
    76207971    </message>
    76217972    <message>
    7622         <location filename="../VBoxInternalManage.cpp" line="672"/>
     7973        <location filename="../VBoxInternalManage.cpp" line="780"/>
    76237974        <source>Invalid invocation</source>
    76247975        <translation>Недопустимый вызов</translation>
    76257976    </message>
    76267977    <message>
    7627         <location filename="../VBoxInternalManage.cpp" line="680"/>
    7628         <location filename="../VBoxInternalManage.cpp" line="733"/>
     7978        <location filename="../VBoxInternalManage.cpp" line="788"/>
     7979        <location filename="../VBoxInternalManage.cpp" line="841"/>
    76297980        <source>Format autodetect failed: %Rrc</source>
    76307981        <translation>Не удалось автодетектировать формат: %Rrc</translation>
    76317982    </message>
    76327983    <message>
    7633         <location filename="../VBoxInternalManage.cpp" line="695"/>
    7634         <location filename="../VBoxInternalManage.cpp" line="748"/>
    7635         <location filename="../VBoxInternalManage.cpp" line="1850"/>
    7636         <location filename="../VBoxInternalManage.cpp" line="1948"/>
    7637         <location filename="../VBoxInternalManage.cpp" line="2022"/>
     7984        <location filename="../VBoxInternalManage.cpp" line="803"/>
     7985        <location filename="../VBoxInternalManage.cpp" line="856"/>
     7986        <location filename="../VBoxInternalManage.cpp" line="1958"/>
     7987        <location filename="../VBoxInternalManage.cpp" line="2056"/>
     7988        <location filename="../VBoxInternalManage.cpp" line="2130"/>
    76387989        <source>Cannot create the virtual disk container: %Rrc</source>
    76397990        <translation>Невозможно создать контейнер виртуального диска: %Rrc</translation>
    76407991    </message>
    76417992    <message>
    7642         <location filename="../VBoxInternalManage.cpp" line="700"/>
    7643         <location filename="../VBoxInternalManage.cpp" line="753"/>
     7993        <location filename="../VBoxInternalManage.cpp" line="808"/>
     7994        <location filename="../VBoxInternalManage.cpp" line="861"/>
    76447995        <source>Cannot open the image: %Rrc</source>
    76457996        <translation>Невозможно открыть образ: %Rrc</translation>
    76467997    </message>
    76477998    <message>
    7648         <location filename="../VBoxInternalManage.cpp" line="707"/>
     7999        <location filename="../VBoxInternalManage.cpp" line="815"/>
    76498000        <source>Cannot set a new UUID: %Rrc</source>
    76508001        <translation>Невозможно задать новый UUID: %Rrc</translation>
    76518002    </message>
    76528003    <message>
    7653         <location filename="../VBoxInternalManage.cpp" line="709"/>
     8004        <location filename="../VBoxInternalManage.cpp" line="817"/>
    76548005        <source>UUID changed to: %s
    76558006</source>
     
    76588009    </message>
    76598010    <message>
    7660         <location filename="../VBoxInternalManage.cpp" line="834"/>
     8011        <location filename="../VBoxInternalManage.cpp" line="942"/>
    76618012        <source>The GPT header seems corrupt because it contains too many entries</source>
    76628013        <translation>Кажется, GPT заголовок поврежден, потому что он содержит слишком много элементов</translation>
    76638014    </message>
    76648015    <message>
    7665         <location filename="../VBoxInternalManage.cpp" line="841"/>
     8016        <location filename="../VBoxInternalManage.cpp" line="949"/>
    76668017        <source>Allocating memory for the GPT partitions entries failed</source>
    76678018        <translation>Не удалось выделить память для элементов GPT разделов</translation>
    76688019    </message>
    76698020    <message>
    7670         <location filename="../VBoxInternalManage.cpp" line="850"/>
     8021        <location filename="../VBoxInternalManage.cpp" line="958"/>
    76718022        <source>Reading the partition table failed</source>
    76728023        <translation>Не удалось прочитать таблицу разделов</translation>
    76738024    </message>
    76748025    <message>
    7675         <location filename="../VBoxInternalManage.cpp" line="934"/>
     8026        <location filename="../VBoxInternalManage.cpp" line="1042"/>
    76768027        <source>More than one extended partition</source>
    76778028        <translation>Более одного расширенного раздела</translation>
    76788029    </message>
    76798030    <message>
    7680         <location filename="../VBoxInternalManage.cpp" line="952"/>
     8031        <location filename="../VBoxInternalManage.cpp" line="1060"/>
    76818032        <source>Inconsistency for logical partition start</source>
    76828033        <translation>Несогласованность начала логического раздела</translation>
    76838034    </message>
    76848035    <message>
    7685         <location filename="../VBoxInternalManage.cpp" line="964"/>
     8036        <location filename="../VBoxInternalManage.cpp" line="1072"/>
    76868037        <source>Logical partition without magic</source>
    76878038        <translation>Логический раздел без magic</translation>
    76888039    </message>
    76898040    <message>
    7690         <location filename="../VBoxInternalManage.cpp" line="971"/>
     8041        <location filename="../VBoxInternalManage.cpp" line="1079"/>
    76918042        <source>Logical partition with type 0 encountered</source>
    76928043        <translation>Столкнулись с логическим разделом типа 0</translation>
    76938044    </message>
    76948045    <message>
    7695         <location filename="../VBoxInternalManage.cpp" line="988"/>
     8046        <location filename="../VBoxInternalManage.cpp" line="1096"/>
    76968047        <source>Invalid partition start offset</source>
    76978048        <translation>Недопустимое смещение начала раздела</translation>
    76988049    </message>
    76998050    <message>
    7700         <location filename="../VBoxInternalManage.cpp" line="1008"/>
     8051        <location filename="../VBoxInternalManage.cpp" line="1116"/>
    77018052        <source>Logical partition chain broken</source>
    77028053        <translation>Цепочка логических разделов повреждена</translation>
    77038054    </message>
    77048055    <message>
    7705         <location filename="../VBoxInternalManage.cpp" line="1031"/>
     8056        <location filename="../VBoxInternalManage.cpp" line="1139"/>
    77068057        <source>Two partitions start at the same place</source>
    77078058        <translation>Два раздела начинаются с одного и того же места</translation>
    77088059    </message>
    77098060    <message>
    7710         <location filename="../VBoxInternalManage.cpp" line="1036"/>
     8061        <location filename="../VBoxInternalManage.cpp" line="1144"/>
    77118062        <source>Partition starts at sector 0</source>
    77128063        <translation>Раздел начинается в секторе 0</translation>
    77138064    </message>
    77148065    <message>
    7715         <location filename="../VBoxInternalManage.cpp" line="1072"/>
     8066        <location filename="../VBoxInternalManage.cpp" line="1180"/>
    77168067        <source>Overlapping GPT partitions</source>
    77178068        <translation>Перекрывающиеся GPT разделы</translation>
    77188069    </message>
    77198070    <message>
    7720         <location filename="../VBoxInternalManage.cpp" line="1088"/>
     8071        <location filename="../VBoxInternalManage.cpp" line="1196"/>
    77218072        <source>Overlapping MBR partitions</source>
    77228073        <translation>Перекрывающиеся MBR разделы</translation>
    77238074    </message>
    77248075    <message>
    7725         <location filename="../VBoxInternalManage.cpp" line="1111"/>
    7726         <location filename="../VBoxInternalManage.cpp" line="1196"/>
    7727         <location filename="../VBoxInternalManage.cpp" line="1205"/>
    7728         <location filename="../VBoxInternalManage.cpp" line="1214"/>
    7729         <location filename="../VBoxInternalManage.cpp" line="1223"/>
    7730         <location filename="../VBoxInternalManage.cpp" line="1910"/>
    7731         <location filename="../VBoxInternalManage.cpp" line="1919"/>
    7732         <location filename="../VBoxInternalManage.cpp" line="1980"/>
    7733         <location filename="../VBoxInternalManage.cpp" line="2143"/>
    7734         <location filename="../VBoxInternalManage.cpp" line="2152"/>
    7735         <location filename="../VBoxInternalManage.cpp" line="2277"/>
     8076        <location filename="../VBoxInternalManage.cpp" line="1219"/>
     8077        <location filename="../VBoxInternalManage.cpp" line="1304"/>
     8078        <location filename="../VBoxInternalManage.cpp" line="1313"/>
     8079        <location filename="../VBoxInternalManage.cpp" line="1322"/>
     8080        <location filename="../VBoxInternalManage.cpp" line="1331"/>
     8081        <location filename="../VBoxInternalManage.cpp" line="2018"/>
     8082        <location filename="../VBoxInternalManage.cpp" line="2027"/>
     8083        <location filename="../VBoxInternalManage.cpp" line="2088"/>
     8084        <location filename="../VBoxInternalManage.cpp" line="2251"/>
     8085        <location filename="../VBoxInternalManage.cpp" line="2260"/>
     8086        <location filename="../VBoxInternalManage.cpp" line="2385"/>
    77368087        <source>Missing argument to &apos;%s&apos;</source>
    77378088        <translation>Отсутствует аргумент к &apos;%s&apos;</translation>
    77388089    </message>
    77398090    <message>
    7740         <location filename="../VBoxInternalManage.cpp" line="1118"/>
    7741         <location filename="../VBoxInternalManage.cpp" line="1235"/>
    7742         <location filename="../VBoxInternalManage.cpp" line="1926"/>
    7743         <location filename="../VBoxInternalManage.cpp" line="1999"/>
    7744         <location filename="../VBoxInternalManage.cpp" line="2167"/>
    7745         <location filename="../VBoxInternalManage.cpp" line="2288"/>
     8091        <location filename="../VBoxInternalManage.cpp" line="368"/>
     8092        <location filename="../VBoxInternalManage.cpp" line="1226"/>
     8093        <location filename="../VBoxInternalManage.cpp" line="1343"/>
     8094        <location filename="../VBoxInternalManage.cpp" line="2034"/>
     8095        <location filename="../VBoxInternalManage.cpp" line="2107"/>
     8096        <location filename="../VBoxInternalManage.cpp" line="2275"/>
     8097        <location filename="../VBoxInternalManage.cpp" line="2396"/>
    77468098        <source>Invalid parameter &apos;%s&apos;</source>
    77478099        <translation>Недопустимый параметр &apos;%s&apos;</translation>
    77488100    </message>
    77498101    <message>
    7750         <location filename="../VBoxInternalManage.cpp" line="1123"/>
    7751         <location filename="../VBoxInternalManage.cpp" line="1241"/>
     8102        <location filename="../VBoxInternalManage.cpp" line="327"/>
     8103        <source>
     8104Syntax error: %N
     8105</source>
     8106        <translation type="unfinished">
     8107Синтаксическая ошибка: %N
     8108</translation>
     8109    </message>
     8110    <message>
     8111        <location filename="../VBoxInternalManage.cpp" line="372"/>
     8112        <source>Invalid option -%c</source>
     8113        <translation type="unfinished">Недопустимая опция -%c</translation>
     8114    </message>
     8115    <message>
     8116        <location filename="../VBoxInternalManage.cpp" line="373"/>
     8117        <source>Invalid option case %i</source>
     8118        <translation type="unfinished">Недопустимый вариант опции %i</translation>
     8119    </message>
     8120    <message>
     8121        <location filename="../VBoxInternalManage.cpp" line="376"/>
     8122        <source>Unknown option: %s</source>
     8123        <translation type="unfinished">Неизвестная опция: %s</translation>
     8124    </message>
     8125    <message>
     8126        <location filename="../VBoxInternalManage.cpp" line="378"/>
     8127        <source>Invalid argument format: %s</source>
     8128        <translation type="unfinished">Недопустимый формат аргумента: %s</translation>
     8129    </message>
     8130    <message>
     8131        <location filename="../VBoxInternalManage.cpp" line="1231"/>
     8132        <location filename="../VBoxInternalManage.cpp" line="1349"/>
    77528133        <source>Mandatory parameter -rawdisk missing</source>
    77538134        <translation>Отсутствует обязательный параметр -rawdisk</translation>
    77548135    </message>
    77558136    <message>
    7756         <location filename="../VBoxInternalManage.cpp" line="1128"/>
     8137        <location filename="../VBoxInternalManage.cpp" line="1236"/>
    77578138        <source>Cannot open the raw disk: %Rrc</source>
    77588139        <translation>Невозможно открыть raw диск: %Rrc</translation>
    77598140    </message>
    77608141    <message>
    7761         <location filename="../VBoxInternalManage.cpp" line="1134"/>
     8142        <location filename="../VBoxInternalManage.cpp" line="1242"/>
    77628143        <source>Number  Type   StartCHS       EndCHS      Size (MiB)  Start (Sect)
    77638144</source>
     
    77668147    </message>
    77678148    <message>
    7768         <location filename="../VBoxInternalManage.cpp" line="1239"/>
     8149        <location filename="../VBoxInternalManage.cpp" line="1347"/>
    77698150        <source>Mandatory parameter -filename missing</source>
    77708151        <translation>Отсутствует обязательный параметр -filename</translation>
    77718152    </message>
    77728153    <message>
    7773         <location filename="../VBoxInternalManage.cpp" line="1244"/>
     8154        <location filename="../VBoxInternalManage.cpp" line="1352"/>
    77748155        <source>The parameter -mbr is only valid when the parameter -partitions is also present</source>
    77758156        <translation>Параметр -mbr действителен только когда также присутствует параметр -partitions</translation>
    77768157    </message>
    77778158    <message>
    7778         <location filename="../VBoxInternalManage.cpp" line="1253"/>
     8159        <location filename="../VBoxInternalManage.cpp" line="1361"/>
    77798160        <source>Cannot open the raw disk &apos;%s&apos;: %Rrc</source>
    77808161        <translation>Невозможно открыть raw диск &apos;%s&apos;: %Rrc</translation>
    77818162    </message>
    77828163    <message>
    7783         <location filename="../VBoxInternalManage.cpp" line="1282"/>
     8164        <location filename="../VBoxInternalManage.cpp" line="1390"/>
    77848165        <source>File &apos;%s&apos; is no fixed/removable medium device</source>
    77858166        <translation>Файл &apos;%s&apos; не является устройством фиксированного/сменного носителя</translation>
    77868167    </message>
    77878168    <message>
    7788         <location filename="../VBoxInternalManage.cpp" line="1299"/>
     8169        <location filename="../VBoxInternalManage.cpp" line="1407"/>
    77898170        <source>The -relative parameter is invalid for raw disk %s</source>
    77908171        <translation>Параметр -relative недопустим для raw диска %s</translation>
    77918172    </message>
    77928173    <message>
    7793         <location filename="../VBoxInternalManage.cpp" line="1313"/>
     8174        <location filename="../VBoxInternalManage.cpp" line="1421"/>
    77948175        <source>Cannot get the geometry of the raw disk &apos;%s&apos;: %Rrc</source>
    77958176        <translation>Невозможно получить геометрию raw диска &apos;%s&apos;: %Rrc</translation>
    77968177    </message>
    77978178    <message>
    7798         <location filename="../VBoxInternalManage.cpp" line="1320"/>
    7799         <location filename="../VBoxInternalManage.cpp" line="1369"/>
    7800         <location filename="../VBoxInternalManage.cpp" line="1494"/>
     8179        <location filename="../VBoxInternalManage.cpp" line="1428"/>
     8180        <location filename="../VBoxInternalManage.cpp" line="1477"/>
     8181        <location filename="../VBoxInternalManage.cpp" line="1602"/>
    78018182        <source>The -relative parameter is invalid for raw images</source>
    78028183        <translation>Параметр -relative недопустим для raw образов</translation>
    78038184    </message>
    78048185    <message>
    7805         <location filename="../VBoxInternalManage.cpp" line="1354"/>
    7806         <location filename="../VBoxInternalManage.cpp" line="1448"/>
    7807         <location filename="../VBoxInternalManage.cpp" line="1519"/>
     8186        <location filename="../VBoxInternalManage.cpp" line="1462"/>
     8187        <location filename="../VBoxInternalManage.cpp" line="1556"/>
     8188        <location filename="../VBoxInternalManage.cpp" line="1627"/>
    78088189        <source>Cannot get the size of the raw disk &apos;%s&apos;: %Rrc</source>
    78098190        <translation>Невозможно получить размер raw диска &apos;%s&apos;: %Rrc</translation>
    78108191    </message>
    78118192    <message>
    7812         <location filename="../VBoxInternalManage.cpp" line="1364"/>
    7813         <location filename="../VBoxInternalManage.cpp" line="1419"/>
    7814         <location filename="../VBoxInternalManage.cpp" line="1457"/>
     8193        <location filename="../VBoxInternalManage.cpp" line="1472"/>
     8194        <location filename="../VBoxInternalManage.cpp" line="1527"/>
     8195        <location filename="../VBoxInternalManage.cpp" line="1565"/>
    78158196        <source>Failed to get size of file &apos;%s&apos;: %Rrc</source>
    78168197        <translation>Невозможно получить размер файла &apos;%s&apos;: %Rrc</translation>
    78178198    </message>
    78188199    <message>
    7819         <location filename="../VBoxInternalManage.cpp" line="1376"/>
     8200        <location filename="../VBoxInternalManage.cpp" line="1484"/>
    78208201        <source>File &apos;%s&apos; is no block device</source>
    78218202        <translation>Файл &apos;%s&apos; не является блочным устройством</translation>
    78228203    </message>
    78238204    <message>
    7824         <location filename="../VBoxInternalManage.cpp" line="1384"/>
    7825         <location filename="../VBoxInternalManage.cpp" line="1433"/>
    7826         <location filename="../VBoxInternalManage.cpp" line="1471"/>
    7827         <location filename="../VBoxInternalManage.cpp" line="1510"/>
     8205        <location filename="../VBoxInternalManage.cpp" line="1492"/>
     8206        <location filename="../VBoxInternalManage.cpp" line="1541"/>
     8207        <location filename="../VBoxInternalManage.cpp" line="1579"/>
     8208        <location filename="../VBoxInternalManage.cpp" line="1618"/>
    78288209        <source>Failed to get file informtation for raw disk &apos;%s&apos;: %Rrc</source>
    78298210        <translation>Не удалось получить информацию для raw диска &apos;%s&apos;: %Rrc</translation>
    78308211    </message>
    78318212    <message>
    7832         <location filename="../VBoxInternalManage.cpp" line="1401"/>
     8213        <location filename="../VBoxInternalManage.cpp" line="1509"/>
    78338214        <source>Cannot get the block size for file &apos;%s&apos;: %Rrc</source>
    78348215        <translation>Невозможно получить размер блока файла &apos;%s&apos;: %Rrc</translation>
    78358216    </message>
    78368217    <message>
    7837         <location filename="../VBoxInternalManage.cpp" line="1409"/>
    7838         <location filename="../VBoxInternalManage.cpp" line="1486"/>
     8218        <location filename="../VBoxInternalManage.cpp" line="1517"/>
     8219        <location filename="../VBoxInternalManage.cpp" line="1594"/>
    78398220        <source>Cannot get the block count for file &apos;%s&apos;: %Rrc</source>
    78408221        <translation>Невозможно получить количество блоков в файле &apos;%s&apos;: %Rrc</translation>
    78418222    </message>
    78428223    <message>
    7843         <location filename="../VBoxInternalManage.cpp" line="1425"/>
     8224        <location filename="../VBoxInternalManage.cpp" line="1533"/>
    78448225        <source>File &apos;%s&apos; is neither block device nor regular file</source>
    78458226        <translation>Файл &apos;%s&apos; не является ни блочным устройством, ни регулярным файлом</translation>
    78468227    </message>
    78478228    <message>
    7848         <location filename="../VBoxInternalManage.cpp" line="1463"/>
     8229        <location filename="../VBoxInternalManage.cpp" line="1571"/>
    78498230        <source>File &apos;%s&apos; is no block or char device</source>
    78508231        <translation>Файл &apos;%s&apos; не является ни блочным ни символьным устройством</translation>
    78518232    </message>
    78528233    <message>
    7853         <location filename="../VBoxInternalManage.cpp" line="1502"/>
     8234        <location filename="../VBoxInternalManage.cpp" line="1610"/>
    78548235        <source>File &apos;%s&apos; is neither character device nor regular file</source>
    78558236        <translation>Файл &apos;%s&apos; не является ни символьным устройством ни регулярным файлом</translation>
    78568237    </message>
    78578238    <message>
    7858         <location filename="../VBoxInternalManage.cpp" line="1527"/>
     8239        <location filename="../VBoxInternalManage.cpp" line="1635"/>
    78598240        <source>Detected size of raw disk &apos;%s&apos; is %RU64, an invalid value</source>
    78608241        <translation>Обнаруженный размер raw диска &apos;%s&apos; %RU64, что не является допустимым значением</translation>
    78618242    </message>
    78628243    <message>
    7863         <location filename="../VBoxInternalManage.cpp" line="1559"/>
     8244        <location filename="../VBoxInternalManage.cpp" line="1667"/>
    78648245        <source>Incorrect value in partitions parameter</source>
    78658246        <translation>Недопустимое значение в параметре partitions</translation>
    78668247    </message>
    78678248    <message>
    7868         <location filename="../VBoxInternalManage.cpp" line="1573"/>
     8249        <location filename="../VBoxInternalManage.cpp" line="1681"/>
    78698250        <source>Incorrect separator in partitions parameter</source>
    78708251        <translation>Недопустимый разделитель в параметре partitions</translation>
    78718252    </message>
    78728253    <message>
    7873         <location filename="../VBoxInternalManage.cpp" line="1583"/>
     8254        <location filename="../VBoxInternalManage.cpp" line="1691"/>
    78748255        <source>Cannot read the partition information from &apos;%s&apos;</source>
    78758256        <translation>Невозможно прочитать информацию о разделах из &apos;%s&apos;</translation>
    78768257    </message>
    78778258    <message>
    7878         <location filename="../VBoxInternalManage.cpp" line="1598"/>
     8259        <location filename="../VBoxInternalManage.cpp" line="1706"/>
    78798260        <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source>
    78808261        <translation>Невозможно (и не нужно) явно давать доступ к расщиренному разделу %u. Если нужно, дайте доступ ко всем логическим разделам внутри расширенного раздела.</translation>
    78818262    </message>
    78828263    <message>
    7883         <location filename="../VBoxInternalManage.cpp" line="1618"/>
    7884         <location filename="../VBoxInternalManage.cpp" line="1686"/>
     8264        <location filename="../VBoxInternalManage.cpp" line="1726"/>
     8265        <location filename="../VBoxInternalManage.cpp" line="1794"/>
    78858266        <source>Out of memory allocating the partition list for &apos;%s&apos;</source>
    78868267        <translation>Недостаточно памяти под список разделов для &apos;%s&apos;</translation>
    78878268    </message>
    78888269    <message>
    7889         <location filename="../VBoxInternalManage.cpp" line="1634"/>
     8270        <location filename="../VBoxInternalManage.cpp" line="1742"/>
    78908271        <source>Out of memory allocating the partition descriptor for &apos;%s&apos;</source>
    78918272        <translation>Недостаточно памяти под дескриптор раздела для &apos;%s&apos;</translation>
    78928273    </message>
    78938274    <message>
    7894         <location filename="../VBoxInternalManage.cpp" line="1643"/>
     8275        <location filename="../VBoxInternalManage.cpp" line="1751"/>
    78958276        <source>Cannot read partition data from raw device &apos;%s&apos;: %Rrc</source>
    78968277        <translation>Невозможно прочитать данные раздела из raw устаройства &apos;%s&apos;: %Rrc</translation>
    78978278    </message>
    78988279    <message>
    7899         <location filename="../VBoxInternalManage.cpp" line="1655"/>
     8280        <location filename="../VBoxInternalManage.cpp" line="1763"/>
    79008281        <source>Cannot open replacement MBR file &apos;%s&apos; specified with -mbr: %Rrc</source>
    79018282        <translation>Невозможно открыть файл замены MBR &apos;%s&apos;, указанный через -mbr: %Rrc</translation>
    79028283    </message>
    79038284    <message>
    7904         <location filename="../VBoxInternalManage.cpp" line="1663"/>
     8285        <location filename="../VBoxInternalManage.cpp" line="1771"/>
    79058286        <source>Cannot read replacement MBR file &apos;%s&apos;: %Rrc</source>
    79068287        <translation>Невозможно прочитать файл замены MBR &apos;%s&apos;: %Rrc</translation>
    79078288    </message>
    79088289    <message>
    7909         <location filename="../VBoxInternalManage.cpp" line="1729"/>
     8290        <location filename="../VBoxInternalManage.cpp" line="1837"/>
    79108291        <source>Cannot create reference to individual partition %u, rc=%Rrc</source>
    79118292        <translation>Невозможно создать ссылку на индивидуальный раздел %u, rc=%Rrc</translation>
    79128293    </message>
    79138294    <message>
    7914         <location filename="../VBoxInternalManage.cpp" line="1744"/>
     8295        <location filename="../VBoxInternalManage.cpp" line="1852"/>
    79158296        <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source>
    79168297        <translation>Невозможно создать ссылку на индивидуальный раздел %u (пронумерованный как %u), rc=%Rrc</translation>
    79178298    </message>
    79188299    <message>
    7919         <location filename="../VBoxInternalManage.cpp" line="1806"/>
     8300        <location filename="../VBoxInternalManage.cpp" line="1914"/>
    79208301        <source>MBR/EPT overlaps with data area</source>
    79218302        <translation>MBR/EPT перекрывает область данных</translation>
    79228303    </message>
    79238304    <message>
    7924         <location filename="../VBoxInternalManage.cpp" line="1812"/>
     8305        <location filename="../VBoxInternalManage.cpp" line="1920"/>
    79258306        <source>GPT overlaps with data area</source>
    79268307        <translation>GPT перекрывает область данных</translation>
    79278308    </message>
    79288309    <message>
    7929         <location filename="../VBoxInternalManage.cpp" line="1869"/>
     8310        <location filename="../VBoxInternalManage.cpp" line="1977"/>
    79308311        <source>Cannot create the raw disk VMDK: %Rrc</source>
    79318312        <translation>Невозможно создать VMDK raw диск: %Rrc</translation>
    79328313    </message>
    79338314    <message>
    7934         <location filename="../VBoxInternalManage.cpp" line="1872"/>
     8315        <location filename="../VBoxInternalManage.cpp" line="1980"/>
    79358316        <source>RAW host disk access VMDK file %s created successfully.
    79368317</source>
     
    79398320    </message>
    79408321    <message>
    7941         <location filename="../VBoxInternalManage.cpp" line="1894"/>
     8322        <location filename="../VBoxInternalManage.cpp" line="2002"/>
    79428323        <source>The raw disk vmdk file was not created</source>
    79438324        <translation>vmdk файл к raw диску не создан</translation>
    79448325    </message>
    79458326    <message>
    7946         <location filename="../VBoxInternalManage.cpp" line="1931"/>
     8327        <location filename="../VBoxInternalManage.cpp" line="2039"/>
    79478328        <source>Mandatory parameter -from missing</source>
    79488329        <translation>Отсутствует обязательный параметр -from</translation>
    79498330    </message>
    79508331    <message>
    7951         <location filename="../VBoxInternalManage.cpp" line="1933"/>
     8332        <location filename="../VBoxInternalManage.cpp" line="2041"/>
    79528333        <source>Mandatory parameter -to missing</source>
    79538334        <translation>Отсутствует обязательный параметр -to</translation>
    79548335    </message>
    79558336    <message>
    7956         <location filename="../VBoxInternalManage.cpp" line="1957"/>
     8337        <location filename="../VBoxInternalManage.cpp" line="2065"/>
    79578338        <source>Cannot rename the image: %Rrc</source>
    79588339        <translation>Невозможно переименовать образ: %Rrc</translation>
    79598340    </message>
    79608341    <message>
    7961         <location filename="../VBoxInternalManage.cpp" line="1960"/>
     8342        <location filename="../VBoxInternalManage.cpp" line="2068"/>
    79628343        <source>Cannot create the source image: %Rrc</source>
    79638344        <translation>Невозможно создать образ источника: %Rrc</translation>
    79648345    </message>
    79658346    <message>
    7966         <location filename="../VBoxInternalManage.cpp" line="2004"/>
     8347        <location filename="../VBoxInternalManage.cpp" line="2112"/>
    79678348        <source>Mandatory filename parameter missing</source>
    79688349        <translation>Отсутствует обязательный параметр имя файла</translation>
    79698350    </message>
    79708351    <message>
    7971         <location filename="../VBoxInternalManage.cpp" line="2006"/>
     8352        <location filename="../VBoxInternalManage.cpp" line="2114"/>
    79728353        <source>Mandatory outputfile parameter missing</source>
    79738354        <translation>Отсутствует обязательный параметр: выходной файл</translation>
    79748355    </message>
    79758356    <message>
    7976         <location filename="../VBoxInternalManage.cpp" line="2034"/>
     8357        <location filename="../VBoxInternalManage.cpp" line="2142"/>
    79778358        <source>Cannot create destination file &quot;%s&quot;: %Rrc</source>
    79788359        <translation>Невозможно создать файл назначения &quot;%s&quot;: %Rrc</translation>
    79798360    </message>
    79808361    <message>
    7981         <location filename="../VBoxInternalManage.cpp" line="2053"/>
    7982         <location filename="../VBoxInternalManage.cpp" line="2196"/>
    7983         <location filename="../VBoxInternalManage.cpp" line="2316"/>
     8362        <location filename="../VBoxInternalManage.cpp" line="2161"/>
     8363        <location filename="../VBoxInternalManage.cpp" line="2304"/>
     8364        <location filename="../VBoxInternalManage.cpp" line="2424"/>
    79848365        <source>No file format specified and autodetect failed - please specify format: %Rrc</source>
    79858366        <translation>Не указан формат файла, также автодетект не прошел - пожалуйста, укажите формат: %Rrc</translation>
    79868367    </message>
    79878368    <message>
    7988         <location filename="../VBoxInternalManage.cpp" line="2056"/>
     8369        <location filename="../VBoxInternalManage.cpp" line="2164"/>
    79898370        <source>Only converting harddisk images is supported</source>
    79908371        <translation>Поддерживается только преобразование образов жестких дисков</translation>
    79918372    </message>
    79928373    <message>
    7993         <location filename="../VBoxInternalManage.cpp" line="2071"/>
    7994         <location filename="../VBoxInternalManage.cpp" line="2215"/>
     8374        <location filename="../VBoxInternalManage.cpp" line="2179"/>
     8375        <location filename="../VBoxInternalManage.cpp" line="2323"/>
    79958376        <source>Cannot open the source image: %Rrc</source>
    79968377        <translation>Невозможно открыть образ источника: %Rrc</translation>
    79978378    </message>
    79988379    <message numerus="yes">
    7999         <location filename="../VBoxInternalManage.cpp" line="2081"/>
     8380        <location filename="../VBoxInternalManage.cpp" line="2189"/>
    80008381        <source>Converting image &quot;%s&quot; with size %RU64 bytes (%RU64MB) to raw...
    80018382</source>
     
    80108391    </message>
    80118392    <message>
    8012         <location filename="../VBoxInternalManage.cpp" line="2103"/>
     8393        <location filename="../VBoxInternalManage.cpp" line="2211"/>
    80138394        <source>Cannot copy image data: %Rrc</source>
    80148395        <translation>Невозможно скопировать данные образа: %Rrc</translation>
    80158396    </message>
    80168397    <message>
    8017         <location filename="../VBoxInternalManage.cpp" line="2115"/>
     8398        <location filename="../VBoxInternalManage.cpp" line="2223"/>
    80188399        <source>Out of memory allocating read buffer</source>
    80198400        <translation>Не хватает памяти под буфер чтения</translation>
    80208401    </message>
    80218402    <message>
    8022         <location filename="../VBoxInternalManage.cpp" line="2172"/>
    8023         <location filename="../VBoxInternalManage.cpp" line="2293"/>
     8403        <location filename="../VBoxInternalManage.cpp" line="2280"/>
     8404        <location filename="../VBoxInternalManage.cpp" line="2401"/>
    80248405        <source>Mandatory input image parameter missing</source>
    80258406        <translation>Отсутствует обязательный параметр входной образ</translation>
    80268407    </message>
    80278408    <message>
    8028         <location filename="../VBoxInternalManage.cpp" line="2174"/>
     8409        <location filename="../VBoxInternalManage.cpp" line="2282"/>
    80298410        <source>Mandatory output image parameter missing</source>
    80308411        <translation>Отсутствует обязательный параметр выходной образ</translation>
    80318412    </message>
    80328413    <message>
    8033         <location filename="../VBoxInternalManage.cpp" line="2207"/>
     8414        <location filename="../VBoxInternalManage.cpp" line="2315"/>
    80348415        <source>Cannot create the source virtual disk container: %Rrc</source>
    80358416        <translation>Невозможно создать контейнер исходного виртуального диска: %Rrc</translation>
    80368417    </message>
    80378418    <message>
    8038         <location filename="../VBoxInternalManage.cpp" line="2226"/>
     8419        <location filename="../VBoxInternalManage.cpp" line="2334"/>
    80398420        <source>Cannot create the destination virtual disk container: %Rrc</source>
    80408421        <translation>Невозможно создать контейнер виртуального диска назначения: %Rrc</translation>
    80418422    </message>
    80428423    <message numerus="yes">
    8043         <location filename="../VBoxInternalManage.cpp" line="2231"/>
     8424        <location filename="../VBoxInternalManage.cpp" line="2339"/>
    80448425        <source>Converting image &quot;%s&quot; with size %RU64 bytes (%RU64MB)...
    80458426</source>
     
    80548435    </message>
    80558436    <message>
    8056         <location filename="../VBoxInternalManage.cpp" line="2240"/>
     8437        <location filename="../VBoxInternalManage.cpp" line="2348"/>
    80578438        <source>Cannot copy the image: %Rrc</source>
    80588439        <translation>Невозможно скопировать образ: %Rrc</translation>
    80598440    </message>
    80608441    <message>
    8061         <location filename="../VBoxInternalManage.cpp" line="2368"/>
    8062         <location filename="../VBoxInternalManage.cpp" line="2503"/>
     8442        <location filename="../VBoxInternalManage.cpp" line="2476"/>
     8443        <location filename="../VBoxInternalManage.cpp" line="2611"/>
    80638444        <source>Missing VM name/UUID</source>
    80648445        <translation>Отсутствует имя ВМ/UUID</translation>
    80658446    </message>
    80668447    <message>
    8067         <location filename="../VBoxInternalManage.cpp" line="2468"/>
     8448        <location filename="../VBoxInternalManage.cpp" line="2576"/>
    80688449        <source>One or more of the requested features are not implemented! Feel free to do this.</source>
    80698450        <translation>Один или несколько запрошенных функций не реализованы! Не стесняйтесь сделать их.</translation>
    80708451    </message>
    80718452    <message>
    8072         <location filename="../VBoxInternalManage.cpp" line="2484"/>
     8453        <location filename="../VBoxInternalManage.cpp" line="2592"/>
    80738454        <source>password to hash required</source>
    80748455        <translation>требуется пароль для хеша</translation>
    80758456    </message>
    80768457    <message>
    8077         <location filename="../VBoxInternalManage.cpp" line="2490"/>
     8458        <location filename="../VBoxInternalManage.cpp" line="2598"/>
    80788459        <source>Password hash: %s
    80798460</source>
     
    80828463    </message>
    80838464    <message>
    8084         <location filename="../VBoxInternalManage.cpp" line="2533"/>
     8465        <location filename="../VBoxInternalManage.cpp" line="2641"/>
    80858466        <source>Invalid update interval specified</source>
    80868467        <translation>Указан недопустимый интервал обновления</translation>
    80878468    </message>
    80888469    <message>
    8089         <location filename="../VBoxInternalManage.cpp" line="2535"/>
     8470        <location filename="../VBoxInternalManage.cpp" line="2643"/>
    80908471        <source>argc=%d interval=%u
    80918472</source>
     
    80948475    </message>
    80958476    <message>
    8096         <location filename="../VBoxInternalManage.cpp" line="2588"/>
     8477        <location filename="../VBoxInternalManage.cpp" line="2694"/>
    80978478        <source>Command missing</source>
    80988479        <translation>Отсутствует команда</translation>
    80998480    </message>
    81008481    <message>
    8101         <location filename="../VBoxInternalManage.cpp" line="2628"/>
     8482        <location filename="../VBoxInternalManage.cpp" line="2734"/>
    81028483        <source>Invalid command &apos;%s&apos;</source>
    81038484        <translation>Недопустимая команда &apos;%s&apos;</translation>
     
    81078488    <name>List</name>
    81088489    <message>
    8109         <location filename="../VBoxManageList.cpp" line="56"/>
    8110         <location filename="../VBoxManageList.cpp" line="70"/>
    8111         <location filename="../VBoxManageList.cpp" line="96"/>
    8112         <location filename="../VBoxManageList.cpp" line="855"/>
    8113         <location filename="../VBoxManageList.cpp" line="866"/>
     8490        <location filename="../VBoxManageList.cpp" line="54"/>
     8491        <location filename="../VBoxManageList.cpp" line="68"/>
     8492        <location filename="../VBoxManageList.cpp" line="94"/>
     8493        <location filename="../VBoxManageList.cpp" line="853"/>
     8494        <location filename="../VBoxManageList.cpp" line="864"/>
    81148495        <source>Unknown</source>
    81158496        <translation>Неизвестно</translation>
    81168497    </message>
    81178498    <message>
    8118         <location filename="../VBoxManageList.cpp" line="61"/>
    8119         <location filename="../VBoxManageList.cpp" line="75"/>
     8499        <location filename="../VBoxManageList.cpp" line="59"/>
     8500        <location filename="../VBoxManageList.cpp" line="73"/>
    81208501        <source>unknown</source>
    81218502        <translation>неизвестно</translation>
    81228503    </message>
    81238504    <message>
    8124         <location filename="../VBoxManageList.cpp" line="68"/>
     8505        <location filename="../VBoxManageList.cpp" line="66"/>
    81258506        <source>Up</source>
    81268507        <translation>Включен</translation>
    81278508    </message>
    81288509    <message>
    8129         <location filename="../VBoxManageList.cpp" line="69"/>
     8510        <location filename="../VBoxManageList.cpp" line="67"/>
    81308511        <source>Down</source>
    81318512        <translation>Выключен</translation>
    81328513    </message>
    81338514    <message>
    8134         <location filename="../VBoxManageList.cpp" line="83"/>
     8515        <location filename="../VBoxManageList.cpp" line="81"/>
    81358516        <source>HardDisk</source>
    81368517        <translation>Жесткий Диск</translation>
    81378518    </message>
    81388519    <message>
    8139         <location filename="../VBoxManageList.cpp" line="85"/>
     8520        <location filename="../VBoxManageList.cpp" line="83"/>
    81408521        <source>Floppy</source>
    81418522        <translation>Флоппи</translation>
    81428523    </message>
    81438524    <message>
    8144         <location filename="../VBoxManageList.cpp" line="88"/>
     8525        <location filename="../VBoxManageList.cpp" line="86"/>
    81458526        <source>Network</source>
    81468527        <translation>Сеть</translation>
    81478528    </message>
    81488529    <message>
    8149         <location filename="../VBoxManageList.cpp" line="90"/>
     8530        <location filename="../VBoxManageList.cpp" line="88"/>
    81508531        <source>SharedFolder</source>
    81518532        <translation>Общая папка</translation>
    81528533    </message>
    81538534    <message>
    8154         <location filename="../VBoxManageList.cpp" line="91"/>
     8535        <location filename="../VBoxManageList.cpp" line="89"/>
    81558536        <source>Graphics3D</source>
    81568537        <translation>3D графика</translation>
    81578538    </message>
    81588539    <message>
    8159         <location filename="../VBoxManageList.cpp" line="113"/>
    8160         <location filename="../VBoxManageList.cpp" line="151"/>
     8540        <location filename="../VBoxManageList.cpp" line="111"/>
     8541        <location filename="../VBoxManageList.cpp" line="149"/>
    81618542        <source>Name:        %ls
    81628543</source>
     
    81658546    </message>
    81668547    <message>
    8167         <location filename="../VBoxManageList.cpp" line="158"/>
    8168         <location filename="../VBoxManageList.cpp" line="217"/>
    8169         <location filename="../VBoxManageList.cpp" line="263"/>
    8170         <location filename="../VBoxManageList.cpp" line="1316"/>
     8548        <location filename="../VBoxManageList.cpp" line="156"/>
     8549        <location filename="../VBoxManageList.cpp" line="215"/>
     8550        <location filename="../VBoxManageList.cpp" line="261"/>
     8551        <location filename="../VBoxManageList.cpp" line="1340"/>
    81718552        <source>Name:            %ls
    81728553</source>
     
    81758556    </message>
    81768557    <message>
    8177         <location filename="../VBoxManageList.cpp" line="164"/>
    8178         <location filename="../VBoxManageList.cpp" line="223"/>
    8179         <location filename="../VBoxManageList.cpp" line="269"/>
     8558        <location filename="../VBoxManageList.cpp" line="162"/>
     8559        <location filename="../VBoxManageList.cpp" line="221"/>
     8560        <location filename="../VBoxManageList.cpp" line="267"/>
    81808561        <source>Enabled</source>
    81818562        <translation>Включено</translation>
    81828563    </message>
    81838564    <message>
    8184         <location filename="../VBoxManageList.cpp" line="164"/>
    8185         <location filename="../VBoxManageList.cpp" line="223"/>
    8186         <location filename="../VBoxManageList.cpp" line="269"/>
     8565        <location filename="../VBoxManageList.cpp" line="162"/>
     8566        <location filename="../VBoxManageList.cpp" line="221"/>
     8567        <location filename="../VBoxManageList.cpp" line="267"/>
    81878568        <source>Disabled</source>
    81888569        <translation>Отключено</translation>
    81898570    </message>
    81908571    <message>
    8191         <location filename="../VBoxManageList.cpp" line="168"/>
     8572        <location filename="../VBoxManageList.cpp" line="166"/>
    81928573        <source>IPAddress:       %ls
    81938574</source>
     
    81968577    </message>
    81978578    <message>
    8198         <location filename="../VBoxManageList.cpp" line="171"/>
    8199         <location filename="../VBoxManageList.cpp" line="227"/>
     8579        <location filename="../VBoxManageList.cpp" line="169"/>
     8580        <location filename="../VBoxManageList.cpp" line="225"/>
    82008581        <source>NetworkMask:     %ls
    82018582</source>
     
    82048585    </message>
    82058586    <message>
    8206         <location filename="../VBoxManageList.cpp" line="174"/>
     8587        <location filename="../VBoxManageList.cpp" line="172"/>
    82078588        <source>IPV6Address:     %ls
    82088589</source>
     
    82118592    </message>
    82128593    <message>
    8213         <location filename="../VBoxManageList.cpp" line="177"/>
     8594        <location filename="../VBoxManageList.cpp" line="175"/>
    82148595        <source>IPV6NetworkMaskPrefixLength: %d
    82158596</source>
     
    82188599    </message>
    82198600    <message>
    8220         <location filename="../VBoxManageList.cpp" line="180"/>
     8601        <location filename="../VBoxManageList.cpp" line="178"/>
    82218602        <source>HardwareAddress: %ls
    82228603</source>
     
    82258606    </message>
    82268607    <message>
    8227         <location filename="../VBoxManageList.cpp" line="183"/>
     8608        <location filename="../VBoxManageList.cpp" line="181"/>
    82288609        <source>MediumType:      %s
    82298610</source>
     
    82328613    </message>
    82338614    <message>
    8234         <location filename="../VBoxManageList.cpp" line="186"/>
     8615        <location filename="../VBoxManageList.cpp" line="184"/>
    82358616        <source>Wireless:        %s
    82368617</source>
     
    82398620    </message>
    82408621    <message>
    8241         <location filename="../VBoxManageList.cpp" line="186"/>
    8242         <location filename="../VBoxManageList.cpp" line="1045"/>
    8243         <location filename="../VBoxManageList.cpp" line="2201"/>
    8244         <location filename="../VBoxManageList.cpp" line="2206"/>
    8245         <location filename="../VBoxManageList.cpp" line="2208"/>
     8622        <location filename="../VBoxManageList.cpp" line="184"/>
     8623        <location filename="../VBoxManageList.cpp" line="1069"/>
    82468624        <source>Yes</source>
    82478625        <translation>Да</translation>
    82488626    </message>
    82498627    <message>
    8250         <location filename="../VBoxManageList.cpp" line="186"/>
    8251         <location filename="../VBoxManageList.cpp" line="1045"/>
    8252         <location filename="../VBoxManageList.cpp" line="2201"/>
    8253         <location filename="../VBoxManageList.cpp" line="2206"/>
    8254         <location filename="../VBoxManageList.cpp" line="2208"/>
     8628        <location filename="../VBoxManageList.cpp" line="184"/>
     8629        <location filename="../VBoxManageList.cpp" line="1069"/>
    82558630        <source>No</source>
    82568631        <translation>Нет</translation>
    82578632    </message>
    82588633    <message>
    8259         <location filename="../VBoxManageList.cpp" line="189"/>
     8634        <location filename="../VBoxManageList.cpp" line="187"/>
    82608635        <source>Status:          %s
    82618636</source>
     
    82648639    </message>
    82658640    <message>
    8266         <location filename="../VBoxManageList.cpp" line="192"/>
    8267         <location filename="../VBoxManageList.cpp" line="238"/>
    8268         <location filename="../VBoxManageList.cpp" line="281"/>
     8641        <location filename="../VBoxManageList.cpp" line="190"/>
     8642        <location filename="../VBoxManageList.cpp" line="236"/>
     8643        <location filename="../VBoxManageList.cpp" line="279"/>
    82698644        <source>VBoxNetworkName: %ls
    82708645
     
    82758650    </message>
    82768651    <message>
    8277         <location filename="../VBoxManageList.cpp" line="223"/>
    8278         <location filename="../VBoxManageList.cpp" line="269"/>
     8652        <location filename="../VBoxManageList.cpp" line="221"/>
     8653        <location filename="../VBoxManageList.cpp" line="267"/>
    82798654        <source>State:           %s
    82808655</source>
     
    82838658    </message>
    82848659    <message>
    8285         <location filename="../VBoxManageList.cpp" line="230"/>
     8660        <location filename="../VBoxManageList.cpp" line="228"/>
    82868661        <source>LowerIP:         %ls
    82878662</source>
     
    82908665    </message>
    82918666    <message>
    8292         <location filename="../VBoxManageList.cpp" line="233"/>
     8667        <location filename="../VBoxManageList.cpp" line="231"/>
    82938668        <source>UpperIP:         %ls
    82948669</source>
     
    82978672    </message>
    82988673    <message>
    8299         <location filename="../VBoxManageList.cpp" line="273"/>
     8674        <location filename="../VBoxManageList.cpp" line="271"/>
    83008675        <source>CloudProvider:   %ls
    83018676</source>
     
    83048679    </message>
    83058680    <message>
    8306         <location filename="../VBoxManageList.cpp" line="276"/>
     8681        <location filename="../VBoxManageList.cpp" line="274"/>
    83078682        <source>CloudProfile:    %ls
    83088683</source>
     
    83118686    </message>
    83128687    <message>
    8313         <location filename="../VBoxManageList.cpp" line="279"/>
     8688        <location filename="../VBoxManageList.cpp" line="277"/>
    83148689        <source>CloudNetworkId:  %ls
    83158690</source>
     
    83188693    </message>
    83198694    <message>
    8320         <location filename="../VBoxManageList.cpp" line="303"/>
     8695        <location filename="../VBoxManageList.cpp" line="301"/>
    83218696        <source>HW virtualization</source>
    83228697        <translation>Аппаратная виртуализация</translation>
    83238698    </message>
    83248699    <message>
    8325         <location filename="../VBoxManageList.cpp" line="305"/>
     8700        <location filename="../VBoxManageList.cpp" line="303"/>
    83268701        <source>long mode</source>
    83278702        <translation>длинный режим</translation>
    83288703    </message>
    83298704    <message>
    8330         <location filename="../VBoxManageList.cpp" line="306"/>
     8705        <location filename="../VBoxManageList.cpp" line="304"/>
    83318706        <source>nested paging</source>
    83328707        <translation>вложенные страницы</translation>
    83338708    </message>
    83348709    <message>
    8335         <location filename="../VBoxManageList.cpp" line="307"/>
     8710        <location filename="../VBoxManageList.cpp" line="305"/>
    83368711        <source>unrestricted guest</source>
    83378712        <translation>неограниченный гость</translation>
    83388713    </message>
    83398714    <message>
    8340         <location filename="../VBoxManageList.cpp" line="308"/>
     8715        <location filename="../VBoxManageList.cpp" line="306"/>
    83418716        <source>nested HW virtualization</source>
    83428717        <translation>вложенная аппаратная виртуализация</translation>
    83438718    </message>
    83448719    <message>
    8345         <location filename="../VBoxManageList.cpp" line="309"/>
     8720        <location filename="../VBoxManageList.cpp" line="307"/>
    83468721        <source>virt. vmsave/vmload</source>
    83478722        <translation>virt. vmsave/vmload</translation>
    83488723    </message>
    83498724    <message>
    8350         <location filename="../VBoxManageList.cpp" line="315"/>
     8725        <location filename="../VBoxManageList.cpp" line="313"/>
    83518726        <source>Host Information:
    83528727
     
    83578732    </message>
    83588733    <message>
    8359         <location filename="../VBoxManageList.cpp" line="321"/>
     8734        <location filename="../VBoxManageList.cpp" line="319"/>
    83608735        <source>Host time: %s
    83618736</source>
     
    83648739    </message>
    83658740    <message>
    8366         <location filename="../VBoxManageList.cpp" line="325"/>
     8741        <location filename="../VBoxManageList.cpp" line="323"/>
    83678742        <source>Processor online count: %lu
    83688743</source>
     
    83718746    </message>
    83728747    <message>
    8373         <location filename="../VBoxManageList.cpp" line="328"/>
     8748        <location filename="../VBoxManageList.cpp" line="326"/>
    83748749        <source>Processor count: %lu
    83758750</source>
     
    83788753    </message>
    83798754    <message>
    8380         <location filename="../VBoxManageList.cpp" line="331"/>
     8755        <location filename="../VBoxManageList.cpp" line="329"/>
    83818756        <source>Processor online core count: %lu
    83828757</source>
     
    83858760    </message>
    83868761    <message>
    8387         <location filename="../VBoxManageList.cpp" line="334"/>
     8762        <location filename="../VBoxManageList.cpp" line="332"/>
    83888763        <source>Processor core count: %lu
    83898764</source>
     
    83928767    </message>
    83938768    <message>
    8394         <location filename="../VBoxManageList.cpp" line="339"/>
     8769        <location filename="../VBoxManageList.cpp" line="337"/>
    83958770        <source>Processor supports %s: %s
    83968771</source>
     
    83998774    </message>
    84008775    <message>
    8401         <location filename="../VBoxManageList.cpp" line="339"/>
    8402         <location filename="../VBoxManageList.cpp" line="673"/>
    8403         <location filename="../VBoxManageList.cpp" line="827"/>
    8404         <location filename="../VBoxManageList.cpp" line="880"/>
    8405         <location filename="../VBoxManageList.cpp" line="1779"/>
    8406         <location filename="../VBoxManageList.cpp" line="1784"/>
     8776        <location filename="../VBoxManageList.cpp" line="337"/>
     8777        <location filename="../VBoxManageList.cpp" line="671"/>
     8778        <location filename="../VBoxManageList.cpp" line="825"/>
     8779        <location filename="../VBoxManageList.cpp" line="889"/>
     8780        <location filename="../VBoxManageList.cpp" line="1803"/>
     8781        <location filename="../VBoxManageList.cpp" line="1808"/>
    84078782        <source>yes</source>
    84088783        <translation>да</translation>
    84098784    </message>
    84108785    <message>
    8411         <location filename="../VBoxManageList.cpp" line="339"/>
    8412         <location filename="../VBoxManageList.cpp" line="673"/>
    8413         <location filename="../VBoxManageList.cpp" line="827"/>
    8414         <location filename="../VBoxManageList.cpp" line="880"/>
    8415         <location filename="../VBoxManageList.cpp" line="1779"/>
    8416         <location filename="../VBoxManageList.cpp" line="1784"/>
     8786        <location filename="../VBoxManageList.cpp" line="337"/>
     8787        <location filename="../VBoxManageList.cpp" line="671"/>
     8788        <location filename="../VBoxManageList.cpp" line="825"/>
     8789        <location filename="../VBoxManageList.cpp" line="889"/>
     8790        <location filename="../VBoxManageList.cpp" line="1803"/>
     8791        <location filename="../VBoxManageList.cpp" line="1808"/>
    84178792        <source>no</source>
    84188793        <translation>нет</translation>
    84198794    </message>
    84208795    <message>
     8796        <location filename="../VBoxManageList.cpp" line="344"/>
     8797        <source>Processor#%u speed: %lu MHz
     8798</source>
     8799        <translation>Скорость процессора #%u: %lu МГц
     8800</translation>
     8801    </message>
     8802    <message>
    84218803        <location filename="../VBoxManageList.cpp" line="346"/>
    8422         <source>Processor#%u speed: %lu MHz
    8423 </source>
    8424         <translation>Скорость процессора #%u: %lu МГц
    8425 </translation>
    8426     </message>
    8427     <message>
    8428         <location filename="../VBoxManageList.cpp" line="348"/>
    84298804        <source>Processor#%u speed: unknown
    84308805</source>
     
    84338808    </message>
    84348809    <message>
    8435         <location filename="../VBoxManageList.cpp" line="351"/>
     8810        <location filename="../VBoxManageList.cpp" line="349"/>
    84368811        <source>Processor#%u description: %ls
    84378812</source>
     
    84408815    </message>
    84418816    <message numerus="yes">
    8442         <location filename="../VBoxManageList.cpp" line="356"/>
     8817        <location filename="../VBoxManageList.cpp" line="354"/>
    84438818        <source>Memory size: %lu MByte
    84448819</source>
     
    84538828    </message>
    84548829    <message numerus="yes">
    8455         <location filename="../VBoxManageList.cpp" line="360"/>
     8830        <location filename="../VBoxManageList.cpp" line="358"/>
    84568831        <source>Memory available: %lu MByte
    84578832</source>
     
    84668841    </message>
    84678842    <message>
    8468         <location filename="../VBoxManageList.cpp" line="364"/>
     8843        <location filename="../VBoxManageList.cpp" line="362"/>
    84698844        <source>Operating system: %ls
    84708845</source>
     
    84738848    </message>
    84748849    <message>
    8475         <location filename="../VBoxManageList.cpp" line="368"/>
     8850        <location filename="../VBoxManageList.cpp" line="366"/>
    84768851        <source>Operating system version: %ls
    84778852</source>
     
    84808855    </message>
    84818856    <message>
    8482         <location filename="../VBoxManageList.cpp" line="426"/>
     8857        <location filename="../VBoxManageList.cpp" line="424"/>
    84838858        <source>Supported hard disk backends:
    84848859
     
    84898864    </message>
    84908865    <message>
    8491         <location filename="../VBoxManageList.cpp" line="445"/>
     8866        <location filename="../VBoxManageList.cpp" line="443"/>
    84928867        <source>Backend %u: id=&apos;%ls&apos; description=&apos;%ls&apos; capabilities=%#06x extensions=&apos;</source>
    84938868        <translation>Бэкенд %u: id=&apos;%ls&apos; описание=&apos;%ls&apos; возможности=%#06x расширения=&apos;</translation>
    84948869    </message>
    84958870    <message>
    8496         <location filename="../VBoxManageList.cpp" line="474"/>
     8871        <location filename="../VBoxManageList.cpp" line="472"/>
    84978872        <source> properties=(</source>
    84988873        <translation> свойства=(</translation>
    84998874    </message>
    85008875    <message>
    8501         <location filename="../VBoxManageList.cpp" line="479"/>
     8876        <location filename="../VBoxManageList.cpp" line="477"/>
    85028877        <source>
    85038878  name=&apos;%ls&apos; desc=&apos;%ls&apos; type=</source>
     
    85068881    </message>
    85078882    <message>
    8508         <location filename="../VBoxManageList.cpp" line="483"/>
     8883        <location filename="../VBoxManageList.cpp" line="481"/>
    85098884        <source>int</source>
    85108885        <translation>int</translation>
    85118886    </message>
    85128887    <message>
    8513         <location filename="../VBoxManageList.cpp" line="484"/>
     8888        <location filename="../VBoxManageList.cpp" line="482"/>
    85148889        <source>byte</source>
    85158890        <translation>byte</translation>
    85168891    </message>
    85178892    <message>
    8518         <location filename="../VBoxManageList.cpp" line="485"/>
     8893        <location filename="../VBoxManageList.cpp" line="483"/>
    85198894        <source>string</source>
    85208895        <translation>string</translation>
    85218896    </message>
    85228897    <message>
    8523         <location filename="../VBoxManageList.cpp" line="490"/>
     8898        <location filename="../VBoxManageList.cpp" line="488"/>
    85248899        <source> flags=%#04x</source>
    85258900        <translation> флаги=%#04x</translation>
    85268901    </message>
    85278902    <message>
    8528         <location filename="../VBoxManageList.cpp" line="491"/>
     8903        <location filename="../VBoxManageList.cpp" line="489"/>
    85298904        <source> default=&apos;%ls&apos;</source>
    85308905        <translation> по умолчанию=&apos;%ls&apos;</translation>
    85318906    </message>
    85328907    <message>
    8533         <location filename="../VBoxManageList.cpp" line="517"/>
     8908        <location filename="../VBoxManageList.cpp" line="515"/>
    85348909        <source>Host USB Devices:
    85358910
     
    85408915    </message>
    85418916    <message>
    8542         <location filename="../VBoxManageList.cpp" line="521"/>
    8543         <location filename="../VBoxManageList.cpp" line="659"/>
     8917        <location filename="../VBoxManageList.cpp" line="519"/>
     8918        <location filename="../VBoxManageList.cpp" line="657"/>
    85448919        <source>&lt;none&gt;
    85458920
     
    85508925    </message>
    85518926    <message>
    8552         <location filename="../VBoxManageList.cpp" line="545"/>
     8927        <location filename="../VBoxManageList.cpp" line="543"/>
    85538928        <source>UUID:               %s
    85548929VendorId:           %#06x (%04X)
     
    85658940    </message>
    85668941    <message>
    8567         <location filename="../VBoxManageList.cpp" line="561"/>
     8942        <location filename="../VBoxManageList.cpp" line="559"/>
    85688943        <source>Low</source>
    85698944        <translation>Низкая</translation>
    85708945    </message>
    85718946    <message>
    8572         <location filename="../VBoxManageList.cpp" line="564"/>
     8947        <location filename="../VBoxManageList.cpp" line="562"/>
    85738948        <source>Full</source>
    85748949        <translation>Полная</translation>
    85758950    </message>
    85768951    <message>
    8577         <location filename="../VBoxManageList.cpp" line="567"/>
     8952        <location filename="../VBoxManageList.cpp" line="565"/>
    85788953        <source>High</source>
    85798954        <translation>Высокая</translation>
    85808955    </message>
    85818956    <message>
    8582         <location filename="../VBoxManageList.cpp" line="570"/>
     8957        <location filename="../VBoxManageList.cpp" line="568"/>
    85838958        <source>Super</source>
    85848959        <translation>Супер</translation>
    85858960    </message>
    85868961    <message>
    8587         <location filename="../VBoxManageList.cpp" line="573"/>
     8962        <location filename="../VBoxManageList.cpp" line="571"/>
    85888963        <source>SuperPlus</source>
    85898964        <translation>СуперПлюс</translation>
    85908965    </message>
    85918966    <message>
    8592         <location filename="../VBoxManageList.cpp" line="580"/>
     8967        <location filename="../VBoxManageList.cpp" line="578"/>
    85938968        <source>USB version/speed:  %u/%s
    85948969</source>
     
    85978972    </message>
    85988973    <message>
    8599         <location filename="../VBoxManageList.cpp" line="589"/>
     8974        <location filename="../VBoxManageList.cpp" line="587"/>
    86008975        <source>Manufacturer:       %ls
    86018976</source>
     
    86048979    </message>
    86058980    <message>
    8606         <location filename="../VBoxManageList.cpp" line="593"/>
     8981        <location filename="../VBoxManageList.cpp" line="591"/>
    86078982        <source>Product:            %ls
    86088983</source>
     
    86118986    </message>
    86128987    <message>
    8613         <location filename="../VBoxManageList.cpp" line="596"/>
     8988        <location filename="../VBoxManageList.cpp" line="594"/>
    86148989        <source>SerialNumber:       %ls
    86158990</source>
     
    86188993    </message>
    86198994    <message>
    8620         <location filename="../VBoxManageList.cpp" line="599"/>
     8995        <location filename="../VBoxManageList.cpp" line="597"/>
    86218996        <source>Address:            %ls
    86228997</source>
     
    86259000    </message>
    86269001    <message>
    8627         <location filename="../VBoxManageList.cpp" line="602"/>
     9002        <location filename="../VBoxManageList.cpp" line="600"/>
    86289003        <source>Port path:          %ls
    86299004</source>
     
    86329007    </message>
    86339008    <message>
    8634         <location filename="../VBoxManageList.cpp" line="611"/>
     9009        <location filename="../VBoxManageList.cpp" line="609"/>
    86359010        <source>Not supported</source>
    86369011        <translation>Не поддерживается</translation>
    86379012    </message>
    86389013    <message>
    8639         <location filename="../VBoxManageList.cpp" line="614"/>
     9014        <location filename="../VBoxManageList.cpp" line="612"/>
    86409015        <source>Unavailable</source>
    86419016        <translation>Недоступен</translation>
    86429017    </message>
    86439018    <message>
    8644         <location filename="../VBoxManageList.cpp" line="617"/>
     9019        <location filename="../VBoxManageList.cpp" line="615"/>
    86459020        <source>Busy</source>
    86469021        <translation>Занят</translation>
    86479022    </message>
    86489023    <message>
    8649         <location filename="../VBoxManageList.cpp" line="620"/>
     9024        <location filename="../VBoxManageList.cpp" line="618"/>
    86509025        <source>Available</source>
    86519026        <translation>Доступен</translation>
    86529027    </message>
    86539028    <message>
    8654         <location filename="../VBoxManageList.cpp" line="623"/>
     9029        <location filename="../VBoxManageList.cpp" line="621"/>
    86559030        <source>Held</source>
    86569031        <translation>Удерживается</translation>
    86579032    </message>
    86589033    <message>
    8659         <location filename="../VBoxManageList.cpp" line="626"/>
     9034        <location filename="../VBoxManageList.cpp" line="624"/>
    86609035        <source>Captured</source>
    86619036        <translation>Захвачен</translation>
    86629037    </message>
    86639038    <message>
    8664         <location filename="../VBoxManageList.cpp" line="632"/>
     9039        <location filename="../VBoxManageList.cpp" line="630"/>
    86659040        <source>Current State:      %s
    86669041
     
    86719046    </message>
    86729047    <message>
    8673         <location filename="../VBoxManageList.cpp" line="649"/>
     9048        <location filename="../VBoxManageList.cpp" line="647"/>
    86749049        <source>Global USB Device Filters:
    86759050
     
    86809055    </message>
    86819056    <message>
    8682         <location filename="../VBoxManageList.cpp" line="669"/>
     9057        <location filename="../VBoxManageList.cpp" line="667"/>
    86839058        <source>Index:            %zu
    86849059</source>
     
    86879062    </message>
    86889063    <message>
    8689         <location filename="../VBoxManageList.cpp" line="673"/>
     9064        <location filename="../VBoxManageList.cpp" line="671"/>
    86909065        <source>Active:           %s
    86919066</source>
     
    86949069    </message>
    86959070    <message>
    8696         <location filename="../VBoxManageList.cpp" line="677"/>
     9071        <location filename="../VBoxManageList.cpp" line="675"/>
    86979072        <source>&lt;invalid&gt;</source>
    86989073        <translation>&lt;недействительно&gt;</translation>
    86999074    </message>
    87009075    <message>
    8701         <location filename="../VBoxManageList.cpp" line="681"/>
     9076        <location filename="../VBoxManageList.cpp" line="679"/>
    87029077        <source>Ignore</source>
    87039078        <translation>Игнорировать</translation>
    87049079    </message>
    87059080    <message>
    8706         <location filename="../VBoxManageList.cpp" line="684"/>
     9081        <location filename="../VBoxManageList.cpp" line="682"/>
    87079082        <source>Hold</source>
    87089083        <translation>Удерживать</translation>
    87099084    </message>
    87109085    <message>
    8711         <location filename="../VBoxManageList.cpp" line="689"/>
     9086        <location filename="../VBoxManageList.cpp" line="687"/>
    87129087        <source>Action:           %s
    87139088</source>
     
    87169091    </message>
    87179092    <message>
     9093        <location filename="../VBoxManageList.cpp" line="691"/>
     9094        <source>Name:             %ls
     9095</source>
     9096        <translation>Имя:             %ls
     9097</translation>
     9098    </message>
     9099    <message>
    87189100        <location filename="../VBoxManageList.cpp" line="693"/>
    8719         <source>Name:             %ls
    8720 </source>
    8721         <translation>Имя:             %ls
     9101        <source>VendorId:         %ls
     9102</source>
     9103        <translation>ID Поставщика:         %ls
    87229104</translation>
    87239105    </message>
    87249106    <message>
    87259107        <location filename="../VBoxManageList.cpp" line="695"/>
    8726         <source>VendorId:         %ls
    8727 </source>
    8728         <translation>ID Поставщика:         %ls
     9108        <source>ProductId:        %ls
     9109</source>
     9110        <translation>ID Продукта:        %ls
    87299111</translation>
    87309112    </message>
    87319113    <message>
    87329114        <location filename="../VBoxManageList.cpp" line="697"/>
    8733         <source>ProductId:        %ls
    8734 </source>
    8735         <translation>ID Продукта:        %ls
     9115        <source>Revision:         %ls
     9116</source>
     9117        <translation>Ревизия:         %ls
    87369118</translation>
    87379119    </message>
    87389120    <message>
    87399121        <location filename="../VBoxManageList.cpp" line="699"/>
    8740         <source>Revision:         %ls
    8741 </source>
    8742         <translation>Ревизия:         %ls
     9122        <source>Manufacturer:     %ls
     9123</source>
     9124        <translation>Производитель:     %ls
    87439125</translation>
    87449126    </message>
    87459127    <message>
    87469128        <location filename="../VBoxManageList.cpp" line="701"/>
    8747         <source>Manufacturer:     %ls
    8748 </source>
    8749         <translation>Производитель:     %ls
     9129        <source>Product:          %ls
     9130</source>
     9131        <translation>Продукт:          %ls
    87509132</translation>
    87519133    </message>
    87529134    <message>
    87539135        <location filename="../VBoxManageList.cpp" line="703"/>
    8754         <source>Product:          %ls
    8755 </source>
    8756         <translation>Продукт:          %ls
    8757 </translation>
    8758     </message>
    8759     <message>
    8760         <location filename="../VBoxManageList.cpp" line="705"/>
    87619136        <source>Serial Number:    %ls
    87629137
     
    87679142    </message>
    87689143    <message>
    8769         <location filename="../VBoxManageList.cpp" line="730"/>
     9144        <location filename="../VBoxManageList.cpp" line="728"/>
    87709145        <source>API version:                     %ls
    87719146</source>
     
    87749149    </message>
    87759150    <message numerus="yes">
    8776         <location filename="../VBoxManageList.cpp" line="733"/>
     9151        <location filename="../VBoxManageList.cpp" line="731"/>
    87779152        <source>Minimum guest RAM size:          %u Megabytes
    87789153</source>
     
    87879162    </message>
    87889163    <message numerus="yes">
    8789         <location filename="../VBoxManageList.cpp" line="735"/>
     9164        <location filename="../VBoxManageList.cpp" line="733"/>
    87909165        <source>Maximum guest RAM size:          %u Megabytes
    87919166</source>
     
    88009175    </message>
    88019176    <message numerus="yes">
    8802         <location filename="../VBoxManageList.cpp" line="737"/>
     9177        <location filename="../VBoxManageList.cpp" line="735"/>
    88039178        <source>Minimum video RAM size:          %u Megabytes
    88049179</source>
     
    88139188    </message>
    88149189    <message numerus="yes">
    8815         <location filename="../VBoxManageList.cpp" line="739"/>
     9190        <location filename="../VBoxManageList.cpp" line="737"/>
    88169191        <source>Maximum video RAM size:          %u Megabytes
    88179192</source>
     
    88269201    </message>
    88279202    <message>
     9203        <location filename="../VBoxManageList.cpp" line="739"/>
     9204        <source>Maximum guest monitor count:     %u
     9205</source>
     9206        <translation>Максимально гостевых мониторов:     %u
     9207</translation>
     9208    </message>
     9209    <message>
    88289210        <location filename="../VBoxManageList.cpp" line="741"/>
    8829         <source>Maximum guest monitor count:     %u
    8830 </source>
    8831         <translation>Максимально гостевых мониторов:     %u
     9211        <source>Minimum guest CPU count:         %u
     9212</source>
     9213        <translation>Минимально гостевых ЦПУ:         %u
    88329214</translation>
    88339215    </message>
    88349216    <message>
    88359217        <location filename="../VBoxManageList.cpp" line="743"/>
    8836         <source>Minimum guest CPU count:         %u
    8837 </source>
    8838         <translation>Минимально гостевых ЦПУ:         %u
    8839 </translation>
    8840     </message>
    8841     <message>
     9218        <source>Maximum guest CPU count:         %u
     9219</source>
     9220        <translation>Максимально гостевых ЦПУ:         %u
     9221</translation>
     9222    </message>
     9223    <message numerus="yes">
    88429224        <location filename="../VBoxManageList.cpp" line="745"/>
    8843         <source>Maximum guest CPU count:         %u
    8844 </source>
    8845         <translation>Максимально гостевых ЦПУ:         %u
    8846 </translation>
    8847     </message>
    8848     <message numerus="yes">
    8849         <location filename="../VBoxManageList.cpp" line="747"/>
    88509225        <source>Virtual disk limit (info):       %lld Bytes
    88519226</source>
     
    88609235    </message>
    88619236    <message>
     9237        <location filename="../VBoxManageList.cpp" line="747"/>
     9238        <source>Maximum Serial Port count:       %u
     9239</source>
     9240        <translation>Максимально последовательных портов:       %u
     9241</translation>
     9242    </message>
     9243    <message>
    88629244        <location filename="../VBoxManageList.cpp" line="749"/>
    8863         <source>Maximum Serial Port count:       %u
    8864 </source>
    8865         <translation>Максимально последовательных портов:       %u
     9245        <source>Maximum Parallel Port count:     %u
     9246</source>
     9247        <translation>Максимально параллельных портов:       %u
    88669248</translation>
    88679249    </message>
    88689250    <message>
    88699251        <location filename="../VBoxManageList.cpp" line="751"/>
    8870         <source>Maximum Parallel Port count:     %u
    8871 </source>
    8872         <translation>Максимально параллельных портов:       %u
     9252        <source>Maximum Boot Position:           %u
     9253</source>
     9254        <translation>Максимальная загрузочная позиция:           %u
    88739255</translation>
    88749256    </message>
    88759257    <message>
    88769258        <location filename="../VBoxManageList.cpp" line="753"/>
    8877         <source>Maximum Boot Position:           %u
    8878 </source>
    8879         <translation>Максимальная загрузочная позиция:           %u
     9259        <source>Maximum PIIX3 Network Adapter count:   %u
     9260</source>
     9261        <translation>Максимально PIIX3 сетевых адаптеров:   %u
    88809262</translation>
    88819263    </message>
    88829264    <message>
    88839265        <location filename="../VBoxManageList.cpp" line="755"/>
    8884         <source>Maximum PIIX3 Network Adapter count:   %u
    8885 </source>
    8886         <translation>Максимально PIIX3 сетевых адаптеров:   %u
     9266        <source>Maximum ICH9 Network Adapter count:   %u
     9267</source>
     9268        <translation>Максимально ICH9 сетевых адаптеров:   %u
    88879269</translation>
    88889270    </message>
    88899271    <message>
    88909272        <location filename="../VBoxManageList.cpp" line="757"/>
    8891         <source>Maximum ICH9 Network Adapter count:   %u
    8892 </source>
    8893         <translation>Максимально ICH9 сетевых адаптеров:   %u
     9273        <source>Maximum PIIX3 IDE Controllers:   %u
     9274</source>
     9275        <translation>Максимально PIIX3 IDE Контроллеров:   %u
    88949276</translation>
    88959277    </message>
    88969278    <message>
    88979279        <location filename="../VBoxManageList.cpp" line="759"/>
    8898         <source>Maximum PIIX3 IDE Controllers:   %u
    8899 </source>
    8900         <translation>Максимально PIIX3 IDE Контроллеров:   %u
     9280        <source>Maximum ICH9 IDE Controllers:    %u
     9281</source>
     9282        <translation>Максимально ICH9 IDE Контроллеров:    %u
    89019283</translation>
    89029284    </message>
    89039285    <message>
    89049286        <location filename="../VBoxManageList.cpp" line="761"/>
    8905         <source>Maximum ICH9 IDE Controllers:    %u
    8906 </source>
    8907         <translation>Максимально ICH9 IDE Контроллеров:    %u
     9287        <source>Maximum IDE Port count:          %u
     9288</source>
     9289        <translation>Максимально IDE портов:          %u
    89089290</translation>
    89099291    </message>
    89109292    <message>
    89119293        <location filename="../VBoxManageList.cpp" line="763"/>
    8912         <source>Maximum IDE Port count:          %u
    8913 </source>
    8914         <translation>Максимально IDE портов:          %u
     9294        <source>Maximum Devices per IDE Port:    %u
     9295</source>
     9296        <translation>Максимально устройств на IDE порт:    %u
    89159297</translation>
    89169298    </message>
    89179299    <message>
    89189300        <location filename="../VBoxManageList.cpp" line="765"/>
    8919         <source>Maximum Devices per IDE Port:    %u
    8920 </source>
    8921         <translation>Максимально устройств на IDE порт:    %u
     9301        <source>Maximum PIIX3 SATA Controllers:  %u
     9302</source>
     9303        <translation>Максимально PIIX3 SATA Контроллеров:   %u
    89229304</translation>
    89239305    </message>
    89249306    <message>
    89259307        <location filename="../VBoxManageList.cpp" line="767"/>
    8926         <source>Maximum PIIX3 SATA Controllers:  %u
    8927 </source>
    8928         <translation>Максимально PIIX3 SATA Контроллеров:   %u
     9308        <source>Maximum ICH9 SATA Controllers:   %u
     9309</source>
     9310        <translation>Максимально ICH9 SATA Контроллеров:    %u
    89299311</translation>
    89309312    </message>
    89319313    <message>
    89329314        <location filename="../VBoxManageList.cpp" line="769"/>
    8933         <source>Maximum ICH9 SATA Controllers:   %u
    8934 </source>
    8935         <translation>Максимально ICH9 SATA Контроллеров:    %u
     9315        <source>Maximum SATA Port count:         %u
     9316</source>
     9317        <translation>Максимально SATA портов:         %u
    89369318</translation>
    89379319    </message>
    89389320    <message>
    89399321        <location filename="../VBoxManageList.cpp" line="771"/>
    8940         <source>Maximum SATA Port count:         %u
    8941 </source>
    8942         <translation>Максимально SATA портов:         %u
     9322        <source>Maximum Devices per SATA Port:   %u
     9323</source>
     9324        <translation>Максимально устройств на SATA порт:   %u
    89439325</translation>
    89449326    </message>
    89459327    <message>
    89469328        <location filename="../VBoxManageList.cpp" line="773"/>
    8947         <source>Maximum Devices per SATA Port:   %u
    8948 </source>
    8949         <translation>Максимально устройств на SATA порт:   %u
     9329        <source>Maximum PIIX3 SCSI Controllers:  %u
     9330</source>
     9331        <translation>Максимально PIIX3 SCSI Контроллеров:   %u
    89509332</translation>
    89519333    </message>
    89529334    <message>
    89539335        <location filename="../VBoxManageList.cpp" line="775"/>
    8954         <source>Maximum PIIX3 SCSI Controllers:  %u
    8955 </source>
    8956         <translation>Максимально PIIX3 SCSI Контроллеров:   %u
     9336        <source>Maximum ICH9 SCSI Controllers:   %u
     9337</source>
     9338        <translation>Максимально ICH9 SCSI Контроллеров:    %u
    89579339</translation>
    89589340    </message>
    89599341    <message>
    89609342        <location filename="../VBoxManageList.cpp" line="777"/>
    8961         <source>Maximum ICH9 SCSI Controllers:   %u
    8962 </source>
    8963         <translation>Максимально ICH9 SCSI Контроллеров:    %u
     9343        <source>Maximum SCSI Port count:         %u
     9344</source>
     9345        <translation>Максимально SCSI портов:         %u
    89649346</translation>
    89659347    </message>
    89669348    <message>
    89679349        <location filename="../VBoxManageList.cpp" line="779"/>
    8968         <source>Maximum SCSI Port count:         %u
    8969 </source>
    8970         <translation>Максимально SCSI портов:         %u
     9350        <source>Maximum Devices per SCSI Port:   %u
     9351</source>
     9352        <translation>Максимально устройств на SCSI порт:   %u
    89719353</translation>
    89729354    </message>
    89739355    <message>
    89749356        <location filename="../VBoxManageList.cpp" line="781"/>
    8975         <source>Maximum Devices per SCSI Port:   %u
    8976 </source>
    8977         <translation>Максимально устройств на SCSI порт:   %u
     9357        <source>Maximum SAS PIIX3 Controllers:   %u
     9358</source>
     9359        <translation>Максимально PIIX3 SAS Контроллеров:   %u
    89789360</translation>
    89799361    </message>
    89809362    <message>
    89819363        <location filename="../VBoxManageList.cpp" line="783"/>
    8982         <source>Maximum SAS PIIX3 Controllers:   %u
    8983 </source>
    8984         <translation>Максимально PIIX3 SAS Контроллеров:   %u
     9364        <source>Maximum SAS ICH9 Controllers:    %u
     9365</source>
     9366        <translation>Максимально ICH9 SAS Контроллеров:    %u
    89859367</translation>
    89869368    </message>
    89879369    <message>
    89889370        <location filename="../VBoxManageList.cpp" line="785"/>
    8989         <source>Maximum SAS ICH9 Controllers:    %u
    8990 </source>
    8991         <translation>Максимально ICH9 SAS Контроллеров:    %u
     9371        <source>Maximum SAS Port count:          %u
     9372</source>
     9373        <translation>Максимально SAS портов:         %u
    89929374</translation>
    89939375    </message>
    89949376    <message>
    89959377        <location filename="../VBoxManageList.cpp" line="787"/>
    8996         <source>Maximum SAS Port count:          %u
    8997 </source>
    8998         <translation>Максимально SAS портов:         %u
     9378        <source>Maximum Devices per SAS Port:    %u
     9379</source>
     9380        <translation>Максимально устройств на SAS порт:   %u
    89999381</translation>
    90009382    </message>
    90019383    <message>
    90029384        <location filename="../VBoxManageList.cpp" line="789"/>
    9003         <source>Maximum Devices per SAS Port:    %u
    9004 </source>
    9005         <translation>Максимально устройств на SAS порт:   %u
     9385        <source>Maximum NVMe PIIX3 Controllers:  %u
     9386</source>
     9387        <translation>Максимально PIIX3 NVMe Контроллеров:   %u
    90069388</translation>
    90079389    </message>
    90089390    <message>
    90099391        <location filename="../VBoxManageList.cpp" line="791"/>
    9010         <source>Maximum NVMe PIIX3 Controllers:  %u
    9011 </source>
    9012         <translation>Максимально PIIX3 NVMe Контроллеров:   %u
     9392        <source>Maximum NVMe ICH9 Controllers:   %u
     9393</source>
     9394        <translation>Максимально ICH9 NVMe Контроллеров:    %u
    90139395</translation>
    90149396    </message>
    90159397    <message>
    90169398        <location filename="../VBoxManageList.cpp" line="793"/>
    9017         <source>Maximum NVMe ICH9 Controllers:   %u
    9018 </source>
    9019         <translation>Максимально ICH9 NVMe Контроллеров:    %u
     9399        <source>Maximum NVMe Port count:         %u
     9400</source>
     9401        <translation>Максимально NVMe портов:          %u
    90209402</translation>
    90219403    </message>
    90229404    <message>
    90239405        <location filename="../VBoxManageList.cpp" line="795"/>
    9024         <source>Maximum NVMe Port count:         %u
    9025 </source>
    9026         <translation>Максимально NVMe портов:          %u
     9406        <source>Maximum Devices per NVMe Port:   %u
     9407</source>
     9408        <translation>Максимально устройств на NVMe порт:    %u
    90279409</translation>
    90289410    </message>
    90299411    <message>
    90309412        <location filename="../VBoxManageList.cpp" line="797"/>
    9031         <source>Maximum Devices per NVMe Port:   %u
    9032 </source>
    9033         <translation>Максимально устройств на NVMe порт:    %u
     9413        <source>Maximum virtio-scsi PIIX3 Controllers:  %u
     9414</source>
     9415        <translation>Максимально PIIX3 virtio-scsi Контроллеров:   %u
    90349416</translation>
    90359417    </message>
    90369418    <message>
    90379419        <location filename="../VBoxManageList.cpp" line="799"/>
    9038         <source>Maximum virtio-scsi PIIX3 Controllers:  %u
    9039 </source>
    9040         <translation>Максимально PIIX3 virtio-scsi Контроллеров:   %u
     9420        <source>Maximum virtio-scsi ICH9 Controllers:   %u
     9421</source>
     9422        <translation>Максимально ICH9 virtio-scsi Контроллеров:    %u
    90419423</translation>
    90429424    </message>
    90439425    <message>
    90449426        <location filename="../VBoxManageList.cpp" line="801"/>
    9045         <source>Maximum virtio-scsi ICH9 Controllers:   %u
    9046 </source>
    9047         <translation>Максимально ICH9 virtio-scsi Контроллеров:    %u
     9427        <source>Maximum virtio-scsi Port count:         %u
     9428</source>
     9429        <translation>Максимально virtio-scsi портов:         %u
    90489430</translation>
    90499431    </message>
    90509432    <message>
    90519433        <location filename="../VBoxManageList.cpp" line="803"/>
    9052         <source>Maximum virtio-scsi Port count:         %u
    9053 </source>
    9054         <translation>Максимально virtio-scsi портов:         %u
     9434        <source>Maximum Devices per virtio-scsi Port:   %u
     9435</source>
     9436        <translation>Максимально устройств на virtio-scsi порт:   %u
    90559437</translation>
    90569438    </message>
    90579439    <message>
    90589440        <location filename="../VBoxManageList.cpp" line="805"/>
    9059         <source>Maximum Devices per virtio-scsi Port:   %u
    9060 </source>
    9061         <translation>Максимально устройств на virtio-scsi порт:   %u
     9441        <source>Maximum PIIX3 Floppy Controllers:%u
     9442</source>
     9443        <translation>Максимально PIIX3 Флоппи Контроллеров:   %u
    90629444</translation>
    90639445    </message>
    90649446    <message>
    90659447        <location filename="../VBoxManageList.cpp" line="807"/>
    9066         <source>Maximum PIIX3 Floppy Controllers:%u
    9067 </source>
    9068         <translation>Максимально PIIX3 Флоппи Контроллеров:   %u
     9448        <source>Maximum ICH9 Floppy Controllers: %u
     9449</source>
     9450        <translation>Максимально ICH9 Флоппи Контроллеров:    %u
    90699451</translation>
    90709452    </message>
    90719453    <message>
    90729454        <location filename="../VBoxManageList.cpp" line="809"/>
    9073         <source>Maximum ICH9 Floppy Controllers: %u
    9074 </source>
    9075         <translation>Максимально ICH9 Флоппи Контроллеров:    %u
     9455        <source>Maximum Floppy Port count:      %u
     9456</source>
     9457        <translation>Максимально Флоппи портов:          %u
    90769458</translation>
    90779459    </message>
    90789460    <message>
    90799461        <location filename="../VBoxManageList.cpp" line="811"/>
    9080         <source>Maximum Floppy Port count:       %u
    9081 </source>
    9082         <translation>Максимально Флоппи портов:          %u
    9083 </translation>
    9084     </message>
    9085     <message>
    9086         <location filename="../VBoxManageList.cpp" line="813"/>
    90879462        <source>Maximum Devices per Floppy Port: %u
    90889463</source>
     
    90919466    </message>
    90929467    <message numerus="yes">
    9093         <location filename="../VBoxManageList.cpp" line="816"/>
     9468        <location filename="../VBoxManageList.cpp" line="814"/>
    90949469        <source>Free disk space warning at:      %u Bytes
    90959470</source>
     
    91049479    </message>
    91059480    <message>
     9481        <location filename="../VBoxManageList.cpp" line="816"/>
     9482        <source>Free disk space warning at:      %u %%
     9483</source>
     9484        <translation>Дать предупреждение когда на диске осталось свободно:      %u %%
     9485</translation>
     9486    </message>
     9487    <message numerus="yes">
    91069488        <location filename="../VBoxManageList.cpp" line="818"/>
    9107         <source>Free disk space warning at:      %u %%
    9108 </source>
    9109         <translation>Дать предупреждение когда на диске осталось свободно:      %u %%
    9110 </translation>
    9111     </message>
    9112     <message numerus="yes">
    9113         <location filename="../VBoxManageList.cpp" line="820"/>
    91149489        <source>Free disk space error at:        %u Bytes
    91159490</source>
     
    91249499    </message>
    91259500    <message>
    9126         <location filename="../VBoxManageList.cpp" line="822"/>
     9501        <location filename="../VBoxManageList.cpp" line="820"/>
    91279502        <source>Free disk space error at:        %u %%
    91289503</source>
     
    91319506    </message>
    91329507    <message>
     9508        <location filename="../VBoxManageList.cpp" line="823"/>
     9509        <source>Default machine folder:          %ls
     9510</source>
     9511        <translation>Папка машины по умолчанию:          %ls
     9512</translation>
     9513    </message>
     9514    <message>
    91339515        <location filename="../VBoxManageList.cpp" line="825"/>
    9134         <source>Default machine folder:          %ls
    9135 </source>
    9136         <translation>Папка машины по умолчанию:          %ls
     9516        <source>Raw-mode Supported:              %s
     9517</source>
     9518        <translation>Raw-режим поддерживается:              %s
    91379519</translation>
    91389520    </message>
    91399521    <message>
    91409522        <location filename="../VBoxManageList.cpp" line="827"/>
    9141         <source>Raw-mode Supported:              %s
    9142 </source>
    9143         <translation>Raw-режим поддерживается:              %s
    9144 </translation>
    9145     </message>
    9146     <message>
    9147         <location filename="../VBoxManageList.cpp" line="829"/>
    91489523        <source>Exclusive HW virtualization use: %s
    91499524</source>
     
    91529527    </message>
    91539528    <message>
    9154         <location filename="../VBoxManageList.cpp" line="829"/>
    9155         <location filename="../VBoxManageList.cpp" line="1843"/>
    9156         <location filename="../VBoxManageList.cpp" line="1847"/>
     9529        <location filename="../VBoxManageList.cpp" line="827"/>
     9530        <location filename="../VBoxManageList.cpp" line="1867"/>
     9531        <location filename="../VBoxManageList.cpp" line="1871"/>
    91579532        <source>on</source>
    91589533        <translation>вкл</translation>
    91599534    </message>
    91609535    <message>
    9161         <location filename="../VBoxManageList.cpp" line="829"/>
    9162         <location filename="../VBoxManageList.cpp" line="1843"/>
    9163         <location filename="../VBoxManageList.cpp" line="1847"/>
     9536        <location filename="../VBoxManageList.cpp" line="827"/>
     9537        <location filename="../VBoxManageList.cpp" line="1867"/>
     9538        <location filename="../VBoxManageList.cpp" line="1871"/>
    91649539        <source>off</source>
    91659540        <translation>выкл</translation>
    91669541    </message>
    91679542    <message>
     9543        <location filename="../VBoxManageList.cpp" line="829"/>
     9544        <source>Default hard disk format:        %ls
     9545</source>
     9546        <translation>Формат жесткого диска по умолчанию:        %ls
     9547</translation>
     9548    </message>
     9549    <message>
    91689550        <location filename="../VBoxManageList.cpp" line="831"/>
    9169         <source>Default hard disk format:        %ls
    9170 </source>
    9171         <translation>Формат жесткого диска по умолчанию:        %ls
     9551        <source>VRDE auth library:               %ls
     9552</source>
     9553        <translation>Библиотека аутентификации VRDE:               %ls
    91729554</translation>
    91739555    </message>
    91749556    <message>
    91759557        <location filename="../VBoxManageList.cpp" line="833"/>
    9176         <source>VRDE auth library:               %ls
    9177 </source>
    9178         <translation>Библиотека аутентификации VRDE:               %ls
     9558        <source>Webservice auth. library:        %ls
     9559</source>
     9560        <translation>Библиотека аутентификации вебсервиса:        %ls
    91799561</translation>
    91809562    </message>
    91819563    <message>
    91829564        <location filename="../VBoxManageList.cpp" line="835"/>
    9183         <source>Webservice auth. library:        %ls
    9184 </source>
    9185         <translation>Библиотека аутентификации вебсервиса:        %ls
     9565        <source>Remote desktop ExtPack:          %ls
     9566</source>
     9567        <translation>Пакет расширения удаленного рабочего стола:          %ls
    91869568</translation>
    91879569    </message>
    91889570    <message>
    91899571        <location filename="../VBoxManageList.cpp" line="837"/>
    9190         <source>Remote desktop ExtPack:          %ls
    9191 </source>
    9192         <translation>Пакет расширения удаленного рабочего стола:          %ls
     9572        <source>Log history count:               %u
     9573</source>
     9574        <translation>Размер истории в журнале:               %u
    91939575</translation>
    91949576    </message>
    91959577    <message>
    91969578        <location filename="../VBoxManageList.cpp" line="839"/>
    9197         <source>Log history count:               %u
    9198 </source>
    9199         <translation>Размер истории в журнале:               %u
    9200 </translation>
    9201     </message>
    9202     <message>
    9203         <location filename="../VBoxManageList.cpp" line="841"/>
    92049579        <source>Default frontend:                %ls
    92059580</source>
     
    92089583    </message>
    92099584    <message>
    9210         <location filename="../VBoxManageList.cpp" line="846"/>
     9585        <location filename="../VBoxManageList.cpp" line="844"/>
    92119586        <source>Null</source>
    92129587        <translation>Пусто</translation>
    92139588    </message>
    92149589    <message>
     9590        <location filename="../VBoxManageList.cpp" line="855"/>
     9591        <source>Default audio driver:            %s
     9592</source>
     9593        <translation>Аудио драйвер по умолчанию:            %s
     9594</translation>
     9595    </message>
     9596    <message>
    92159597        <location filename="../VBoxManageList.cpp" line="857"/>
    9216         <source>Default audio driver:            %s
    9217 </source>
    9218         <translation>Аудио драйвер по умолчанию:            %s
     9598        <source>Autostart database path:         %ls
     9599</source>
     9600        <translation>Путь базы данных автостарта:         %ls
    92199601</translation>
    92209602    </message>
    92219603    <message>
    92229604        <location filename="../VBoxManageList.cpp" line="859"/>
    9223         <source>Autostart database path:         %ls
    9224 </source>
    9225         <translation>Путь базы данных автостарта:         %ls
     9605        <source>Default Guest Additions ISO:     %ls
     9606</source>
     9607        <translation>ISO Дополнений Гостевой ОС по умолчанию:     %ls
    92269608</translation>
    92279609    </message>
    92289610    <message>
    92299611        <location filename="../VBoxManageList.cpp" line="861"/>
    9230         <source>Default Guest Additions ISO:     %ls
    9231 </source>
    9232         <translation>ISO Дополнений Гостевой ОС по умолчанию:     %ls
    9233 </translation>
    9234     </message>
    9235     <message>
    9236         <location filename="../VBoxManageList.cpp" line="863"/>
    92379612        <source>Logging Level:                   %ls
    92389613</source>
     
    92419616    </message>
    92429617    <message>
    9243         <location filename="../VBoxManageList.cpp" line="869"/>
     9618        <location filename="../VBoxManageList.cpp" line="867"/>
    92449619        <source>System</source>
    92459620        <translation>Система</translation>
    92469621    </message>
    92479622    <message>
    9248         <location filename="../VBoxManageList.cpp" line="870"/>
     9623        <location filename="../VBoxManageList.cpp" line="868"/>
    92499624        <source>NoProxy</source>
    92509625        <translation>Без Прокси</translation>
    92519626    </message>
    92529627    <message>
    9253         <location filename="../VBoxManageList.cpp" line="871"/>
     9628        <location filename="../VBoxManageList.cpp" line="869"/>
    92549629        <source>Manual</source>
    92559630        <translation>Вручную</translation>
    92569631    </message>
    92579632    <message>
     9633        <location filename="../VBoxManageList.cpp" line="874"/>
     9634        <source>Proxy Mode:                      %s
     9635</source>
     9636        <translation>Режим Прокси:                      %s
     9637</translation>
     9638    </message>
     9639    <message>
    92589640        <location filename="../VBoxManageList.cpp" line="876"/>
    9259         <source>Proxy Mode:                      %s
    9260 </source>
    9261         <translation>Режим Прокси:                      %s
    9262 </translation>
    9263     </message>
    9264     <message>
    9265         <location filename="../VBoxManageList.cpp" line="878"/>
    92669641        <source>Proxy URL:                       %ls
    92679642</source>
     
    92709645    </message>
    92719646    <message>
    9272         <location filename="../VBoxManageList.cpp" line="880"/>
    92739647        <source>Update check enabled:            %s
    92749648</source>
    9275         <translation>Проверка обновлений включена:            %s
    9276 </translation>
    9277     </message>
    9278     <message>
    9279         <location filename="../VBoxManageList.cpp" line="882"/>
     9649        <translation type="vanished">Проверка обновлений включена:            %s
     9650</translation>
     9651    </message>
     9652    <message>
    92809653        <source>Update check count:              %u
    92819654</source>
    9282         <translation>Количество проверок обновлений:              %u
    9283 </translation>
    9284     </message>
    9285     <message>
    9286         <location filename="../VBoxManageList.cpp" line="885"/>
     9655        <translation type="vanished">Количество проверок обновлений:              %u
     9656</translation>
     9657    </message>
     9658    <message>
    92879659        <source>Update check frequency:          never
    92889660</source>
    9289         <translation>Частота проверки обновлений:          никогда
    9290 </translation>
    9291     </message>
    9292     <message>
    9293         <location filename="../VBoxManageList.cpp" line="887"/>
     9661        <translation type="vanished">Частота проверки обновлений:          никогда
     9662</translation>
     9663    </message>
     9664    <message>
    92949665        <source>Update check frequency:          every day
    92959666</source>
    9296         <translation>Частота проверки обновлений:          каждый день
     9667        <translation type="vanished">Частота проверки обновлений:          каждый день
    92979668</translation>
    92989669    </message>
    92999670    <message numerus="yes">
    9300         <location filename="../VBoxManageList.cpp" line="889"/>
    93019671        <source>Update check frequency:          every %u days
    93029672</source>
    9303         <translation>
     9673        <translation type="vanished">
    93049674            <numerusform>Частота проверки обновлений:          каждый %u день
    93059675</numerusform>
     
    93119681    </message>
    93129682    <message>
    9313         <location filename="../VBoxManageList.cpp" line="895"/>
     9683        <location filename="../VBoxManageList.cpp" line="908"/>
    93149684        <source>Stable: new minor and maintenance releases</source>
    93159685        <translation>Стабильные: новые минорные и корректирующие релизы</translation>
    93169686    </message>
    93179687    <message>
    9318         <location filename="../VBoxManageList.cpp" line="898"/>
     9688        <location filename="../VBoxManageList.cpp" line="911"/>
    93199689        <source>All releases: new minor, maintenance, and major releases</source>
    93209690        <translation>Все релизы: новые минорные, корректирующие и мажорные релизы</translation>
    93219691    </message>
    93229692    <message>
    9323         <location filename="../VBoxManageList.cpp" line="901"/>
     9693        <location filename="../VBoxManageList.cpp" line="914"/>
    93249694        <source>With Betas: new minor, maintenance, major, and beta releases</source>
    93259695        <translation>С бетами: новые минорные, корректирующие, мажорные и бета релизы</translation>
    93269696    </message>
    93279697    <message>
    9328         <location filename="../VBoxManageList.cpp" line="904"/>
     9698        <location filename="../VBoxManageList.cpp" line="917"/>
    93299699        <source>Unset</source>
    93309700        <translation>Не задано</translation>
    93319701    </message>
    93329702    <message>
    9333         <location filename="../VBoxManageList.cpp" line="907"/>
    93349703        <source>Update check target:             %s
    93359704</source>
    9336         <translation>Цель проверки обновлений:             %s
    9337 </translation>
    9338     </message>
    9339     <message>
    9340         <location filename="../VBoxManageList.cpp" line="909"/>
     9705        <translation type="vanished">Цель проверки обновлений:             %s
     9706</translation>
     9707    </message>
     9708    <message>
     9709        <location filename="../VBoxManageList.cpp" line="924"/>
    93419710        <source>Last check date:                 %ls
    93429711</source>
     
    93459714    </message>
    93469715    <message>
    9347         <location filename="../VBoxManageList.cpp" line="912"/>
     9716        <location filename="../VBoxManageList.cpp" line="879"/>
    93489717        <source>User language:                   %ls
    93499718</source>
     
    93529721    </message>
    93539722    <message>
    9354         <location filename="../VBoxManageList.cpp" line="928"/>
     9723        <location filename="../VBoxManageList.cpp" line="889"/>
     9724        <source>Enabled:                      %s
     9725</source>
     9726        <translation type="unfinished"></translation>
     9727    </message>
     9728    <message>
     9729        <location filename="../VBoxManageList.cpp" line="892"/>
     9730        <source>Check count:                  %u
     9731</source>
     9732        <translation type="unfinished"></translation>
     9733    </message>
     9734    <message>
     9735        <location filename="../VBoxManageList.cpp" line="895"/>
     9736        <source>Check frequency:              never
     9737</source>
     9738        <translation type="unfinished"></translation>
     9739    </message>
     9740    <message>
     9741        <location filename="../VBoxManageList.cpp" line="897"/>
     9742        <source>Check frequency:              every day
     9743</source>
     9744        <translation type="unfinished"></translation>
     9745    </message>
     9746    <message numerus="yes">
     9747        <location filename="../VBoxManageList.cpp" line="899"/>
     9748        <source>Check frequency:              every %u days
     9749</source>
     9750        <translation type="unfinished">
     9751            <numerusform></numerusform>
     9752            <numerusform></numerusform>
     9753            <numerusform></numerusform>
     9754        </translation>
     9755    </message>
     9756    <message>
     9757        <location filename="../VBoxManageList.cpp" line="920"/>
     9758        <source>Channel:                         %s
     9759</source>
     9760        <translation type="unfinished"></translation>
     9761    </message>
     9762    <message>
     9763        <location filename="../VBoxManageList.cpp" line="922"/>
     9764        <source>Repository:                      %ls
     9765</source>
     9766        <translation type="unfinished"></translation>
     9767    </message>
     9768    <message>
     9769        <location filename="../VBoxManageList.cpp" line="952"/>
    93559770        <source>    minLeaseTime:     default
    93569771</source>
     
    93599774    </message>
    93609775    <message>
    9361         <location filename="../VBoxManageList.cpp" line="930"/>
     9776        <location filename="../VBoxManageList.cpp" line="954"/>
    93629777        <source>    minLeaseTime:     %u sec
    93639778</source>
     
    93669781    </message>
    93679782    <message>
    9368         <location filename="../VBoxManageList.cpp" line="935"/>
     9783        <location filename="../VBoxManageList.cpp" line="959"/>
    93699784        <source>    defaultLeaseTime: default
    93709785</source>
     
    93739788    </message>
    93749789    <message>
    9375         <location filename="../VBoxManageList.cpp" line="937"/>
     9790        <location filename="../VBoxManageList.cpp" line="961"/>
    93769791        <source>    defaultLeaseTime: %u sec
    93779792</source>
     
    93809795    </message>
    93819796    <message>
    9382         <location filename="../VBoxManageList.cpp" line="942"/>
     9797        <location filename="../VBoxManageList.cpp" line="966"/>
    93839798        <source>    maxLeaseTime:     default
    93849799</source>
     
    93879802    </message>
    93889803    <message>
    9389         <location filename="../VBoxManageList.cpp" line="944"/>
     9804        <location filename="../VBoxManageList.cpp" line="968"/>
    93909805        <source>    maxLeaseTime:     %u sec
    93919806</source>
     
    93949809    </message>
    93959810    <message>
    9396         <location filename="../VBoxManageList.cpp" line="950"/>
     9811        <location filename="../VBoxManageList.cpp" line="974"/>
    93979812        <source>    Forced options:   %Rhrc
    93989813</source>
     
    94019816    </message>
    94029817    <message>
    9403         <location filename="../VBoxManageList.cpp" line="952"/>
     9818        <location filename="../VBoxManageList.cpp" line="976"/>
    94049819        <source>    Forced options:   None
    94059820</source>
     
    94089823    </message>
    94099824    <message>
    9410         <location filename="../VBoxManageList.cpp" line="955"/>
     9825        <location filename="../VBoxManageList.cpp" line="979"/>
    94119826        <source>    Forced options:   </source>
    94129827        <translation>    Форсированные опции:   </translation>
    94139828    </message>
    94149829    <message>
    9415         <location filename="../VBoxManageList.cpp" line="963"/>
     9830        <location filename="../VBoxManageList.cpp" line="987"/>
    94169831        <source>    Suppressed opt.s: %Rhrc
    94179832</source>
     
    94209835    </message>
    94219836    <message>
    9422         <location filename="../VBoxManageList.cpp" line="965"/>
     9837        <location filename="../VBoxManageList.cpp" line="989"/>
    94239838        <source>    Suppressed opts.: None
    94249839</source>
     
    94279842    </message>
    94289843    <message>
    9429         <location filename="../VBoxManageList.cpp" line="968"/>
     9844        <location filename="../VBoxManageList.cpp" line="992"/>
    94309845        <source>    Suppressed opts.: </source>
    94319846        <translation>    Подавленные опции: </translation>
    94329847    </message>
    94339848    <message>
    9434         <location filename="../VBoxManageList.cpp" line="980"/>
     9849        <location filename="../VBoxManageList.cpp" line="1004"/>
    94359850        <source>    DHCP options:     %Rhrc
    94369851</source>
     
    94399854    </message>
    94409855    <message>
    9441         <location filename="../VBoxManageList.cpp" line="983"/>
     9856        <location filename="../VBoxManageList.cpp" line="1007"/>
    94429857        <source>    DHCP options:     Return count mismatch: %zu, %zu, %zu
    94439858</source>
     
    94469861    </message>
    94479862    <message>
    9448         <location filename="../VBoxManageList.cpp" line="988"/>
     9863        <location filename="../VBoxManageList.cpp" line="1012"/>
    94499864        <source>    DHCP options:     None
    94509865</source>
     
    94539868    </message>
    94549869    <message>
    9455         <location filename="../VBoxManageList.cpp" line="995"/>
     9870        <location filename="../VBoxManageList.cpp" line="1019"/>
    94569871        <source>      %3d/legacy: %ls
    94579872</source>
     
    94609875    </message>
    94619876    <message>
    9462         <location filename="../VBoxManageList.cpp" line="1029"/>
    9463         <location filename="../VBoxManageList.cpp" line="2192"/>
     9877        <location filename="../VBoxManageList.cpp" line="1053"/>
    94649878        <source>NetworkName:    %ls
    94659879</source>
     
    94689882    </message>
    94699883    <message>
    9470         <location filename="../VBoxManageList.cpp" line="1035"/>
     9884        <location filename="../VBoxManageList.cpp" line="1059"/>
    94719885        <source>LowerIPAddress: %ls
    94729886</source>
     
    94759889    </message>
    94769890    <message>
    9477         <location filename="../VBoxManageList.cpp" line="1038"/>
     9891        <location filename="../VBoxManageList.cpp" line="1062"/>
    94789892        <source>UpperIPAddress: %ls
    94799893</source>
     
    94829896    </message>
    94839897    <message>
    9484         <location filename="../VBoxManageList.cpp" line="1041"/>
     9898        <location filename="../VBoxManageList.cpp" line="1065"/>
    94859899        <source>NetworkMask:    %ls
    94869900</source>
     
    94899903    </message>
    94909904    <message>
    9491         <location filename="../VBoxManageList.cpp" line="1045"/>
    9492         <location filename="../VBoxManageList.cpp" line="2208"/>
     9905        <location filename="../VBoxManageList.cpp" line="1069"/>
    94939906        <source>Enabled:        %s
    94949907</source>
     
    94979910    </message>
    94989911    <message>
    9499         <location filename="../VBoxManageList.cpp" line="1048"/>
     9912        <location filename="../VBoxManageList.cpp" line="1072"/>
    95009913        <source>Global Configuration:
    95019914</source>
     
    95049917    </message>
    95059918    <message>
    9506         <location filename="../VBoxManageList.cpp" line="1063"/>
     9919        <location filename="../VBoxManageList.cpp" line="1087"/>
    95079920        <source>Groups:               %Rrc
    95089921</source>
     
    95119924    </message>
    95129925    <message>
    9513         <location filename="../VBoxManageList.cpp" line="1065"/>
     9926        <location filename="../VBoxManageList.cpp" line="1089"/>
    95149927        <source>Groups:               None
    95159928</source>
     
    95189931    </message>
    95199932    <message>
    9520         <location filename="../VBoxManageList.cpp" line="1071"/>
     9933        <location filename="../VBoxManageList.cpp" line="1095"/>
    95219934        <source>Group:                %ls
    95229935</source>
     
    95259938    </message>
    95269939    <message>
    9527         <location filename="../VBoxManageList.cpp" line="1076"/>
     9940        <location filename="../VBoxManageList.cpp" line="1100"/>
    95289941        <source>    Conditions:       %Rhrc
    95299942</source>
     
    95329945    </message>
    95339946    <message>
    9534         <location filename="../VBoxManageList.cpp" line="1078"/>
     9947        <location filename="../VBoxManageList.cpp" line="1102"/>
    95359948        <source>    Conditions:       None
    95369949</source>
     
    95399952    </message>
    95409953    <message>
    9541         <location filename="../VBoxManageList.cpp" line="1088"/>
     9954        <location filename="../VBoxManageList.cpp" line="1112"/>
    95429955        <source>    Conditions:       %s %s %ls
    95439956</source>
     
    95469959    </message>
    95479960    <message>
    9548         <location filename="../VBoxManageList.cpp" line="1089"/>
     9961        <location filename="../VBoxManageList.cpp" line="1113"/>
    95499962        <source>include</source>
    95509963        <translation>включая</translation>
    95519964    </message>
    95529965    <message>
    9553         <location filename="../VBoxManageList.cpp" line="1089"/>
     9966        <location filename="../VBoxManageList.cpp" line="1113"/>
    95549967        <source>exclude</source>
    95559968        <translation>исключая</translation>
    95569969    </message>
    95579970    <message>
    9558         <location filename="../VBoxManageList.cpp" line="1111"/>
     9971        <location filename="../VBoxManageList.cpp" line="1135"/>
    95599972        <source>Individual Configs:   %Rrc
    95609973</source>
     
    95639976    </message>
    95649977    <message>
    9565         <location filename="../VBoxManageList.cpp" line="1113"/>
     9978        <location filename="../VBoxManageList.cpp" line="1137"/>
    95669979        <source>Individual Configs:   None
    95679980</source>
     
    95709983    </message>
    95719984    <message>
    9572         <location filename="../VBoxManageList.cpp" line="1124"/>
     9985        <location filename="../VBoxManageList.cpp" line="1148"/>
    95739986        <source>Individual Config:    MAC %ls
    95749987</source>
     
    95779990    </message>
    95789991    <message>
    9579         <location filename="../VBoxManageList.cpp" line="1134"/>
     9992        <location filename="../VBoxManageList.cpp" line="1158"/>
    95809993        <source>Individual Config:    VM NIC: %ls slot %u, MAC %ls
    95819994</source>
     
    95849997    </message>
    95859998    <message>
    9586         <location filename="../VBoxManageList.cpp" line="1137"/>
     9999        <location filename="../VBoxManageList.cpp" line="1161"/>
    958710000        <source>Individual Config:    VM NIC: %ls slot %u, MAC %Rhrc
    958810001</source>
     
    959110004    </message>
    959210005    <message>
    9593         <location filename="../VBoxManageList.cpp" line="1142"/>
     10006        <location filename="../VBoxManageList.cpp" line="1166"/>
    959410007        <source>    Fixed Address:    %ls
    959510008</source>
     
    959810011    </message>
    959910012    <message>
    9600         <location filename="../VBoxManageList.cpp" line="1144"/>
     10013        <location filename="../VBoxManageList.cpp" line="1168"/>
    960110014        <source>    Fixed Address:    dynamic
    960210015</source>
     
    960510018    </message>
    960610019    <message>
    9607         <location filename="../VBoxManageList.cpp" line="1170"/>
     10020        <location filename="../VBoxManageList.cpp" line="1194"/>
    960810021        <source>Extension Packs: %u
    960910022</source>
     
    961210025    </message>
    961310026    <message>
    9614         <location filename="../VBoxManageList.cpp" line="1196"/>
     10027        <location filename="../VBoxManageList.cpp" line="1220"/>
    961510028        <source>Pack no.%2zu:   %ls
    961610029Version:      %ls
     
    963310046    </message>
    963410047    <message>
    9635         <location filename="../VBoxManageList.cpp" line="1252"/>
     10048        <location filename="../VBoxManageList.cpp" line="1276"/>
    963610049        <source>Video Input Devices: %u
    963710050</source>
     
    964010053    </message>
    964110054    <message numerus="yes">
    9642         <location filename="../VBoxManageList.cpp" line="1281"/>
     10055        <location filename="../VBoxManageList.cpp" line="1305"/>
    964310056        <source>Supported %d screen shot formats:
    964410057</source>
     
    965310066    </message>
    965410067    <message numerus="yes">
    9655         <location filename="../VBoxManageList.cpp" line="1310"/>
     10068        <location filename="../VBoxManageList.cpp" line="1334"/>
    965610069        <source>Supported %d cloud providers:
    965710070</source>
     
    966610079    </message>
    966710080    <message>
    9668         <location filename="../VBoxManageList.cpp" line="1318"/>
     10081        <location filename="../VBoxManageList.cpp" line="1342"/>
    966910082        <source>Short Name:      %ls
    967010083</source>
     
    967310086    </message>
    967410087    <message>
    9675         <location filename="../VBoxManageList.cpp" line="1354"/>
     10088        <location filename="../VBoxManageList.cpp" line="1378"/>
    967610089        <source>Name:          %ls
    967710090</source>
     
    968010093    </message>
    968110094    <message>
    9682         <location filename="../VBoxManageList.cpp" line="1357"/>
     10095        <location filename="../VBoxManageList.cpp" line="1381"/>
    968310096        <source>Provider GUID: %ls
    968410097</source>
     
    968710100    </message>
    968810101    <message>
    9689         <location filename="../VBoxManageList.cpp" line="1373"/>
     10102        <location filename="../VBoxManageList.cpp" line="1397"/>
    969010103        <source>Property:      </source>
    969110104        <translation>Свойство:      </translation>
    969210105    </message>
    969310106    <message>
    9694         <location filename="../VBoxManageList.cpp" line="1411"/>
     10107        <location filename="../VBoxManageList.cpp" line="1435"/>
    969510108        <source>CPU Profile #%02zu:
    969610109</source>
     
    969910112    </message>
    970010113    <message>
    9701         <location filename="../VBoxManageList.cpp" line="1412"/>
     10114        <location filename="../VBoxManageList.cpp" line="1436"/>
    970210115        <source>  Architecture: %s
    970310116</source>
     
    970610119    </message>
    970710120    <message>
    9708         <location filename="../VBoxManageList.cpp" line="1413"/>
     10121        <location filename="../VBoxManageList.cpp" line="1437"/>
    970910122        <source>  Name:         %ls
    971010123</source>
     
    971310126    </message>
    971410127    <message>
    9715         <location filename="../VBoxManageList.cpp" line="1415"/>
     10128        <location filename="../VBoxManageList.cpp" line="1439"/>
    971610129        <source>  Full Name:    %ls
    971710130</source>
     
    972010133    </message>
    972110134    <message>
    9722         <location filename="../VBoxManageList.cpp" line="1665"/>
     10135        <location filename="../VBoxManageList.cpp" line="1689"/>
    972310136        <source>%sDrive:       %ls
    972410137</source>
     
    972710140    </message>
    972810141    <message>
    9729         <location filename="../VBoxManageList.cpp" line="1667"/>
     10142        <location filename="../VBoxManageList.cpp" line="1691"/>
    973010143        <source>%sDrive:       %Rhrc
    973110144</source>
     
    973410147    </message>
    973510148    <message>
    9736         <location filename="../VBoxManageList.cpp" line="1672"/>
     10149        <location filename="../VBoxManageList.cpp" line="1696"/>
    973710150        <source>Model:       %Rhrc
    973810151</source>
     
    974110154    </message>
    974210155    <message>
    9743         <location filename="../VBoxManageList.cpp" line="1674"/>
     10156        <location filename="../VBoxManageList.cpp" line="1698"/>
    974410157        <source>Model:       &quot;%ls&quot;
    974510158</source>
     
    974810161    </message>
    974910162    <message>
    9750         <location filename="../VBoxManageList.cpp" line="1676"/>
     10163        <location filename="../VBoxManageList.cpp" line="1700"/>
    975110164        <source>Model:       unknown/inaccessible
    975210165</source>
     
    975510168    </message>
    975610169    <message>
    9757         <location filename="../VBoxManageList.cpp" line="1686"/>
     10170        <location filename="../VBoxManageList.cpp" line="1710"/>
    975810171        <source>Further disk and partitioning information is not available for drive &quot;%ls&quot;. (E_ACCESSDENIED)
    975910172</source>
     
    976210175    </message>
    976310176    <message numerus="yes">
    9764         <location filename="../VBoxManageList.cpp" line="1699"/>
     10177        <location filename="../VBoxManageList.cpp" line="1723"/>
    976510178        <source>Size:        %llu bytes (%Rhcb)
    976610179</source>
     
    977510188    </message>
    977610189    <message>
    9777         <location filename="../VBoxManageList.cpp" line="1701"/>
     10190        <location filename="../VBoxManageList.cpp" line="1725"/>
    977810191        <source>Size:        %Rhcb
    977910192</source>
     
    978210195    </message>
    978310196    <message>
    9784         <location filename="../VBoxManageList.cpp" line="1704"/>
     10197        <location filename="../VBoxManageList.cpp" line="1728"/>
    978510198        <source>Size:        %Rhrc
    978610199</source>
     
    978910202    </message>
    979010203    <message numerus="yes">
    9791         <location filename="../VBoxManageList.cpp" line="1711"/>
     10204        <location filename="../VBoxManageList.cpp" line="1735"/>
    979210205        <source>Sector Size: %u bytes
    979310206</source>
     
    980210215    </message>
    980310216    <message>
    9804         <location filename="../VBoxManageList.cpp" line="1714"/>
     10217        <location filename="../VBoxManageList.cpp" line="1738"/>
    980510218        <source>Sector Size: %Rhrc
    980610219</source>
     
    980910222    </message>
    981010223    <message>
    9811         <location filename="../VBoxManageList.cpp" line="1721"/>
     10224        <location filename="../VBoxManageList.cpp" line="1745"/>
    981210225        <source>Scheme:      %s
    981310226</source>
     
    981610229    </message>
    981710230    <message>
    9818         <location filename="../VBoxManageList.cpp" line="1724"/>
     10231        <location filename="../VBoxManageList.cpp" line="1748"/>
    981910232        <source>Scheme:      %Rhrc
    982010233</source>
     
    982310236    </message>
    982410237    <message>
    9825         <location filename="../VBoxManageList.cpp" line="1732"/>
     10238        <location filename="../VBoxManageList.cpp" line="1756"/>
    982610239        <source>Partitions:  %Rhrc
    982710240</source>
     
    983010243    </message>
    983110244    <message>
    9832         <location filename="../VBoxManageList.cpp" line="1736"/>
     10245        <location filename="../VBoxManageList.cpp" line="1760"/>
    983310246        <source>Partitions:  None (or not able to grok them).
    983410247</source>
     
    983710250    </message>
    983810251    <message>
    9839         <location filename="../VBoxManageList.cpp" line="1740"/>
     10252        <location filename="../VBoxManageList.cpp" line="1764"/>
    984010253        <source>Partitions:                              First         Last
    984110254##  Type      Byte Size     Byte Offset  Cyl/Head/Sec  Cyl/Head/Sec Active
     
    984610259    </message>
    984710260    <message>
    9848         <location filename="../VBoxManageList.cpp" line="1743"/>
     10261        <location filename="../VBoxManageList.cpp" line="1767"/>
    984910262        <source>Partitions:                   First         Last
    985010263##  Type  Size      Start     Cyl/Head/Sec  Cyl/Head/Sec Active
     
    985510268    </message>
    985610269    <message>
    9857         <location filename="../VBoxManageList.cpp" line="1802"/>
     10270        <location filename="../VBoxManageList.cpp" line="1826"/>
    985810271        <source>Partitions:
    985910272## %-*s Uuid                                           Byte Size         Byte Offset Active Name
     
    986410277    </message>
    986510278    <message>
    9866         <location filename="../VBoxManageList.cpp" line="1805"/>
    9867         <location filename="../VBoxManageList.cpp" line="1810"/>
     10279        <location filename="../VBoxManageList.cpp" line="1829"/>
     10280        <location filename="../VBoxManageList.cpp" line="1834"/>
    986810281        <source>Type</source>
    986910282        <translation>Тип</translation>
    987010283    </message>
    987110284    <message>
    9872         <location filename="../VBoxManageList.cpp" line="1807"/>
     10285        <location filename="../VBoxManageList.cpp" line="1831"/>
    987310286        <source>Partitions:
    987410287##  %-*s  Uuid                                   Size      Start   Active Name
     
    987910292    </message>
    988010293    <message>
    9881         <location filename="../VBoxManageList.cpp" line="2016"/>
     10294        <location filename="../VBoxManageList.cpp" line="2043"/>
    988210295        <source>Description: %ls
    988310296</source>
     
    988610299    </message>
    988710300    <message>
    9888         <location filename="../VBoxManageList.cpp" line="2019"/>
     10301        <location filename="../VBoxManageList.cpp" line="2046"/>
    988910302        <source>Family ID:   %ls
    989010303</source>
     
    989310306    </message>
    989410307    <message>
    9895         <location filename="../VBoxManageList.cpp" line="2022"/>
     10308        <location filename="../VBoxManageList.cpp" line="2049"/>
    989610309        <source>Family Desc: %ls
    989710310</source>
     
    990010313    </message>
    990110314    <message>
    9902         <location filename="../VBoxManageList.cpp" line="2025"/>
     10315        <location filename="../VBoxManageList.cpp" line="2052"/>
    990310316        <source>64 bit:      %RTbool
    990410317</source>
     
    990710320    </message>
    990810321    <message>
    9909         <location filename="../VBoxManageList.cpp" line="2048"/>
    9910         <location filename="../VBoxManageList.cpp" line="2070"/>
     10322        <location filename="../VBoxManageList.cpp" line="2075"/>
     10323        <location filename="../VBoxManageList.cpp" line="2097"/>
    991110324        <source>Name:         %ls
    991210325
     
    991710330    </message>
    991810331    <message>
    9919         <location filename="../VBoxManageList.cpp" line="2107"/>
     10332        <location filename="../VBoxManageList.cpp" line="2134"/>
    992010333        <source>Host CPUIDs:
    992110334
     
    992810341    </message>
    992910342    <message>
    9930         <location filename="../VBoxManageList.cpp" line="2139"/>
     10343        <location filename="../VBoxManageList.cpp" line="2166"/>
    993110344        <source>base</source>
    993210345        <translation>базовый</translation>
    993310346    </message>
    993410347    <message>
    9935         <location filename="../VBoxManageList.cpp" line="2198"/>
    993610348        <source>Network:        %ls
    993710349</source>
    9938         <translation>Сеть:        %ls
    9939 </translation>
    9940     </message>
    9941     <message>
    9942         <location filename="../VBoxManageList.cpp" line="2201"/>
     10350        <translation type="vanished">Сеть:        %ls
     10351</translation>
     10352    </message>
     10353    <message>
    994310354        <source>IPv6 Enabled:   %s
    994410355</source>
    9945         <translation>IPv6 включен:   %s
    9946 </translation>
    9947     </message>
    9948     <message>
    9949         <location filename="../VBoxManageList.cpp" line="2204"/>
     10356        <translation type="vanished">IPv6 включен:   %s
     10357</translation>
     10358    </message>
     10359    <message>
    995010360        <source>IPv6 Prefix:    %ls
    995110361</source>
    9952         <translation>IPv6 префикс:    %ls
    9953 </translation>
    9954     </message>
    9955     <message>
    9956         <location filename="../VBoxManageList.cpp" line="2206"/>
     10362        <translation type="vanished">IPv6 префикс:    %ls
     10363</translation>
     10364    </message>
     10365    <message>
    995710366        <source>DHCP Enabled:   %s
    995810367</source>
    9959         <translation>DHCP включен:   %s
    9960 </translation>
    9961     </message>
    9962     <message>
    9963         <location filename="../VBoxManageList.cpp" line="2222"/>
     10368        <translation type="vanished">DHCP включен:   %s
     10369</translation>
     10370    </message>
     10371    <message>
    996410372        <source>Port-forwarding (ipv4)
    996510373</source>
    9966         <translation>Перенаправление портов (ipv4)
    9967 </translation>
    9968     </message>
    9969     <message>
    9970         <location filename="../VBoxManageList.cpp" line="2226"/>
     10374        <translation type="vanished">Перенаправление портов (ipv4)
     10375</translation>
     10376    </message>
     10377    <message>
    997110378        <source>Port-forwarding (ipv6)
    997210379</source>
    9973         <translation>Перенаправление портов (ipv6)
    9974 </translation>
    9975     </message>
    9976     <message>
    9977         <location filename="../VBoxManageList.cpp" line="2230"/>
     10380        <translation type="vanished">Перенаправление портов (ipv6)
     10381</translation>
     10382    </message>
     10383    <message>
    997810384        <source>loopback mappings (ipv4)
    997910385</source>
    9980         <translation>отображение локальной петли (ipv4)
    9981 </translation>
    9982     </message>
    9983     <message>
    9984         <location filename="../VBoxManageList.cpp" line="2402"/>
     10386        <translation type="vanished">отображение локальной петли (ipv4)
     10387</translation>
     10388    </message>
     10389    <message>
     10390        <location filename="../VBoxManageList.cpp" line="2388"/>
    998510391        <source>Unknown subcommand &quot;%s&quot;.</source>
    998610392        <translation>Неизвестная подкоманда &quot;%s&quot;.</translation>
    998710393    </message>
    998810394    <message>
    9989         <location filename="../VBoxManageList.cpp" line="2413"/>
     10395        <location filename="../VBoxManageList.cpp" line="2399"/>
    999010396        <source>Missing subcommand for &quot;list&quot; command.
    999110397</source>
     
    999710403    <name>Metrics</name>
    999810404    <message>
    9999         <location filename="../VBoxManageMetrics.cpp" line="92"/>
     10405        <location filename="../VBoxManageMetrics.cpp" line="90"/>
    1000010406        <source>Invalid machine name: &apos;%s&apos;</source>
    1000110407        <translation>Недопустимое имя машины: &apos;%s&apos;</translation>
    1000210408    </message>
    1000310409    <message>
    10004         <location filename="../VBoxManageMetrics.cpp" line="130"/>
     10410        <location filename="../VBoxManageMetrics.cpp" line="128"/>
    1000510411        <source>host</source>
    1000610412        <translation>хост</translation>
    1000710413    </message>
    1000810414    <message>
    10009         <location filename="../VBoxManageMetrics.cpp" line="140"/>
     10415        <location filename="../VBoxManageMetrics.cpp" line="138"/>
    1001010416        <source>unknown</source>
    1001110417        <translation>неизвестно</translation>
    1001210418    </message>
    1001310419    <message>
    10014         <location filename="../VBoxManageMetrics.cpp" line="151"/>
     10420        <location filename="../VBoxManageMetrics.cpp" line="149"/>
    1001510421        <source>The following metrics were modified:
    1001610422
     
    1002510431    </message>
    1002610432    <message>
    10027         <location filename="../VBoxManageMetrics.cpp" line="165"/>
     10433        <location filename="../VBoxManageMetrics.cpp" line="163"/>
    1002810434        <source>No metrics match the specified filter!</source>
    1002910435        <translation>Не найдено метрик, подходящих под указанный фильтр!</translation>
     
    1003910445    </message>
    1004010446    <message>
    10041         <location filename="../VBoxManageMetrics.cpp" line="238"/>
    10042         <location filename="../VBoxManageMetrics.cpp" line="247"/>
    10043         <location filename="../VBoxManageMetrics.cpp" line="405"/>
    10044         <location filename="../VBoxManageMetrics.cpp" line="414"/>
     10447        <location filename="../VBoxManageMetrics.cpp" line="240"/>
     10448        <location filename="../VBoxManageMetrics.cpp" line="249"/>
     10449        <location filename="../VBoxManageMetrics.cpp" line="412"/>
     10450        <location filename="../VBoxManageMetrics.cpp" line="421"/>
    1004510451        <source>Missing argument to &apos;%s&apos;</source>
    1004610452        <translation>Отсутствует аргумент к &apos;%s&apos;</translation>
    1004710453    </message>
    1004810454    <message>
    10049         <location filename="../VBoxManageMetrics.cpp" line="241"/>
    10050         <location filename="../VBoxManageMetrics.cpp" line="408"/>
     10455        <location filename="../VBoxManageMetrics.cpp" line="243"/>
     10456        <location filename="../VBoxManageMetrics.cpp" line="415"/>
    1005110457        <source>Invalid value for &apos;period&apos; parameter: &apos;%s&apos;</source>
    1005210458        <translation>Недопустимое значение для параметра &apos;period&apos;: &apos;%s&apos;</translation>
    1005310459    </message>
    1005410460    <message>
    10055         <location filename="../VBoxManageMetrics.cpp" line="250"/>
    10056         <location filename="../VBoxManageMetrics.cpp" line="417"/>
     10461        <location filename="../VBoxManageMetrics.cpp" line="252"/>
     10462        <location filename="../VBoxManageMetrics.cpp" line="424"/>
    1005710463        <source>Invalid value for &apos;samples&apos; parameter: &apos;%s&apos;</source>
    1005810464        <translation>Недопустимое значение для параметра &apos;samples&apos;: &apos;%s&apos;</translation>
    1005910465    </message>
    1006010466    <message>
    10061         <location filename="../VBoxManageMetrics.cpp" line="315"/>
     10467        <location filename="../VBoxManageMetrics.cpp" line="319"/>
    1006210468        <source>Object          Metric                                   Values
    1006310469--------------- ---------------------------------------- --------------------------------------------
     
    1006810474    </message>
    1006910475    <message>
    10070         <location filename="../VBoxManageMetrics.cpp" line="476"/>
     10476        <location filename="../VBoxManageMetrics.cpp" line="483"/>
    1007110477        <source>The background process holding collected metrics will shutdown
    1007210478in few seconds, discarding all collected data and parameters.</source>
     
    1007610482    </message>
    1007710483    <message>
    10078         <location filename="../VBoxManageMetrics.cpp" line="485"/>
     10484        <location filename="../VBoxManageMetrics.cpp" line="492"/>
    1007910485        <source>Time stamp   Object     Metric               Value
    1008010486</source>
     
    1008310489    </message>
    1008410490    <message>
    10085         <location filename="../VBoxManageMetrics.cpp" line="628"/>
     10491        <location filename="../VBoxManageMetrics.cpp" line="639"/>
    1008610492        <source>Subcommand missing</source>
    1008710493        <translation>Отсутствует подкоманда</translation>
    1008810494    </message>
    1008910495    <message>
    10090         <location filename="../VBoxManageMetrics.cpp" line="647"/>
     10496        <location filename="../VBoxManageMetrics.cpp" line="658"/>
    1009110497        <source>Invalid subcommand &apos;%s&apos;</source>
    1009210498        <translation>Недопустимая подкоманда &apos;%s&apos;</translation>
     
    1009610502    <name>Misc</name>
    1009710503    <message>
    10098         <location filename="../VBoxManageMisc.cpp" line="68"/>
    10099         <location filename="../VBoxManageMisc.cpp" line="763"/>
    10100         <location filename="../VBoxManageMisc.cpp" line="792"/>
    10101         <location filename="../VBoxManageMisc.cpp" line="827"/>
    10102         <location filename="../VBoxManageMisc.cpp" line="953"/>
     10504        <location filename="../VBoxManageMisc.cpp" line="66"/>
     10505        <location filename="../VBoxManageMisc.cpp" line="760"/>
     10506        <location filename="../VBoxManageMisc.cpp" line="789"/>
     10507        <location filename="../VBoxManageMisc.cpp" line="824"/>
     10508        <location filename="../VBoxManageMisc.cpp" line="950"/>
    1010310509        <source>Incorrect number of parameters</source>
    1010410510        <translation>Некорректное количество параметров</translation>
    1010510511    </message>
    1010610512    <message>
    10107         <location filename="../VBoxManageMisc.cpp" line="81"/>
    10108         <location filename="../VBoxManageMisc.cpp" line="802"/>
     10513        <location filename="../VBoxManageMisc.cpp" line="79"/>
     10514        <location filename="../VBoxManageMisc.cpp" line="799"/>
    1010910515        <source>Cannot convert filename &quot;%s&quot; to absolute path: %Rrc</source>
    1011010516        <translation>Невозможно преобразовать имя файла &quot;%s&quot; в абсолютный путь: %Rrc</translation>
    1011110517    </message>
    1011210518    <message>
    10113         <location filename="../VBoxManageMisc.cpp" line="127"/>
    10114         <location filename="../VBoxManageMisc.cpp" line="356"/>
    10115         <location filename="../VBoxManageMisc.cpp" line="532"/>
    10116         <location filename="../VBoxManageMisc.cpp" line="1078"/>
     10519        <location filename="../VBoxManageMisc.cpp" line="125"/>
     10520        <location filename="../VBoxManageMisc.cpp" line="354"/>
     10521        <location filename="../VBoxManageMisc.cpp" line="530"/>
     10522        <location filename="../VBoxManageMisc.cpp" line="1075"/>
    1011710523        <source>Invalid parameter &apos;%s&apos;</source>
    1011810524        <translation>Недопустимый параметр &apos;%s&apos;</translation>
    1011910525    </message>
    1012010526    <message>
    10121         <location filename="../VBoxManageMisc.cpp" line="134"/>
    10122         <location filename="../VBoxManageMisc.cpp" line="686"/>
     10527        <location filename="../VBoxManageMisc.cpp" line="132"/>
     10528        <location filename="../VBoxManageMisc.cpp" line="683"/>
    1012310529        <source>Invalid option -%c</source>
    1012410530        <translation>Недопустимая опция -%c</translation>
    1012510531    </message>
    1012610532    <message>
    10127         <location filename="../VBoxManageMisc.cpp" line="135"/>
    10128         <location filename="../VBoxManageMisc.cpp" line="688"/>
     10533        <location filename="../VBoxManageMisc.cpp" line="133"/>
     10534        <location filename="../VBoxManageMisc.cpp" line="685"/>
    1012910535        <source>Invalid option case %i</source>
    1013010536        <translation>Недопустимый вариант опции %i</translation>
    1013110537    </message>
    1013210538    <message>
    10133         <location filename="../VBoxManageMisc.cpp" line="138"/>
    10134         <location filename="../VBoxManageMisc.cpp" line="691"/>
     10539        <location filename="../VBoxManageMisc.cpp" line="136"/>
     10540        <location filename="../VBoxManageMisc.cpp" line="688"/>
    1013510541        <source>unknown option: %s
    1013610542</source>
     
    1013910545    </message>
    1014010546    <message>
    10141         <location filename="../VBoxManageMisc.cpp" line="141"/>
    10142         <location filename="../VBoxManageMisc.cpp" line="695"/>
     10547        <location filename="../VBoxManageMisc.cpp" line="139"/>
     10548        <location filename="../VBoxManageMisc.cpp" line="692"/>
    1014310549        <source>error: %Rrs</source>
    1014410550        <translation>ошибка: %Rrs</translation>
    1014510551    </message>
    1014610552    <message>
    10147         <location filename="../VBoxManageMisc.cpp" line="147"/>
    10148         <location filename="../VBoxManageMisc.cpp" line="372"/>
    10149         <location filename="../VBoxManageMisc.cpp" line="542"/>
     10553        <location filename="../VBoxManageMisc.cpp" line="145"/>
     10554        <location filename="../VBoxManageMisc.cpp" line="370"/>
     10555        <location filename="../VBoxManageMisc.cpp" line="540"/>
    1015010556        <source>VM name required</source>
    1015110557        <translation>Требуется имя ВМ</translation>
    1015210558    </message>
    1015310559    <message>
    10154         <location filename="../VBoxManageMisc.cpp" line="164"/>
     10560        <location filename="../VBoxManageMisc.cpp" line="162"/>
    1015510561        <source>Machine delete failed</source>
    1015610562        <translation>Не удалось удалить машину</translation>
    1015710563    </message>
    1015810564    <message>
    10159         <location filename="../VBoxManageMisc.cpp" line="258"/>
     10565        <location filename="../VBoxManageMisc.cpp" line="256"/>
    1016010566        <source>Parameter --name is required</source>
    1016110567        <translation>Требуется параметр --name</translation>
    1016210568    </message>
    1016310569    <message>
    10164         <location filename="../VBoxManageMisc.cpp" line="300"/>
     10570        <location filename="../VBoxManageMisc.cpp" line="298"/>
    1016510571        <source>Virtual machine &apos;%ls&apos; is created%s.
    1016610572UUID: %s
     
    1017310579    </message>
    1017410580    <message>
    10175         <location filename="../VBoxManageMisc.cpp" line="303"/>
     10581        <location filename="../VBoxManageMisc.cpp" line="301"/>
    1017610582        <source> and registered</source>
    1017710583        <translation> и зарегистрирована</translation>
    1017810584    </message>
    1017910585    <message>
    10180         <location filename="../VBoxManageMisc.cpp" line="345"/>
    10181         <location filename="../VBoxManageMisc.cpp" line="1391"/>
     10586        <location filename="../VBoxManageMisc.cpp" line="343"/>
     10587        <location filename="../VBoxManageMisc.cpp" line="1388"/>
    1018210588        <source>RTPathAbs(%s,,) failed with rc=%Rrc</source>
    1018310589        <translation>RTPathAbs(%s,,) завершен с ошибкой rc=%Rrc</translation>
    1018410590    </message>
    1018510591    <message>
    10186         <location filename="../VBoxManageMisc.cpp" line="396"/>
     10592        <location filename="../VBoxManageMisc.cpp" line="394"/>
    1018710593        <source>Move VM failed</source>
    1018810594        <translation>Не удалось переместить ВМ</translation>
    1018910595    </message>
    1019010596    <message>
    10191         <location filename="../VBoxManageMisc.cpp" line="401"/>
     10597        <location filename="../VBoxManageMisc.cpp" line="399"/>
    1019210598        <source>Machine has been successfully moved into %s
    1019310599</source>
     
    1019610602    </message>
    1019710603    <message>
    10198         <location filename="../VBoxManageMisc.cpp" line="402"/>
     10604        <location filename="../VBoxManageMisc.cpp" line="400"/>
    1019910605        <source>the same location</source>
    1020010606        <translation>то же место</translation>
    1020110607    </message>
    1020210608    <message>
    10203         <location filename="../VBoxManageMisc.cpp" line="512"/>
     10609        <location filename="../VBoxManageMisc.cpp" line="510"/>
    1020410610        <source>Invalid clone mode &apos;%s&apos;
    1020510611</source>
     
    1020810614    </message>
    1020910615    <message>
    10210         <location filename="../VBoxManageMisc.cpp" line="517"/>
     10616        <location filename="../VBoxManageMisc.cpp" line="515"/>
    1021110617        <source>Invalid clone options &apos;%s&apos;
    1021210618</source>
     
    1021510621    </message>
    1021610622    <message>
    10217         <location filename="../VBoxManageMisc.cpp" line="564"/>
     10623        <location filename="../VBoxManageMisc.cpp" line="562"/>
    1021810624        <source>%s Clone</source>
    1021910625        <translation>Клон %s</translation>
    1022010626    </message>
    1022110627    <message>
    10222         <location filename="../VBoxManageMisc.cpp" line="598"/>
     10628        <location filename="../VBoxManageMisc.cpp" line="596"/>
    1022310629        <source>Clone VM failed</source>
    1022410630        <translation>Не удалось клонировать ВМ</translation>
    1022510631    </message>
    1022610632    <message>
    10227         <location filename="../VBoxManageMisc.cpp" line="605"/>
     10633        <location filename="../VBoxManageMisc.cpp" line="603"/>
    1022810634        <source>Machine has been successfully cloned as &quot;%ls&quot;
    1022910635</source>
     
    1023210638    </message>
    1023310639    <message>
    10234         <location filename="../VBoxManageMisc.cpp" line="675"/>
     10640        <location filename="../VBoxManageMisc.cpp" line="672"/>
    1023510641        <source>Parameter to option --putenv must not contain any newline character</source>
    1023610642        <translation>Параметр к опции --putenv не должен содержать переводов строки</translation>
    1023710643    </message>
    1023810644    <message>
    10239         <location filename="../VBoxManageMisc.cpp" line="701"/>
     10645        <location filename="../VBoxManageMisc.cpp" line="698"/>
    1024010646        <source>at least one VM name or uuid required</source>
    1024110647        <translation>Требуется хотя бы одно имя ВМ или uuid</translation>
    1024210648    </message>
    1024310649    <message>
    10244         <location filename="../VBoxManageMisc.cpp" line="719"/>
     10650        <location filename="../VBoxManageMisc.cpp" line="716"/>
    1024510651        <source>Waiting for VM &quot;%s&quot; to power on...
    1024610652</source>
     
    1024910655    </message>
    1025010656    <message>
    10251         <location filename="../VBoxManageMisc.cpp" line="734"/>
     10657        <location filename="../VBoxManageMisc.cpp" line="731"/>
    1025210658        <source>VM &quot;%s&quot; has been successfully started.
    1025310659</source>
     
    1025610662    </message>
    1025710663    <message>
    10258         <location filename="../VBoxManageMisc.cpp" line="847"/>
    10259         <location filename="../VBoxManageMisc.cpp" line="883"/>
     10664        <location filename="../VBoxManageMisc.cpp" line="844"/>
     10665        <location filename="../VBoxManageMisc.cpp" line="880"/>
    1026010666        <source>Key: %ls, Value: %ls
    1026110667</source>
     
    1026410670    </message>
    1026510671    <message>
    10266         <location filename="../VBoxManageMisc.cpp" line="856"/>
    10267         <location filename="../VBoxManageMisc.cpp" line="892"/>
     10672        <location filename="../VBoxManageMisc.cpp" line="853"/>
     10673        <location filename="../VBoxManageMisc.cpp" line="889"/>
    1026810674        <source>Value: %ls
    1026910675</source>
     
    1027210678    </message>
    1027310679    <message>
    10274         <location filename="../VBoxManageMisc.cpp" line="858"/>
    10275         <location filename="../VBoxManageMisc.cpp" line="894"/>
     10680        <location filename="../VBoxManageMisc.cpp" line="855"/>
     10681        <location filename="../VBoxManageMisc.cpp" line="891"/>
    1027610682        <source>No value set!
    1027710683</source>
     
    1028010686    </message>
    1028110687    <message>
    10282         <location filename="../VBoxManageMisc.cpp" line="906"/>
    10283         <location filename="../VBoxManageMisc.cpp" line="1318"/>
     10688        <location filename="../VBoxManageMisc.cpp" line="903"/>
     10689        <location filename="../VBoxManageMisc.cpp" line="1315"/>
    1028410690        <source>Not enough parameters</source>
    1028510691        <translation>Недостаточно параметров</translation>
    1028610692    </message>
    1028710693    <message>
    10288         <location filename="../VBoxManageMisc.cpp" line="919"/>
    10289         <location filename="../VBoxManageMisc.cpp" line="941"/>
     10694        <location filename="../VBoxManageMisc.cpp" line="916"/>
     10695        <location filename="../VBoxManageMisc.cpp" line="938"/>
    1029010696        <source>Too many parameters</source>
    1029110697        <translation>Слишком много параметров</translation>
    1029210698    </message>
    1029310699    <message>
    10294         <location filename="../VBoxManageMisc.cpp" line="975"/>
     10700        <location filename="../VBoxManageMisc.cpp" line="972"/>
    1029510701        <source>Invalid hwvirtexclusive argument &apos;%s&apos;</source>
    1029610702        <translation>Недопустимый аргумент к hwvirtexclusive &apos;%s&apos;</translation>
    1029710703    </message>
    1029810704    <message>
    10299         <location filename="../VBoxManageMisc.cpp" line="982"/>
     10705        <location filename="../VBoxManageMisc.cpp" line="979"/>
    1030010706        <source>Warning: &apos;vrdpauthlibrary&apos; is deprecated. Use &apos;vrdeauthlibrary&apos;.
    1030110707</source>
     
    1030410710    </message>
    1030510711    <message>
    10306         <location filename="../VBoxManageMisc.cpp" line="1012"/>
     10712        <location filename="../VBoxManageMisc.cpp" line="1009"/>
    1030710713        <source>Error parsing Log history count &apos;%s&apos;</source>
    1030810714        <translation>Ошибка при разборе размера истории журнала &apos;%s&apos;</translation>
    1030910715    </message>
    1031010716    <message>
    10311         <location filename="../VBoxManageMisc.cpp" line="1047"/>
     10717        <location filename="../VBoxManageMisc.cpp" line="1044"/>
    1031210718        <source>Unknown proxy mode: &apos;%s&apos;</source>
    1031310719        <translation>Неизвестный режим прокси: &apos;%s&apos;</translation>
    1031410720    </message>
    1031510721    <message>
    10316         <location filename="../VBoxManageMisc.cpp" line="1141"/>
    10317         <location filename="../VBoxManageMisc.cpp" line="1253"/>
     10722        <location filename="../VBoxManageMisc.cpp" line="1138"/>
     10723        <location filename="../VBoxManageMisc.cpp" line="1250"/>
    1031810724        <source>Machine name is given more than once: first &apos;%s&apos;, then &apos;%s&apos;</source>
    1031910725        <translation>Имя машины дано более одного раза: сначала &apos;%s&apos;, затем &apos;%s&apos;</translation>
    1032010726    </message>
    1032110727    <message>
    10322         <location filename="../VBoxManageMisc.cpp" line="1151"/>
    10323         <location filename="../VBoxManageMisc.cpp" line="1263"/>
     10728        <location filename="../VBoxManageMisc.cpp" line="1148"/>
     10729        <location filename="../VBoxManageMisc.cpp" line="1260"/>
    1032410730        <source>No machine was specified</source>
    1032510731        <translation>Не указана машина</translation>
    1032610732    </message>
    1032710733    <message>
    10328         <location filename="../VBoxManageMisc.cpp" line="1154"/>
    10329         <location filename="../VBoxManageMisc.cpp" line="1265"/>
     10734        <location filename="../VBoxManageMisc.cpp" line="1151"/>
     10735        <location filename="../VBoxManageMisc.cpp" line="1262"/>
    1033010736        <source>No shared folder name (--name) was given</source>
    1033110737        <translation>Не указано имя общей папки (--name)</translation>
    1033210738    </message>
    1033310739    <message>
    10334         <location filename="../VBoxManageMisc.cpp" line="1156"/>
     10740        <location filename="../VBoxManageMisc.cpp" line="1153"/>
    1033510741        <source>Invalid shared folder name &apos;%s&apos;: contains space</source>
    1033610742        <translation>Недопустимое имя общей папки &apos;%s&apos;: содержит пробелы</translation>
    1033710743    </message>
    1033810744    <message>
    10339         <location filename="../VBoxManageMisc.cpp" line="1158"/>
     10745        <location filename="../VBoxManageMisc.cpp" line="1155"/>
    1034010746        <source>Invalid shared folder name &apos;%s&apos;: contains tabs</source>
    1034110747        <translation>Недопустимое имя общей папки &apos;%s&apos;: содержит табуляцию</translation>
    1034210748    </message>
    1034310749    <message>
    10344         <location filename="../VBoxManageMisc.cpp" line="1160"/>
     10750        <location filename="../VBoxManageMisc.cpp" line="1157"/>
    1034510751        <source>Invalid shared folder name &apos;%s&apos;: contains newline</source>
    1034610752        <translation>Недопустимое имя общей папки &apos;%s&apos;: содержит переводы строк</translation>
    1034710753    </message>
    1034810754    <message>
    10349         <location filename="../VBoxManageMisc.cpp" line="1163"/>
     10755        <location filename="../VBoxManageMisc.cpp" line="1160"/>
    1035010756        <source>No host path (--hostpath) was given</source>
    1035110757        <translation>Не указан путь хоста (--hostpath)</translation>
    1035210758    </message>
    1035310759    <message>
    10354         <location filename="../VBoxManageMisc.cpp" line="1167"/>
     10760        <location filename="../VBoxManageMisc.cpp" line="1164"/>
    1035510761        <source>RTAbsPath failed on &apos;%s&apos;: %Rrc</source>
    1035610762        <translation>RTAbsPath завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    1035710763    </message>
    1035810764    <message>
    10359         <location filename="../VBoxManageMisc.cpp" line="1190"/>
     10765        <location filename="../VBoxManageMisc.cpp" line="1187"/>
    1036010766        <source>Machine &apos;%s&apos; is not currently running.</source>
    1036110767        <translation>Машина &apos;%s&apos; сейчас не запущена.</translation>
    1036210768    </message>
    1036310769    <message>
    10364         <location filename="../VBoxManageMisc.cpp" line="1286"/>
     10770        <location filename="../VBoxManageMisc.cpp" line="1283"/>
    1036510771        <source>Machine &apos;%s&apos; is not currently running.
    1036610772</source>
     
    1036910775    </message>
    1037010776    <message>
    10371         <location filename="../VBoxManageMisc.cpp" line="1377"/>
    10372         <location filename="../VBoxManageMisc.cpp" line="1462"/>
     10777        <location filename="../VBoxManageMisc.cpp" line="1374"/>
     10778        <location filename="../VBoxManageMisc.cpp" line="1459"/>
    1037310779        <source>Too many extension pack names given to &quot;extpack uninstall&quot;</source>
    1037410780        <translation>Слишком много имен пакетов расширений указано для &quot;extpack uninstall&quot;</translation>
    1037510781    </message>
    1037610782    <message>
    10377         <location filename="../VBoxManageMisc.cpp" line="1386"/>
     10783        <location filename="../VBoxManageMisc.cpp" line="1383"/>
    1037810784        <source>No extension pack name was given to &quot;extpack install&quot;</source>
    1037910785        <translation>Не указано имя пакета расширения для &quot;extpack install&quot;</translation>
    1038010786    </message>
    1038110787    <message>
    10382         <location filename="../VBoxManageMisc.cpp" line="1415"/>
     10788        <location filename="../VBoxManageMisc.cpp" line="1412"/>
    1038310789        <source>License accepted.
    1038410790</source>
     
    1038710793    </message>
    1038810794    <message>
    10389         <location filename="../VBoxManageMisc.cpp" line="1419"/>
     10795        <location filename="../VBoxManageMisc.cpp" line="1416"/>
    1039010796        <source>Do you agree to these license terms and conditions (y/n)? </source>
    1039110797        <translation>Вы согласны с этими определениями и условиями лицензии (y/n)? </translation>
    1039210798    </message>
    1039310799    <message>
    10394         <location filename="../VBoxManageMisc.cpp" line="1424"/>
     10800        <location filename="../VBoxManageMisc.cpp" line="1421"/>
    1039510801        <source>Installation of &quot;%ls&quot; aborted.
    1039610802</source>
     
    1039910805    </message>
    1040010806    <message>
    10401         <location filename="../VBoxManageMisc.cpp" line="1428"/>
     10807        <location filename="../VBoxManageMisc.cpp" line="1425"/>
    1040210808        <source>License accepted. For batch installation add
    1040310809--accept-license=%s
     
    1041210818    </message>
    1041310819    <message>
    10414         <location filename="../VBoxManageMisc.cpp" line="1436"/>
     10820        <location filename="../VBoxManageMisc.cpp" line="1433"/>
    1041510821        <source>Failed to install &quot;%s&quot;</source>
    1041610822        <translation>Не удалось установить &quot;%s&quot;</translation>
    1041710823    </message>
    1041810824    <message>
    10419         <location filename="../VBoxManageMisc.cpp" line="1438"/>
     10825        <location filename="../VBoxManageMisc.cpp" line="1435"/>
    1042010826        <source>Successfully installed &quot;%ls&quot;.
    1042110827</source>
     
    1042410830    </message>
    1042510831    <message>
    10426         <location filename="../VBoxManageMisc.cpp" line="1471"/>
     10832        <location filename="../VBoxManageMisc.cpp" line="1468"/>
    1042710833        <source>No extension pack name was given to &quot;extpack uninstall&quot;</source>
    1042810834        <translation>Не указано имя пакета расширения для &quot;extpack uninstall&quot;</translation>
    1042910835    </message>
    1043010836    <message>
    10431         <location filename="../VBoxManageMisc.cpp" line="1477"/>
     10837        <location filename="../VBoxManageMisc.cpp" line="1474"/>
    1043210838        <source>Failed to uninstall &quot;%s&quot;</source>
    1043310839        <translation>Не удалось удалить &quot;%s&quot;</translation>
    1043410840    </message>
    1043510841    <message>
    10436         <location filename="../VBoxManageMisc.cpp" line="1479"/>
     10842        <location filename="../VBoxManageMisc.cpp" line="1476"/>
    1043710843        <source>Successfully uninstalled &quot;%s&quot;.
    1043810844</source>
     
    1044110847    </message>
    1044210848    <message>
    10443         <location filename="../VBoxManageMisc.cpp" line="1487"/>
     10849        <location filename="../VBoxManageMisc.cpp" line="1484"/>
    1044410850        <source>Successfully performed extension pack cleanup
    1044510851</source>
     
    1044810854    </message>
    1044910855    <message>
    10450         <location filename="../VBoxManageMisc.cpp" line="1529"/>
    10451         <location filename="../VBoxManageMisc.cpp" line="1672"/>
    10452         <location filename="../VBoxManageMisc.cpp" line="1711"/>
    10453         <location filename="../VBoxManageMisc.cpp" line="1724"/>
    10454         <location filename="../VBoxManageMisc.cpp" line="1759"/>
    10455         <location filename="../VBoxManageMisc.cpp" line="1770"/>
     10856        <location filename="../VBoxManageMisc.cpp" line="1526"/>
     10857        <location filename="../VBoxManageMisc.cpp" line="1679"/>
     10858        <location filename="../VBoxManageMisc.cpp" line="1718"/>
     10859        <location filename="../VBoxManageMisc.cpp" line="1731"/>
     10860        <location filename="../VBoxManageMisc.cpp" line="1766"/>
    1045610861        <location filename="../VBoxManageMisc.cpp" line="1777"/>
     10862        <location filename="../VBoxManageMisc.cpp" line="1784"/>
    1045710863        <source>RTPathAbs failed on &apos;%s&apos;: %Rrc</source>
    1045810864        <translation>RTPathAbs завершился с ошибкой на &apos;%s&apos;: %Rrc</translation>
    1045910865    </message>
    1046010866    <message>
    10461         <location filename="../VBoxManageMisc.cpp" line="1545"/>
     10867        <location filename="../VBoxManageMisc.cpp" line="1542"/>
    1046210868        <source>No ISO specified</source>
    1046310869        <translation>Не указан ISO</translation>
    1046410870    </message>
    1046510871    <message>
    10466         <location filename="../VBoxManageMisc.cpp" line="1582"/>
     10872        <location filename="../VBoxManageMisc.cpp" line="1587"/>
    1046710873        <source>Detected &apos;%s&apos; to be:
    1046810874</source>
     
    1047110877    </message>
    1047210878    <message>
    10473         <location filename="../VBoxManageMisc.cpp" line="1583"/>
     10879        <location filename="../VBoxManageMisc.cpp" line="1588"/>
    1047410880        <source>    OS TypeId    = %ls
    1047510881    OS Version   = %ls
     
    1048610892    </message>
    1048710893    <message>
    10488         <location filename="../VBoxManageMisc.cpp" line="1664"/>
     10894        <location filename="../VBoxManageMisc.cpp" line="1671"/>
    1048910895        <source>VM name/UUID given more than once!</source>
    1049010896        <translation>Имя ВМ/UUID указаны несколько раз!</translation>
    1049110897    </message>
    1049210898    <message>
    10493         <location filename="../VBoxManageMisc.cpp" line="1806"/>
     10899        <location filename="../VBoxManageMisc.cpp" line="1813"/>
    1049410900        <source>Missing VM name/UUID</source>
    1049510901        <translation>Отсутствует имя ВМ/UUID</translation>
    1049610902    </message>
    1049710903    <message>
    10498         <location filename="../VBoxManageMisc.cpp" line="1858"/>
     10904        <location filename="../VBoxManageMisc.cpp" line="1865"/>
    1049910905        <source>Machine &apos;%ls&apos; is currently running</source>
    1050010906        <translation>Машина &apos;%ls&apos; сейчас работает</translation>
    1050110907    </message>
    1050210908    <message>
    10503         <location filename="../VBoxManageMisc.cpp" line="1864"/>
     10909        <location filename="../VBoxManageMisc.cpp" line="1871"/>
    1050410910        <source>%s unattended installation of %s in machine &apos;%ls&apos; (%ls).
    1050510911</source>
     
    1050810914    </message>
    1050910915    <message>
    10510         <location filename="../VBoxManageMisc.cpp" line="1865"/>
     10916        <location filename="../VBoxManageMisc.cpp" line="1872"/>
    1051110917        <source>Preparing</source>
    1051210918        <translation>Подготовка</translation>
    1051310919    </message>
    1051410920    <message>
    10515         <location filename="../VBoxManageMisc.cpp" line="1865"/>
     10921        <location filename="../VBoxManageMisc.cpp" line="1872"/>
    1051610922        <source>Starting</source>
    1051710923        <translation>Запуск</translation>
    1051810924    </message>
    1051910925    <message>
    10520         <location filename="../VBoxManageMisc.cpp" line="1878"/>
     10926        <location filename="../VBoxManageMisc.cpp" line="1885"/>
    1052110927        <source>Using values:
    1052210928</source>
     
    1052510931    </message>
    1052610932    <message>
    10527         <location filename="../VBoxManageMisc.cpp" line="1885"/>
    10528         <location filename="../VBoxManageMisc.cpp" line="1893"/>
     10933        <location filename="../VBoxManageMisc.cpp" line="1892"/>
     10934        <location filename="../VBoxManageMisc.cpp" line="1900"/>
     10935        <location filename="../VBoxManageMisc.cpp" line="1952"/>
    1052910936        <source>  %32s = failed: %Rhrc
    1053010937</source>
     
    1053310940    </message>
    1053410941    <message>
    10535         <location filename="../VBoxManageMisc.cpp" line="1937"/>
     10942        <location filename="../VBoxManageMisc.cpp" line="1955"/>
     10943        <source>  %32 = failed: %Rhrc
     10944</source>
     10945        <translation type="unfinished"></translation>
     10946    </message>
     10947    <message>
     10948        <location filename="../VBoxManageMisc.cpp" line="1971"/>
    1053610949        <source>VM &apos;%ls&apos; (%ls) is ready to be started (e.g. VBoxManage startvm).
    1053710950</source>
     
    1054010953    </message>
    1054110954    <message>
    10542         <location filename="../VBoxManageMisc.cpp" line="1956"/>
     10955        <location filename="../VBoxManageMisc.cpp" line="1990"/>
    1054310956        <source>Waiting for VM &apos;%ls&apos; to power on...
    1054410957</source>
     
    1054710960    </message>
    1054810961    <message>
    10549         <location filename="../VBoxManageMisc.cpp" line="1971"/>
     10962        <location filename="../VBoxManageMisc.cpp" line="2005"/>
    1055010963        <source>VM &apos;%ls&apos; (%ls) has been successfully started.
    1055110964</source>
     
    1055410967    </message>
    1055510968    <message>
    10556         <location filename="../VBoxManageMisc.cpp" line="2103"/>
    10557         <location filename="../VBoxManageMisc.cpp" line="2153"/>
    10558         <location filename="../VBoxManageMisc.cpp" line="2213"/>
    10559         <location filename="../VBoxManageMisc.cpp" line="2311"/>
     10969        <location filename="../VBoxManageMisc.cpp" line="2137"/>
     10970        <location filename="../VBoxManageMisc.cpp" line="2187"/>
     10971        <location filename="../VBoxManageMisc.cpp" line="2247"/>
     10972        <location filename="../VBoxManageMisc.cpp" line="2345"/>
    1056010973        <source>Parameter --provider is required</source>
    1056110974        <translation>Требуется параметр --provider</translation>
    1056210975    </message>
    1056310976    <message>
    10564         <location filename="../VBoxManageMisc.cpp" line="2105"/>
    10565         <location filename="../VBoxManageMisc.cpp" line="2155"/>
    10566         <location filename="../VBoxManageMisc.cpp" line="2215"/>
    10567         <location filename="../VBoxManageMisc.cpp" line="2313"/>
     10977        <location filename="../VBoxManageMisc.cpp" line="2139"/>
     10978        <location filename="../VBoxManageMisc.cpp" line="2189"/>
     10979        <location filename="../VBoxManageMisc.cpp" line="2249"/>
     10980        <location filename="../VBoxManageMisc.cpp" line="2347"/>
    1056810981        <source>Parameter --profile is required</source>
    1056910982        <translation>Требуется параметр --profile</translation>
    1057010983    </message>
    1057110984    <message>
    10572         <location filename="../VBoxManageMisc.cpp" line="2134"/>
     10985        <location filename="../VBoxManageMisc.cpp" line="2168"/>
    1057310986        <source>Provider %ls: profile &apos;%ls&apos; was updated.
    1057410987</source>
     
    1057710990    </message>
    1057810991    <message>
    10579         <location filename="../VBoxManageMisc.cpp" line="2176"/>
     10992        <location filename="../VBoxManageMisc.cpp" line="2210"/>
    1058010993        <source>Provider GUID: %ls
    1058110994</source>
     
    1058410997    </message>
    1058510998    <message>
    10586         <location filename="../VBoxManageMisc.cpp" line="2192"/>
     10999        <location filename="../VBoxManageMisc.cpp" line="2226"/>
    1058711000        <source>Property:      </source>
    1058811001        <translation>Свойство:      </translation>
    1058911002    </message>
    1059011003    <message>
    10591         <location filename="../VBoxManageMisc.cpp" line="2297"/>
     11004        <location filename="../VBoxManageMisc.cpp" line="2331"/>
    1059211005        <source>Provider %ls: profile &apos;%ls&apos; was added.
    1059311006</source>
     
    1059611009    </message>
    1059711010    <message>
    10598         <location filename="../VBoxManageMisc.cpp" line="2340"/>
     11011        <location filename="../VBoxManageMisc.cpp" line="2374"/>
    1059911012        <source>Provider %ls: profile &apos;%ls&apos; was deleted.
    1060011013</source>
     
    1060611019    <name>ModifyVM</name>
    1060711020    <message>
    10608         <location filename="../VBoxManageModifyVM.cpp" line="464"/>
     11021        <location filename="../VBoxManageModifyVM.cpp" line="467"/>
    1060911022        <source>Warning: &apos;--vrdp%s&apos; is deprecated. Use &apos;--vrde%s&apos;.
    1061011023</source>
     
    1061311026    </message>
    1061411027    <message>
    10615         <location filename="../VBoxManageModifyVM.cpp" line="563"/>
     11028        <location filename="../VBoxManageModifyVM.cpp" line="578"/>
    1061611029        <source>Invalid %s number %u</source>
    1061711030        <translation>Недопустимый номер %s %u</translation>
    1061811031    </message>
    1061911032    <message>
    10620         <location filename="../VBoxManageModifyVM.cpp" line="592"/>
    10621         <location filename="../VBoxManageModifyVM.cpp" line="2026"/>
     11033        <location filename="../VBoxManageModifyVM.cpp" line="607"/>
     11034        <location filename="../VBoxManageModifyVM.cpp" line="2089"/>
    1062211035        <source>Not enough parameters</source>
    1062311036        <translation>Недостаточно параметров</translation>
    1062411037    </message>
    1062511038    <message>
    10626         <location filename="../VBoxManageModifyVM.cpp" line="655"/>
     11039        <location filename="../VBoxManageModifyVM.cpp" line="670"/>
    1062711040        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    1062811041        <translation>Невозможно открыть файл &quot;%s&quot;: %Rrc</translation>
    1062911042    </message>
    1063011043    <message>
    10631         <location filename="../VBoxManageModifyVM.cpp" line="663"/>
     11044        <location filename="../VBoxManageModifyVM.cpp" line="678"/>
    1063211045        <source>Cannot get size of file &quot;%s&quot;: %Rrc</source>
    1063311046        <translation>Невозможно получить размер файла &quot;%s&quot;: %Rrc</translation>
    1063411047    </message>
    1063511048    <message>
    10636         <location filename="../VBoxManageModifyVM.cpp" line="669"/>
     11049        <location filename="../VBoxManageModifyVM.cpp" line="684"/>
    1063711050        <source>File &quot;%s&quot; is bigger than 256KByte</source>
    1063811051        <translation>Файл &quot;%s&quot; больше 256 КБайт</translation>
    1063911052    </message>
    1064011053    <message>
    10641         <location filename="../VBoxManageModifyVM.cpp" line="677"/>
     11054        <location filename="../VBoxManageModifyVM.cpp" line="692"/>
    1064211055        <source>Cannot read contents of file &quot;%s&quot;: %Rrc</source>
    1064311056        <translation>Невозможно прочесть содержимое файла &quot;%s&quot;: %Rrc</translation>
    1064411057    </message>
    1064511058    <message>
    10646         <location filename="../VBoxManageModifyVM.cpp" line="728"/>
     11059        <location filename="../VBoxManageModifyVM.cpp" line="743"/>
    1064711060        <source>Invalid --firmware argument &apos;%s&apos;</source>
    1064811061        <translation>Недопустимый аргумент к --firmware &apos;%s&apos;</translation>
    1064911062    </message>
    1065011063    <message>
    10651         <location filename="../VBoxManageModifyVM.cpp" line="799"/>
     11064        <location filename="../VBoxManageModifyVM.cpp" line="814"/>
    1065211065        <source>Invalid --paravirtprovider argument &apos;%s&apos;</source>
    1065311066        <translation>Недопустимый аргумент к --paravirtprovider &apos;%s&apos;</translation>
    1065411067    </message>
    1065511068    <message>
    10656         <location filename="../VBoxManageModifyVM.cpp" line="826"/>
    10657         <location filename="../VBoxManageModifyVM.cpp" line="1926"/>
    10658         <location filename="../VBoxManageModifyVM.cpp" line="2319"/>
    10659         <location filename="../VBoxManageModifyVM.cpp" line="2400"/>
    10660         <location filename="../VBoxManageModifyVM.cpp" line="2444"/>
    10661         <location filename="../VBoxManageModifyVM.cpp" line="2881"/>
    1066211069        <source>Missing or Invalid argument to &apos;%s&apos;</source>
    10663         <translation>Отсутствует или недопустимый аргумент к &apos;%s&apos;</translation>
    10664     </message>
    10665     <message>
    10666         <location filename="../VBoxManageModifyVM.cpp" line="970"/>
     11070        <translation type="vanished">Отсутствует или недопустимый аргумент к &apos;%s&apos;</translation>
     11071    </message>
     11072    <message>
     11073        <location filename="../VBoxManageModifyVM.cpp" line="841"/>
     11074        <location filename="../VBoxManageModifyVM.cpp" line="1989"/>
     11075        <location filename="../VBoxManageModifyVM.cpp" line="2381"/>
     11076        <location filename="../VBoxManageModifyVM.cpp" line="2460"/>
     11077        <location filename="../VBoxManageModifyVM.cpp" line="2503"/>
     11078        <location filename="../VBoxManageModifyVM.cpp" line="2939"/>
     11079        <source>Missing or invalid argument to &apos;%s&apos;</source>
     11080        <translation type="unfinished">Отсутствует или недопустимый аргумент к &apos;%s&apos;</translation>
     11081    </message>
     11082    <message>
     11083        <location filename="../VBoxManageModifyVM.cpp" line="985"/>
    1066711084        <source>Invalid --graphicscontroller argument &apos;%s&apos;</source>
    1066811085        <translation>Недопустимый аргумент к --graphicscontroller &apos;%s&apos;</translation>
    1066911086    </message>
    1067011087    <message>
    10671         <location filename="../VBoxManageModifyVM.cpp" line="1036"/>
     11088        <location filename="../VBoxManageModifyVM.cpp" line="1051"/>
    1067211089        <source>Invalid --biosbootmenu argument &apos;%s&apos;</source>
    1067311090        <translation>Недопустимый аргумент к --biosbootmenu &apos;%s&apos;</translation>
    1067411091    </message>
    1067511092    <message>
    10676         <location filename="../VBoxManageModifyVM.cpp" line="1060"/>
     11093        <location filename="../VBoxManageModifyVM.cpp" line="1075"/>
    1067711094        <source>Invalid --biosapic argument &apos;%s&apos;</source>
    1067811095        <translation>Недопустимый аргумент к --biosapic &apos;%s&apos;</translation>
    1067911096    </message>
    1068011097    <message>
    10681         <location filename="../VBoxManageModifyVM.cpp" line="1107"/>
     11098        <location filename="../VBoxManageModifyVM.cpp" line="1122"/>
    1068211099        <source>Invalid boot device &apos;%s&apos;</source>
    1068311100        <translation>Недопустимое загрузочное устройство &apos;%s&apos;</translation>
    1068411101    </message>
    1068511102    <message>
    10686         <location filename="../VBoxManageModifyVM.cpp" line="1187"/>
     11103        <location filename="../VBoxManageModifyVM.cpp" line="1202"/>
    1068711104        <source>Invalid --idecontroller argument &apos;%s&apos;</source>
    1068811105        <translation>Недопустимый аргумент к --idecontroller &apos;%s&apos;</translation>
    1068911106    </message>
    1069011107    <message>
    10691         <location filename="../VBoxManageModifyVM.cpp" line="1217"/>
     11108        <location filename="../VBoxManageModifyVM.cpp" line="1232"/>
    1069211109        <source>Invalid --usb argument &apos;%s&apos;</source>
    1069311110        <translation>Недопустимый аргумент к --usb &apos;%s&apos;</translation>
    1069411111    </message>
    1069511112    <message>
    10696         <location filename="../VBoxManageModifyVM.cpp" line="1292"/>
     11113        <location filename="../VBoxManageModifyVM.cpp" line="1307"/>
    1069711114        <source>Invalid --scsitype argument &apos;%s&apos;</source>
    1069811115        <translation>Недопустимый аргумент к --scsitype &apos;%s&apos;</translation>
    1069911116    </message>
    1070011117    <message>
    10701         <location filename="../VBoxManageModifyVM.cpp" line="1347"/>
    10702         <location filename="../VBoxManageModifyVM.cpp" line="1355"/>
     11118        <location filename="../VBoxManageModifyVM.cpp" line="1362"/>
     11119        <location filename="../VBoxManageModifyVM.cpp" line="1370"/>
    1070311120        <source>Invalid host DVD drive name &quot;%s&quot;</source>
    1070411121        <translation>Недопустимое имя DVD дисковода хоста &quot;%s&quot;</translation>
    1070511122    </message>
    1070611123    <message>
    10707         <location filename="../VBoxManageModifyVM.cpp" line="1421"/>
     11124        <location filename="../VBoxManageModifyVM.cpp" line="1436"/>
    1070811125        <source>Invalid host floppy drive name &quot;%s&quot;</source>
    1070911126        <translation>Недопустимое имя флоппи дисковода хоста &quot;%s&quot;</translation>
    1071011127    </message>
    1071111128    <message>
    10712         <location filename="../VBoxManageModifyVM.cpp" line="1501"/>
     11129        <location filename="../VBoxManageModifyVM.cpp" line="1516"/>
    1071311130        <source>Invalid --nicproperty%d argument &apos;%s&apos;</source>
    1071411131        <translation>Недопустимый аргумент к --nicproperty%d &apos;%s&apos;</translation>
    1071511132    </message>
    1071611133    <message>
    10717         <location filename="../VBoxManageModifyVM.cpp" line="1508"/>
     11134        <location filename="../VBoxManageModifyVM.cpp" line="1523"/>
    1071811135        <source>Error: Failed to allocate memory for --nicproperty%d &apos;%s&apos;
    1071911136</source>
     
    1072211139    </message>
    1072311140    <message>
    10724         <location filename="../VBoxManageModifyVM.cpp" line="1564"/>
     11141        <location filename="../VBoxManageModifyVM.cpp" line="1597"/>
    1072511142        <source>Invalid NIC type &apos;%s&apos; specified for NIC %u</source>
    1072611143        <translation>Недопустимый тип NIC &apos;%s&apos;, указанный для NIC %u</translation>
    1072711144    </message>
    1072811145    <message>
    10729         <location filename="../VBoxManageModifyVM.cpp" line="1599"/>
     11146        <location filename="../VBoxManageModifyVM.cpp" line="1632"/>
    1073011147        <source>Invalid boot priority &apos;%u&apos; specfied for NIC %u</source>
    1073111148        <translation>Недопустимы приоритет загрузки &apos;%u&apos; указанный для NIC %u</translation>
    1073211149    </message>
    1073311150    <message>
    10734         <location filename="../VBoxManageModifyVM.cpp" line="1621"/>
     11151        <location filename="../VBoxManageModifyVM.cpp" line="1654"/>
    1073511152        <source>Unknown promiscuous mode policy &apos;%s&apos;</source>
    1073611153        <translation>Неизвестная политика неразборчивого режима &apos;%s&apos;</translation>
    1073711154    </message>
    1073811155    <message>
    10739         <location filename="../VBoxManageModifyVM.cpp" line="1748"/>
     11156        <location filename="../VBoxManageModifyVM.cpp" line="1789"/>
    1074011157        <source>Invalid type &apos;%s&apos; specfied for NIC %u</source>
    1074111158        <translation>Недопустимый тип &apos;%s&apos;, указанный для NIC %u</translation>
    1074211159    </message>
    1074311160    <message>
    10744         <location filename="../VBoxManageModifyVM.cpp" line="2010"/>
     11161        <location filename="../VBoxManageModifyVM.cpp" line="2073"/>
    1074511162        <source>Invalid proto &apos;%s&apos; specfied for NIC %u</source>
    1074611163        <translation>Недопустимый протокол &apos;%s&apos;, указанный для NIC %u</translation>
    1074711164    </message>
    1074811165    <message>
    10749         <location filename="../VBoxManageModifyVM.cpp" line="2228"/>
     11166        <location filename="../VBoxManageModifyVM.cpp" line="2291"/>
    1075011167        <source>Invalid type &apos;%s&apos; specfied for pointing device</source>
    1075111168        <translation>Недопустимый тип &apos;%s&apos;, указанный для указательного устройства</translation>
    1075211169    </message>
    1075311170    <message>
    10754         <location filename="../VBoxManageModifyVM.cpp" line="2273"/>
     11171        <location filename="../VBoxManageModifyVM.cpp" line="2336"/>
    1075511172        <source>Invalid type &apos;%s&apos; specfied for keyboard</source>
    1075611173        <translation>Недопустимый тип &apos;%s&apos;, указанный для клавиатуры</translation>
    1075711174    </message>
    1075811175    <message>
    10759         <location filename="../VBoxManageModifyVM.cpp" line="2378"/>
     11176        <location filename="../VBoxManageModifyVM.cpp" line="2439"/>
    1076011177        <source>Invalid argument to &apos;%s&apos;</source>
    1076111178        <translation>Недопустимый аргумент к &apos;%s&apos;</translation>
    1076211179    </message>
    1076311180    <message>
    10764         <location filename="../VBoxManageModifyVM.cpp" line="2407"/>
     11181        <location filename="../VBoxManageModifyVM.cpp" line="2467"/>
    1076511182        <source>Error parsing UART I/O base &apos;%s&apos;</source>
    1076611183        <translation>Ошибка при разборе базового адреса I/O UART &apos;%s&apos;</translation>
    1076711184    </message>
    1076811185    <message>
    10769         <location filename="../VBoxManageModifyVM.cpp" line="2451"/>
     11186        <location filename="../VBoxManageModifyVM.cpp" line="2510"/>
    1077011187        <source>Error parsing LPT I/O base &apos;%s&apos;</source>
    1077111188        <translation>Ошибка при разборе базового адреса I/O LPT &apos;%s&apos;</translation>
    1077211189    </message>
    1077311190    <message>
    10774         <location filename="../VBoxManageModifyVM.cpp" line="2480"/>
     11191        <location filename="../VBoxManageModifyVM.cpp" line="2539"/>
    1077511192        <source>Invalid --audiocontroller argument &apos;%s&apos;</source>
    1077611193        <translation>Недопустимый аргумент к --audiocontroller &apos;%s&apos;</translation>
    1077711194    </message>
    1077811195    <message>
    10779         <location filename="../VBoxManageModifyVM.cpp" line="2502"/>
     11196        <location filename="../VBoxManageModifyVM.cpp" line="2561"/>
    1078011197        <source>Invalid --audiocodec argument &apos;%s&apos;</source>
    1078111198        <translation>Недопустимый аргумент к --audiocodec &apos;%s&apos;</translation>
    1078211199    </message>
    1078311200    <message>
    10784         <location filename="../VBoxManageModifyVM.cpp" line="2574"/>
     11201        <location filename="../VBoxManageModifyVM.cpp" line="2633"/>
    1078511202        <source>Invalid --audio argument &apos;%s&apos;</source>
    1078611203        <translation>Недопустимый аргумент к --audio &apos;%s&apos;</translation>
    1078711204    </message>
    1078811205    <message>
    10789         <location filename="../VBoxManageModifyVM.cpp" line="2614"/>
     11206        <location filename="../VBoxManageModifyVM.cpp" line="2673"/>
    1079011207        <source>Invalid --clipboard-mode argument &apos;%s&apos;</source>
    1079111208        <translation>Недопустимый аргумент к --clipboard-mode &apos;%s&apos;</translation>
    1079211209    </message>
    1079311210    <message>
    10794         <location filename="../VBoxManageModifyVM.cpp" line="2634"/>
     11211        <location filename="../VBoxManageModifyVM.cpp" line="2693"/>
    1079511212        <source>Invalid --clipboard-file-transfers argument &apos;%s&apos;</source>
    1079611213        <translation>Недопустимый аргумент к --clipboard-file-transfers &apos;%s&apos;</translation>
    1079711214    </message>
    1079811215    <message>
    10799         <location filename="../VBoxManageModifyVM.cpp" line="2659"/>
     11216        <location filename="../VBoxManageModifyVM.cpp" line="2718"/>
    1080011217        <source>Invalid --draganddrop argument &apos;%s&apos;</source>
    1080111218        <translation>Недопустимый аргумент к --draganddrop &apos;%s&apos;</translation>
    1080211219    </message>
    1080311220    <message>
    10804         <location filename="../VBoxManageModifyVM.cpp" line="2713"/>
     11221        <location filename="../VBoxManageModifyVM.cpp" line="2772"/>
    1080511222        <source>Invalid --vrdeproperty argument &apos;%s&apos;</source>
    1080611223        <translation>Недопустимый аргумент к --vrdeproperty &apos;%s&apos;</translation>
    1080711224    </message>
    1080811225    <message>
    10809         <location filename="../VBoxManageModifyVM.cpp" line="2721"/>
     11226        <location filename="../VBoxManageModifyVM.cpp" line="2780"/>
    1081011227        <source>Error: Failed to allocate memory for VRDE property &apos;%s&apos;
    1081111228</source>
     
    1081411231    </message>
    1081511232    <message>
    10816         <location filename="../VBoxManageModifyVM.cpp" line="2783"/>
     11233        <location filename="../VBoxManageModifyVM.cpp" line="2842"/>
    1081711234        <source>Invalid --vrdeauthtype argument &apos;%s&apos;</source>
    1081811235        <translation>Недопустимый аргумент к --vrdeauthtype &apos;%s&apos;</translation>
    1081911236    </message>
    1082011237    <message>
    10821         <location filename="../VBoxManageModifyVM.cpp" line="2902"/>
     11238        <location filename="../VBoxManageModifyVM.cpp" line="2960"/>
    1082211239        <source>Invalid --usbrename parameters, nothing renamed</source>
    1082311240        <translation>Недопустимые параметры к --usbrename, ничего не переименовано</translation>
    1082411241    </message>
    1082511242    <message>
    10826         <location filename="../VBoxManageModifyVM.cpp" line="3106"/>
     11243        <location filename="../VBoxManageModifyVM.cpp" line="3164"/>
    1082711244        <source>*** I/O APIC must be enabled for ICH9, enabling. ***
    1082811245</source>
     
    1083111248    </message>
    1083211249    <message>
    10833         <location filename="../VBoxManageModifyVM.cpp" line="3112"/>
     11250        <location filename="../VBoxManageModifyVM.cpp" line="3170"/>
    1083411251        <source>Invalid --chipset argument &apos;%s&apos; (valid: piix3,ich9)</source>
    1083511252        <translation>Недопустимый аргумент к --chipset &apos;%s&apos; (допустимые: piix3,ich9)</translation>
    1083611253    </message>
    1083711254    <message>
    10838         <location filename="../VBoxManageModifyVM.cpp" line="3130"/>
     11255        <location filename="../VBoxManageModifyVM.cpp" line="3188"/>
    1083911256        <source>Invalid --iommu argument &apos;%s&apos; (valid: none,amd,automatic)</source>
    1084011257        <translation>Недопустимый аргумент к --iommu &apos;%s&apos; (допустимые: none,amd,automatic)</translation>
    1084111258    </message>
    1084211259    <message>
    10843         <location filename="../VBoxManageModifyVM.cpp" line="3139"/>
     11260        <location filename="../VBoxManageModifyVM.cpp" line="3197"/>
    1084411261        <source>Warning: On Intel hosts, &apos;automatic&apos; will not enable an IOMMU since the Intel IOMMU device is not supported yet.
    1084511262</source>
     
    1084811265    </message>
    1084911266    <message>
    10850         <location filename="../VBoxManageModifyVM.cpp" line="3144"/>
     11267        <location filename="../VBoxManageModifyVM.cpp" line="3202"/>
    1085111268        <source>Invalid --iommu argument &apos;%s&apos;</source>
    1085211269        <translation>Недопустимый аргумент к --iommu &apos;%s&apos;</translation>
    1085311270    </message>
    1085411271    <message>
    10855         <location filename="../VBoxManageModifyVM.cpp" line="3169"/>
     11272        <location filename="../VBoxManageModifyVM.cpp" line="3227"/>
    1085611273        <source>Invalid --tpm-type argument &apos;%s&apos;</source>
    1085711274        <translation>Недопустимый аргумент к --tpm-type &apos;%s&apos;</translation>
    1085811275    </message>
    1085911276    <message>
    10860         <location filename="../VBoxManageModifyVM.cpp" line="3226"/>
     11277        <location filename="../VBoxManageModifyVM.cpp" line="3284"/>
    1086111278        <source>Invalid list of screens specified
    1086211279</source>
     
    1086511282    </message>
    1086611283    <message>
    10867         <location filename="../VBoxManageModifyVM.cpp" line="3248"/>
     11284        <location filename="../VBoxManageModifyVM.cpp" line="3306"/>
    1086811285        <source>Cannot convert filename &quot;%s&quot; to absolute path
    1086911286</source>
     
    1087211289    </message>
    1087311290    <message>
    10874         <location filename="../VBoxManageModifyVM.cpp" line="3278"/>
    10875         <location filename="../VBoxManageModifyVM.cpp" line="3287"/>
     11291        <location filename="../VBoxManageModifyVM.cpp" line="3336"/>
     11292        <location filename="../VBoxManageModifyVM.cpp" line="3345"/>
    1087611293        <source>Error parsing video resolution &apos;%s&apos; (expected &lt;width&gt;x&lt;height&gt;)</source>
    1087711294        <translation>Ошибка разбора видео разрешения &apos;%s&apos; (ожидается &lt;ширина&gt;x&lt;высота&gt;)</translation>
    1087811295    </message>
    1087911296    <message>
    10880         <location filename="../VBoxManageModifyVM.cpp" line="3362"/>
     11297        <location filename="../VBoxManageModifyVM.cpp" line="3420"/>
    1088111298        <source>Invalid --autostop-type argument &apos;%s&apos; (valid: disabled, savestate, poweroff, acpishutdown)</source>
    1088211299        <translation>Недопустимый аргумент к --autostop-type &apos;%s&apos; (допустимые: disabled, savestate, poweroff, acpishutdown)</translation>
    1088311300    </message>
    1088411301    <message>
    10885         <location filename="../VBoxManageModifyVM.cpp" line="3382"/>
     11302        <location filename="../VBoxManageModifyVM.cpp" line="3440"/>
    1088611303        <source>Invalid --pciattach argument &apos;%s&apos; (valid: &apos;HB:HD.HF@GB:GD.GF&apos; or just &apos;HB:HD.HF&apos;)</source>
    1088711304        <translation>Недопустимый аргумент к --pciattach &apos;%s&apos; (допустимые: &apos;HB:HD.HF@GB:GD.GF&apos; или просто &apos;HB:HD.HF&apos;)</translation>
    1088811305    </message>
    1088911306    <message>
    10890         <location filename="../VBoxManageModifyVM.cpp" line="3400"/>
     11307        <location filename="../VBoxManageModifyVM.cpp" line="3458"/>
    1089111308        <source>Invalid --pcidetach argument &apos;%s&apos; (valid: &apos;HB:HD.HF&apos;)</source>
    1089211309        <translation>Недопустимый аргумент к --pcidetach &apos;%s&apos; (допустимый: &apos;HB:HD.HF&apos;)</translation>
    1089311310    </message>
    1089411311    <message>
    10895         <location filename="../VBoxManageModifyVM.cpp" line="3434"/>
     11312        <location filename="../VBoxManageModifyVM.cpp" line="3492"/>
    1089611313        <source>Invalid --vm-process-priority &apos;%s&apos;</source>
    1089711314        <translation>Недопустимый --vm-process-priority &apos;%s&apos;</translation>
    1089811315    </message>
    1089911316    <message>
    10900         <location filename="../VBoxManageModifyVM.cpp" line="3463"/>
     11317        <location filename="../VBoxManageModifyVM.cpp" line="3521"/>
    1090111318        <source>--testing-cfg-dword index %u is out of range: 0 thru 9</source>
    1090211319        <translation>Индекс --testing-cfg-dword %u вне границ диапазона: 0 - 9</translation>
     
    1090611323    <name>Nat</name>
    1090711324    <message>
    10908         <location filename="../VBoxManageNATNetwork.cpp" line="98"/>
     11325        <location filename="../VBoxManageNATNetwork.cpp" line="96"/>
    1090911326        <source>Name:         %ls
    1091011327</source>
     
    1091311330    </message>
    1091411331    <message>
    10915         <location filename="../VBoxManageNATNetwork.cpp" line="101"/>
     11332        <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
    1091611333        <source>Network:      %ls
    1091711334</source>
     
    1092011337    </message>
    1092111338    <message>
    10922         <location filename="../VBoxManageNATNetwork.cpp" line="104"/>
     11339        <location filename="../VBoxManageNATNetwork.cpp" line="113"/>
    1092311340        <source>Gateway:      %ls
    1092411341</source>
     
    1092711344    </message>
    1092811345    <message>
    10929         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    1093011346        <source>DHCP Sever:   %s
    1093111347</source>
    10932         <translation>DHCP сервер:   %s
    10933 </translation>
    10934     </message>
    10935     <message>
    10936         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    10937         <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
     11348        <translation type="vanished">DHCP сервер:   %s
     11349</translation>
     11350    </message>
     11351    <message>
     11352        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
    1093811353        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10939         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
     11354        <location filename="../VBoxManageNATNetwork.cpp" line="119"/>
     11355        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
    1094011356        <source>Yes</source>
    1094111357        <translation>Да</translation>
    1094211358    </message>
    1094311359    <message>
    10944         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    10945         <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
     11360        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
    1094611361        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10947         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
     11362        <location filename="../VBoxManageNATNetwork.cpp" line="119"/>
     11363        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
    1094811364        <source>No</source>
    1094911365        <translation>Нет</translation>
    1095011366    </message>
    1095111367    <message>
    10952         <location filename="../VBoxManageNATNetwork.cpp" line="113"/>
     11368        <location filename="../VBoxManageNATNetwork.cpp" line="122"/>
    1095311369        <source>IPv6 Prefix:  %ls
    1095411370</source>
     
    1095711373    </message>
    1095811374    <message>
     11375        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
     11376        <source>IPv6 Default: %s
     11377</source>
     11378        <translation>IPv6 по умолчанию: %ls
     11379</translation>
     11380    </message>
     11381    <message>
     11382        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
     11383        <source>Enabled:      %s
     11384</source>
     11385        <translation>Включено:      %s
     11386</translation>
     11387    </message>
     11388    <message>
    1095911389        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10960         <source>IPv6 Default: %s
    10961 </source>
    10962         <translation>IPv6 по умолчанию: %ls
    10963 </translation>
    10964     </message>
    10965     <message>
    10966         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
    10967         <source>Enabled:      %s
    10968 </source>
    10969         <translation>Включено:      %s
    10970 </translation>
    10971     </message>
    10972     <message>
    10973         <location filename="../VBoxManageNATNetwork.cpp" line="133"/>
     11390        <source>DHCP Server:  %s
     11391</source>
     11392        <translation type="unfinished"></translation>
     11393    </message>
     11394    <message>
     11395        <location filename="../VBoxManageNATNetwork.cpp" line="142"/>
     11396        <source>Port-forwarding (ipv4)
     11397</source>
     11398        <translation type="unfinished">Перенаправление портов (ipv4)
     11399</translation>
     11400    </message>
     11401    <message>
     11402        <location filename="../VBoxManageNATNetwork.cpp" line="146"/>
     11403        <source>Port-forwarding (ipv6)
     11404</source>
     11405        <translation type="unfinished">Перенаправление портов (ipv6)
     11406</translation>
     11407    </message>
     11408    <message>
     11409        <location filename="../VBoxManageNATNetwork.cpp" line="150"/>
     11410        <source>loopback mappings (ipv4)
     11411</source>
     11412        <translation type="unfinished">отображение локальной петли (ipv4)
     11413</translation>
     11414    </message>
     11415    <message>
     11416        <location filename="../VBoxManageNATNetwork.cpp" line="166"/>
    1097411417        <source>NAT Networks:
    1097511418
     
    1098011423    </message>
    1098111424    <message>
    10982         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     11425        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    1098311426        <source>%zu %s found
    1098411427</source>
     
    1098711430    </message>
    1098811431    <message>
    10989         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     11432        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    1099011433        <source>network</source>
    1099111434        <translation>сеть</translation>
    1099211435    </message>
    1099311436    <message numerus="yes">
    10994         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     11437        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    1099511438        <source>networks</source>
    1099611439        <translation>
     
    1100111444    </message>
    1100211445    <message>
    11003         <location filename="../VBoxManageNATNetwork.cpp" line="175"/>
    11004         <location filename="../VBoxManageNATNetwork.cpp" line="549"/>
     11446        <location filename="../VBoxManageNATNetwork.cpp" line="206"/>
     11447        <location filename="../VBoxManageNATNetwork.cpp" line="602"/>
    1100511448        <source>Not enough parameters</source>
    1100611449        <translation>Недостаточно параметров</translation>
    1100711450    </message>
    1100811451    <message>
    11009         <location filename="../VBoxManageNATNetwork.cpp" line="222"/>
     11452        <location filename="../VBoxManageNATNetwork.cpp" line="261"/>
    1101011453        <source>You can only specify --netname only once.</source>
    1101111454        <translation>--netname можно указать только один раз.</translation>
    1101211455    </message>
    1101311456    <message>
    11014         <location filename="../VBoxManageNATNetwork.cpp" line="228"/>
     11457        <location filename="../VBoxManageNATNetwork.cpp" line="267"/>
    1101511458        <source>You can only specify --network only once.</source>
    1101611459        <translation>--network можно указать только один раз.</translation>
    1101711460    </message>
    1101811461    <message>
    11019         <location filename="../VBoxManageNATNetwork.cpp" line="234"/>
    11020         <location filename="../VBoxManageNATNetwork.cpp" line="240"/>
     11462        <location filename="../VBoxManageNATNetwork.cpp" line="273"/>
     11463        <location filename="../VBoxManageNATNetwork.cpp" line="279"/>
    1102111464        <source>You can specify either --enable or --disable once.</source>
    1102211465        <translation>--enable и --disable можно указать только один раз.</translation>
    1102311466    </message>
    1102411467    <message>
    11025         <location filename="../VBoxManageNATNetwork.cpp" line="246"/>
     11468        <location filename="../VBoxManageNATNetwork.cpp" line="285"/>
    1102611469        <source>You can specify --dhcp only once.</source>
    1102711470        <translation>--dhcp можно указать только один раз.</translation>
    1102811471    </message>
    1102911472    <message>
    11030         <location filename="../VBoxManageNATNetwork.cpp" line="252"/>
     11473        <location filename="../VBoxManageNATNetwork.cpp" line="291"/>
    1103111474        <source>You can specify --ipv6 only once.</source>
    1103211475        <translation>--ipv6 можно указать только один раз.</translation>
    1103311476    </message>
    1103411477    <message>
    11035         <location filename="../VBoxManageNATNetwork.cpp" line="258"/>
     11478        <location filename="../VBoxManageNATNetwork.cpp" line="297"/>
    1103611479        <source>You can specify --ipv6-prefix only once.</source>
    1103711480        <translation>--ipv6-prefix можно указать только один раз.</translation>
    1103811481    </message>
    1103911482    <message>
    11040         <location filename="../VBoxManageNATNetwork.cpp" line="269"/>
     11483        <location filename="../VBoxManageNATNetwork.cpp" line="303"/>
     11484        <source>You can specify --ipv6-default only once.</source>
     11485        <translation type="unfinished"></translation>
     11486    </message>
     11487    <message>
     11488        <location filename="../VBoxManageNATNetwork.cpp" line="313"/>
    1104111489        <source>loopback couldn&apos;t be deleted on modified
    1104211490</source>
     
    1104511493    </message>
    1104611494    <message>
    11047         <location filename="../VBoxManageNATNetwork.cpp" line="281"/>
    11048         <location filename="../VBoxManageNATNetwork.cpp" line="320"/>
     11495        <location filename="../VBoxManageNATNetwork.cpp" line="324"/>
     11496        <location filename="../VBoxManageNATNetwork.cpp" line="362"/>
    1104911497        <source>Not enough parаmeters
    1105011498</source>
     
    1105311501    </message>
    1105411502    <message>
    11055         <location filename="../VBoxManageNATNetwork.cpp" line="306"/>
     11503        <location filename="../VBoxManageNATNetwork.cpp" line="349"/>
    1105611504        <source>Invalid port-forward rule %s
    1105711505</source>
     
    1106011508    </message>
    1106111509    <message>
    11062         <location filename="../VBoxManageNATNetwork.cpp" line="315"/>
     11510        <location filename="../VBoxManageNATNetwork.cpp" line="357"/>
    1106311511        <source>Port-forward could be deleted on modify
    1106411512</source>
     
    1106711515    </message>
    1106811516    <message>
    11069         <location filename="../VBoxManageNATNetwork.cpp" line="323"/>
     11517        <location filename="../VBoxManageNATNetwork.cpp" line="365"/>
    1107011518        <source>Port-forward rule name is too long
    1107111519</source>
     
    1107411522    </message>
    1107511523    <message>
    11076         <location filename="../VBoxManageNATNetwork.cpp" line="340"/>
     11524        <location filename="../VBoxManageNATNetwork.cpp" line="382"/>
    1107711525        <source>You need to specify the --netname option</source>
    1107811526        <translation>Необходимо указать опцию --netname</translation>
    1107911527    </message>
    1108011528    <message>
    11081         <location filename="../VBoxManageNATNetwork.cpp" line="346"/>
     11529        <location filename="../VBoxManageNATNetwork.cpp" line="388"/>
    1108211530        <source>You need to specify the --network option</source>
    1108311531        <translation>Необходимо указать опцию --network</translation>
    1108411532    </message>
    1108511533    <message>
    11086         <location filename="../VBoxManageNATNetwork.cpp" line="354"/>
     11534        <location filename="../VBoxManageNATNetwork.cpp" line="396"/>
    1108711535        <source>Unknown operation (:%d)</source>
    1108811536        <translation>Неизвестная операция (:%d)</translation>
    1108911537    </message>
    1109011538    <message>
    11091         <location filename="../VBoxManageNATNetwork.cpp" line="366"/>
     11539        <location filename="../VBoxManageNATNetwork.cpp" line="408"/>
    1109211540        <source>NATNetwork server already exists</source>
    1109311541        <translation>Сервер сети NAT уже существует</translation>
    1109411542    </message>
    1109511543    <message>
    11096         <location filename="../VBoxManageNATNetwork.cpp" line="370"/>
     11544        <location filename="../VBoxManageNATNetwork.cpp" line="412"/>
    1109711545        <source>Failed to create the NAT network service</source>
    1109811546        <translation>Не удалось создать службу сети NAT</translation>
    1109911547    </message>
    1110011548    <message>
    11101         <location filename="../VBoxManageNATNetwork.cpp" line="373"/>
     11549        <location filename="../VBoxManageNATNetwork.cpp" line="415"/>
    1110211550        <source>NATNetwork server does not exist</source>
    1110311551        <translation>Сервер сети NAT не существует</translation>
    1110411552    </message>
    1110511553    <message>
    11106         <location filename="../VBoxManageNATNetwork.cpp" line="384"/>
    11107         <location filename="../VBoxManageNATNetwork.cpp" line="390"/>
    11108         <location filename="../VBoxManageNATNetwork.cpp" line="402"/>
    11109         <location filename="../VBoxManageNATNetwork.cpp" line="409"/>
    11110         <location filename="../VBoxManageNATNetwork.cpp" line="420"/>
    11111         <location filename="../VBoxManageNATNetwork.cpp" line="515"/>
     11554        <location filename="../VBoxManageNATNetwork.cpp" line="426"/>
     11555        <location filename="../VBoxManageNATNetwork.cpp" line="432"/>
     11556        <location filename="../VBoxManageNATNetwork.cpp" line="444"/>
     11557        <location filename="../VBoxManageNATNetwork.cpp" line="451"/>
     11558        <location filename="../VBoxManageNATNetwork.cpp" line="462"/>
     11559        <location filename="../VBoxManageNATNetwork.cpp" line="470"/>
     11560        <location filename="../VBoxManageNATNetwork.cpp" line="565"/>
    1111211561        <source>Failed to set configuration</source>
    1111311562        <translation>Не удалось задать конфигурацию</translation>
    1111411563    </message>
    1111511564    <message>
    11116         <location filename="../VBoxManageNATNetwork.cpp" line="431"/>
     11565        <location filename="../VBoxManageNATNetwork.cpp" line="481"/>
    1111711566        <source>Failed to delete pf</source>
    1111811567        <translation>Не удалось удалить правило перенаправления портов</translation>
    1111911568    </message>
    1112011569    <message>
    11121         <location filename="../VBoxManageNATNetwork.cpp" line="456"/>
     11570        <location filename="../VBoxManageNATNetwork.cpp" line="506"/>
    1112211571        <source>Failed to add pf</source>
    1112311572        <translation>Не удалось добавить правило перенаправления портов</translation>
    1112411573    </message>
    1112511574    <message>
    11126         <location filename="../VBoxManageNATNetwork.cpp" line="482"/>
    11127         <location filename="../VBoxManageNATNetwork.cpp" line="488"/>
     11575        <location filename="../VBoxManageNATNetwork.cpp" line="532"/>
     11576        <location filename="../VBoxManageNATNetwork.cpp" line="538"/>
    1112811577        <source>invalid loopback string</source>
    1112911578        <translation>Недопустимая строка локальной петли</translation>
    1113011579    </message>
    1113111580    <message>
    11132         <location filename="../VBoxManageNATNetwork.cpp" line="523"/>
     11581        <location filename="../VBoxManageNATNetwork.cpp" line="573"/>
    1113311582        <source>Failed to remove nat network</source>
    1113411583        <translation>Не удалось удалить сеть NAT</translation>
    1113511584    </message>
    1113611585    <message>
    11137         <location filename="../VBoxManageNATNetwork.cpp" line="530"/>
     11586        <location filename="../VBoxManageNATNetwork.cpp" line="580"/>
    1113811587        <source>Failed to start network</source>
    1113911588        <translation>Не удалось запустить сеть</translation>
    1114011589    </message>
    1114111590    <message>
    11142         <location filename="../VBoxManageNATNetwork.cpp" line="537"/>
     11591        <location filename="../VBoxManageNATNetwork.cpp" line="587"/>
    1114311592        <source>Failed to stop network</source>
    1114411593        <translation>Не удалось остановить сеть</translation>
    1114511594    </message>
    1114611595    <message>
    11147         <location filename="../VBoxManageNATNetwork.cpp" line="565"/>
     11596        <location filename="../VBoxManageNATNetwork.cpp" line="636"/>
    1114811597        <source>Invalid parameter &apos;%s&apos;</source>
    1114911598        <translation>Недопустимый параметр &apos;%s&apos;</translation>
     
    1115311602    <name>Nvram</name>
    1115411603    <message>
    11155         <location filename="../VBoxManageModifyNvram.cpp" line="123"/>
     11604        <location filename="../VBoxManageModifyNvram.cpp" line="121"/>
    1115611605        <source>No platform key file path was given to &quot;enrollpk&quot;</source>
    1115711606        <translation>Не указан путь к файлу с ключом платформы для &quot;enrollpk&quot;</translation>
    1115811607    </message>
    1115911608    <message>
    11160         <location filename="../VBoxManageModifyNvram.cpp" line="125"/>
     11609        <location filename="../VBoxManageModifyNvram.cpp" line="123"/>
    1116111610        <source>No owner UUID was given to &quot;enrollpk&quot;</source>
    1116211611        <translation>Не указан UUID владельца для &quot;enrollpk&quot;</translation>
    1116311612    </message>
    1116411613    <message>
    11165         <location filename="../VBoxManageModifyNvram.cpp" line="149"/>
     11614        <location filename="../VBoxManageModifyNvram.cpp" line="147"/>
    1116611615        <source>Cannot read contents of file &quot;%s&quot;: %Rrc</source>
    1116711616        <translation>Невозможно прочесть содержимое файла &quot;%s&quot;: %Rrc</translation>
    1116811617    </message>
    1116911618    <message>
    11170         <location filename="../VBoxManageModifyNvram.cpp" line="152"/>
     11619        <location filename="../VBoxManageModifyNvram.cpp" line="150"/>
    1117111620        <source>File &quot;%s&quot; is bigger than 32KByte</source>
    1117211621        <translation>Файл &quot;%s&quot; больше 32 КБайт</translation>
    1117311622    </message>
    1117411623    <message>
    11175         <location filename="../VBoxManageModifyNvram.cpp" line="155"/>
     11624        <location filename="../VBoxManageModifyNvram.cpp" line="153"/>
    1117611625        <source>Cannot get size of file &quot;%s&quot;: %Rrc</source>
    1117711626        <translation>Невозможно получить размер файла &quot;%s&quot;: %Rrc</translation>
    1117811627    </message>
    1117911628    <message>
    11180         <location filename="../VBoxManageModifyNvram.cpp" line="160"/>
     11629        <location filename="../VBoxManageModifyNvram.cpp" line="158"/>
    1118111630        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    1118211631        <translation>Невозможно открыть файл &quot;%s&quot;: %Rrc</translation>
    1118311632    </message>
    1118411633    <message>
    11185         <location filename="../VBoxManageModifyNvram.cpp" line="252"/>
     11634        <location filename="../VBoxManageModifyNvram.cpp" line="250"/>
    1118611635        <source>No variable name was given to &quot;queryvar&quot;</source>
    1118711636        <translation>Не указано имя переменной для &quot;queryvar&quot;</translation>
    1118811637    </message>
    1118911638    <message>
    11190         <location filename="../VBoxManageModifyNvram.cpp" line="279"/>
     11639        <location filename="../VBoxManageModifyNvram.cpp" line="277"/>
    1119111640        <source>Error writing to &apos;%s&apos;: %Rrc</source>
    1119211641        <translation>Ошибка при записи в &apos;%s&apos;: %Rrc</translation>
    1119311642    </message>
    1119411643    <message>
    11195         <location filename="../VBoxManageModifyNvram.cpp" line="284"/>
    11196         <location filename="../VBoxManageModifyNvram.cpp" line="413"/>
     11644        <location filename="../VBoxManageModifyNvram.cpp" line="282"/>
     11645        <location filename="../VBoxManageModifyNvram.cpp" line="411"/>
    1119711646        <source>Error opening &apos;%s&apos;: %Rrc</source>
    1119811647        <translation>Ошибка при открытии &apos;%s&apos;: %Rrc</translation>
    1119911648    </message>
    1120011649    <message>
    11201         <location filename="../VBoxManageModifyNvram.cpp" line="331"/>
     11650        <location filename="../VBoxManageModifyNvram.cpp" line="329"/>
    1120211651        <source>No variable name was given to &quot;deletevar&quot;</source>
    1120311652        <translation>Не указано имя переменной для &quot;deletevar&quot;</translation>
    1120411653    </message>
    1120511654    <message>
    11206         <location filename="../VBoxManageModifyNvram.cpp" line="333"/>
     11655        <location filename="../VBoxManageModifyNvram.cpp" line="331"/>
    1120711656        <source>No owner UUID was given to &quot;deletevar&quot;</source>
    1120811657        <translation>Не указан UUID владельца для &quot;deletevar&quot;</translation>
    1120911658    </message>
    1121011659    <message>
    11211         <location filename="../VBoxManageModifyNvram.cpp" line="383"/>
     11660        <location filename="../VBoxManageModifyNvram.cpp" line="381"/>
    1121211661        <source>No variable name was given to &quot;changevar&quot;</source>
    1121311662        <translation>Не указано имя переменной для &quot;changevar&quot;</translation>
    1121411663    </message>
    1121511664    <message>
    11216         <location filename="../VBoxManageModifyNvram.cpp" line="385"/>
     11665        <location filename="../VBoxManageModifyNvram.cpp" line="383"/>
    1121711666        <source>No variable data filename was given to &quot;changevar&quot;</source>
    1121811667        <translation>Не указано имя файла с данными для &quot;changevar&quot;</translation>
    1121911668    </message>
    1122011669    <message>
    11221         <location filename="../VBoxManageModifyNvram.cpp" line="409"/>
     11670        <location filename="../VBoxManageModifyNvram.cpp" line="407"/>
    1122211671        <source>Error reading from &apos;%s&apos;: %Rrc</source>
    1122311672        <translation>Ошибка при чтении из &apos;%s&apos;: %Rrc</translation>
     
    1131711766    <name>Storage</name>
    1131811767    <message>
    11319         <location filename="../VBoxManageStorageController.cpp" line="168"/>
    11320         <location filename="../VBoxManageStorageController.cpp" line="1182"/>
     11768        <location filename="../VBoxManageStorageController.cpp" line="166"/>
     11769        <location filename="../VBoxManageStorageController.cpp" line="1180"/>
    1132111770        <source>Invalid --type argument &apos;%s&apos;</source>
    1132211771        <translation>Недопустимый аргумент к --type &apos;%s&apos;</translation>
    1132311772    </message>
    1132411773    <message>
    11325         <location filename="../VBoxManageStorageController.cpp" line="307"/>
     11774        <location filename="../VBoxManageStorageController.cpp" line="305"/>
    1132611775        <source>Invalid medium type &apos;%s&apos;</source>
    1132711776        <translation>Недопустимый тип носителя &apos;%s&apos;</translation>
    1132811777    </message>
    1132911778    <message>
    11330         <location filename="../VBoxManageStorageController.cpp" line="329"/>
     11779        <location filename="../VBoxManageStorageController.cpp" line="327"/>
    1133111780        <source>Storage controller name not specified</source>
    1133211781        <translation>Не указано имя контроллера носителей</translation>
    1133311782    </message>
    1133411783    <message>
     11784        <location filename="../VBoxManageStorageController.cpp" line="347"/>
     11785        <source>Drive passthrough state cannot be changed while the VM is running
     11786</source>
     11787        <translation>Состояние прямого доступа к диску не может быть изменено пока работает ВМ
     11788</translation>
     11789    </message>
     11790    <message>
    1133511791        <location filename="../VBoxManageStorageController.cpp" line="349"/>
    11336         <source>Drive passthrough state cannot be changed while the VM is running
    11337 </source>
    11338         <translation>Состояние прямого доступа к диску не может быть изменено пока работает ВМ
    11339 </translation>
    11340     </message>
    11341     <message>
    11342         <location filename="../VBoxManageStorageController.cpp" line="351"/>
    1134311792        <source>Bandwidth group cannot be changed while the VM is running
    1134411793</source>
     
    1134711796    </message>
    1134811797    <message>
    11349         <location filename="../VBoxManageStorageController.cpp" line="358"/>
     11798        <location filename="../VBoxManageStorageController.cpp" line="356"/>
    1135011799        <source>Could not find a controller named &apos;%s&apos;
    1135111800</source>
     
    1135411803    </message>
    1135511804    <message>
    11356         <location filename="../VBoxManageStorageController.cpp" line="372"/>
     11805        <location filename="../VBoxManageStorageController.cpp" line="370"/>
    1135711806        <source>Port not specified</source>
    1135811807        <translation>Порт не указан</translation>
    1135911808    </message>
    1136011809    <message>
    11361         <location filename="../VBoxManageStorageController.cpp" line="379"/>
     11810        <location filename="../VBoxManageStorageController.cpp" line="377"/>
    1136211811        <source>Device not specified</source>
    1136311812        <translation>Устройство не указано</translation>
    1136411813    </message>
    1136511814    <message>
    11366         <location filename="../VBoxManageStorageController.cpp" line="443"/>
     11815        <location filename="../VBoxManageStorageController.cpp" line="441"/>
    1136711816        <source>No DVD/Floppy Drive attached to the controller &apos;%s&apos;at the port: %u, device: %u</source>
    1136811817        <translation>На контроллер &apos;%s&apos; порт %u устройство: %u не подключено каких либо DVD или Флоппи дисков</translation>
    1136911818    </message>
    1137011819    <message>
    11371         <location filename="../VBoxManageStorageController.cpp" line="463"/>
     11820        <location filename="../VBoxManageStorageController.cpp" line="461"/>
    1137211821        <source>The attachment is not supported by the storage controller &apos;%s&apos;</source>
    1137311822        <translation>Подключение данного устройства не поддерживается контроллером &apos;%s&apos;</translation>
    1137411823    </message>
    1137511824    <message>
    11376         <location filename="../VBoxManageStorageController.cpp" line="518"/>
     11825        <location filename="../VBoxManageStorageController.cpp" line="516"/>
    1137711826        <source>Cannot find the Guest Additions ISO image
    1137811827</source>
     
    1138111830    </message>
    1138211831    <message>
    11383         <location filename="../VBoxManageStorageController.cpp" line="544"/>
     11832        <location filename="../VBoxManageStorageController.cpp" line="542"/>
    1138411833        <source>Argument --type must be specified
    1138511834</source>
     
    1138811837    </message>
    1138911838    <message>
    11390         <location filename="../VBoxManageStorageController.cpp" line="558"/>
     11839        <location filename="../VBoxManageStorageController.cpp" line="556"/>
    1139111840        <source>The given attachment is not supported by the storage controller &apos;%s&apos;</source>
    1139211841        <translation>Указанное подключение устройства не поддерживается контроллером носителей &apos;%s&apos;</translation>
    1139311842    </message>
    1139411843    <message>
    11395         <location filename="../VBoxManageStorageController.cpp" line="580"/>
    11396         <location filename="../VBoxManageStorageController.cpp" line="584"/>
     11844        <location filename="../VBoxManageStorageController.cpp" line="578"/>
     11845        <location filename="../VBoxManageStorageController.cpp" line="582"/>
    1139711846        <source>Invalid host DVD drive name &quot;%s&quot;</source>
    1139811847        <translation>Недопустимое имя DVD дисковода хоста &quot;%s&quot;</translation>
    1139911848    </message>
    1140011849    <message>
    11401         <location filename="../VBoxManageStorageController.cpp" line="593"/>
     11850        <location filename="../VBoxManageStorageController.cpp" line="591"/>
    1140211851        <source>Invalid host floppy drive name &quot;%s&quot;</source>
    1140311852        <translation>Недопустимое имя флоппи дисковода хоста &quot;%s&quot;</translation>
    1140411853    </message>
    1140511854    <message>
    11406         <location filename="../VBoxManageStorageController.cpp" line="600"/>
     11855        <location filename="../VBoxManageStorageController.cpp" line="598"/>
    1140711856        <source>Parameters --server and --target are required for iSCSI media</source>
    1140811857        <translation>Для iSCSI носителей требуются параметры --server и --target</translation>
    1140911858    </message>
    1141011859    <message>
    11411         <location filename="../VBoxManageStorageController.cpp" line="667"/>
     11860        <location filename="../VBoxManageStorageController.cpp" line="665"/>
    1141211861        <source>iSCSI disk created. UUID: %s
    1141311862</source>
     
    1141611865    </message>
    1141711866    <message>
    11418         <location filename="../VBoxManageStorageController.cpp" line="678"/>
     11867        <location filename="../VBoxManageStorageController.cpp" line="676"/>
    1141911868        <source>Missing --medium argument</source>
    1142011869        <translation>Отсутствует аргумент --medium</translation>
    1142111870    </message>
    1142211871    <message>
    11423         <location filename="../VBoxManageStorageController.cpp" line="687"/>
     11872        <location filename="../VBoxManageStorageController.cpp" line="685"/>
    1142411873        <source>Invalid UUID or filename &quot;%s&quot;</source>
    1142511874        <translation>Недопустимый UUID или имя файла &quot;%s&quot;</translation>
    1142611875    </message>
    1142711876    <message>
    11428         <location filename="../VBoxManageStorageController.cpp" line="697"/>
     11877        <location filename="../VBoxManageStorageController.cpp" line="695"/>
    1142911878        <source>Failed to set the medium/parent medium UUID</source>
    1143011879        <translation>Не удалось задать UUID носителя или UUID родительского носителя</translation>
    1143111880    </message>
    1143211881    <message>
    11433         <location filename="../VBoxManageStorageController.cpp" line="711"/>
     11882        <location filename="../VBoxManageStorageController.cpp" line="709"/>
    1143411883        <source>Failed to set the medium type</source>
    1143511884        <translation>Не удалось задать тип носителя</translation>
    1143611885    </message>
    1143711886    <message>
    11438         <location filename="../VBoxManageStorageController.cpp" line="806"/>
     11887        <location filename="../VBoxManageStorageController.cpp" line="804"/>
    1143911888        <source>Invalid --passthrough argument &apos;%s&apos;</source>
    1144011889        <translation>Недопустимый аргумент к --passthrough &apos;%s&apos;</translation>
    1144111890    </message>
    1144211891    <message>
    11443         <location filename="../VBoxManageStorageController.cpp" line="809"/>
    11444         <location filename="../VBoxManageStorageController.cpp" line="835"/>
    11445         <location filename="../VBoxManageStorageController.cpp" line="861"/>
    11446         <location filename="../VBoxManageStorageController.cpp" line="887"/>
    11447         <location filename="../VBoxManageStorageController.cpp" line="913"/>
     11892        <location filename="../VBoxManageStorageController.cpp" line="807"/>
     11893        <location filename="../VBoxManageStorageController.cpp" line="833"/>
     11894        <location filename="../VBoxManageStorageController.cpp" line="859"/>
     11895        <location filename="../VBoxManageStorageController.cpp" line="885"/>
     11896        <location filename="../VBoxManageStorageController.cpp" line="911"/>
    1144811897        <source>Couldn&apos;t find the controller attachment for the controller &apos;%s&apos;
    1144911898</source>
     
    1145211901    </message>
    1145311902    <message>
    11454         <location filename="../VBoxManageStorageController.cpp" line="832"/>
     11903        <location filename="../VBoxManageStorageController.cpp" line="830"/>
    1145511904        <source>Invalid --tempeject argument &apos;%s&apos;</source>
    1145611905        <translation>Недопустимый аргумент к --tempeject &apos;%s&apos;</translation>
    1145711906    </message>
    1145811907    <message>
    11459         <location filename="../VBoxManageStorageController.cpp" line="858"/>
     11908        <location filename="../VBoxManageStorageController.cpp" line="856"/>
    1146011909        <source>Invalid --nonrotational argument &apos;%s&apos;</source>
    1146111910        <translation>Недопустимый аргумент к --nonrotational &apos;%s&apos;</translation>
    1146211911    </message>
    1146311912    <message>
    11464         <location filename="../VBoxManageStorageController.cpp" line="884"/>
     11913        <location filename="../VBoxManageStorageController.cpp" line="882"/>
    1146511914        <source>Invalid --discard argument &apos;%s&apos;</source>
    1146611915        <translation>Недопустимый аргумент к --discard &apos;%s&apos;</translation>
    1146711916    </message>
    1146811917    <message>
    11469         <location filename="../VBoxManageStorageController.cpp" line="910"/>
     11918        <location filename="../VBoxManageStorageController.cpp" line="908"/>
    1147011919        <source>Invalid --hotpluggable argument &apos;%s&apos;</source>
    1147111920        <translation>Недопустимый аргумент к --hotpluggable &apos;%s&apos;</translation>
    1147211921    </message>
    1147311922    <message>
    11474         <location filename="../VBoxManageStorageController.cpp" line="992"/>
     11923        <location filename="../VBoxManageStorageController.cpp" line="990"/>
    1147511924        <source>Too few parameters</source>
    1147611925        <translation>Слишком мало параметров</translation>
    1147711926    </message>
    1147811927    <message>
    11479         <location filename="../VBoxManageStorageController.cpp" line="1058"/>
     11928        <location filename="../VBoxManageStorageController.cpp" line="1056"/>
    1148011929        <source>Storage controller name not specified
    1148111930</source>
     
    1148411933    </message>
    1148511934    <message>
    11486         <location filename="../VBoxManageStorageController.cpp" line="1121"/>
     11935        <location filename="../VBoxManageStorageController.cpp" line="1119"/>
    1148711936        <source>Invalid --add argument &apos;%s&apos;</source>
    1148811937        <translation>Недопустимый аргумент к --add &apos;%s&apos;</translation>
    1148911938    </message>
    1149011939    <message>
    11491         <location filename="../VBoxManageStorageController.cpp" line="1188"/>
    11492         <location filename="../VBoxManageStorageController.cpp" line="1207"/>
    11493         <location filename="../VBoxManageStorageController.cpp" line="1238"/>
    11494         <location filename="../VBoxManageStorageController.cpp" line="1264"/>
    11495         <location filename="../VBoxManageStorageController.cpp" line="1283"/>
     11940        <location filename="../VBoxManageStorageController.cpp" line="1186"/>
     11941        <location filename="../VBoxManageStorageController.cpp" line="1205"/>
     11942        <location filename="../VBoxManageStorageController.cpp" line="1236"/>
     11943        <location filename="../VBoxManageStorageController.cpp" line="1262"/>
     11944        <location filename="../VBoxManageStorageController.cpp" line="1281"/>
    1149611945        <source>Couldn&apos;t find the controller with the name: &apos;%s&apos;
    1149711946</source>
     
    1150011949    </message>
    1150111950    <message>
    11502         <location filename="../VBoxManageStorageController.cpp" line="1232"/>
     11951        <location filename="../VBoxManageStorageController.cpp" line="1230"/>
    1150311952        <source>Invalid --hostiocache argument &apos;%s&apos;</source>
    1150411953        <translation>Недопустимый аргумент к --hostiocache &apos;%s&apos;</translation>
    1150511954    </message>
    1150611955    <message>
    11507         <location filename="../VBoxManageStorageController.cpp" line="1258"/>
     11956        <location filename="../VBoxManageStorageController.cpp" line="1256"/>
    1150811957        <source>Invalid --bootable argument &apos;%s&apos;</source>
    1150911958        <translation>Недопустимый аргумент к --bootable &apos;%s&apos;</translation>
     
    1151311962    <name>UpdateCheck</name>
    1151411963    <message>
    11515         <location filename="../VBoxManageUpdateCheck.cpp" line="89"/>
     11964        <location filename="../VBoxManageUpdateCheck.cpp" line="81"/>
    1151611965        <source>Enabled:                %s
    1151711966</source>
     
    1152011969    </message>
    1152111970    <message>
    11522         <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>
     11971        <location filename="../VBoxManageUpdateCheck.cpp" line="82"/>
    1152311972        <source>yes</source>
    1152411973        <translation>да</translation>
    1152511974    </message>
    1152611975    <message>
    11527         <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>
     11976        <location filename="../VBoxManageUpdateCheck.cpp" line="82"/>
    1152811977        <source>no</source>
    1152911978        <translation>нет</translation>
    1153011979    </message>
    1153111980    <message>
    11532         <location filename="../VBoxManageUpdateCheck.cpp" line="97"/>
     11981        <location filename="../VBoxManageUpdateCheck.cpp" line="89"/>
    1153311982        <source>Count:                  %u
    1153411983</source>
     
    1153711986    </message>
    1153811987    <message>
    11539         <location filename="../VBoxManageUpdateCheck.cpp" line="104"/>
     11988        <location filename="../VBoxManageUpdateCheck.cpp" line="99"/>
    1154011989        <source>Frequency:              never
    1154111990</source>
     
    1154411993    </message>
    1154511994    <message>
    11546         <location filename="../VBoxManageUpdateCheck.cpp" line="106"/>
     11995        <location filename="../VBoxManageUpdateCheck.cpp" line="101"/>
    1154711996        <source>Frequency:              every day
    1154811997</source>
     
    1155112000    </message>
    1155212001    <message>
    11553         <location filename="../VBoxManageUpdateCheck.cpp" line="108"/>
     12002        <location filename="../VBoxManageUpdateCheck.cpp" line="103"/>
    1155412003        <source>Frequency:              every %u days
    1155512004</source>
     
    1155812007    </message>
    1155912008    <message>
    11560         <location filename="../VBoxManageUpdateCheck.cpp" line="117"/>
     12009        <location filename="../VBoxManageUpdateCheck.cpp" line="112"/>
    1156112010        <source>Stable - new minor and maintenance releases</source>
    1156212011        <translation>Стабильные - новые минорные и корректирующие релизы</translation>
    1156312012    </message>
    1156412013    <message>
    11565         <location filename="../VBoxManageUpdateCheck.cpp" line="121"/>
     12014        <location filename="../VBoxManageUpdateCheck.cpp" line="116"/>
    1156612015        <source>All releases - new minor, maintenance, and major releases</source>
    1156712016        <translation>Все релизы - новые минорные, корректирующие и мажорные релизы</translation>
    1156812017    </message>
    1156912018    <message>
    11570         <location filename="../VBoxManageUpdateCheck.cpp" line="125"/>
     12019        <location filename="../VBoxManageUpdateCheck.cpp" line="120"/>
    1157112020        <source>With Betas - new minor, maintenance, major, and beta releases</source>
    1157212021        <translation>С бетами - новые минорные, корректирующие, мажорные и бета релизы</translation>
    1157312022    </message>
    1157412023    <message>
    11575         <location filename="../VBoxManageUpdateCheck.cpp" line="130"/>
     12024        <location filename="../VBoxManageUpdateCheck.cpp" line="125"/>
    1157612025        <source>Unset</source>
    1157712026        <translation>Не задано</translation>
    1157812027    </message>
    1157912028    <message>
    11580         <location filename="../VBoxManageUpdateCheck.cpp" line="137"/>
     12029        <location filename="../VBoxManageUpdateCheck.cpp" line="132"/>
     12030        <source>Channel:                %s
     12031</source>
     12032        <translation type="unfinished"></translation>
     12033    </message>
     12034    <message>
     12035        <location filename="../VBoxManageUpdateCheck.cpp" line="189"/>
     12036        <source>Unknown channel specified: &apos;%s&apos;</source>
     12037        <translation type="unfinished"></translation>
     12038    </message>
     12039    <message>
     12040        <location filename="../VBoxManageUpdateCheck.cpp" line="258"/>
     12041        <source>Checking for a new %ls version...
     12042</source>
     12043        <translation type="unfinished"></translation>
     12044    </message>
     12045    <message>
     12046        <location filename="../VBoxManageUpdateCheck.cpp" line="269"/>
     12047        <source>Failed to create update progress object: %Rhrc
     12048</source>
     12049        <translation type="unfinished"></translation>
     12050    </message>
     12051    <message>
     12052        <location filename="../VBoxManageUpdateCheck.cpp" line="277"/>
     12053        <source>Checking for update failed.</source>
     12054        <translation type="unfinished"></translation>
     12055    </message>
     12056    <message>
     12057        <location filename="../VBoxManageUpdateCheck.cpp" line="296"/>
     12058        <source>A new version of %ls has been released! Version %ls is available at virtualbox.org.
     12059You can download this version here: %ls
     12060</source>
     12061        <translation type="unfinished"></translation>
     12062    </message>
     12063    <message>
     12064        <location filename="../VBoxManageUpdateCheck.cpp" line="312"/>
     12065        <source>You are already running the most recent version of %ls.
     12066</source>
     12067        <translation type="unfinished"></translation>
     12068    </message>
     12069    <message>
     12070        <location filename="../VBoxManageUpdateCheck.cpp" line="324"/>
     12071        <source>Something went wrong while checking for updates!
     12072Please check network connection and try again later.
     12073</source>
     12074        <translation type="unfinished"></translation>
     12075    </message>
     12076    <message>
    1158112077        <source>Target:                 %s
    1158212078</source>
    11583         <translation>Цель:                 %s
    11584 </translation>
    11585     </message>
    11586     <message>
    11587         <location filename="../VBoxManageUpdateCheck.cpp" line="145"/>
     12079        <translation type="vanished">Цель:                 %s
     12080</translation>
     12081    </message>
     12082    <message>
     12083        <location filename="../VBoxManageUpdateCheck.cpp" line="140"/>
    1158812084        <source>Last Check Date:        %ls
    1158912085</source>
     
    1159212088    </message>
    1159312089    <message>
    11594         <location filename="../VBoxManageUpdateCheck.cpp" line="197"/>
    1159512090        <source>Unknown target specified: &apos;%s&apos;</source>
    11596         <translation>Указана неизвестная цель: &apos;%s&apos;</translation>
    11597     </message>
    11598     <message>
    11599         <location filename="../VBoxManageUpdateCheck.cpp" line="203"/>
     12091        <translation type="vanished">Указана неизвестная цель: &apos;%s&apos;</translation>
     12092    </message>
     12093    <message>
     12094        <location filename="../VBoxManageUpdateCheck.cpp" line="195"/>
    1160012095        <source>The update frequency cannot be zero</source>
    1160112096        <translation>Частота обновлений не может быть нулевой</translation>
    1160212097    </message>
    1160312098    <message>
    11604         <location filename="../VBoxManageUpdateCheck.cpp" line="214"/>
     12099        <location filename="../VBoxManageUpdateCheck.cpp" line="206"/>
    1160512100        <source>No change requested</source>
    1160612101        <translation>Не запрошено изменений</translation>
    1160712102    </message>
    1160812103    <message>
    11609         <location filename="../VBoxManageUpdateCheck.cpp" line="285"/>
    1161012104        <source>Checking for a new VirtualBox version...
    1161112105</source>
    11612         <translation>Проверка на наличие новой версии VirtualBox...
    11613 </translation>
    11614     </message>
    11615     <message>
    11616         <location filename="../VBoxManageUpdateCheck.cpp" line="296"/>
     12106        <translation type="vanished">Проверка на наличие новой версии VirtualBox...
     12107</translation>
     12108    </message>
     12109    <message>
    1161712110        <source>VirtualBox update checking has been disabled.
    1161812111</source>
    11619         <translation>Проверка обновлений VirtualBox отключена.
    11620 </translation>
    11621     </message>
    11622     <message>
    11623         <location filename="../VBoxManageUpdateCheck.cpp" line="301"/>
     12112        <translation type="vanished">Проверка обновлений VirtualBox отключена.
     12113</translation>
     12114    </message>
     12115    <message>
    1162412116        <source>Failed to create ptrProgress object: %Rhrc
    1162512117</source>
    11626         <translation>Не удалось создать объект ptrProgress: %Rhrc
    11627 </translation>
    11628     </message>
    11629     <message>
    11630         <location filename="../VBoxManageUpdateCheck.cpp" line="309"/>
     12118        <translation type="vanished">Не удалось создать объект ptrProgress: %Rhrc
     12119</translation>
     12120    </message>
     12121    <message>
    1163112122        <source>Check for update failed.</source>
    11632         <translation>Не удалось проверить обновления.</translation>
    11633     </message>
    11634     <message>
    11635         <location filename="../VBoxManageUpdateCheck.cpp" line="325"/>
     12123        <translation type="vanished">Не удалось проверить обновления.</translation>
     12124    </message>
     12125    <message>
    1163612126        <source>A new version of VirtualBox has been released! Version %ls is available at virtualbox.org.
    1163712127You can download this version here: %ls
    1163812128</source>
    11639         <translation>Выпущена новая версия VirtualBox! Версия %ls доступна на сайте virtualbox.org.
     12129        <translation type="vanished">Выпущена новая версия VirtualBox! Версия %ls доступна на сайте virtualbox.org.
    1164012130Вы можете загрузить эту версию здесь: %ls
    1164112131</translation>
    1164212132    </message>
    1164312133    <message>
    11644         <location filename="../VBoxManageUpdateCheck.cpp" line="336"/>
    1164512134        <source>You are already running the most recent version of VirtualBox.
    1164612135</source>
    11647         <translation>Вы уже используете последнюю версию VirtualBox.
     12136        <translation type="vanished">Вы уже используете последнюю версию VirtualBox.
    1164812137</translation>
    1164912138    </message>
     
    1165312142    <message>
    1165412143        <location filename="../VBoxManageUSB.cpp" line="178"/>
    11655         <location filename="../VBoxManageUSB.cpp" line="202"/>
    11656         <location filename="../VBoxManageUSB.cpp" line="204"/>
    11657         <location filename="../VBoxManageUSB.cpp" line="362"/>
    11658         <location filename="../VBoxManageUSB.cpp" line="560"/>
     12144        <location filename="../VBoxManageUSB.cpp" line="214"/>
     12145        <location filename="../VBoxManageUSB.cpp" line="216"/>
     12146        <location filename="../VBoxManageUSB.cpp" line="373"/>
     12147        <location filename="../VBoxManageUSB.cpp" line="571"/>
    1165912148        <source>Not enough parameters</source>
    1166012149        <translation>Недостаточно параметров</translation>
    1166112150    </message>
    1166212151    <message>
    11663         <location filename="../VBoxManageUSB.cpp" line="187"/>
     12152        <location filename="../VBoxManageUSB.cpp" line="199"/>
    1166412153        <source>Invalid parameter &apos;%s&apos;</source>
    1166512154        <translation>Недопустимый параметр &apos;%s&apos;</translation>
    1166612155    </message>
    1166712156    <message>
    11668         <location filename="../VBoxManageUSB.cpp" line="191"/>
     12157        <location filename="../VBoxManageUSB.cpp" line="203"/>
    1166912158        <source>Invalid index &apos;%s&apos;</source>
    1167012159        <translation>Недопустимый индекс &apos;%s&apos;</translation>
    1167112160    </message>
    1167212161    <message>
    11673         <location filename="../VBoxManageUSB.cpp" line="219"/>
    11674         <location filename="../VBoxManageUSB.cpp" line="234"/>
    11675         <location filename="../VBoxManageUSB.cpp" line="242"/>
    11676         <location filename="../VBoxManageUSB.cpp" line="255"/>
    11677         <location filename="../VBoxManageUSB.cpp" line="263"/>
    11678         <location filename="../VBoxManageUSB.cpp" line="271"/>
    11679         <location filename="../VBoxManageUSB.cpp" line="279"/>
    11680         <location filename="../VBoxManageUSB.cpp" line="287"/>
    11681         <location filename="../VBoxManageUSB.cpp" line="295"/>
    11682         <location filename="../VBoxManageUSB.cpp" line="303"/>
    11683         <location filename="../VBoxManageUSB.cpp" line="311"/>
    11684         <location filename="../VBoxManageUSB.cpp" line="324"/>
    11685         <location filename="../VBoxManageUSB.cpp" line="370"/>
     12162        <location filename="../VBoxManageUSB.cpp" line="231"/>
     12163        <location filename="../VBoxManageUSB.cpp" line="246"/>
     12164        <location filename="../VBoxManageUSB.cpp" line="254"/>
     12165        <location filename="../VBoxManageUSB.cpp" line="267"/>
     12166        <location filename="../VBoxManageUSB.cpp" line="275"/>
     12167        <location filename="../VBoxManageUSB.cpp" line="283"/>
     12168        <location filename="../VBoxManageUSB.cpp" line="291"/>
     12169        <location filename="../VBoxManageUSB.cpp" line="299"/>
     12170        <location filename="../VBoxManageUSB.cpp" line="307"/>
     12171        <location filename="../VBoxManageUSB.cpp" line="315"/>
     12172        <location filename="../VBoxManageUSB.cpp" line="323"/>
     12173        <location filename="../VBoxManageUSB.cpp" line="336"/>
     12174        <location filename="../VBoxManageUSB.cpp" line="381"/>
    1168612175        <source>Missing argument to &apos;%s&apos;</source>
    1168712176        <translation>Отсутствует аргумент к &apos;%s&apos;</translation>
    1168812177    </message>
    1168912178    <message>
    11690         <location filename="../VBoxManageUSB.cpp" line="249"/>
     12179        <location filename="../VBoxManageUSB.cpp" line="261"/>
    1169112180        <source>Invalid --active argument &apos;%s&apos;</source>
    1169212181        <translation>Недопустимый аргумент к --active &apos;%s&apos;</translation>
    1169312182    </message>
    1169412183    <message>
    11695         <location filename="../VBoxManageUSB.cpp" line="316"/>
     12184        <location filename="../VBoxManageUSB.cpp" line="328"/>
    1169612185        <source>Failed to convert the --maskedinterfaces value &apos;%s&apos; to a number, vrc=%Rrc</source>
    1169712186        <translation>Не удалось преобразовать значение --maskedinterfaces &apos;%s&apos; в число, vrc=%Rrc</translation>
    1169812187    </message>
    1169912188    <message>
    11700         <location filename="../VBoxManageUSB.cpp" line="331"/>
     12189        <location filename="../VBoxManageUSB.cpp" line="343"/>
    1170112190        <source>Invalid USB filter action &apos;%s&apos;</source>
    1170212191        <translation>Недопустимое действие USB фильтра &apos;%s&apos;</translation>
    1170312192    </message>
    1170412193    <message>
    11705         <location filename="../VBoxManageUSB.cpp" line="335"/>
     12194        <location filename="../VBoxManageUSB.cpp" line="346"/>
    1170612195        <source>Unknown option &apos;%s&apos;</source>
    1170712196        <translation>Неизвестная опция &apos;%s&apos;</translation>
    1170812197    </message>
    1170912198    <message>
    11710         <location filename="../VBoxManageUSB.cpp" line="352"/>
    11711         <location filename="../VBoxManageUSB.cpp" line="384"/>
     12199        <location filename="../VBoxManageUSB.cpp" line="363"/>
     12200        <location filename="../VBoxManageUSB.cpp" line="395"/>
    1171212201        <source>Mandatory options not supplied</source>
    1171312202        <translation>Не предоставлены обязательные опции</translation>
    1171412203    </message>
    1171512204    <message>
    11716         <location filename="../VBoxManageUSB.cpp" line="568"/>
     12205        <location filename="../VBoxManageUSB.cpp" line="581"/>
    1171712206        <source>Invalid number of parameters</source>
    1171812207        <translation>Недопустимое количество параметров</translation>
    1171912208    </message>
    1172012209    <message>
    11721         <location filename="../VBoxManageUSB.cpp" line="583"/>
     12210        <location filename="../VBoxManageUSB.cpp" line="596"/>
    1172212211        <source>Parameter &quot;%s&quot; is invalid</source>
    1172312212        <translation>Недопустимый параметр &apos;%s&apos;</translation>
     
    1172712216    <name>Utils</name>
    1172812217    <message>
    11729         <location filename="../VBoxManageUtils.cpp" line="103"/>
     12218        <location filename="../VBoxManageUtils.cpp" line="102"/>
    1173012219        <source>type bridged</source>
    1173112220        <translation>типа сетевой мост</translation>
    1173212221    </message>
    1173312222    <message>
    11734         <location filename="../VBoxManageUtils.cpp" line="107"/>
     12223        <location filename="../VBoxManageUtils.cpp" line="106"/>
    1173512224        <source>type host-only</source>
    1173612225        <translation>типа виртуальная сеть хоста</translation>
    1173712226    </message>
    1173812227    <message>
    11739         <location filename="../VBoxManageUtils.cpp" line="112"/>
     12228        <location filename="../VBoxManageUtils.cpp" line="111"/>
    1174012229        <source>unknown type %RU32</source>
    1174112230        <translation>неизвестного типа %RU32</translation>
    1174212231    </message>
    1174312232    <message>
    11744         <location filename="../VBoxManageUtils.cpp" line="117"/>
     12233        <location filename="../VBoxManageUtils.cpp" line="116"/>
    1174512234        <source>Interface &quot;%s&quot; is of %s</source>
    1174612235        <translation>Интерфейс &quot;%s&quot; %s</translation>
    1174712236    </message>
    1174812237    <message>
    11749         <location filename="../VBoxManageUtils.cpp" line="121"/>
     12238        <location filename="../VBoxManageUtils.cpp" line="120"/>
    1175012239        <source>Interface &quot;%s&quot; doesn&apos;t seem to exist</source>
    1175112240        <translation>Кажется, интерфейс &quot;%s&quot; не существует</translation>
     
    1175512244    <name>VBoxManage</name>
    1175612245    <message>
    11757         <location filename="../VBoxManage.cpp" line="331"/>
    11758         <location filename="../VBoxManage.cpp" line="499"/>
     12246        <location filename="../VBoxManage.cpp" line="327"/>
     12247        <location filename="../VBoxManage.cpp" line="495"/>
    1175912248        <source>Progress object failure: %Rhrc
    1176012249</source>
     
    1176312252    </message>
    1176412253    <message>
    11765         <location filename="../VBoxManage.cpp" line="348"/>
     12254        <location filename="../VBoxManage.cpp" line="344"/>
    1176612255        <source>Failed to get progress description: %Rhrc
    1176712256</source>
     
    1177012259    </message>
    1177112260    <message>
    11772         <location filename="../VBoxManage.cpp" line="415"/>
     12261        <location filename="../VBoxManage.cpp" line="411"/>
    1177312262        <source>(%u/%u) %ls %02u%% =&gt; %02u%% (%d s remaining)
    1177412263</source>
     
    1177712266    </message>
    1177812267    <message>
     12268        <location filename="../VBoxManage.cpp" line="481"/>
     12269        <source>CANCELED
     12270</source>
     12271        <translation>ОТМЕНЕНО
     12272</translation>
     12273    </message>
     12274    <message>
    1177912275        <location filename="../VBoxManage.cpp" line="485"/>
    11780         <source>CANCELED
    11781 </source>
    11782         <translation>ОТМЕНЕНО
    11783 </translation>
    11784     </message>
    11785     <message>
    11786         <location filename="../VBoxManage.cpp" line="489"/>
    1178712276        <source>Progress state: %Rhrc
    1178812277</source>
     
    1179112280    </message>
    1179212281    <message>
    11793         <location filename="../VBoxManage.cpp" line="681"/>
     12282        <location filename="../VBoxManage.cpp" line="672"/>
    1179412283        <source>Password expected</source>
    1179512284        <translation>Ожидается пароль</translation>
    1179612285    </message>
    1179712286    <message>
    11798         <location filename="../VBoxManage.cpp" line="689"/>
     12287        <location filename="../VBoxManage.cpp" line="680"/>
    1179912288        <source>No password file specified</source>
    1180012289        <translation>Не указан файл с паролем</translation>
    1180112290    </message>
    1180212291    <message>
    11803         <location filename="../VBoxManage.cpp" line="697"/>
     12292        <location filename="../VBoxManage.cpp" line="687"/>
    1180412293        <source>Only one response file allowed</source>
    1180512294        <translation>Разрешается только один файл ответов</translation>
    1180612295    </message>
    1180712296    <message>
    11808         <location filename="../VBoxManage.cpp" line="705"/>
     12297        <location filename="../VBoxManage.cpp" line="695"/>
    1180912298        <source>Error reading response file &apos;%s&apos;: %Rrc</source>
    1181012299        <translation>Ошибка чтения файла ответов &apos;%s&apos;: %Rrc</translation>
    1181112300    </message>
    1181212301    <message>
    11813         <location filename="../VBoxManage.cpp" line="710"/>
     12302        <location filename="../VBoxManage.cpp" line="700"/>
    1181412303        <source>Invalid response file (&apos;%s&apos;) encoding: %Rrc</source>
    1181512304        <translation>Недопустимая кодировка файла ответов (&apos;%s&apos;): %Rrc</translation>
    1181612305    </message>
    1181712306    <message>
    11818         <location filename="../VBoxManage.cpp" line="718"/>
     12307        <location filename="../VBoxManage.cpp" line="708"/>
    1181912308        <source>Failed to parse response file &apos;%s&apos; (bourne shell style): %Rrc</source>
    1182012309        <translation>Не удалось разобрать файл ответов &apos;%s&apos; (стиль bourne shell): %Rrc</translation>
    1182112310    </message>
    1182212311    <message>
    11823         <location filename="../VBoxManage.cpp" line="724"/>
     12312        <location filename="../VBoxManage.cpp" line="714"/>
    1182412313        <source>out of memory</source>
    1182512314        <translation>не хватает памяти</translation>
    1182612315    </message>
    1182712316    <message>
    11828         <location filename="../VBoxManage.cpp" line="768"/>
     12317        <location filename="../VBoxManage.cpp" line="755"/>
    1182912318        <source>commands:
    1183012319</source>
     
    1183312322    </message>
    1183412323    <message>
    11835         <location filename="../VBoxManage.cpp" line="777"/>
     12324        <location filename="../VBoxManage.cpp" line="762"/>
    1183612325        <source>Invalid command &apos;%s&apos;</source>
    1183712326        <translation>Недопустимая команда &apos;%s&apos;</translation>
    1183812327    </message>
    1183912328    <message>
    11840         <location filename="../VBoxManage.cpp" line="796"/>
     12329        <location filename="../VBoxManage.cpp" line="781"/>
    1184112330        <source>Failed to initialize COM because the global settings directory &apos;%s&apos; is not accessible!</source>
    1184212331        <translation>Не удалось инициализировать COM, потому что директория глобальных настроек &apos;%s&apos; недоступна!</translation>
    1184312332    </message>
    1184412333    <message>
    11845         <location filename="../VBoxManage.cpp" line="799"/>
     12334        <location filename="../VBoxManage.cpp" line="784"/>
    1184612335        <source>Failed to initialize COM! (hrc=%Rhrc)</source>
    1184712336        <translation>Не удалось инициализировать COM! (hrc=%Rhrc)</translation>
    1184812337    </message>
    1184912338    <message>
    11850         <location filename="../VBoxManage.cpp" line="882"/>
     12339        <location filename="../VBoxManage.cpp" line="867"/>
    1185112340        <source>Failed to create a session object!</source>
    1185212341        <translation>Не удалось создать объект сессии!</translation>
    1185312342    </message>
    1185412343    <message>
    11855         <location filename="../VBoxManage.cpp" line="892"/>
     12344        <location filename="../VBoxManage.cpp" line="877"/>
    1185612345        <source>Failed to create the VirtualBox object!</source>
    1185712346        <translation>Не удалось создать объект VirtualBox!</translation>
    1185812347    </message>
    1185912348    <message>
    11860         <location filename="../VBoxManage.cpp" line="896"/>
     12349        <location filename="../VBoxManage.cpp" line="881"/>
    1186112350        <source>Most likely, the VirtualBox COM server is not running or failed to start.</source>
    1186212351        <translation>Наиболее вероятно, что COM сервер VirtualBox не запущен или не смог запуститься.</translation>
  • trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_xx_YY.ts

    r93011 r94643  
    55    <name>Appliance</name>
    66    <message>
    7         <location filename="../VBoxManageAppliance.cpp" line="215"/>
    8         <location filename="../VBoxManageAppliance.cpp" line="1369"/>
     7        <location filename="../VBoxManageAppliance.cpp" line="256"/>
     8        <location filename="../VBoxManageAppliance.cpp" line="1551"/>
    99        <source>Option &quot;%s&quot; can&apos;t be used together with &quot;--cloud&quot; option.</source>
    1010        <translation type="unfinished"></translation>
    1111    </message>
    1212    <message>
    13         <location filename="../VBoxManageAppliance.cpp" line="219"/>
    14         <location filename="../VBoxManageAppliance.cpp" line="305"/>
    15         <location filename="../VBoxManageAppliance.cpp" line="1373"/>
    16         <location filename="../VBoxManageAppliance.cpp" line="1467"/>
     13        <location filename="../VBoxManageAppliance.cpp" line="259"/>
     14        <location filename="../VBoxManageAppliance.cpp" line="334"/>
     15        <location filename="../VBoxManageAppliance.cpp" line="1554"/>
     16        <location filename="../VBoxManageAppliance.cpp" line="1637"/>
    1717        <source>Value of option &quot;%s&quot; is out of range.</source>
    1818        <translation type="unfinished"></translation>
    1919    </message>
    2020    <message>
    21         <location filename="../VBoxManageAppliance.cpp" line="229"/>
    22         <location filename="../VBoxManageAppliance.cpp" line="237"/>
    23         <location filename="../VBoxManageAppliance.cpp" line="253"/>
    24         <location filename="../VBoxManageAppliance.cpp" line="269"/>
    25         <location filename="../VBoxManageAppliance.cpp" line="285"/>
    26         <location filename="../VBoxManageAppliance.cpp" line="293"/>
    27         <location filename="../VBoxManageAppliance.cpp" line="1382"/>
     21        <location filename="../VBoxManageAppliance.cpp" line="268"/>
     22        <location filename="../VBoxManageAppliance.cpp" line="275"/>
     23        <location filename="../VBoxManageAppliance.cpp" line="289"/>
     24        <location filename="../VBoxManageAppliance.cpp" line="303"/>
     25        <location filename="../VBoxManageAppliance.cpp" line="317"/>
     26        <location filename="../VBoxManageAppliance.cpp" line="324"/>
     27        <location filename="../VBoxManageAppliance.cpp" line="1562"/>
    2828        <source>Option &quot;%s&quot; requires preceding --vsys or --cloud option.</source>
    2929        <translation type="unfinished"></translation>
    3030    </message>
    3131    <message>
    32         <location filename="../VBoxManageAppliance.cpp" line="245"/>
    33         <location filename="../VBoxManageAppliance.cpp" line="261"/>
    34         <location filename="../VBoxManageAppliance.cpp" line="277"/>
    35         <location filename="../VBoxManageAppliance.cpp" line="301"/>
    36         <location filename="../VBoxManageAppliance.cpp" line="314"/>
    37         <location filename="../VBoxManageAppliance.cpp" line="326"/>
    38         <location filename="../VBoxManageAppliance.cpp" line="338"/>
    39         <location filename="../VBoxManageAppliance.cpp" line="350"/>
    40         <location filename="../VBoxManageAppliance.cpp" line="1390"/>
    41         <location filename="../VBoxManageAppliance.cpp" line="1398"/>
    42         <location filename="../VBoxManageAppliance.cpp" line="1406"/>
    43         <location filename="../VBoxManageAppliance.cpp" line="1414"/>
    44         <location filename="../VBoxManageAppliance.cpp" line="1422"/>
    45         <location filename="../VBoxManageAppliance.cpp" line="1430"/>
    46         <location filename="../VBoxManageAppliance.cpp" line="1438"/>
    47         <location filename="../VBoxManageAppliance.cpp" line="1446"/>
     32        <location filename="../VBoxManageAppliance.cpp" line="282"/>
     33        <location filename="../VBoxManageAppliance.cpp" line="296"/>
     34        <location filename="../VBoxManageAppliance.cpp" line="310"/>
     35        <location filename="../VBoxManageAppliance.cpp" line="331"/>
     36        <location filename="../VBoxManageAppliance.cpp" line="342"/>
     37        <location filename="../VBoxManageAppliance.cpp" line="352"/>
     38        <location filename="../VBoxManageAppliance.cpp" line="362"/>
     39        <location filename="../VBoxManageAppliance.cpp" line="372"/>
     40        <location filename="../VBoxManageAppliance.cpp" line="382"/>
     41        <location filename="../VBoxManageAppliance.cpp" line="1569"/>
     42        <location filename="../VBoxManageAppliance.cpp" line="1576"/>
     43        <location filename="../VBoxManageAppliance.cpp" line="1583"/>
     44        <location filename="../VBoxManageAppliance.cpp" line="1590"/>
     45        <location filename="../VBoxManageAppliance.cpp" line="1597"/>
     46        <location filename="../VBoxManageAppliance.cpp" line="1604"/>
     47        <location filename="../VBoxManageAppliance.cpp" line="1611"/>
     48        <location filename="../VBoxManageAppliance.cpp" line="1618"/>
    4849        <source>Option &quot;%s&quot; requires preceding --vsys option.</source>
    4950        <translation type="unfinished"></translation>
    5051    </message>
    5152    <message>
    52         <location filename="../VBoxManageAppliance.cpp" line="318"/>
    53         <location filename="../VBoxManageAppliance.cpp" line="330"/>
    54         <location filename="../VBoxManageAppliance.cpp" line="342"/>
    55         <location filename="../VBoxManageAppliance.cpp" line="354"/>
     53        <location filename="../VBoxManageAppliance.cpp" line="345"/>
     54        <location filename="../VBoxManageAppliance.cpp" line="355"/>
     55        <location filename="../VBoxManageAppliance.cpp" line="365"/>
     56        <location filename="../VBoxManageAppliance.cpp" line="375"/>
     57        <location filename="../VBoxManageAppliance.cpp" line="385"/>
    5658        <source>Option &quot;%s&quot; requires preceding --unit option.</source>
    5759        <translation type="unfinished"></translation>
    5860    </message>
    5961    <message>
    60         <location filename="../VBoxManageAppliance.cpp" line="361"/>
     62        <location filename="../VBoxManageAppliance.cpp" line="392"/>
    6163        <source>Invalid import options &apos;%s&apos;
    6264</source>
     
    6466    </message>
    6567    <message>
    66         <location filename="../VBoxManageAppliance.cpp" line="371"/>
    67         <location filename="../VBoxManageAppliance.cpp" line="1463"/>
     68        <location filename="../VBoxManageAppliance.cpp" line="401"/>
     69        <location filename="../VBoxManageAppliance.cpp" line="1634"/>
    6870        <source>Option &quot;%s&quot; can&apos;t be used together with &quot;--vsys&quot; option.</source>
    6971        <translation type="unfinished"></translation>
    7072    </message>
    7173    <message>
    72         <location filename="../VBoxManageAppliance.cpp" line="380"/>
    73         <location filename="../VBoxManageAppliance.cpp" line="387"/>
    74         <location filename="../VBoxManageAppliance.cpp" line="394"/>
    75         <location filename="../VBoxManageAppliance.cpp" line="1477"/>
    76         <location filename="../VBoxManageAppliance.cpp" line="1485"/>
    77         <location filename="../VBoxManageAppliance.cpp" line="1493"/>
    78         <location filename="../VBoxManageAppliance.cpp" line="1501"/>
    79         <location filename="../VBoxManageAppliance.cpp" line="1509"/>
    80         <location filename="../VBoxManageAppliance.cpp" line="1517"/>
    81         <location filename="../VBoxManageAppliance.cpp" line="1525"/>
    82         <location filename="../VBoxManageAppliance.cpp" line="1533"/>
    83         <location filename="../VBoxManageAppliance.cpp" line="1541"/>
    84         <location filename="../VBoxManageAppliance.cpp" line="1549"/>
    85         <location filename="../VBoxManageAppliance.cpp" line="1557"/>
    86         <location filename="../VBoxManageAppliance.cpp" line="1565"/>
    87         <location filename="../VBoxManageAppliance.cpp" line="1573"/>
     74        <location filename="../VBoxManageAppliance.cpp" line="410"/>
     75        <location filename="../VBoxManageAppliance.cpp" line="417"/>
     76        <location filename="../VBoxManageAppliance.cpp" line="424"/>
     77        <location filename="../VBoxManageAppliance.cpp" line="1646"/>
     78        <location filename="../VBoxManageAppliance.cpp" line="1653"/>
     79        <location filename="../VBoxManageAppliance.cpp" line="1660"/>
     80        <location filename="../VBoxManageAppliance.cpp" line="1667"/>
     81        <location filename="../VBoxManageAppliance.cpp" line="1674"/>
     82        <location filename="../VBoxManageAppliance.cpp" line="1681"/>
     83        <location filename="../VBoxManageAppliance.cpp" line="1688"/>
     84        <location filename="../VBoxManageAppliance.cpp" line="1695"/>
     85        <location filename="../VBoxManageAppliance.cpp" line="1702"/>
     86        <location filename="../VBoxManageAppliance.cpp" line="1709"/>
     87        <location filename="../VBoxManageAppliance.cpp" line="1716"/>
     88        <location filename="../VBoxManageAppliance.cpp" line="1723"/>
     89        <location filename="../VBoxManageAppliance.cpp" line="1730"/>
    8890        <source>Option &quot;%s&quot; requires preceding --cloud option.</source>
    8991        <translation type="unfinished"></translation>
    9092    </message>
    9193    <message>
    92         <location filename="../VBoxManageAppliance.cpp" line="403"/>
     94        <location filename="../VBoxManageAppliance.cpp" line="433"/>
    9395        <source>Invalid parameter &apos;%s&apos;</source>
    9496        <translation type="unfinished"></translation>
    9597    </message>
    9698    <message>
    97         <location filename="../VBoxManageAppliance.cpp" line="410"/>
     99        <location filename="../VBoxManageAppliance.cpp" line="440"/>
    98100        <source>Invalid option -%c</source>
    99101        <translation type="unfinished"></translation>
    100102    </message>
    101103    <message>
    102         <location filename="../VBoxManageAppliance.cpp" line="412"/>
     104        <location filename="../VBoxManageAppliance.cpp" line="442"/>
    103105        <source>Invalid option case %i</source>
    104106        <translation type="unfinished"></translation>
    105107    </message>
    106108    <message>
    107         <location filename="../VBoxManageAppliance.cpp" line="415"/>
     109        <location filename="../VBoxManageAppliance.cpp" line="445"/>
    108110        <source>unknown option: %s
    109111</source>
     
    111113    </message>
    112114    <message>
    113         <location filename="../VBoxManageAppliance.cpp" line="419"/>
     115        <location filename="../VBoxManageAppliance.cpp" line="449"/>
    114116        <source>error: %Rrs</source>
    115117        <translation type="unfinished"></translation>
    116118    </message>
    117119    <message>
    118         <location filename="../VBoxManageAppliance.cpp" line="425"/>
     120        <location filename="../VBoxManageAppliance.cpp" line="455"/>
    119121        <source>Not enough arguments for &quot;import&quot; command.</source>
    120122        <translation type="unfinished"></translation>
    121123    </message>
    122124    <message>
    123         <location filename="../VBoxManageAppliance.cpp" line="447"/>
     125        <location filename="../VBoxManageAppliance.cpp" line="477"/>
    124126        <source>Not enough arguments for import from the Cloud.</source>
    125127        <translation type="unfinished"></translation>
    126128    </message>
    127129    <message>
    128         <location filename="../VBoxManageAppliance.cpp" line="470"/>
     130        <location filename="../VBoxManageAppliance.cpp" line="500"/>
    129131        <source>Appliance read failed</source>
    130132        <translation type="unfinished"></translation>
    131133    </message>
    132134    <message>
    133         <location filename="../VBoxManageAppliance.cpp" line="482"/>
     135        <location filename="../VBoxManageAppliance.cpp" line="512"/>
    134136        <source>Interpreting %ls...
    135137</source>
     
    137139    </message>
    138140    <message>
    139         <location filename="../VBoxManageAppliance.cpp" line="514"/>
     141        <location filename="../VBoxManageAppliance.cpp" line="544"/>
    140142        <source>Disks:
    141143</source>
     
    143145    </message>
    144146    <message numerus="yes">
    145         <location filename="../VBoxManageAppliance.cpp" line="536"/>
     147        <location filename="../VBoxManageAppliance.cpp" line="565"/>
    146148        <source>Invalid index %RI32 with -vsys option; the OVF contains only %zu virtual system(s).</source>
    147149        <translation type="unfinished">
     
    150152    </message>
    151153    <message>
    152         <location filename="../VBoxManageAppliance.cpp" line="571"/>
     154        <location filename="../VBoxManageAppliance.cpp" line="600"/>
    153155        <source>Virtual system %u:
    154156</source>
     
    156158    </message>
    157159    <message>
    158         <location filename="../VBoxManageAppliance.cpp" line="601"/>
     160        <location filename="../VBoxManageAppliance.cpp" line="630"/>
    159161        <source>%2u: OS type specified with --ostype: &quot;%ls&quot;
    160162</source>
     
    162164    </message>
    163165    <message>
    164         <location filename="../VBoxManageAppliance.cpp" line="605"/>
     166        <location filename="../VBoxManageAppliance.cpp" line="634"/>
    165167        <source>%2u: Suggested OS type: &quot;%ls&quot;
    166168    (change with &quot;--vsys %u --ostype &lt;type&gt;&quot;; use &quot;list ostypes&quot; to list all possible values)
     
    169171    </message>
    170172    <message>
    171         <location filename="../VBoxManageAppliance.cpp" line="615"/>
     173        <location filename="../VBoxManageAppliance.cpp" line="643"/>
    172174        <source>%2u: VM name specified with --vmname: &quot;%ls&quot;
    173175</source>
     
    175177    </message>
    176178    <message>
    177         <location filename="../VBoxManageAppliance.cpp" line="619"/>
     179        <location filename="../VBoxManageAppliance.cpp" line="647"/>
    178180        <source>%2u: Suggested VM name &quot;%ls&quot;
    179181    (change with &quot;--vsys %u --vmname &lt;name&gt;&quot;)
     
    182184    </message>
    183185    <message>
    184         <location filename="../VBoxManageAppliance.cpp" line="626"/>
     186        <location filename="../VBoxManageAppliance.cpp" line="653"/>
    185187        <source>%2u: Product (ignored): %ls
    186188</source>
     
    188190    </message>
    189191    <message>
    190         <location filename="../VBoxManageAppliance.cpp" line="631"/>
     192        <location filename="../VBoxManageAppliance.cpp" line="658"/>
    191193        <source>%2u: ProductUrl (ignored): %ls
    192194</source>
     
    194196    </message>
    195197    <message>
    196         <location filename="../VBoxManageAppliance.cpp" line="636"/>
     198        <location filename="../VBoxManageAppliance.cpp" line="663"/>
    197199        <source>%2u: Vendor (ignored): %ls
    198200</source>
     
    200202    </message>
    201203    <message>
    202         <location filename="../VBoxManageAppliance.cpp" line="641"/>
     204        <location filename="../VBoxManageAppliance.cpp" line="668"/>
    203205        <source>%2u: VendorUrl (ignored): %ls
    204206</source>
     
    206208    </message>
    207209    <message>
    208         <location filename="../VBoxManageAppliance.cpp" line="646"/>
     210        <location filename="../VBoxManageAppliance.cpp" line="673"/>
    209211        <source>%2u: Version (ignored): %ls
    210212</source>
     
    212214    </message>
    213215    <message>
    214         <location filename="../VBoxManageAppliance.cpp" line="654"/>
     216        <location filename="../VBoxManageAppliance.cpp" line="681"/>
    215217        <source>%2u: Description specified with --description: &quot;%ls&quot;
    216218</source>
     
    218220    </message>
    219221    <message>
    220         <location filename="../VBoxManageAppliance.cpp" line="658"/>
     222        <location filename="../VBoxManageAppliance.cpp" line="685"/>
    221223        <source>%2u: Description &quot;%ls&quot;
    222224    (change with &quot;--vsys %u --description &lt;desc&gt;&quot;)
     
    225227    </message>
    226228    <message>
    227         <location filename="../VBoxManageAppliance.cpp" line="670"/>
     229        <location filename="../VBoxManageAppliance.cpp" line="696"/>
    228230        <source>%2u: End-user license agreement
    229231    (accept with &quot;--vsys %u --eula accept&quot;):
     
    235237    </message>
    236238    <message>
    237         <location filename="../VBoxManageAppliance.cpp" line="678"/>
     239        <location filename="../VBoxManageAppliance.cpp" line="703"/>
    238240        <source>%2u: End-user license agreement (accepted)
    239241</source>
     
    241243    </message>
    242244    <message>
    243         <location filename="../VBoxManageAppliance.cpp" line="684"/>
     245        <location filename="../VBoxManageAppliance.cpp" line="708"/>
    244246        <source>Argument to --eula must be either &quot;show&quot; or &quot;accept&quot;.</source>
    245247        <translation type="unfinished"></translation>
    246248    </message>
    247249    <message>
    248         <location filename="../VBoxManageAppliance.cpp" line="687"/>
     250        <location filename="../VBoxManageAppliance.cpp" line="711"/>
    249251        <source>%2u: End-user license agreement
    250252    (display with &quot;--vsys %u --eula show&quot;;
     
    254256    </message>
    255257    <message>
    256         <location filename="../VBoxManageAppliance.cpp" line="704"/>
     258        <location filename="../VBoxManageAppliance.cpp" line="727"/>
    257259        <source>%2u: No. of CPUs specified with --cpus: %ls
    258260</source>
     
    260262    </message>
    261263    <message>
    262         <location filename="../VBoxManageAppliance.cpp" line="709"/>
     264        <location filename="../VBoxManageAppliance.cpp" line="731"/>
    263265        <source>Argument to --cpus option must be a number greater than %d and less than %d.</source>
    264266        <translation type="unfinished"></translation>
    265267    </message>
    266268    <message>
    267         <location filename="../VBoxManageAppliance.cpp" line="713"/>
     269        <location filename="../VBoxManageAppliance.cpp" line="735"/>
    268270        <source>%2u: Number of CPUs: %ls
    269271    (change with &quot;--vsys %u --cpus &lt;n&gt;&quot;)
     
    272274    </message>
    273275    <message>
    274         <location filename="../VBoxManageAppliance.cpp" line="725"/>
     276        <location filename="../VBoxManageAppliance.cpp" line="747"/>
    275277        <source>%2u: Guest memory specified with --memory: %ls MB
    276278</source>
     
    278280    </message>
    279281    <message>
    280         <location filename="../VBoxManageAppliance.cpp" line="730"/>
     282        <location filename="../VBoxManageAppliance.cpp" line="751"/>
    281283        <source>Argument to --memory option must be a non-negative number.</source>
    282284        <translation type="unfinished"></translation>
    283285    </message>
    284286    <message>
    285         <location filename="../VBoxManageAppliance.cpp" line="733"/>
     287        <location filename="../VBoxManageAppliance.cpp" line="754"/>
    286288        <source>%2u: Guest memory: %ls MB
    287289    (change with &quot;--vsys %u --memory &lt;MB&gt;&quot;)
     
    290292    </message>
    291293    <message>
    292         <location filename="../VBoxManageAppliance.cpp" line="741"/>
     294        <location filename="../VBoxManageAppliance.cpp" line="762"/>
    293295        <source>%2u: IDE controller, type %ls -- disabled
    294296</source>
     
    296298    </message>
    297299    <message>
    298         <location filename="../VBoxManageAppliance.cpp" line="747"/>
     300        <location filename="../VBoxManageAppliance.cpp" line="768"/>
    299301        <source>%2u: IDE controller, type %ls
    300302    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    303305    </message>
    304306    <message>
    305         <location filename="../VBoxManageAppliance.cpp" line="758"/>
     307        <location filename="../VBoxManageAppliance.cpp" line="778"/>
    306308        <source>%2u: SATA controller, type %ls -- disabled
    307309</source>
     
    309311    </message>
    310312    <message>
    311         <location filename="../VBoxManageAppliance.cpp" line="764"/>
     313        <location filename="../VBoxManageAppliance.cpp" line="784"/>
    312314        <source>%2u: SATA controller, type %ls
    313315    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    316318    </message>
    317319    <message>
    318         <location filename="../VBoxManageAppliance.cpp" line="775"/>
     320        <location filename="../VBoxManageAppliance.cpp" line="794"/>
    319321        <source>%2u: SAS controller, type %ls -- disabled
    320322</source>
     
    322324    </message>
    323325    <message>
    324         <location filename="../VBoxManageAppliance.cpp" line="781"/>
     326        <location filename="../VBoxManageAppliance.cpp" line="800"/>
    325327        <source>%2u: SAS controller, type %ls
    326328    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    329331    </message>
    330332    <message>
    331         <location filename="../VBoxManageAppliance.cpp" line="792"/>
     333        <location filename="../VBoxManageAppliance.cpp" line="810"/>
    332334        <source>%2u: SCSI controller, type %ls -- disabled
    333335</source>
     
    335337    </message>
    336338    <message>
    337         <location filename="../VBoxManageAppliance.cpp" line="803"/>
     339        <location filename="../VBoxManageAppliance.cpp" line="821"/>
    338340        <source>%2u: SCSI controller, type set with --unit %u --scsitype: &quot;%ls&quot;
    339341</source>
     
    341343    </message>
    342344    <message>
    343         <location filename="../VBoxManageAppliance.cpp" line="809"/>
     345        <location filename="../VBoxManageAppliance.cpp" line="827"/>
    344346        <source>%2u: SCSI controller, type %ls
    345347    (change with &quot;--vsys %u --unit %u --scsitype {BusLogic|LsiLogic}&quot;;
     
    349351    </message>
    350352    <message>
    351         <location filename="../VBoxManageAppliance.cpp" line="822"/>
     353        <location filename="../VBoxManageAppliance.cpp" line="839"/>
    352354        <source>%2u: VirtioSCSI controller, type %ls -- disabled
    353355</source>
     
    355357    </message>
    356358    <message>
    357         <location filename="../VBoxManageAppliance.cpp" line="828"/>
     359        <location filename="../VBoxManageAppliance.cpp" line="845"/>
    358360        <source>%2u: VirtioSCSI controller, type %ls
    359361    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    362364    </message>
    363365    <message>
    364         <location filename="../VBoxManageAppliance.cpp" line="839"/>
     366        <location filename="../VBoxManageAppliance.cpp" line="855"/>
    365367        <source>%2u: Hard disk image: source image=%ls -- disabled
    366368</source>
     
    368370    </message>
    369371    <message>
    370         <location filename="../VBoxManageAppliance.cpp" line="875"/>
    371         <source>Option --ImportToVDI shall not be used together with manually set target path.</source>
    372         <translation type="unfinished"></translation>
    373     </message>
    374     <message>
    375         <location filename="../VBoxManageAppliance.cpp" line="880"/>
     372        <location filename="../VBoxManageAppliance.cpp" line="870"/>
     373        <source>Option --ImportToVDI can not be used together with a manually set target path.</source>
     374        <translation type="unfinished"></translation>
     375    </message>
     376    <message>
    376377        <location filename="../VBoxManageAppliance.cpp" line="898"/>
    377         <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls
    378 </source>
    379         <translation type="unfinished"></translation>
    380     </message>
    381     <message>
    382         <location filename="../VBoxManageAppliance.cpp" line="984"/>
    383         <source>%2u: Hard disk image: source image=%ls, target path=%ls, %ls
     378        <source>Invalid controller value: &apos;%s&apos;</source>
     379        <translation type="unfinished"></translation>
     380    </message>
     381    <message>
     382        <location filename="../VBoxManageAppliance.cpp" line="903"/>
     383        <location filename="../VBoxManageAppliance.cpp" line="970"/>
     384        <source>Invalid storage controller specified: %u</source>
     385        <translation type="unfinished"></translation>
     386    </message>
     387    <message>
     388        <location filename="../VBoxManageAppliance.cpp" line="916"/>
     389        <source>Invalid port value: &apos;%s&apos;</source>
     390        <translation type="unfinished"></translation>
     391    </message>
     392    <message>
     393        <location filename="../VBoxManageAppliance.cpp" line="931"/>
     394        <source>Failed to extract controller value from ExtraConfig: &apos;%s&apos;</source>
     395        <translation type="unfinished"></translation>
     396    </message>
     397    <message>
     398        <location filename="../VBoxManageAppliance.cpp" line="937"/>
     399        <source>Failed to extract channel value from ExtraConfig: &apos;%s&apos;</source>
     400        <translation type="unfinished"></translation>
     401    </message>
     402    <message>
     403        <location filename="../VBoxManageAppliance.cpp" line="963"/>
     404        <source>Device already attached to controller %u at this port (%u) location.</source>
     405        <translation type="unfinished"></translation>
     406    </message>
     407    <message>
     408        <location filename="../VBoxManageAppliance.cpp" line="1001"/>
     409        <source>Illegal port value: %u. For %ls controllers the only valid values are 0 to %lu (inclusive)</source>
     410        <translation type="unfinished"></translation>
     411    </message>
     412    <message>
     413        <location filename="../VBoxManageAppliance.cpp" line="1023"/>
     414        <source>%2u: Hard disk image specified with --disk: source image=%ls, target path=%ls, %s
     415    (change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;;
     416    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     417</source>
     418        <translation type="unfinished"></translation>
     419    </message>
     420    <message>
     421        <location filename="../VBoxManageAppliance.cpp" line="1035"/>
     422        <source>%2u: Hard disk image specified with --disk and --controller: source image=%ls, target path=%ls, %s
     423    (change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     424</source>
     425        <translation type="unfinished"></translation>
     426    </message>
     427    <message>
     428        <location filename="../VBoxManageAppliance.cpp" line="1045"/>
     429        <source>%2u: Hard disk image specified with --disk and --port: source image=%ls, target path=%ls, %s
     430    (change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;)
     431</source>
     432        <translation type="unfinished"></translation>
     433    </message>
     434    <message>
     435        <location filename="../VBoxManageAppliance.cpp" line="1055"/>
     436        <source>%2u: Hard disk image specified with --controller and --port: source image=%ls, target path=%ls, %s
     437    (change target path with &quot;--vsys %u --unit %u --disk path&quot;)
     438</source>
     439        <translation type="unfinished"></translation>
     440    </message>
     441    <message>
     442        <location filename="../VBoxManageAppliance.cpp" line="1065"/>
     443        <source>%2u: Hard disk image specified with --port: source image=%ls, target path=%ls, %s
    384444    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     445    change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;)
     446</source>
     447        <translation type="unfinished"></translation>
     448    </message>
     449    <message>
     450        <location filename="../VBoxManageAppliance.cpp" line="1077"/>
     451        <source>%2u: Hard disk image specified with --controller: source image=%ls, target path=%ls, %s
     452    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     453    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;)
     454</source>
     455        <translation type="unfinished"></translation>
     456    </message>
     457    <message>
     458        <location filename="../VBoxManageAppliance.cpp" line="1089"/>
     459        <source>%2u: Hard disk image specified with --disk and --controller and --port: source image=%ls, target path=%ls, %s
     460</source>
     461        <translation type="unfinished"></translation>
     462    </message>
     463    <message>
     464        <location filename="../VBoxManageAppliance.cpp" line="1174"/>
     465        <source>%2u: Hard disk image: source image=%ls, target path=%ls, %s
     466    (change target path with &quot;--vsys %u --unit %u --disk path&quot;;
     467    change controller with &quot;--vsys %u --unit %u --controller &lt;index&gt;&quot;;
     468    change controller port with &quot;--vsys %u --unit %u --port &lt;n&gt;&quot;;
    385469    disable with &quot;--vsys %u --unit %u --ignore&quot;)
    386470</source>
     
    388472    </message>
    389473    <message>
    390         <location filename="../VBoxManageAppliance.cpp" line="1000"/>
     474        <location filename="../VBoxManageAppliance.cpp" line="1191"/>
    391475        <source>%2u: CD-ROM -- disabled
    392476</source>
     
    394478    </message>
    395479    <message>
    396         <location filename="../VBoxManageAppliance.cpp" line="1005"/>
     480        <location filename="../VBoxManageAppliance.cpp" line="1196"/>
    397481        <source>%2u: CD-ROM
    398482    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    401485    </message>
    402486    <message>
    403         <location filename="../VBoxManageAppliance.cpp" line="1014"/>
     487        <location filename="../VBoxManageAppliance.cpp" line="1204"/>
    404488        <source>%2u: Floppy -- disabled
    405489</source>
     
    407491    </message>
    408492    <message>
    409         <location filename="../VBoxManageAppliance.cpp" line="1019"/>
     493        <location filename="../VBoxManageAppliance.cpp" line="1209"/>
    410494        <source>%2u: Floppy
    411495    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    414498    </message>
    415499    <message>
    416         <location filename="../VBoxManageAppliance.cpp" line="1026"/>
     500        <location filename="../VBoxManageAppliance.cpp" line="1215"/>
    417501        <source>%2u: Network adapter: orig %ls, config %ls, extra %ls
    418502</source>
     
    420504    </message>
    421505    <message>
    422         <location filename="../VBoxManageAppliance.cpp" line="1036"/>
     506        <location filename="../VBoxManageAppliance.cpp" line="1225"/>
    423507        <source>%2u: USB controller -- disabled
    424508</source>
     
    426510    </message>
    427511    <message>
    428         <location filename="../VBoxManageAppliance.cpp" line="1041"/>
     512        <location filename="../VBoxManageAppliance.cpp" line="1230"/>
    429513        <source>%2u: USB controller
    430514    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    433517    </message>
    434518    <message>
    435         <location filename="../VBoxManageAppliance.cpp" line="1050"/>
     519        <location filename="../VBoxManageAppliance.cpp" line="1238"/>
    436520        <source>%2u: Sound card &quot;%ls&quot; -- disabled
    437521</source>
     
    439523    </message>
    440524    <message>
    441         <location filename="../VBoxManageAppliance.cpp" line="1056"/>
     525        <location filename="../VBoxManageAppliance.cpp" line="1244"/>
    442526        <source>%2u: Sound card (appliance expects &quot;%ls&quot;, can change on import)
    443527    (disable with &quot;--vsys %u --unit %u --ignore&quot;)
     
    446530    </message>
    447531    <message>
    448         <location filename="../VBoxManageAppliance.cpp" line="1069"/>
     532        <location filename="../VBoxManageAppliance.cpp" line="1256"/>
    449533        <source>%2u: VM settings file name specified with --settingsfile: &quot;%ls&quot;
    450534</source>
     
    452536    </message>
    453537    <message>
    454         <location filename="../VBoxManageAppliance.cpp" line="1073"/>
     538        <location filename="../VBoxManageAppliance.cpp" line="1260"/>
    455539        <source>%2u: Suggested VM settings file name &quot;%ls&quot;
    456540    (change with &quot;--vsys %u --settingsfile &lt;filename&gt;&quot;)
     
    459543    </message>
    460544    <message>
    461         <location filename="../VBoxManageAppliance.cpp" line="1083"/>
     545        <location filename="../VBoxManageAppliance.cpp" line="1269"/>
    462546        <source>%2u: VM base folder specified with --basefolder: &quot;%ls&quot;
    463547</source>
     
    465549    </message>
    466550    <message>
    467         <location filename="../VBoxManageAppliance.cpp" line="1087"/>
     551        <location filename="../VBoxManageAppliance.cpp" line="1273"/>
    468552        <source>%2u: Suggested VM base folder &quot;%ls&quot;
    469553    (change with &quot;--vsys %u --basefolder &lt;path&gt;&quot;)
     
    472556    </message>
    473557    <message>
    474         <location filename="../VBoxManageAppliance.cpp" line="1097"/>
     558        <location filename="../VBoxManageAppliance.cpp" line="1282"/>
    475559        <source>%2u: VM group specified with --group: &quot;%ls&quot;
    476560</source>
     
    478562    </message>
    479563    <message>
    480         <location filename="../VBoxManageAppliance.cpp" line="1101"/>
     564        <location filename="../VBoxManageAppliance.cpp" line="1286"/>
    481565        <source>%2u: Suggested VM group &quot;%ls&quot;
    482566    (change with &quot;--vsys %u --group &lt;group&gt;&quot;)
     
    485569    </message>
    486570    <message>
    487         <location filename="../VBoxManageAppliance.cpp" line="1108"/>
     571        <location filename="../VBoxManageAppliance.cpp" line="1292"/>
    488572        <source>%2u: Suggested cloud shape &quot;%ls&quot;
    489573</source>
     
    491575    </message>
    492576    <message>
    493         <location filename="../VBoxManageAppliance.cpp" line="1116"/>
     577        <location filename="../VBoxManageAppliance.cpp" line="1300"/>
    494578        <source>%2u: Cloud bucket id specified with --cloudbucket: &quot;%ls&quot;
    495579</source>
     
    497581    </message>
    498582    <message>
    499         <location filename="../VBoxManageAppliance.cpp" line="1120"/>
     583        <location filename="../VBoxManageAppliance.cpp" line="1304"/>
    500584        <source>%2u: Suggested cloud bucket id &quot;%ls&quot;
    501585    (change with &quot;--cloud %u --cloudbucket &lt;id&gt;&quot;)
     
    504588    </message>
    505589    <message>
    506         <location filename="../VBoxManageAppliance.cpp" line="1130"/>
     590        <location filename="../VBoxManageAppliance.cpp" line="1313"/>
    507591        <source>%2u: Cloud profile name specified with --cloudprofile: &quot;%ls&quot;
    508592</source>
     
    510594    </message>
    511595    <message>
    512         <location filename="../VBoxManageAppliance.cpp" line="1134"/>
     596        <location filename="../VBoxManageAppliance.cpp" line="1317"/>
    513597        <source>%2u: Suggested cloud profile name &quot;%ls&quot;
    514598    (change with &quot;--cloud %u --cloudprofile &lt;id&gt;&quot;)
     
    517601    </message>
    518602    <message>
    519         <location filename="../VBoxManageAppliance.cpp" line="1144"/>
     603        <location filename="../VBoxManageAppliance.cpp" line="1326"/>
    520604        <source>%2u: Cloud instance id specified with --cloudinstanceid: &quot;%ls&quot;
    521605</source>
     
    523607    </message>
    524608    <message>
    525         <location filename="../VBoxManageAppliance.cpp" line="1148"/>
     609        <location filename="../VBoxManageAppliance.cpp" line="1330"/>
    526610        <source>%2u: Suggested cloud instance id &quot;%ls&quot;
    527611    (change with &quot;--cloud %u --cloudinstanceid &lt;id&gt;&quot;)
     
    530614    </message>
    531615    <message>
    532         <location filename="../VBoxManageAppliance.cpp" line="1155"/>
     616        <location filename="../VBoxManageAppliance.cpp" line="1336"/>
    533617        <source>%2u: Suggested cloud base image id &quot;%ls&quot;
    534618</source>
     
    536620    </message>
    537621    <message>
    538         <location filename="../VBoxManageAppliance.cpp" line="1201"/>
     622        <location filename="../VBoxManageAppliance.cpp" line="1384"/>
    539623        <source>Cannot import until the license agreement listed above is accepted.</source>
    540624        <translation type="unfinished"></translation>
    541625    </message>
    542626    <message>
    543         <location filename="../VBoxManageAppliance.cpp" line="1203"/>
     627        <location filename="../VBoxManageAppliance.cpp" line="1386"/>
    544628        <source>Cannot import until the %c license agreements listed above are accepted.</source>
    545629        <translation type="unfinished"></translation>
    546630    </message>
    547631    <message>
    548         <location filename="../VBoxManageAppliance.cpp" line="1214"/>
     632        <location filename="../VBoxManageAppliance.cpp" line="1397"/>
    549633        <source>Appliance import failed</source>
    550634        <translation type="unfinished"></translation>
    551635    </message>
    552636    <message>
    553         <location filename="../VBoxManageAppliance.cpp" line="1217"/>
     637        <location filename="../VBoxManageAppliance.cpp" line="1400"/>
    554638        <source>Successfully imported the appliance.
    555639</source>
     
    557641    </message>
    558642    <message>
    559         <location filename="../VBoxManageAppliance.cpp" line="1334"/>
     643        <location filename="../VBoxManageAppliance.cpp" line="1517"/>
    560644        <source>You can only specify --output once.</source>
    561645        <translation type="unfinished"></translation>
    562646    </message>
    563647    <message>
    564         <location filename="../VBoxManageAppliance.cpp" line="1453"/>
     648        <location filename="../VBoxManageAppliance.cpp" line="1625"/>
    565649        <source>Invalid export options &apos;%s&apos;
    566650</source>
     
    568652    </message>
    569653    <message>
    570         <location filename="../VBoxManageAppliance.cpp" line="1594"/>
     654        <location filename="../VBoxManageAppliance.cpp" line="1751"/>
    571655        <source>unhandled option: -%c</source>
    572656        <translation type="unfinished"></translation>
    573657    </message>
    574658    <message>
    575         <location filename="../VBoxManageAppliance.cpp" line="1596"/>
     659        <location filename="../VBoxManageAppliance.cpp" line="1753"/>
    576660        <source>unhandled option: %i</source>
    577661        <translation type="unfinished"></translation>
    578662    </message>
    579663    <message>
    580         <location filename="../VBoxManageAppliance.cpp" line="1599"/>
     664        <location filename="../VBoxManageAppliance.cpp" line="1756"/>
    581665        <source>unknown option: %s</source>
    582666        <translation type="unfinished"></translation>
    583667    </message>
    584668    <message>
    585         <location filename="../VBoxManageAppliance.cpp" line="1615"/>
     669        <location filename="../VBoxManageAppliance.cpp" line="1771"/>
    586670        <source>At least one machine must be specified with the export command.</source>
    587671        <translation type="unfinished"></translation>
    588672    </message>
    589673    <message>
    590         <location filename="../VBoxManageAppliance.cpp" line="1619"/>
     674        <location filename="../VBoxManageAppliance.cpp" line="1775"/>
    591675        <source>Missing --output argument with export command.</source>
    592676        <translation type="unfinished"></translation>
    593677    </message>
    594678    <message numerus="yes">
    595         <location filename="../VBoxManageAppliance.cpp" line="1634"/>
     679        <location filename="../VBoxManageAppliance.cpp" line="1789"/>
    596680        <source>Invalid index %RI32 with -vsys option; you specified only %zu virtual system(s).</source>
    597681        <translation type="unfinished">
     
    600684    </message>
    601685    <message>
    602         <location filename="../VBoxManageAppliance.cpp" line="1723"/>
     686        <location filename="../VBoxManageAppliance.cpp" line="1878"/>
    603687        <source>Cannot read license file &quot;%s&quot; which should be included in the virtual system %u.</source>
    604688        <translation type="unfinished"></translation>
    605689    </message>
    606690    <message>
    607         <location filename="../VBoxManageAppliance.cpp" line="1786"/>
     691        <location filename="../VBoxManageAppliance.cpp" line="1941"/>
    608692        <source>Enter the passwords for the following identifiers to export the apppliance:
    609693</source>
     
    611695    </message>
    612696    <message>
    613         <location filename="../VBoxManageAppliance.cpp" line="1793"/>
     697        <location filename="../VBoxManageAppliance.cpp" line="1948"/>
    614698        <source>Password ID %s:</source>
    615699        <translation type="unfinished"></translation>
    616700    </message>
    617701    <message>
    618         <location filename="../VBoxManageAppliance.cpp" line="1823"/>
     702        <location filename="../VBoxManageAppliance.cpp" line="1978"/>
    619703        <source>Appliance write failed</source>
    620704        <translation type="unfinished"></translation>
    621705    </message>
    622706    <message numerus="yes">
    623         <location filename="../VBoxManageAppliance.cpp" line="1826"/>
     707        <location filename="../VBoxManageAppliance.cpp" line="1981"/>
    624708        <source>Successfully exported %d machine(s).
    625709</source>
     
    629713    </message>
    630714    <message>
    631         <location filename="../VBoxManageAppliance.cpp" line="1882"/>
     715        <location filename="../VBoxManageAppliance.cpp" line="2037"/>
    632716        <source>Creating a cloud instance...
    633717</source>
     
    635719    </message>
    636720    <message>
    637         <location filename="../VBoxManageAppliance.cpp" line="1887"/>
     721        <location filename="../VBoxManageAppliance.cpp" line="2042"/>
    638722        <source>Creating the cloud instance failed</source>
    639723        <translation type="unfinished"></translation>
    640724    </message>
    641725    <message>
    642         <location filename="../VBoxManageAppliance.cpp" line="1899"/>
     726        <location filename="../VBoxManageAppliance.cpp" line="2054"/>
    643727        <source>A cloud instance with id &apos;%s&apos; (provider &apos;%s&apos;) was created
    644728</source>
     
    646730    </message>
    647731    <message>
    648         <location filename="../VBoxManageAppliance.cpp" line="1952"/>
     732        <location filename="../VBoxManageAppliance.cpp" line="2107"/>
    649733        <source>Failed to open OVA &apos;%s&apos; for updating: %Rrc</source>
    650734        <translation type="unfinished"></translation>
    651735    </message>
    652736    <message>
    653         <location filename="../VBoxManageAppliance.cpp" line="1958"/>
     737        <location filename="../VBoxManageAppliance.cpp" line="2113"/>
    654738        <source>Failed to open OVA &apos;%s&apos; as a TAR file: %Rrc</source>
    655739        <translation type="unfinished"></translation>
    656740    </message>
    657741    <message>
    658         <location filename="../VBoxManageAppliance.cpp" line="1965"/>
     742        <location filename="../VBoxManageAppliance.cpp" line="2120"/>
    659743        <source>Scanning OVA &apos;%s&apos; for a manifest and signature...</source>
    660744        <translation type="unfinished"></translation>
    661745    </message>
    662746    <message>
    663         <location filename="../VBoxManageAppliance.cpp" line="1981"/>
     747        <location filename="../VBoxManageAppliance.cpp" line="2136"/>
    664748        <source>RTVfsFsStrmNext returned %Rrc</source>
    665749        <translation type="unfinished"></translation>
    666750    </message>
    667751    <message>
    668         <location filename="../VBoxManageAppliance.cpp" line="1997"/>
     752        <location filename="../VBoxManageAppliance.cpp" line="2152"/>
    669753        <source>OVA contains multiple manifests! first: %s  second: %s</source>
    670754        <translation type="unfinished"></translation>
    671755    </message>
    672756    <message>
    673         <location filename="../VBoxManageAppliance.cpp" line="2001"/>
    674         <location filename="../VBoxManageAppliance.cpp" line="2039"/>
     757        <location filename="../VBoxManageAppliance.cpp" line="2156"/>
     758        <location filename="../VBoxManageAppliance.cpp" line="2194"/>
    675759        <source>Unsupported OVA file ordering! Signature file (&apos;%s&apos;) as succeeded by &apos;%s&apos;.</source>
    676760        <translation type="unfinished"></translation>
    677761    </message>
    678762    <message>
    679         <location filename="../VBoxManageAppliance.cpp" line="2006"/>
     763        <location filename="../VBoxManageAppliance.cpp" line="2161"/>
    680764        <source>Found manifest file: %s</source>
    681765        <translation type="unfinished"></translation>
    682766    </message>
    683767    <message>
    684         <location filename="../VBoxManageAppliance.cpp" line="2015"/>
     768        <location filename="../VBoxManageAppliance.cpp" line="2170"/>
    685769        <source>Failed to memorize the manifest: %Rrc</source>
    686770        <translation type="unfinished"></translation>
    687771    </message>
    688772    <message>
    689         <location filename="../VBoxManageAppliance.cpp" line="2018"/>
    690         <location filename="../VBoxManageAppliance.cpp" line="2259"/>
     773        <location filename="../VBoxManageAppliance.cpp" line="2173"/>
     774        <location filename="../VBoxManageAppliance.cpp" line="2414"/>
     775        <location filename="../VBoxManageAppliance.cpp" line="2488"/>
     776        <location filename="../VBoxManageAppliance.cpp" line="2647"/>
     777        <source>Out of memory!</source>
     778        <translation type="unfinished"></translation>
     779    </message>
     780    <message>
     781        <location filename="../VBoxManageAppliance.cpp" line="2181"/>
     782        <source>Multiple signature files! (%s)</source>
     783        <translation type="unfinished"></translation>
     784    </message>
     785    <message>
     786        <location filename="../VBoxManageAppliance.cpp" line="2185"/>
     787        <source>Found existing signature file: %s</source>
     788        <translation type="unfinished"></translation>
     789    </message>
     790    <message>
     791        <location filename="../VBoxManageAppliance.cpp" line="2210"/>
     792        <source>The OVA contains no manifest and cannot be signed!</source>
     793        <translation type="unfinished"></translation>
     794    </message>
     795    <message>
     796        <location filename="../VBoxManageAppliance.cpp" line="2213"/>
     797        <source>The OVA is already signed (&apos;%s&apos;)! (Use the --force option to force re-signing it.)</source>
     798        <translation type="unfinished"></translation>
     799    </message>
     800    <message>
     801        <location filename="../VBoxManageAppliance.cpp" line="2233"/>
     802        <source>Writing &apos;%s&apos; to the OVA...</source>
     803        <translation type="unfinished"></translation>
     804    </message>
     805    <message>
     806        <location filename="../VBoxManageAppliance.cpp" line="2243"/>
     807        <source>RTZipTarFsStreamTruncate failed on &apos;%s&apos;: %Rrc</source>
     808        <translation type="unfinished"></translation>
     809    </message>
     810    <message>
     811        <location filename="../VBoxManageAppliance.cpp" line="2252"/>
     812        <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source>
     813        <translation type="unfinished"></translation>
     814    </message>
     815    <message>
     816        <location filename="../VBoxManageAppliance.cpp" line="2258"/>
     817        <source>RTVfsFsStrmAdd(&apos;%s&apos;) failed on &apos;%s&apos;: %Rrc</source>
     818        <translation type="unfinished"></translation>
     819    </message>
     820    <message>
     821        <location filename="../VBoxManageAppliance.cpp" line="2265"/>
     822        <source>RTVfsFsStrmEnd failed on &apos;%s&apos;: %Rrc</source>
     823        <translation type="unfinished"></translation>
     824    </message>
     825    <message>
     826        <location filename="../VBoxManageAppliance.cpp" line="2301"/>
     827        <source>  Successfully decoded the PKCS#7/CMS signature...</source>
     828        <translation type="unfinished"></translation>
     829    </message>
     830    <message>
     831        <location filename="../VBoxManageAppliance.cpp" line="2317"/>
     832        <source>  Successfully verified the PKCS#7/CMS signature</source>
     833        <translation type="unfinished"></translation>
     834    </message>
     835    <message>
     836        <location filename="../VBoxManageAppliance.cpp" line="2320"/>
     837        <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source>
     838        <translation type="unfinished"></translation>
     839    </message>
     840    <message>
     841        <location filename="../VBoxManageAppliance.cpp" line="2324"/>
     842        <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source>
     843        <translation type="unfinished"></translation>
     844    </message>
     845    <message>
     846        <location filename="../VBoxManageAppliance.cpp" line="2329"/>
     847        <source>PKCS#7/CMS signature inner ContentType isn&apos;t &apos;data&apos; but: %s</source>
     848        <translation type="unfinished"></translation>
     849    </message>
     850    <message>
    691851        <location filename="../VBoxManageAppliance.cpp" line="2333"/>
    692         <location filename="../VBoxManageAppliance.cpp" line="2493"/>
    693         <source>Out of memory!</source>
    694         <translation type="unfinished"></translation>
    695     </message>
    696     <message>
    697         <location filename="../VBoxManageAppliance.cpp" line="2026"/>
    698         <source>Multiple signature files! (%s)</source>
    699         <translation type="unfinished"></translation>
    700     </message>
    701     <message>
    702         <location filename="../VBoxManageAppliance.cpp" line="2030"/>
    703         <source>Found existing signature file: %s</source>
    704         <translation type="unfinished"></translation>
    705     </message>
    706     <message>
    707         <location filename="../VBoxManageAppliance.cpp" line="2055"/>
    708         <source>The OVA contains no manifest and cannot be signed!</source>
    709         <translation type="unfinished"></translation>
    710     </message>
    711     <message>
    712         <location filename="../VBoxManageAppliance.cpp" line="2058"/>
    713         <source>The OVA is already signed (&apos;%s&apos;)! (Use the --force option to force re-signing it.)</source>
    714         <translation type="unfinished"></translation>
    715     </message>
    716     <message>
    717         <location filename="../VBoxManageAppliance.cpp" line="2078"/>
    718         <source>Writing &apos;%s&apos; to the OVA...</source>
    719         <translation type="unfinished"></translation>
    720     </message>
    721     <message>
    722         <location filename="../VBoxManageAppliance.cpp" line="2088"/>
    723         <source>RTZipTarFsStreamTruncate failed on &apos;%s&apos;: %Rrc</source>
    724         <translation type="unfinished"></translation>
    725     </message>
    726     <message>
    727         <location filename="../VBoxManageAppliance.cpp" line="2097"/>
    728         <source>RTVfsFileSeek(hVfsFileSignature) failed: %Rrc</source>
    729         <translation type="unfinished"></translation>
    730     </message>
    731     <message>
    732         <location filename="../VBoxManageAppliance.cpp" line="2103"/>
    733         <source>RTVfsFsStrmAdd(&apos;%s&apos;) failed on &apos;%s&apos;: %Rrc</source>
    734         <translation type="unfinished"></translation>
    735     </message>
    736     <message>
    737         <location filename="../VBoxManageAppliance.cpp" line="2110"/>
    738         <source>RTVfsFsStrmEnd failed on &apos;%s&apos;: %Rrc</source>
    739         <translation type="unfinished"></translation>
    740     </message>
    741     <message>
    742         <location filename="../VBoxManageAppliance.cpp" line="2146"/>
    743         <source>  Successfully decoded the PKCS#7/CMS signature...</source>
    744         <translation type="unfinished"></translation>
    745     </message>
    746     <message>
    747         <location filename="../VBoxManageAppliance.cpp" line="2162"/>
    748         <source>  Successfully verified the PKCS#7/CMS signature</source>
    749         <translation type="unfinished"></translation>
    750     </message>
    751     <message>
    752         <location filename="../VBoxManageAppliance.cpp" line="2165"/>
    753         <source>Failed to verify the PKCS#7/CMS signature: %Rrc%RTeim</source>
    754         <translation type="unfinished"></translation>
    755     </message>
    756     <message>
    757         <location filename="../VBoxManageAppliance.cpp" line="2169"/>
    758         <source>RTCrPkcs7SignedData_CheckSanity failed on PKCS#7/CMS signature: %Rrc%RTeim</source>
    759         <translation type="unfinished"></translation>
    760     </message>
    761     <message>
    762         <location filename="../VBoxManageAppliance.cpp" line="2174"/>
    763         <source>PKCS#7/CMS signature inner ContentType isn&apos;t &apos;data&apos; but: %s</source>
    764         <translation type="unfinished"></translation>
    765     </message>
    766     <message>
    767         <location filename="../VBoxManageAppliance.cpp" line="2178"/>
    768852        <source>PKCS#7/CMD signature is not &apos;signedData&apos;: %s</source>
    769853        <translation type="unfinished"></translation>
    770854    </message>
    771855    <message>
    772         <location filename="../VBoxManageAppliance.cpp" line="2219"/>
     856        <location filename="../VBoxManageAppliance.cpp" line="2374"/>
    773857        <source>RTCrPkcs7ContentInfo_Clone failed: %Rrc</source>
    774858        <translation type="unfinished"></translation>
    775859    </message>
    776860    <message>
    777         <location filename="../VBoxManageAppliance.cpp" line="2223"/>
     861        <location filename="../VBoxManageAppliance.cpp" line="2378"/>
    778862        <source>RTCrPkcs7ContentInfo_DecodeAsn1 failed to decode PKCS#7/CMS signature: %Rrc%RTemi</source>
    779863        <translation type="unfinished"></translation>
    780864    </message>
    781865    <message numerus="yes">
    782         <location filename="../VBoxManageAppliance.cpp" line="2254"/>
     866        <location filename="../VBoxManageAppliance.cpp" line="2409"/>
    783867        <source>Manifest is too big: %#RX64 bytes, max 4MiB</source>
    784868        <translation type="unfinished">
     
    787871    </message>
    788872    <message>
    789         <location filename="../VBoxManageAppliance.cpp" line="2279"/>
     873        <location filename="../VBoxManageAppliance.cpp" line="2434"/>
    790874        <source>RTCrStoreCertAddFromFile failed on &apos;%s&apos;: %Rrc%#RTeim</source>
    791875        <translation type="unfinished"></translation>
    792876    </message>
    793877    <message>
    794         <location filename="../VBoxManageAppliance.cpp" line="2285"/>
     878        <location filename="../VBoxManageAppliance.cpp" line="2440"/>
    795879        <source>RTCrStoreCreateInMem failed: %Rrc</source>
    796880        <translation type="unfinished"></translation>
    797881    </message>
    798882    <message numerus="yes">
    799         <location filename="../VBoxManageAppliance.cpp" line="2316"/>
     883        <location filename="../VBoxManageAppliance.cpp" line="2471"/>
    800884        <source>Created PKCS#7/CMS signature: %zu bytes, %s.</source>
    801885        <translation type="unfinished">
     
    804888    </message>
    805889    <message>
    806         <location filename="../VBoxManageAppliance.cpp" line="2319"/>
     890        <location filename="../VBoxManageAppliance.cpp" line="2474"/>
    807891        <source>Using SHA-1 instead of SHA-3 for the PKCS#7/CMS signature.</source>
    808892        <translation type="unfinished"></translation>
    809893    </message>
    810894    <message>
    811         <location filename="../VBoxManageAppliance.cpp" line="2328"/>
     895        <location filename="../VBoxManageAppliance.cpp" line="2483"/>
    812896        <source>RTCrPemWriteBlobToVfsFile failed: %Rrc</source>
    813897        <translation type="unfinished"></translation>
    814898    </message>
    815899    <message>
    816         <location filename="../VBoxManageAppliance.cpp" line="2336"/>
     900        <location filename="../VBoxManageAppliance.cpp" line="2491"/>
    817901        <source>RTCrPkcs7SimpleSignSignedData failed: %Rrc%#RTeim</source>
    818902        <translation type="unfinished"></translation>
    819903    </message>
    820904    <message>
    821         <location filename="../VBoxManageAppliance.cpp" line="2340"/>
     905        <location filename="../VBoxManageAppliance.cpp" line="2495"/>
    822906        <source>RTVfsFileReadAt failed: %Rrc</source>
    823907        <translation type="unfinished"></translation>
    824908    </message>
    825909    <message>
    826         <location filename="../VBoxManageAppliance.cpp" line="2393"/>
     910        <location filename="../VBoxManageAppliance.cpp" line="2548"/>
    827911        <source>Unsupported digest type: %s</source>
    828912        <translation type="unfinished"></translation>
    829913    </message>
    830914    <message>
    831         <location filename="../VBoxManageAppliance.cpp" line="2402"/>
     915        <location filename="../VBoxManageAppliance.cpp" line="2557"/>
    832916        <source>Failed to create digest for %s: %Rrc</source>
    833917        <translation type="unfinished"></translation>
    834918    </message>
    835919    <message numerus="yes">
    836         <location filename="../VBoxManageAppliance.cpp" line="2428"/>
     920        <location filename="../VBoxManageAppliance.cpp" line="2583"/>
    837921        <source>Created OVA signature: %zu bytes, %s</source>
    838922        <translation type="unfinished">
     
    841925    </message>
    842926    <message>
    843         <location filename="../VBoxManageAppliance.cpp" line="2441"/>
     927        <location filename="../VBoxManageAppliance.cpp" line="2596"/>
    844928        <source>  Successfully decoded and verified the OVA signature.
    845929</source>
     
    847931    </message>
    848932    <message>
    849         <location filename="../VBoxManageAppliance.cpp" line="2472"/>
     933        <location filename="../VBoxManageAppliance.cpp" line="2627"/>
    850934        <source>Failed to write certificate to signature file: %Rrc%#RTeim</source>
    851935        <translation type="unfinished"></translation>
    852936    </message>
    853937    <message>
    854         <location filename="../VBoxManageAppliance.cpp" line="2476"/>
     938        <location filename="../VBoxManageAppliance.cpp" line="2631"/>
    855939        <source>Failed to produce signature file: %Rrc</source>
    856940        <translation type="unfinished"></translation>
    857941    </message>
    858942    <message>
    859         <location filename="../VBoxManageAppliance.cpp" line="2480"/>
     943        <location filename="../VBoxManageAppliance.cpp" line="2635"/>
    860944        <source>RTVfsMemFileCreate failed: %Rrc</source>
    861945        <translation type="unfinished"></translation>
    862946    </message>
    863947    <message>
    864         <location filename="../VBoxManageAppliance.cpp" line="2483"/>
     948        <location filename="../VBoxManageAppliance.cpp" line="2638"/>
    865949        <source>Encountered a problem when validating the signature we just created: %Rrc%#RTeim
    866 Plase make sure the certificate and private key matches.</source>
    867         <translation type="unfinished"></translation>
    868     </message>
    869     <message>
    870         <location filename="../VBoxManageAppliance.cpp" line="2489"/>
     950Please make sure the certificate and private key matches.</source>
     951        <translation type="unfinished"></translation>
     952    </message>
     953    <message>
     954        <location filename="../VBoxManageAppliance.cpp" line="2643"/>
    871955        <source>2nd RTCrPkixPubKeySignDigest call failed: %Rrc%#RTeim</source>
    872956        <translation type="unfinished"></translation>
    873957    </message>
    874958    <message>
    875         <location filename="../VBoxManageAppliance.cpp" line="2496"/>
     959        <location filename="../VBoxManageAppliance.cpp" line="2650"/>
    876960        <source>RTCrPkixPubKeySignDigest failed: %Rrc%#RTeim</source>
    877961        <translation type="unfinished"></translation>
    878962    </message>
    879963    <message>
    880         <location filename="../VBoxManageAppliance.cpp" line="2499"/>
     964        <location filename="../VBoxManageAppliance.cpp" line="2653"/>
    881965        <source>Failed to create digest %s: %Rrc</source>
    882966        <translation type="unfinished"></translation>
    883967    </message>
    884968    <message>
    885         <location filename="../VBoxManageAppliance.cpp" line="2563"/>
    886         <location filename="../VBoxManageAppliance.cpp" line="2570"/>
     969        <location filename="../VBoxManageAppliance.cpp" line="2717"/>
     970        <location filename="../VBoxManageAppliance.cpp" line="2724"/>
    887971        <source>Password is given more than once.</source>
    888972        <translation type="unfinished"></translation>
    889973    </message>
    890974    <message>
    891         <location filename="../VBoxManageAppliance.cpp" line="2588"/>
     975        <location filename="../VBoxManageAppliance.cpp" line="2742"/>
    892976        <source>Unknown digest type: %s</source>
    893977        <translation type="unfinished"></translation>
    894978    </message>
    895979    <message>
    896         <location filename="../VBoxManageAppliance.cpp" line="2601"/>
     980        <location filename="../VBoxManageAppliance.cpp" line="2755"/>
    897981        <source>Too many intermediate certificates: max %zu</source>
    898982        <translation type="unfinished"></translation>
    899983    </message>
    900984    <message>
    901         <location filename="../VBoxManageAppliance.cpp" line="2637"/>
     985        <location filename="../VBoxManageAppliance.cpp" line="2791"/>
    902986        <source>No OVA file was specified!</source>
    903987        <translation type="unfinished"></translation>
    904988    </message>
    905989    <message>
    906         <location filename="../VBoxManageAppliance.cpp" line="2639"/>
     990        <location filename="../VBoxManageAppliance.cpp" line="2793"/>
    907991        <source>No signing certificate (--certificate=&lt;file&gt;) was specified!</source>
    908992        <translation type="unfinished"></translation>
    909993    </message>
    910994    <message>
    911         <location filename="../VBoxManageAppliance.cpp" line="2641"/>
     995        <location filename="../VBoxManageAppliance.cpp" line="2795"/>
    912996        <source>No signing private key (--private-key=&lt;file&gt;) was specified!</source>
    913997        <translation type="unfinished"></translation>
    914998    </message>
    915999    <message>
    916         <location filename="../VBoxManageAppliance.cpp" line="2645"/>
     1000        <location filename="../VBoxManageAppliance.cpp" line="2799"/>
    9171001        <source>The specified OVA file was not found: %s</source>
    9181002        <translation type="unfinished"></translation>
    9191003    </message>
    9201004    <message>
    921         <location filename="../VBoxManageAppliance.cpp" line="2647"/>
     1005        <location filename="../VBoxManageAppliance.cpp" line="2801"/>
    9221006        <source>The specified certificate file was not found: %s</source>
    9231007        <translation type="unfinished"></translation>
    9241008    </message>
    9251009    <message>
    926         <location filename="../VBoxManageAppliance.cpp" line="2649"/>
     1010        <location filename="../VBoxManageAppliance.cpp" line="2803"/>
    9271011        <source>The specified private key file was not found: %s</source>
    9281012        <translation type="unfinished"></translation>
    9291013    </message>
    9301014    <message>
    931         <location filename="../VBoxManageAppliance.cpp" line="2670"/>
     1015        <location filename="../VBoxManageAppliance.cpp" line="2824"/>
    9321016        <source>Error reading certificate from &apos;%s&apos;: %Rrc%#RTeim</source>
    9331017        <translation type="unfinished"></translation>
    9341018    </message>
    9351019    <message>
    936         <location filename="../VBoxManageAppliance.cpp" line="2679"/>
     1020        <location filename="../VBoxManageAppliance.cpp" line="2833"/>
    9371021        <source>Successfully read the certificate and private key.</source>
    9381022        <translation type="unfinished"></translation>
    9391023    </message>
    9401024    <message>
    941         <location filename="../VBoxManageAppliance.cpp" line="2705"/>
     1025        <location filename="../VBoxManageAppliance.cpp" line="2859"/>
    9421026        <source>Successfully signed &apos;%s&apos;.</source>
    9431027        <translation type="unfinished"></translation>
    9441028    </message>
    9451029    <message>
    946         <location filename="../VBoxManageAppliance.cpp" line="2711"/>
     1030        <location filename="../VBoxManageAppliance.cpp" line="2865"/>
    9471031        <source>Error reading the private key from %s: %Rrc%#RTeim</source>
    9481032        <translation type="unfinished"></translation>
     
    9521036    <name>BWControl</name>
    9531037    <message>
    954         <location filename="../VBoxManageBandwidthControl.cpp" line="67"/>
    955         <location filename="../VBoxManageBandwidthControl.cpp" line="90"/>
     1038        <location filename="../VBoxManageBandwidthControl.cpp" line="65"/>
     1039        <location filename="../VBoxManageBandwidthControl.cpp" line="88"/>
    9561040        <source>Limit is too big
    9571041</source>
     
    9591043    </message>
    9601044    <message>
    961         <location filename="../VBoxManageBandwidthControl.cpp" line="77"/>
     1045        <location filename="../VBoxManageBandwidthControl.cpp" line="75"/>
    9621046        <source>Invalid unit suffix. Valid suffixes are: k, m, g, K, M, G
    9631047</source>
     
    9651049    </message>
    9661050    <message>
     1051        <location filename="../VBoxManageBandwidthControl.cpp" line="79"/>
     1052        <source>Trailing spaces in limit!
     1053</source>
     1054        <translation type="unfinished"></translation>
     1055    </message>
     1056    <message>
    9671057        <location filename="../VBoxManageBandwidthControl.cpp" line="81"/>
    968         <source>Trailing spaces in limit!
     1058        <source>No digits in limit specifier
    9691059</source>
    9701060        <translation type="unfinished"></translation>
     
    9721062    <message>
    9731063        <location filename="../VBoxManageBandwidthControl.cpp" line="83"/>
    974         <source>No digits in limit specifier
    975 </source>
    976         <translation type="unfinished"></translation>
    977     </message>
    978     <message>
    979         <location filename="../VBoxManageBandwidthControl.cpp" line="85"/>
    9801064        <source>Invalid limit specifier
    9811065</source>
     
    9831067    </message>
    9841068    <message>
    985         <location filename="../VBoxManageBandwidthControl.cpp" line="88"/>
     1069        <location filename="../VBoxManageBandwidthControl.cpp" line="86"/>
    9861070        <source>Limit cannot be negative
    9871071</source>
     
    9891073    </message>
    9901074    <message>
    991         <location filename="../VBoxManageBandwidthControl.cpp" line="115"/>
     1075        <location filename="../VBoxManageBandwidthControl.cpp" line="114"/>
    9921076        <source>Bandwidth group name must not be empty!
    9931077</source>
     
    9951079    </message>
    9961080    <message>
    997         <location filename="../VBoxManageBandwidthControl.cpp" line="175"/>
     1081        <location filename="../VBoxManageBandwidthControl.cpp" line="174"/>
    9981082        <source>Invalid bandwidth group type
    9991083</source>
     
    10011085    </message>
    10021086    <message>
    1003         <location filename="../VBoxManageBandwidthControl.cpp" line="315"/>
     1087        <location filename="../VBoxManageBandwidthControl.cpp" line="318"/>
    10041088        <source>Too few parameters</source>
    10051089        <translation type="unfinished"></translation>
    10061090    </message>
    10071091    <message>
    1008         <location filename="../VBoxManageBandwidthControl.cpp" line="317"/>
     1092        <location filename="../VBoxManageBandwidthControl.cpp" line="320"/>
    10091093        <source>Too many parameters</source>
    10101094        <translation type="unfinished"></translation>
    10111095    </message>
    10121096    <message>
    1013         <location filename="../VBoxManageBandwidthControl.cpp" line="338"/>
     1097        <location filename="../VBoxManageBandwidthControl.cpp" line="341"/>
    10141098        <source>Bandwidth groups cannot be created while the VM is running
    10151099</source>
     
    10171101    </message>
    10181102    <message>
    1019         <location filename="../VBoxManageBandwidthControl.cpp" line="347"/>
     1103        <location filename="../VBoxManageBandwidthControl.cpp" line="350"/>
    10201104        <source>Bandwidth groups cannot be deleted while the VM is running
    10211105</source>
     
    10231107    </message>
    10241108    <message>
    1025         <location filename="../VBoxManageBandwidthControl.cpp" line="358"/>
     1109        <location filename="../VBoxManageBandwidthControl.cpp" line="361"/>
    10261110        <source>Invalid parameter &apos;%s&apos;</source>
    10271111        <translation type="unfinished"></translation>
     
    10461130    </message>
    10471131    <message>
    1048         <location filename="../VBoxManageCloud.cpp" line="211"/>
    1049         <location filename="../VBoxManageCloud.cpp" line="373"/>
     1132        <location filename="../VBoxManageCloud.cpp" line="210"/>
     1133        <location filename="../VBoxManageCloud.cpp" line="371"/>
    10501134        <source>Parameter &apos;compartment&apos; is empty or absent.
    10511135Trying to get the compartment from the passed cloud profile &apos;%s&apos;
     
    10541138    </message>
    10551139    <message>
    1056         <location filename="../VBoxManageCloud.cpp" line="220"/>
     1140        <location filename="../VBoxManageCloud.cpp" line="219"/>
     1141        <location filename="../VBoxManageCloud.cpp" line="380"/>
     1142        <source>Found the compartment &apos;%s&apos;:
     1143</source>
     1144        <translation type="unfinished"></translation>
     1145    </message>
     1146    <message>
     1147        <location filename="../VBoxManageCloud.cpp" line="221"/>
    10571148        <location filename="../VBoxManageCloud.cpp" line="382"/>
    1058         <source>Found the compartment &apos;%s&apos;:
    1059 </source>
    1060         <translation type="unfinished"></translation>
    1061     </message>
    1062     <message>
    1063         <location filename="../VBoxManageCloud.cpp" line="222"/>
    1064         <location filename="../VBoxManageCloud.cpp" line="384"/>
    10651149        <source>Parameter --compartment-id is required</source>
    10661150        <translation type="unfinished"></translation>
    10671151    </message>
    10681152    <message>
    1069         <location filename="../VBoxManageCloud.cpp" line="239"/>
     1153        <location filename="../VBoxManageCloud.cpp" line="238"/>
    10701154        <source>Reply is in the form &apos;instance name&apos; = &apos;instance id&apos;
    10711155</source>
     
    10731157    </message>
    10741158    <message>
    1075         <location filename="../VBoxManageCloud.cpp" line="248"/>
     1159        <location filename="../VBoxManageCloud.cpp" line="247"/>
    10761160        <source>Failed to list instances</source>
    10771161        <translation type="unfinished"></translation>
    10781162    </message>
    10791163    <message>
    1080         <location filename="../VBoxManageCloud.cpp" line="257"/>
     1164        <location filename="../VBoxManageCloud.cpp" line="256"/>
    10811165        <source>The list of the instances for the cloud profile &apos;%ls&apos;
    10821166and compartment &apos;%s&apos;:
     
    10851169    </message>
    10861170    <message>
    1087         <location filename="../VBoxManageCloud.cpp" line="325"/>
     1171        <location filename="../VBoxManageCloud.cpp" line="324"/>
    10881172        <source>Unknown cloud image state &quot;%s&quot;</source>
    10891173        <translation type="unfinished"></translation>
    10901174    </message>
    10911175    <message>
    1092         <location filename="../VBoxManageCloud.cpp" line="401"/>
     1176        <location filename="../VBoxManageCloud.cpp" line="399"/>
    10931177        <source>Reply is in the form &apos;image name&apos; = &apos;image id&apos;
    10941178</source>
     
    10961180    </message>
    10971181    <message>
    1098         <location filename="../VBoxManageCloud.cpp" line="409"/>
     1182        <location filename="../VBoxManageCloud.cpp" line="407"/>
    10991183        <source>Failed to list images</source>
    11001184        <translation type="unfinished"></translation>
    11011185    </message>
    11021186    <message>
    1103         <location filename="../VBoxManageCloud.cpp" line="418"/>
     1187        <location filename="../VBoxManageCloud.cpp" line="416"/>
    11041188        <source>The list of the images for the cloud profile &apos;%ls&apos;
    11051189and compartment &apos;%s&apos;:
     
    11081192    </message>
    11091193    <message>
    1110         <location filename="../VBoxManageCloud.cpp" line="475"/>
    1111         <location filename="../VBoxManageCloud.cpp" line="546"/>
    1112         <location filename="../VBoxManageCloud.cpp" line="729"/>
    1113         <location filename="../VBoxManageCloud.cpp" line="881"/>
    1114         <location filename="../VBoxManageCloud.cpp" line="964"/>
    1115         <location filename="../VBoxManageCloud.cpp" line="1047"/>
    1116         <location filename="../VBoxManageCloud.cpp" line="1145"/>
    1117         <location filename="../VBoxManageCloud.cpp" line="1222"/>
    1118         <location filename="../VBoxManageCloud.cpp" line="1329"/>
    1119         <location filename="../VBoxManageCloud.cpp" line="1525"/>
    1120         <location filename="../VBoxManageCloud.cpp" line="1611"/>
    1121         <location filename="../VBoxManageCloud.cpp" line="1703"/>
    1122         <location filename="../VBoxManageCloud.cpp" line="1799"/>
     1194        <location filename="../VBoxManageCloud.cpp" line="473"/>
     1195        <location filename="../VBoxManageCloud.cpp" line="553"/>
     1196        <location filename="../VBoxManageCloud.cpp" line="747"/>
     1197        <location filename="../VBoxManageCloud.cpp" line="898"/>
     1198        <location filename="../VBoxManageCloud.cpp" line="980"/>
     1199        <location filename="../VBoxManageCloud.cpp" line="1062"/>
     1200        <location filename="../VBoxManageCloud.cpp" line="1159"/>
     1201        <location filename="../VBoxManageCloud.cpp" line="1236"/>
     1202        <location filename="../VBoxManageCloud.cpp" line="1342"/>
     1203        <location filename="../VBoxManageCloud.cpp" line="1537"/>
     1204        <location filename="../VBoxManageCloud.cpp" line="1622"/>
     1205        <location filename="../VBoxManageCloud.cpp" line="1713"/>
     1206        <location filename="../VBoxManageCloud.cpp" line="1808"/>
    11231207        <source>Empty command parameter list, show help.
    11241208</source>
     
    11261210    </message>
    11271211    <message>
    1128         <location filename="../VBoxManageCloud.cpp" line="645"/>
     1212        <location filename="../VBoxManageCloud.cpp" line="663"/>
    11291213        <source>Warning!!! Public SSH key doesn&apos;t present in the passed arguments...
    11301214</source>
     
    11321216    </message>
    11331217    <message>
    1134         <location filename="../VBoxManageCloud.cpp" line="648"/>
     1218        <location filename="../VBoxManageCloud.cpp" line="666"/>
    11351219        <source>Parameters --image-id and --boot-volume-id are mutually exclusive. Only one of them must be presented.</source>
    11361220        <translation type="unfinished"></translation>
    11371221    </message>
    11381222    <message>
    1139         <location filename="../VBoxManageCloud.cpp" line="652"/>
     1223        <location filename="../VBoxManageCloud.cpp" line="670"/>
    11401224        <source>Missing parameter --image-id or --boot-volume-id. One of them must be presented.</source>
    11411225        <translation type="unfinished"></translation>
    11421226    </message>
    11431227    <message>
    1144         <location filename="../VBoxManageCloud.cpp" line="674"/>
     1228        <location filename="../VBoxManageCloud.cpp" line="692"/>
    11451229        <source>Checking the cloud image with id &apos;%s&apos;...
    11461230</source>
     
    11481232    </message>
    11491233    <message>
    1150         <location filename="../VBoxManageCloud.cpp" line="682"/>
     1234        <location filename="../VBoxManageCloud.cpp" line="700"/>
    11511235        <source>Checking the cloud image failed</source>
    11521236        <translation type="unfinished"></translation>
    11531237    </message>
    11541238    <message>
    1155         <location filename="../VBoxManageCloud.cpp" line="688"/>
     1239        <location filename="../VBoxManageCloud.cpp" line="706"/>
    11561240        <source>Creating cloud instance with name &apos;%s&apos; from the image &apos;%s&apos;...
    11571241</source>
     
    11591243    </message>
    11601244    <message>
    1161         <location filename="../VBoxManageCloud.cpp" line="691"/>
     1245        <location filename="../VBoxManageCloud.cpp" line="709"/>
    11621246        <source>Creating cloud instance with name &apos;%s&apos; from the boot volume &apos;%s&apos;...
    11631247</source>
     
    11651249    </message>
    11661250    <message>
    1167         <location filename="../VBoxManageCloud.cpp" line="697"/>
     1251        <location filename="../VBoxManageCloud.cpp" line="715"/>
    11681252        <source>Creating cloud instance failed</source>
    11691253        <translation type="unfinished"></translation>
    11701254    </message>
    11711255    <message>
    1172         <location filename="../VBoxManageCloud.cpp" line="700"/>
     1256        <location filename="../VBoxManageCloud.cpp" line="718"/>
    11731257        <source>Cloud instance was created successfully
    11741258</source>
     
    11761260    </message>
    11771261    <message>
    1178         <location filename="../VBoxManageCloud.cpp" line="744"/>
    1179         <location filename="../VBoxManageCloud.cpp" line="896"/>
    1180         <location filename="../VBoxManageCloud.cpp" line="979"/>
    1181         <location filename="../VBoxManageCloud.cpp" line="1062"/>
    1182         <location filename="../VBoxManageCloud.cpp" line="1373"/>
    1183         <location filename="../VBoxManageCloud.cpp" line="1718"/>
     1262        <location filename="../VBoxManageCloud.cpp" line="762"/>
     1263        <location filename="../VBoxManageCloud.cpp" line="913"/>
     1264        <location filename="../VBoxManageCloud.cpp" line="995"/>
     1265        <location filename="../VBoxManageCloud.cpp" line="1077"/>
     1266        <location filename="../VBoxManageCloud.cpp" line="1386"/>
     1267        <location filename="../VBoxManageCloud.cpp" line="1728"/>
    11841268        <source>Duplicate parameter: --id</source>
    11851269        <translation type="unfinished"></translation>
    11861270    </message>
    11871271    <message>
    1188         <location filename="../VBoxManageCloud.cpp" line="748"/>
    1189         <location filename="../VBoxManageCloud.cpp" line="900"/>
    1190         <location filename="../VBoxManageCloud.cpp" line="983"/>
    1191         <location filename="../VBoxManageCloud.cpp" line="1066"/>
    1192         <location filename="../VBoxManageCloud.cpp" line="1377"/>
    1193         <location filename="../VBoxManageCloud.cpp" line="1722"/>
     1272        <location filename="../VBoxManageCloud.cpp" line="766"/>
     1273        <location filename="../VBoxManageCloud.cpp" line="917"/>
     1274        <location filename="../VBoxManageCloud.cpp" line="999"/>
     1275        <location filename="../VBoxManageCloud.cpp" line="1081"/>
     1276        <location filename="../VBoxManageCloud.cpp" line="1390"/>
     1277        <location filename="../VBoxManageCloud.cpp" line="1732"/>
    11941278        <source>Empty parameter: --id</source>
    11951279        <translation type="unfinished"></translation>
    11961280    </message>
    11971281    <message>
    1198         <location filename="../VBoxManageCloud.cpp" line="770"/>
    1199         <location filename="../VBoxManageCloud.cpp" line="922"/>
    1200         <location filename="../VBoxManageCloud.cpp" line="1005"/>
    1201         <location filename="../VBoxManageCloud.cpp" line="1088"/>
    1202         <location filename="../VBoxManageCloud.cpp" line="1427"/>
    1203         <location filename="../VBoxManageCloud.cpp" line="1745"/>
     1282        <location filename="../VBoxManageCloud.cpp" line="787"/>
     1283        <location filename="../VBoxManageCloud.cpp" line="938"/>
     1284        <location filename="../VBoxManageCloud.cpp" line="1020"/>
     1285        <location filename="../VBoxManageCloud.cpp" line="1102"/>
     1286        <location filename="../VBoxManageCloud.cpp" line="1439"/>
     1287        <location filename="../VBoxManageCloud.cpp" line="1754"/>
    12041288        <source>Missing parameter: --id</source>
    12051289        <translation type="unfinished"></translation>
    12061290    </message>
    12071291    <message>
    1208         <location filename="../VBoxManageCloud.cpp" line="778"/>
     1292        <location filename="../VBoxManageCloud.cpp" line="795"/>
    12091293        <source>Getting information about cloud instance with id %s...
    12101294</source>
     
    12121296    </message>
    12131297    <message>
    1214         <location filename="../VBoxManageCloud.cpp" line="779"/>
     1298        <location filename="../VBoxManageCloud.cpp" line="796"/>
    12151299        <source>Reply is in the form &apos;setting name&apos; = &apos;value&apos;
    12161300</source>
     
    12181302    </message>
    12191303    <message>
    1220         <location filename="../VBoxManageCloud.cpp" line="800"/>
     1304        <location filename="../VBoxManageCloud.cpp" line="817"/>
    12211305        <source>Getting information about cloud instance failed</source>
    12221306        <translation type="unfinished"></translation>
    12231307    </message>
    12241308    <message>
    1225         <location filename="../VBoxManageCloud.cpp" line="802"/>
     1309        <location filename="../VBoxManageCloud.cpp" line="819"/>
    12261310        <source>Cloud instance info (provider &apos;%s&apos;):
    12271311</source>
     
    12291313    </message>
    12301314    <message>
    1231         <location filename="../VBoxManageCloud.cpp" line="813"/>
     1315        <location filename="../VBoxManageCloud.cpp" line="830"/>
    12321316        <source>Availability domain = %ls
    12331317</source>
     
    12351319    </message>
    12361320    <message>
    1237         <location filename="../VBoxManageCloud.cpp" line="813"/>
     1321        <location filename="../VBoxManageCloud.cpp" line="830"/>
    12381322        <source>Availability domain wasn&apos;t found
    12391323</source>
     
    12411325    </message>
    12421326    <message>
    1243         <location filename="../VBoxManageCloud.cpp" line="814"/>
     1327        <location filename="../VBoxManageCloud.cpp" line="831"/>
    12441328        <source>Instance displayed name = %ls
    12451329</source>
     
    12471331    </message>
    12481332    <message>
    1249         <location filename="../VBoxManageCloud.cpp" line="814"/>
     1333        <location filename="../VBoxManageCloud.cpp" line="831"/>
    12501334        <source>Instance displayed name wasn&apos;t found
    12511335</source>
     
    12531337    </message>
    12541338    <message>
    1255         <location filename="../VBoxManageCloud.cpp" line="815"/>
     1339        <location filename="../VBoxManageCloud.cpp" line="832"/>
    12561340        <source>Instance state = %ls
    12571341</source>
     
    12591343    </message>
    12601344    <message>
    1261         <location filename="../VBoxManageCloud.cpp" line="815"/>
     1345        <location filename="../VBoxManageCloud.cpp" line="832"/>
    12621346        <source>Instance state wasn&apos;t found
    12631347</source>
     
    12651349    </message>
    12661350    <message>
    1267         <location filename="../VBoxManageCloud.cpp" line="816"/>
     1351        <location filename="../VBoxManageCloud.cpp" line="833"/>
    12681352        <source>Instance Id = %ls
    12691353</source>
     
    12711355    </message>
    12721356    <message>
    1273         <location filename="../VBoxManageCloud.cpp" line="816"/>
     1357        <location filename="../VBoxManageCloud.cpp" line="833"/>
    12741358        <source>Instance Id wasn&apos;t found
    12751359</source>
     
    12771361    </message>
    12781362    <message>
    1279         <location filename="../VBoxManageCloud.cpp" line="817"/>
     1363        <location filename="../VBoxManageCloud.cpp" line="834"/>
    12801364        <source>Instance name = %ls
    12811365</source>
     
    12831367    </message>
    12841368    <message>
    1285         <location filename="../VBoxManageCloud.cpp" line="817"/>
     1369        <location filename="../VBoxManageCloud.cpp" line="834"/>
    12861370        <source>Instance name wasn&apos;t found
    12871371</source>
     
    12891373    </message>
    12901374    <message>
    1291         <location filename="../VBoxManageCloud.cpp" line="818"/>
     1375        <location filename="../VBoxManageCloud.cpp" line="835"/>
    12921376        <source>Bootable image Id = %ls
    12931377</source>
     
    12951379    </message>
    12961380    <message>
    1297         <location filename="../VBoxManageCloud.cpp" line="819"/>
     1381        <location filename="../VBoxManageCloud.cpp" line="836"/>
    12981382        <source>Image Id whom the instance is booted up wasn&apos;t found
    12991383</source>
     
    13011385    </message>
    13021386    <message>
    1303         <location filename="../VBoxManageCloud.cpp" line="820"/>
     1387        <location filename="../VBoxManageCloud.cpp" line="837"/>
    13041388        <source>Shape of the instance = %ls
    13051389</source>
     
    13071391    </message>
    13081392    <message>
    1309         <location filename="../VBoxManageCloud.cpp" line="821"/>
     1393        <location filename="../VBoxManageCloud.cpp" line="838"/>
    13101394        <source>The shape of the instance wasn&apos;t found
    13111395</source>
     
    13131397    </message>
    13141398    <message>
    1315         <location filename="../VBoxManageCloud.cpp" line="822"/>
     1399        <location filename="../VBoxManageCloud.cpp" line="839"/>
    13161400        <source>Type of guest OS = %ls
    13171401</source>
     
    13191403    </message>
    13201404    <message>
    1321         <location filename="../VBoxManageCloud.cpp" line="822"/>
     1405        <location filename="../VBoxManageCloud.cpp" line="839"/>
    13221406        <source>Type of guest OS wasn&apos;t found
    13231407</source>
     
    13251409    </message>
    13261410    <message>
    1327         <location filename="../VBoxManageCloud.cpp" line="823"/>
     1411        <location filename="../VBoxManageCloud.cpp" line="840"/>
    13281412        <source>RAM = %ls MB
    13291413</source>
     
    13311415    </message>
    13321416    <message>
    1333         <location filename="../VBoxManageCloud.cpp" line="823"/>
     1417        <location filename="../VBoxManageCloud.cpp" line="840"/>
    13341418        <source>Value for RAM wasn&apos;t found
    13351419</source>
     
    13371421    </message>
    13381422    <message>
    1339         <location filename="../VBoxManageCloud.cpp" line="824"/>
     1423        <location filename="../VBoxManageCloud.cpp" line="841"/>
    13401424        <source>CPUs = %ls
    13411425</source>
     
    13431427    </message>
    13441428    <message>
    1345         <location filename="../VBoxManageCloud.cpp" line="824"/>
     1429        <location filename="../VBoxManageCloud.cpp" line="841"/>
    13461430        <source>Numbers of CPUs weren&apos;t found
    13471431</source>
     
    13491433    </message>
    13501434    <message>
    1351         <location filename="../VBoxManageCloud.cpp" line="825"/>
     1435        <location filename="../VBoxManageCloud.cpp" line="842"/>
    13521436        <source>Instance public IP = %ls
    13531437</source>
     
    13551439    </message>
    13561440    <message>
    1357         <location filename="../VBoxManageCloud.cpp" line="825"/>
     1441        <location filename="../VBoxManageCloud.cpp" line="842"/>
    13581442        <source>Public IP wasn&apos;t found
    13591443</source>
     
    13611445    </message>
    13621446    <message>
    1363         <location filename="../VBoxManageCloud.cpp" line="826"/>
     1447        <location filename="../VBoxManageCloud.cpp" line="843"/>
    13641448        <source>Free-form tags or metadata weren&apos;t found
    13651449</source>
     
    13671451    </message>
    13681452    <message>
    1369         <location filename="../VBoxManageCloud.cpp" line="827"/>
     1453        <location filename="../VBoxManageCloud.cpp" line="844"/>
    13701454        <source>Cloud-init script wasn&apos;t found
    13711455</source>
     
    13731457    </message>
    13741458    <message>
    1375         <location filename="../VBoxManageCloud.cpp" line="930"/>
     1459        <location filename="../VBoxManageCloud.cpp" line="946"/>
    13761460        <source>Starting cloud instance with id %s...
    13771461</source>
     
    13791463    </message>
    13801464    <message>
    1381         <location filename="../VBoxManageCloud.cpp" line="937"/>
     1465        <location filename="../VBoxManageCloud.cpp" line="953"/>
    13821466        <source>Starting the cloud instance failed</source>
    13831467        <translation type="unfinished"></translation>
    13841468    </message>
    13851469    <message>
    1386         <location filename="../VBoxManageCloud.cpp" line="940"/>
     1470        <location filename="../VBoxManageCloud.cpp" line="956"/>
    13871471        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was started
    13881472</source>
     
    13901474    </message>
    13911475    <message>
    1392         <location filename="../VBoxManageCloud.cpp" line="1013"/>
     1476        <location filename="../VBoxManageCloud.cpp" line="1028"/>
    13931477        <source>Pausing cloud instance with id %s...
    13941478</source>
     
    13961480    </message>
    13971481    <message>
    1398         <location filename="../VBoxManageCloud.cpp" line="1020"/>
     1482        <location filename="../VBoxManageCloud.cpp" line="1035"/>
    13991483        <source>Pause the cloud instance failed</source>
    14001484        <translation type="unfinished"></translation>
    14011485    </message>
    14021486    <message>
    1403         <location filename="../VBoxManageCloud.cpp" line="1023"/>
     1487        <location filename="../VBoxManageCloud.cpp" line="1038"/>
    14041488        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was paused
    14051489</source>
     
    14071491    </message>
    14081492    <message>
    1409         <location filename="../VBoxManageCloud.cpp" line="1097"/>
     1493        <location filename="../VBoxManageCloud.cpp" line="1111"/>
    14101494        <source>Terminating cloud instance with id %s...
    14111495</source>
     
    14131497    </message>
    14141498    <message>
    1415         <location filename="../VBoxManageCloud.cpp" line="1104"/>
     1499        <location filename="../VBoxManageCloud.cpp" line="1118"/>
    14161500        <source>Termination the cloud instance failed</source>
    14171501        <translation type="unfinished"></translation>
    14181502    </message>
    14191503    <message>
    1420         <location filename="../VBoxManageCloud.cpp" line="1107"/>
     1504        <location filename="../VBoxManageCloud.cpp" line="1121"/>
    14211505        <source>Cloud instance with id %s (provider = &apos;%s&apos;, profile = &apos;%s&apos;) was terminated
    14221506</source>
     
    14241508    </message>
    14251509    <message>
    1426         <location filename="../VBoxManageCloud.cpp" line="1280"/>
     1510        <location filename="../VBoxManageCloud.cpp" line="1293"/>
    14271511        <source>Conflicting parameters: --instance-id and --object-name can&apos;t be used together. Choose one.</source>
    14281512        <translation type="unfinished"></translation>
    14291513    </message>
    14301514    <message>
    1431         <location filename="../VBoxManageCloud.cpp" line="1289"/>
     1515        <location filename="../VBoxManageCloud.cpp" line="1302"/>
    14321516        <source>Creating cloud image with name &apos;%s&apos; from the instance &apos;%s&apos;...
    14331517</source>
     
    14351519    </message>
    14361520    <message>
    1437         <location filename="../VBoxManageCloud.cpp" line="1292"/>
     1521        <location filename="../VBoxManageCloud.cpp" line="1305"/>
    14381522        <source>Creating cloud image with name &apos;%s&apos; from the object &apos;%s&apos; in the bucket &apos;%s&apos;...
    14391523</source>
     
    14411525    </message>
    14421526    <message>
    1443         <location filename="../VBoxManageCloud.cpp" line="1300"/>
     1527        <location filename="../VBoxManageCloud.cpp" line="1313"/>
    14441528        <source>Creating cloud image failed</source>
    14451529        <translation type="unfinished"></translation>
    14461530    </message>
    14471531    <message>
    1448         <location filename="../VBoxManageCloud.cpp" line="1303"/>
     1532        <location filename="../VBoxManageCloud.cpp" line="1316"/>
    14491533        <source>Cloud image was created successfully
    14501534</source>
     
    14521536    </message>
    14531537    <message>
    1454         <location filename="../VBoxManageCloud.cpp" line="1349"/>
     1538        <location filename="../VBoxManageCloud.cpp" line="1362"/>
    14551539        <source>Duplicate parameter: --bucket-name</source>
    14561540        <translation type="unfinished"></translation>
    14571541    </message>
    14581542    <message>
    1459         <location filename="../VBoxManageCloud.cpp" line="1353"/>
     1543        <location filename="../VBoxManageCloud.cpp" line="1366"/>
    14601544        <source>Empty parameter: --bucket-name</source>
    14611545        <translation type="unfinished"></translation>
    14621546    </message>
    14631547    <message>
    1464         <location filename="../VBoxManageCloud.cpp" line="1361"/>
     1548        <location filename="../VBoxManageCloud.cpp" line="1374"/>
    14651549        <source>Duplicate parameter: --object-name</source>
    14661550        <translation type="unfinished"></translation>
    14671551    </message>
    14681552    <message>
    1469         <location filename="../VBoxManageCloud.cpp" line="1365"/>
     1553        <location filename="../VBoxManageCloud.cpp" line="1378"/>
    14701554        <source>Empty parameter: --object-name</source>
    14711555        <translation type="unfinished"></translation>
    14721556    </message>
    14731557    <message>
    1474         <location filename="../VBoxManageCloud.cpp" line="1385"/>
     1558        <location filename="../VBoxManageCloud.cpp" line="1398"/>
    14751559        <source>Duplicate parameter: --display-name</source>
    14761560        <translation type="unfinished"></translation>
    14771561    </message>
    14781562    <message>
    1479         <location filename="../VBoxManageCloud.cpp" line="1389"/>
     1563        <location filename="../VBoxManageCloud.cpp" line="1402"/>
    14801564        <source>Empty parameter: --display-name</source>
    14811565        <translation type="unfinished"></translation>
    14821566    </message>
    14831567    <message>
    1484         <location filename="../VBoxManageCloud.cpp" line="1397"/>
     1568        <location filename="../VBoxManageCloud.cpp" line="1410"/>
    14851569        <source>Duplicate parameter: --launch-mode</source>
    14861570        <translation type="unfinished"></translation>
    14871571    </message>
    14881572    <message>
    1489         <location filename="../VBoxManageCloud.cpp" line="1401"/>
     1573        <location filename="../VBoxManageCloud.cpp" line="1414"/>
    14901574        <source>Empty parameter: --launch-mode</source>
    14911575        <translation type="unfinished"></translation>
    14921576    </message>
    14931577    <message>
    1494         <location filename="../VBoxManageCloud.cpp" line="1432"/>
     1578        <location filename="../VBoxManageCloud.cpp" line="1444"/>
    14951579        <source>Missing parameter: --bucket-name</source>
    14961580        <translation type="unfinished"></translation>
    14971581    </message>
    14981582    <message>
    1499         <location filename="../VBoxManageCloud.cpp" line="1452"/>
     1583        <location filename="../VBoxManageCloud.cpp" line="1464"/>
    15001584        <source>Exporting image &apos;%s&apos; to the Cloud with name &apos;%s&apos;...
    15011585</source>
     
    15031587    </message>
    15041588    <message>
    1505         <location filename="../VBoxManageCloud.cpp" line="1455"/>
     1589        <location filename="../VBoxManageCloud.cpp" line="1467"/>
    15061590        <source>Exporting image &apos;%s&apos; to the Cloud with default name
    15071591</source>
     
    15091593    </message>
    15101594    <message>
    1511         <location filename="../VBoxManageCloud.cpp" line="1483"/>
     1595        <location filename="../VBoxManageCloud.cpp" line="1495"/>
    15121596        <source>Image %s was found
    15131597</source>
     
    15151599    </message>
    15161600    <message>
    1517         <location filename="../VBoxManageCloud.cpp" line="1490"/>
     1601        <location filename="../VBoxManageCloud.cpp" line="1502"/>
    15181602        <source>Process of exporting the image to the Cloud was interrupted. The image wasn&apos;t found.
    15191603</source>
     
    15211605    </message>
    15221606    <message>
    1523         <location filename="../VBoxManageCloud.cpp" line="1499"/>
     1607        <location filename="../VBoxManageCloud.cpp" line="1511"/>
    15241608        <source>Export the image to the Cloud failed</source>
    15251609        <translation type="unfinished"></translation>
    15261610    </message>
    15271611    <message>
    1528         <location filename="../VBoxManageCloud.cpp" line="1502"/>
     1612        <location filename="../VBoxManageCloud.cpp" line="1514"/>
    15291613        <source>Export the image to the Cloud was successfull
    15301614</source>
     
    15321616    </message>
    15331617    <message>
    1534         <location filename="../VBoxManageCloud.cpp" line="1576"/>
     1618        <location filename="../VBoxManageCloud.cpp" line="1587"/>
    15351619        <source>Creating an object &apos;%s&apos; from the cloud image &apos;%s&apos;...
    15361620</source>
     
    15381622    </message>
    15391623    <message>
    1540         <location filename="../VBoxManageCloud.cpp" line="1583"/>
     1624        <location filename="../VBoxManageCloud.cpp" line="1594"/>
    15411625        <source>Cloud image import failed</source>
    15421626        <translation type="unfinished"></translation>
    15431627    </message>
    15441628    <message>
    1545         <location filename="../VBoxManageCloud.cpp" line="1587"/>
     1629        <location filename="../VBoxManageCloud.cpp" line="1598"/>
    15461630        <source>Cloud image was imported successfully. Find the downloaded object with the name %s in the system temp folder (find the possible environment variables like TEMP, TMP and etc.)
    15471631</source>
     
    15491633    </message>
    15501634    <message>
    1551         <location filename="../VBoxManageCloud.cpp" line="1648"/>
     1635        <location filename="../VBoxManageCloud.cpp" line="1658"/>
    15521636        <source>Getting information about the cloud image with id &apos;%s&apos;...
    15531637</source>
     
    15551639    </message>
    15561640    <message>
    1557         <location filename="../VBoxManageCloud.cpp" line="1654"/>
     1641        <location filename="../VBoxManageCloud.cpp" line="1664"/>
    15581642        <source>Reply is in the form &apos;image property&apos; = &apos;value&apos;
    15591643</source>
     
    15611645    </message>
    15621646    <message>
    1563         <location filename="../VBoxManageCloud.cpp" line="1662"/>
     1647        <location filename="../VBoxManageCloud.cpp" line="1672"/>
    15641648        <source>Getting information about the cloud image failed</source>
    15651649        <translation type="unfinished"></translation>
    15661650    </message>
    15671651    <message>
    1568         <location filename="../VBoxManageCloud.cpp" line="1668"/>
     1652        <location filename="../VBoxManageCloud.cpp" line="1678"/>
    15691653        <source>General information about the image:
    15701654</source>
     
    15721656    </message>
    15731657    <message>
    1574         <location filename="../VBoxManageCloud.cpp" line="1754"/>
     1658        <location filename="../VBoxManageCloud.cpp" line="1763"/>
    15751659        <source>Deleting cloud image with id %s...
    15761660</source>
     
    15781662    </message>
    15791663    <message>
    1580         <location filename="../VBoxManageCloud.cpp" line="1761"/>
     1664        <location filename="../VBoxManageCloud.cpp" line="1770"/>
    15811665        <source>Deleting cloud image failed</source>
    15821666        <translation type="unfinished"></translation>
    15831667    </message>
    15841668    <message>
    1585         <location filename="../VBoxManageCloud.cpp" line="1764"/>
     1669        <location filename="../VBoxManageCloud.cpp" line="1773"/>
    15861670        <source>Cloud image was deleted successfully
    15871671</source>
     
    15891673    </message>
    15901674    <message>
    1591         <location filename="../VBoxManageCloud.cpp" line="1947"/>
    1592         <location filename="../VBoxManageCloud.cpp" line="1998"/>
    1593         <location filename="../VBoxManageCloud.cpp" line="2072"/>
    1594         <location filename="../VBoxManageCloud.cpp" line="2119"/>
     1675        <location filename="../VBoxManageCloud.cpp" line="1956"/>
     1676        <location filename="../VBoxManageCloud.cpp" line="2007"/>
     1677        <location filename="../VBoxManageCloud.cpp" line="2081"/>
     1678        <location filename="../VBoxManageCloud.cpp" line="2128"/>
    15951679        <source>Missing --name parameter</source>
    15961680        <translation type="unfinished"></translation>
    15971681    </message>
    15981682    <message>
    1599         <location filename="../VBoxManageCloud.cpp" line="1949"/>
     1683        <location filename="../VBoxManageCloud.cpp" line="1958"/>
    16001684        <source>Missing --network-id parameter</source>
    16011685        <translation type="unfinished"></translation>
    16021686    </message>
    16031687    <message>
    1604         <location filename="../VBoxManageCloud.cpp" line="1961"/>
     1688        <location filename="../VBoxManageCloud.cpp" line="1970"/>
    16051689        <source>Cloud network was created successfully
    16061690</source>
     
    16081692    </message>
    16091693    <message>
    1610         <location filename="../VBoxManageCloud.cpp" line="2006"/>
     1694        <location filename="../VBoxManageCloud.cpp" line="2015"/>
    16111695        <source>Name:            %ls
    16121696</source>
     
    16141698    </message>
    16151699    <message>
    1616         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1700        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    16171701        <source>State:           %s
    16181702</source>
     
    16201704    </message>
    16211705    <message>
    1622         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1706        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    16231707        <source>Enabled</source>
    16241708        <translation type="unfinished"></translation>
    16251709    </message>
    16261710    <message>
    1627         <location filename="../VBoxManageCloud.cpp" line="2009"/>
     1711        <location filename="../VBoxManageCloud.cpp" line="2018"/>
    16281712        <source>Disabled</source>
    16291713        <translation type="unfinished"></translation>
    16301714    </message>
    16311715    <message>
    1632         <location filename="../VBoxManageCloud.cpp" line="2012"/>
     1716        <location filename="../VBoxManageCloud.cpp" line="2021"/>
    16331717        <source>CloudProvider:   %ls
    16341718</source>
     
    16361720    </message>
    16371721    <message>
    1638         <location filename="../VBoxManageCloud.cpp" line="2015"/>
     1722        <location filename="../VBoxManageCloud.cpp" line="2024"/>
    16391723        <source>CloudProfile:    %ls
    16401724</source>
     
    16421726    </message>
    16431727    <message>
    1644         <location filename="../VBoxManageCloud.cpp" line="2018"/>
     1728        <location filename="../VBoxManageCloud.cpp" line="2027"/>
    16451729        <source>CloudNetworkId:  %ls
    16461730</source>
     
    16481732    </message>
    16491733    <message>
    1650         <location filename="../VBoxManageCloud.cpp" line="2020"/>
     1734        <location filename="../VBoxManageCloud.cpp" line="2029"/>
    16511735        <source>VBoxNetworkName: %ls
    16521736
     
    16551739    </message>
    16561740    <message>
    1657         <location filename="../VBoxManageCloud.cpp" line="2082"/>
     1741        <location filename="../VBoxManageCloud.cpp" line="2091"/>
    16581742        <source>Cloud network %ls was updated successfully
    16591743</source>
     
    16611745    </message>
    16621746    <message>
    1663         <location filename="../VBoxManageCloud.cpp" line="2132"/>
     1747        <location filename="../VBoxManageCloud.cpp" line="2141"/>
    16641748        <source>Cloud network %ls was deleted successfully
    16651749</source>
     
    16671751    </message>
    16681752    <message>
    1669         <location filename="../VBoxManageCloud.cpp" line="2164"/>
    1670         <source>Failed to compose path to the unattended installer script templates (%Rrc)</source>
    1671         <translation type="unfinished"></translation>
    1672     </message>
    1673     <message>
    1674         <location filename="../VBoxManageCloud.cpp" line="2289"/>
    1675         <source>Failed to obtain system properties.</source>
    1676         <translation type="unfinished"></translation>
    1677     </message>
    1678     <message>
    1679         <location filename="../VBoxManageCloud.cpp" line="2296"/>
    1680         <source>Failed to obtain proxy mode.</source>
    1681         <translation type="unfinished"></translation>
    1682     </message>
    1683     <message>
    1684         <location filename="../VBoxManageCloud.cpp" line="2305"/>
    1685         <source>Failed to obtain proxy URL.</source>
    1686         <translation type="unfinished"></translation>
    1687     </message>
    1688     <message>
    1689         <location filename="../VBoxManageCloud.cpp" line="2311"/>
    1690         <source>Failed to get system proxy for https://dl.fedoraproject.org. Will use direct connection.</source>
    1691         <translation type="unfinished"></translation>
    1692     </message>
    1693     <message>
    1694         <location filename="../VBoxManageCloud.cpp" line="2320"/>
    1695         <source>Failed to obtain default machine folder.</source>
    1696         <translation type="unfinished"></translation>
    1697     </message>
    1698     <message>
    1699         <location filename="../VBoxManageCloud.cpp" line="2325"/>
    1700         <source>Failed to obtain default guest additions ISO path.</source>
    1701         <translation type="unfinished"></translation>
    1702     </message>
    1703     <message>
    1704         <location filename="../VBoxManageCloud.cpp" line="2329"/>
    1705         <source>The default guest additions ISO path is empty nor it is provided as --guest-additions-iso parameter. Cannot proceed without it.</source>
    1706         <translation type="unfinished"></translation>
    1707     </message>
    1708     <message>
    1709         <location filename="../VBoxManageCloud.cpp" line="2340"/>
    1710         <source>Failed to compose a path to the local gateway image (%Rrc)</source>
    1711         <translation type="unfinished"></translation>
    1712     </message>
    1713     <message>
    1714         <location filename="../VBoxManageCloud.cpp" line="2348"/>
    1715         <source>Local gateway image already exists, skipping image preparation step.
    1716 </source>
    1717         <translation type="unfinished"></translation>
    1718     </message>
    1719     <message>
    1720         <location filename="../VBoxManageCloud.cpp" line="2352"/>
    1721         <source>Preparing unattended install of temporary local gateway machine from %ls...
    1722 </source>
    1723         <translation type="unfinished"></translation>
    1724     </message>
    1725     <message>
    1726         <location filename="../VBoxManageCloud.cpp" line="2356"/>
    1727         <source>Failed to open %ls.</source>
    1728         <translation type="unfinished"></translation>
    1729     </message>
    1730     <message>
    1731         <location filename="../VBoxManageCloud.cpp" line="2363"/>
    1732         <source>Failed to create &apos;%ls&apos;.</source>
    1733         <translation type="unfinished"></translation>
    1734     </message>
    1735     <message>
    1736         <location filename="../VBoxManageCloud.cpp" line="2367"/>
    1737         <source>Failed to apply defaults to &apos;%ls&apos;.</source>
    1738         <translation type="unfinished"></translation>
    1739     </message>
    1740     <message>
    1741         <location filename="../VBoxManageCloud.cpp" line="2371"/>
    1742         <source>Failed to adjust CPU count for &apos;%ls&apos;.</source>
    1743         <translation type="unfinished"></translation>
    1744     </message>
    1745     <message>
    1746         <location filename="../VBoxManageCloud.cpp" line="2375"/>
    1747         <source>Failed to adjust memory size for &apos;%ls&apos;.</source>
    1748         <translation type="unfinished"></translation>
    1749     </message>
    1750     <message>
    1751         <location filename="../VBoxManageCloud.cpp" line="2381"/>
    1752         <source>Failed to set attachment type for the second network adapter.</source>
    1753         <translation type="unfinished"></translation>
    1754     </message>
    1755     <message>
    1756         <location filename="../VBoxManageCloud.cpp" line="2385"/>
    1757         <source>Failed to disable the audio adapter.</source>
    1758         <translation type="unfinished"></translation>
    1759     </message>
    1760     <message>
    1761         <location filename="../VBoxManageCloud.cpp" line="2390"/>
    1762         <source>Failed to register &apos;%ls&apos;.</source>
    1763         <translation type="unfinished"></translation>
    1764     </message>
    1765     <message>
    1766         <location filename="../VBoxManageCloud.cpp" line="2394"/>
    1767         <source>Failed to create %ls.</source>
    1768         <translation type="unfinished"></translation>
    1769     </message>
    1770     <message>
    1771         <location filename="../VBoxManageCloud.cpp" line="2405"/>
    1772         <location filename="../VBoxManageCloud.cpp" line="2409"/>
    1773         <source>Failed to create base storage for local gateway image.</source>
    1774         <translation type="unfinished"></translation>
    1775     </message>
    1776     <message>
    1777         <location filename="../VBoxManageCloud.cpp" line="2414"/>
    1778         <location filename="../VBoxManageCloud.cpp" line="2588"/>
    1779         <source>Failed to lock &apos;%ls&apos; for modifications.</source>
    1780         <translation type="unfinished"></translation>
    1781     </message>
    1782     <message>
    1783         <location filename="../VBoxManageCloud.cpp" line="2419"/>
    1784         <location filename="../VBoxManageCloud.cpp" line="2593"/>
    1785         <source>Failed to obtain a mutable machine.</source>
    1786         <translation type="unfinished"></translation>
    1787     </message>
    1788     <message>
    1789         <location filename="../VBoxManageCloud.cpp" line="2423"/>
    1790         <source>Failed to attach HD to &apos;%ls&apos;.</source>
    1791         <translation type="unfinished"></translation>
    1792     </message>
    1793     <message>
    1794         <location filename="../VBoxManageCloud.cpp" line="2427"/>
    1795         <source>Failed to attach ISO to &apos;%ls&apos;.</source>
    1796         <translation type="unfinished"></translation>
    1797     </message>
    1798     <message>
    1799         <location filename="../VBoxManageCloud.cpp" line="2432"/>
    1800         <location filename="../VBoxManageCloud.cpp" line="2605"/>
    1801         <source>Failed to save &apos;%ls&apos; settings.</source>
    1802         <translation type="unfinished"></translation>
    1803     </message>
    1804     <message>
    1805         <location filename="../VBoxManageCloud.cpp" line="2439"/>
    1806         <source>Failed to create unattended installer.</source>
    1807         <translation type="unfinished"></translation>
    1808     </message>
    1809     <message>
    1810         <location filename="../VBoxManageCloud.cpp" line="2443"/>
    1811         <location filename="../VBoxManageCloud.cpp" line="2447"/>
    1812         <source>Failed to set machine for the unattended installer.</source>
    1813         <translation type="unfinished"></translation>
    1814     </message>
    1815     <message>
    1816         <location filename="../VBoxManageCloud.cpp" line="2451"/>
    1817         <source>Failed to set user for the unattended installer.</source>
    1818         <translation type="unfinished"></translation>
    1819     </message>
    1820     <message>
    1821         <location filename="../VBoxManageCloud.cpp" line="2455"/>
    1822         <source>Failed to set password for the unattended installer.</source>
    1823         <translation type="unfinished"></translation>
    1824     </message>
    1825     <message>
    1826         <location filename="../VBoxManageCloud.cpp" line="2459"/>
    1827         <source>Failed to set full user name for the unattended installer.</source>
    1828         <translation type="unfinished"></translation>
    1829     </message>
    1830     <message>
    1831         <location filename="../VBoxManageCloud.cpp" line="2463"/>
    1832         <source>Failed to enable guest addtions for the unattended installer.</source>
    1833         <translation type="unfinished"></translation>
    1834     </message>
    1835     <message>
    1836         <location filename="../VBoxManageCloud.cpp" line="2467"/>
    1837         <source>Failed to set guest addtions ISO path for the unattended installer.</source>
    1838         <translation type="unfinished"></translation>
    1839     </message>
    1840     <message>
    1841         <location filename="../VBoxManageCloud.cpp" line="2471"/>
    1842         <source>Failed to set script template for the unattended installer.</source>
    1843         <translation type="unfinished"></translation>
    1844     </message>
    1845     <message>
    1846         <location filename="../VBoxManageCloud.cpp" line="2475"/>
    1847         <location filename="../VBoxManageCloud.cpp" line="2481"/>
    1848         <source>Failed to set post install script template for the unattended installer.</source>
    1849         <translation type="unfinished"></translation>
    1850     </message>
    1851     <message>
    1852         <location filename="../VBoxManageCloud.cpp" line="2486"/>
    1853         <source>Failed to prepare unattended installation.</source>
    1854         <translation type="unfinished"></translation>
    1855     </message>
    1856     <message>
    1857         <location filename="../VBoxManageCloud.cpp" line="2490"/>
    1858         <source>Failed to construct media for unattended installation.</source>
    1859         <translation type="unfinished"></translation>
    1860     </message>
    1861     <message>
    1862         <location filename="../VBoxManageCloud.cpp" line="2494"/>
    1863         <source>Failed to reconfigure %ls for unattended installation.</source>
    1864         <translation type="unfinished"></translation>
    1865     </message>
    1866     <message>
    1867         <location filename="../VBoxManageCloud.cpp" line="2503"/>
    1868         <location filename="../VBoxManageCloud.cpp" line="2511"/>
    1869         <source>  %32s = failed: %Rhrc
    1870 </source>
    1871         <translation type="unfinished"></translation>
    1872     </message>
    1873     <message>
    1874         <location filename="../VBoxManageCloud.cpp" line="2548"/>
    1875         <source>Performing unattended install of temporary local gateway...
    1876 </source>
    1877         <translation type="unfinished"></translation>
    1878     </message>
    1879     <message>
    1880         <location filename="../VBoxManageCloud.cpp" line="2551"/>
    1881         <location filename="../VBoxManageCloud.cpp" line="2555"/>
    1882         <source>Failed to launch &apos;%ls&apos;.</source>
    1883         <translation type="unfinished"></translation>
    1884     </message>
    1885     <message>
    1886         <location filename="../VBoxManageCloud.cpp" line="2566"/>
    1887         <source>Failed to get machine state.</source>
    1888         <translation type="unfinished"></translation>
    1889     </message>
    1890     <message>
    1891         <location filename="../VBoxManageCloud.cpp" line="2571"/>
    1892         <source>Temporary local gateway VM has aborted.</source>
    1893         <translation type="unfinished"></translation>
    1894     </message>
    1895     <message>
    1896         <location filename="../VBoxManageCloud.cpp" line="2579"/>
    1897         <source>Timed out (40min) while waiting for unattended install to finish.</source>
    1898         <translation type="unfinished"></translation>
    1899     </message>
    1900     <message>
    1901         <location filename="../VBoxManageCloud.cpp" line="2585"/>
    1902         <source><byte value="xd"/>Done.
    1903 </source>
    1904         <translation type="unfinished"></translation>
    1905     </message>
    1906     <message>
    1907         <location filename="../VBoxManageCloud.cpp" line="2591"/>
    1908         <source>Detaching local gateway image...
    1909 </source>
    1910         <translation type="unfinished"></translation>
    1911     </message>
    1912     <message>
    1913         <location filename="../VBoxManageCloud.cpp" line="2597"/>
    1914         <source>Failed to detach HD to &apos;%ls&apos;.</source>
    1915         <translation type="unfinished"></translation>
    1916     </message>
    1917     <message>
    1918         <location filename="../VBoxManageCloud.cpp" line="2611"/>
    1919         <source>Unregistering temporary local gateway machine...
    1920 </source>
    1921         <translation type="unfinished"></translation>
    1922     </message>
    1923     <message>
    1924         <location filename="../VBoxManageCloud.cpp" line="2614"/>
    1925         <source>Failed to unregister &apos;%ls&apos;.</source>
    1926         <translation type="unfinished"></translation>
    1927     </message>
    1928     <message>
    1929         <location filename="../VBoxManageCloud.cpp" line="2617"/>
    1930         <location filename="../VBoxManageCloud.cpp" line="2620"/>
    1931         <source>Failed to delete config for &apos;%ls&apos;.</source>
    1932         <translation type="unfinished"></translation>
    1933     </message>
    1934     <message>
    1935         <location filename="../VBoxManageCloud.cpp" line="2624"/>
    1936         <source>Making local gateway image immutable...
    1937 </source>
    1938         <translation type="unfinished"></translation>
    1939     </message>
    1940     <message>
    1941         <location filename="../VBoxManageCloud.cpp" line="2626"/>
    1942         <source>Failed to open &apos;%ls&apos;.</source>
    1943         <translation type="unfinished"></translation>
    1944     </message>
    1945     <message>
    1946         <location filename="../VBoxManageCloud.cpp" line="2629"/>
    1947         <source>Failed to make &apos;%ls&apos; immutable.</source>
    1948         <translation type="unfinished"></translation>
    1949     </message>
    1950     <message>
    1951         <location filename="../VBoxManageCloud.cpp" line="2712"/>
    1952         <source>Missing --local-gateway-iso parameter</source>
    1953         <translation type="unfinished"></translation>
    1954     </message>
    1955     <message>
    1956         <location filename="../VBoxManageCloud.cpp" line="2720"/>
     1753        <location filename="../VBoxManageCloud.cpp" line="2209"/>
    19571754        <source>Setting up tunnel network in the cloud...
    19581755</source>
     
    19601757    </message>
    19611758    <message>
    1962         <location filename="../VBoxManageCloud.cpp" line="2746"/>
     1759        <location filename="../VBoxManageCloud.cpp" line="2235"/>
    19631760        <source>Setting up cloud network environment failed</source>
    19641761        <translation type="unfinished"></translation>
    19651762    </message>
    19661763    <message>
    1967         <location filename="../VBoxManageCloud.cpp" line="2750"/>
     1764        <location filename="../VBoxManageCloud.cpp" line="2239"/>
    19681765        <source>Cloud network environment was set up successfully. Tunnel network id is: %ls
    19691766</source>
     
    21831980</context>
    21841981<context>
    2185     <name>CloudVM</name>
     1982    <name>ControlVM</name>
    21861983    <message>
    21871984        <location filename="../VBoxManageControlVM.cpp" line="65"/>
    2188         <source>Invalid %s number &apos;%s&apos;</source>
    2189         <translation type="unfinished"></translation>
    2190     </message>
    2191     <message>
    2192         <location filename="../VBoxManageControlVM.cpp" line="223"/>
    2193         <source>Failed to send a scancode</source>
     1985        <source>Invalid %s number &apos;%s&apos;.</source>
     1986        <translation type="unfinished"></translation>
     1987    </message>
     1988    <message>
     1989        <location filename="../VBoxManageControlVM.cpp" line="222"/>
     1990        <source>Failed to send a scancode.</source>
    21941991        <translation type="unfinished"></translation>
    21951992    </message>
    21961993    <message numerus="yes">
    2197         <location filename="../VBoxManageControlVM.cpp" line="236"/>
    2198         <source>Only %d scancodes were stored</source>
     1994        <location filename="../VBoxManageControlVM.cpp" line="323"/>
     1995        <source>Out of memory allocating %d bytes.</source>
    21991996        <translation type="unfinished">
    22001997            <numerusform></numerusform>
    22011998        </translation>
    22021999    </message>
    2203     <message numerus="yes">
    2204         <location filename="../VBoxManageControlVM.cpp" line="335"/>
    2205         <source>Out of memory allocating %d bytes</source>
    2206         <translation type="unfinished">
    2207             <numerusform></numerusform>
    2208         </translation>
    2209     </message>
    2210     <message>
    2211         <location filename="../VBoxManageControlVM.cpp" line="338"/>
    2212         <source>File size %RI64 is greater than %RI64: &apos;%s&apos;</source>
    2213         <translation type="unfinished"></translation>
    2214     </message>
    2215     <message>
    2216         <location filename="../VBoxManageControlVM.cpp" line="341"/>
    2217         <source>Cannot get size of file &apos;%s&apos;: %Rrc</source>
    2218         <translation type="unfinished"></translation>
    2219     </message>
    2220     <message>
    2221         <location filename="../VBoxManageControlVM.cpp" line="346"/>
    2222         <source>Cannot open file &apos;%s&apos;: %Rrc</source>
    2223         <translation type="unfinished"></translation>
    2224     </message>
    2225     <message>
    2226         <location filename="../VBoxManageControlVM.cpp" line="363"/>
     2000    <message>
     2001        <location filename="../VBoxManageControlVM.cpp" line="326"/>
     2002        <source>File size %RI64 is greater than %RI64: &apos;%s&apos;.</source>
     2003        <translation type="unfinished"></translation>
     2004    </message>
     2005    <message>
     2006        <location filename="../VBoxManageControlVM.cpp" line="329"/>
     2007        <source>Cannot get size of file &apos;%s&apos;: %Rrc.</source>
     2008        <translation type="unfinished"></translation>
     2009    </message>
     2010    <message>
     2011        <location filename="../VBoxManageControlVM.cpp" line="334"/>
     2012        <source>Cannot open file &apos;%s&apos;: %Rrc.</source>
     2013        <translation type="unfinished"></translation>
     2014    </message>
     2015    <message>
     2016        <location filename="../VBoxManageControlVM.cpp" line="351"/>
     2017        <location filename="../VBoxManageControlVM.cpp" line="1372"/>
     2018        <source>Not enough parameters.</source>
     2019        <translation type="unfinished"></translation>
     2020    </message>
     2021    <message>
     2022        <location filename="../VBoxManageControlVM.cpp" line="371"/>
     2023        <source>Machine &apos;%s&apos; is not currently running.</source>
     2024        <translation type="unfinished"></translation>
     2025    </message>
     2026    <message>
     2027        <location filename="../VBoxManageControlVM.cpp" line="397"/>
     2028        <location filename="../VBoxManageControlVM.cpp" line="411"/>
     2029        <location filename="../VBoxManageControlVM.cpp" line="425"/>
     2030        <location filename="../VBoxManageControlVM.cpp" line="487"/>
     2031        <location filename="../VBoxManageControlVM.cpp" line="558"/>
     2032        <location filename="../VBoxManageControlVM.cpp" line="782"/>
     2033        <location filename="../VBoxManageControlVM.cpp" line="802"/>
     2034        <location filename="../VBoxManageControlVM.cpp" line="840"/>
     2035        <location filename="../VBoxManageControlVM.cpp" line="884"/>
     2036        <location filename="../VBoxManageControlVM.cpp" line="925"/>
     2037        <location filename="../VBoxManageControlVM.cpp" line="1019"/>
     2038        <location filename="../VBoxManageControlVM.cpp" line="1081"/>
     2039        <location filename="../VBoxManageControlVM.cpp" line="1131"/>
     2040        <location filename="../VBoxManageControlVM.cpp" line="1160"/>
     2041        <location filename="../VBoxManageControlVM.cpp" line="1172"/>
     2042        <location filename="../VBoxManageControlVM.cpp" line="1184"/>
     2043        <location filename="../VBoxManageControlVM.cpp" line="1197"/>
     2044        <location filename="../VBoxManageControlVM.cpp" line="1208"/>
     2045        <location filename="../VBoxManageControlVM.cpp" line="1237"/>
     2046        <location filename="../VBoxManageControlVM.cpp" line="1266"/>
     2047        <location filename="../VBoxManageControlVM.cpp" line="1297"/>
     2048        <location filename="../VBoxManageControlVM.cpp" line="1318"/>
     2049        <location filename="../VBoxManageControlVM.cpp" line="1992"/>
     2050        <location filename="../VBoxManageControlVM.cpp" line="2115"/>
     2051        <source>Missing argument to &apos;%s&apos;.</source>
     2052        <translation type="unfinished"></translation>
     2053    </message>
     2054    <message>
     2055        <location filename="../VBoxManageControlVM.cpp" line="444"/>
     2056        <location filename="../VBoxManageControlVM.cpp" line="468"/>
     2057        <location filename="../VBoxManageControlVM.cpp" line="2226"/>
     2058        <source>Invalid value &apos;%s&apos;.</source>
     2059        <translation type="unfinished"></translation>
     2060    </message>
     2061    <message>
     2062        <location filename="../VBoxManageControlVM.cpp" line="453"/>
     2063        <location filename="../VBoxManageControlVM.cpp" line="477"/>
     2064        <source>Audio adapter not enabled in VM configuration.</source>
     2065        <translation type="unfinished"></translation>
     2066    </message>
     2067    <message>
     2068        <location filename="../VBoxManageControlVM.cpp" line="498"/>
     2069        <location filename="../VBoxManageControlVM.cpp" line="528"/>
     2070        <source>Missing argument to &apos;%s %s&apos;.</source>
     2071        <translation type="unfinished"></translation>
     2072    </message>
     2073    <message>
     2074        <location filename="../VBoxManageControlVM.cpp" line="513"/>
     2075        <location filename="../VBoxManageControlVM.cpp" line="536"/>
     2076        <source>Invalid &apos;%s %s&apos; argument &apos;%s&apos;.</source>
     2077        <translation type="unfinished"></translation>
     2078    </message>
     2079    <message>
     2080        <location filename="../VBoxManageControlVM.cpp" line="547"/>
     2081        <location filename="../VBoxManageControlVM.cpp" line="574"/>
     2082        <source>Invalid &apos;%s&apos; argument &apos;%s&apos;.</source>
     2083        <translation type="unfinished"></translation>
     2084    </message>
     2085    <message>
     2086        <location filename="../VBoxManageControlVM.cpp" line="591"/>
     2087        <source>Failed to power off machine.</source>
     2088        <translation type="unfinished"></translation>
     2089    </message>
     2090    <message>
     2091        <location filename="../VBoxManageControlVM.cpp" line="611"/>
     2092        <source>Machine in invalid state %d -- %s.</source>
     2093        <translation type="unfinished"></translation>
     2094    </message>
     2095    <message>
     2096        <location filename="../VBoxManageControlVM.cpp" line="634"/>
     2097        <source>Failed to save machine state.</source>
     2098        <translation type="unfinished"></translation>
     2099    </message>
     2100    <message>
     2101        <location filename="../VBoxManageControlVM.cpp" line="665"/>
     2102        <location filename="../VBoxManageControlVM.cpp" line="700"/>
     2103        <location filename="../VBoxManageControlVM.cpp" line="754"/>
     2104        <location filename="../VBoxManageControlVM.cpp" line="775"/>
     2105        <location filename="../VBoxManageControlVM.cpp" line="1478"/>
     2106        <location filename="../VBoxManageControlVM.cpp" line="1500"/>
     2107        <location filename="../VBoxManageControlVM.cpp" line="1624"/>
     2108        <location filename="../VBoxManageControlVM.cpp" line="1658"/>
     2109        <location filename="../VBoxManageControlVM.cpp" line="1755"/>
     2110        <location filename="../VBoxManageControlVM.cpp" line="2001"/>
     2111        <source>Guest not running.</source>
     2112        <translation type="unfinished"></translation>
     2113    </message>
     2114    <message>
     2115        <location filename="../VBoxManageControlVM.cpp" line="686"/>
     2116        <source>Current installed Guest Additions don&apos;t support rebooting the guest.</source>
     2117        <translation type="unfinished"></translation>
     2118    </message>
     2119    <message>
     2120        <location filename="../VBoxManageControlVM.cpp" line="688"/>
     2121        <source>Current installed Guest Additions don&apos;t support shutting down the guest.</source>
     2122        <translation type="unfinished"></translation>
     2123    </message>
     2124    <message>
     2125        <location filename="../VBoxManageControlVM.cpp" line="707"/>
     2126        <source>Missing argument to &apos;%s&apos;. Expected IBM PC AT set 2 keyboard scancode(s).</source>
     2127        <translation type="unfinished"></translation>
     2128    </message>
     2129    <message>
     2130        <location filename="../VBoxManageControlVM.cpp" line="727"/>
     2131        <source>Converting &apos;%s&apos; returned %Rrc!</source>
     2132        <translation type="unfinished"></translation>
     2133    </message>
     2134    <message>
     2135        <location filename="../VBoxManageControlVM.cpp" line="736"/>
     2136        <source>&apos;%s&apos; is not a hex byte!</source>
     2137        <translation type="unfinished"></translation>
     2138    </message>
     2139    <message>
     2140        <location filename="../VBoxManageControlVM.cpp" line="761"/>
     2141        <source>Missing argument to &apos;%s&apos;. Expected ASCII string(s).</source>
     2142        <translation type="unfinished"></translation>
     2143    </message>
     2144    <message>
     2145        <location filename="../VBoxManageControlVM.cpp" line="814"/>
     2146        <source>Invalid link state &apos;%s&apos;.</source>
     2147        <translation type="unfinished"></translation>
     2148    </message>
     2149    <message>
     2150        <location filename="../VBoxManageControlVM.cpp" line="860"/>
     2151        <source>Filename not specified for NIC %lu.</source>
     2152        <translation type="unfinished"></translation>
     2153    </message>
     2154    <message>
     2155        <location filename="../VBoxManageControlVM.cpp" line="868"/>
     2156        <source>The NIC %d is currently disabled and thus its tracefile can&apos;t be changed.</source>
     2157        <translation type="unfinished"></translation>
     2158    </message>
     2159    <message>
     2160        <location filename="../VBoxManageControlVM.cpp" line="901"/>
     2161        <source>Invalid nictrace%lu argument &apos;%s&apos;.</source>
     2162        <translation type="unfinished"></translation>
     2163    </message>
     2164    <message>
     2165        <location filename="../VBoxManageControlVM.cpp" line="909"/>
     2166        <source>The NIC %d is currently disabled and thus its trace flag can&apos;t be changed.</source>
     2167        <translation type="unfinished"></translation>
     2168    </message>
     2169    <message>
     2170        <location filename="../VBoxManageControlVM.cpp" line="961"/>
     2171        <source>Missing or invalid argument to &apos;%s&apos;.</source>
     2172        <translation type="unfinished"></translation>
     2173    </message>
     2174    <message>
     2175        <location filename="../VBoxManageControlVM.cpp" line="996"/>
     2176        <source>Wrong rule proto &apos;%s&apos; specified -- only &apos;udp&apos; and &apos;tcp&apos; are allowed.</source>
     2177        <translation type="unfinished"></translation>
     2178    </message>
     2179    <message>
     2180        <location filename="../VBoxManageControlVM.cpp" line="1050"/>
     2181        <source>Invalid nicproperty%d argument &apos;%s&apos;.</source>
     2182        <translation type="unfinished"></translation>
     2183    </message>
     2184    <message>
     2185        <location filename="../VBoxManageControlVM.cpp" line="1057"/>
     2186        <source>Failed to allocate memory for nicproperty%d &apos;%s&apos;.</source>
     2187        <translation type="unfinished"></translation>
     2188    </message>
     2189    <message>
     2190        <location filename="../VBoxManageControlVM.cpp" line="1065"/>
     2191        <source>The NIC %d is currently disabled and thus its properties can&apos;t be changed.</source>
     2192        <translation type="unfinished"></translation>
     2193    </message>
     2194    <message>
     2195        <location filename="../VBoxManageControlVM.cpp" line="1105"/>
     2196        <source>Unknown promiscuous mode policy &apos;%s&apos;.</source>
     2197        <translation type="unfinished"></translation>
     2198    </message>
     2199    <message>
     2200        <location filename="../VBoxManageControlVM.cpp" line="1115"/>
     2201        <source>The NIC %d is currently disabled and thus its promiscuous mode can&apos;t be changed.</source>
     2202        <translation type="unfinished"></translation>
     2203    </message>
     2204    <message>
     2205        <location filename="../VBoxManageControlVM.cpp" line="1217"/>
     2206        <source>Invalid type &apos;%s&apos; specfied for NIC %lu.</source>
     2207        <translation type="unfinished"></translation>
     2208    </message>
     2209    <message>
     2210        <location filename="../VBoxManageControlVM.cpp" line="1225"/>
     2211        <source>The NIC %d is currently disabled and thus its attachment type can&apos;t be changed.</source>
     2212        <translation type="unfinished"></translation>
     2213    </message>
     2214    <message>
     2215        <location filename="../VBoxManageControlVM.cpp" line="1233"/>
     2216        <source>&apos;vrdp&apos; is deprecated. Use &apos;vrde&apos;.</source>
     2217        <translation type="unfinished"></translation>
     2218    </message>
     2219    <message>
     2220        <location filename="../VBoxManageControlVM.cpp" line="1249"/>
     2221        <source>Invalid remote desktop server state &apos;%s&apos;.</source>
     2222        <translation type="unfinished"></translation>
     2223    </message>
     2224    <message>
     2225        <location filename="../VBoxManageControlVM.cpp" line="1262"/>
     2226        <source>&apos;vrdpport&apos; is deprecated. Use &apos;vrdeport&apos;.</source>
     2227        <translation type="unfinished"></translation>
     2228    </message>
     2229    <message>
     2230        <location filename="../VBoxManageControlVM.cpp" line="1293"/>
     2231        <source>&apos;vrdpvideochannelquality&apos; is deprecated. Use &apos;vrdevideochannelquality&apos;.</source>
     2232        <translation type="unfinished"></translation>
     2233    </message>
     2234    <message>
     2235        <location filename="../VBoxManageControlVM.cpp" line="1344"/>
     2236        <source>Invalid vrdeproperty argument &apos;%s&apos;.</source>
     2237        <translation type="unfinished"></translation>
     2238    </message>
     2239    <message>
     2240        <location filename="../VBoxManageControlVM.cpp" line="1351"/>
     2241        <source>Failed to allocate memory for VRDE property &apos;%s&apos;.</source>
     2242        <translation type="unfinished"></translation>
     2243    </message>
     2244    <message>
     2245        <location filename="../VBoxManageControlVM.cpp" line="1378"/>
     2246        <source>Wrong number of arguments.</source>
     2247        <translation type="unfinished"></translation>
     2248    </message>
     2249    <message>
    22272250        <location filename="../VBoxManageControlVM.cpp" line="1392"/>
    2228         <source>Not enough parameters</source>
    2229         <translation type="unfinished"></translation>
    2230     </message>
    2231     <message>
    2232         <location filename="../VBoxManageControlVM.cpp" line="383"/>
    2233         <source>Machine &apos;%s&apos; is not currently running</source>
    2234         <translation type="unfinished"></translation>
    2235     </message>
    2236     <message>
    2237         <location filename="../VBoxManageControlVM.cpp" line="405"/>
    2238         <location filename="../VBoxManageControlVM.cpp" line="418"/>
    2239         <source>Missing argument to &apos;%s&apos;. Expected CPU number.</source>
    2240         <translation type="unfinished"></translation>
    2241     </message>
    2242     <message>
    2243         <location filename="../VBoxManageControlVM.cpp" line="431"/>
    2244         <source>Missing argument to &apos;%s&apos;. Expected execution cap number.</source>
    2245         <translation type="unfinished"></translation>
    2246     </message>
    2247     <message>
    2248         <location filename="../VBoxManageControlVM.cpp" line="456"/>
    2249         <location filename="../VBoxManageControlVM.cpp" line="486"/>
    2250         <location filename="../VBoxManageControlVM.cpp" line="2385"/>
    2251         <source>Invalid value &apos;%s&apos;</source>
    2252         <translation type="unfinished"></translation>
    2253     </message>
    2254     <message>
    2255         <location filename="../VBoxManageControlVM.cpp" line="465"/>
    2256         <location filename="../VBoxManageControlVM.cpp" line="495"/>
    2257         <source>audio adapter not enabled in VM configuration</source>
    2258         <translation type="unfinished"></translation>
    2259     </message>
    2260     <message>
    2261         <location filename="../VBoxManageControlVM.cpp" line="505"/>
    2262         <source>Missing argument to &apos;%s&apos;.</source>
    2263         <translation type="unfinished"></translation>
    2264     </message>
    2265     <message>
    2266         <location filename="../VBoxManageControlVM.cpp" line="523"/>
    2267         <location filename="../VBoxManageControlVM.cpp" line="553"/>
    2268         <location filename="../VBoxManageControlVM.cpp" line="565"/>
    2269         <location filename="../VBoxManageControlVM.cpp" line="591"/>
    2270         <source>Invalid &apos;%s&apos; argument &apos;%s&apos;.</source>
    2271         <translation type="unfinished"></translation>
    2272     </message>
    2273     <message>
    2274         <location filename="../VBoxManageControlVM.cpp" line="537"/>
    2275         <source>Missing argument to &apos;%s&apos;. Expected enabled / disabled.</source>
    2276         <translation type="unfinished"></translation>
    2277     </message>
    2278     <message>
    2279         <location filename="../VBoxManageControlVM.cpp" line="575"/>
    2280         <source>Missing argument to &apos;%s&apos;. Expected drag and drop mode.</source>
    2281         <translation type="unfinished"></translation>
    2282     </message>
    2283     <message>
    2284         <location filename="../VBoxManageControlVM.cpp" line="607"/>
    2285         <source>Failed to power off machine</source>
    2286         <translation type="unfinished"></translation>
    2287     </message>
    2288     <message>
    2289         <location filename="../VBoxManageControlVM.cpp" line="626"/>
    2290         <source>Machine in invalid state %d -- %s
    2291 </source>
    2292         <translation type="unfinished"></translation>
    2293     </message>
    2294     <message>
    2295         <location filename="../VBoxManageControlVM.cpp" line="649"/>
    2296         <source>Failed to save machine state</source>
    2297         <translation type="unfinished"></translation>
    2298     </message>
    2299     <message>
    2300         <location filename="../VBoxManageControlVM.cpp" line="672"/>
    2301         <location filename="../VBoxManageControlVM.cpp" line="704"/>
    2302         <location filename="../VBoxManageControlVM.cpp" line="757"/>
    2303         <location filename="../VBoxManageControlVM.cpp" line="777"/>
    2304         <location filename="../VBoxManageControlVM.cpp" line="1501"/>
    2305         <location filename="../VBoxManageControlVM.cpp" line="1522"/>
    2306         <location filename="../VBoxManageControlVM.cpp" line="1645"/>
    2307         <location filename="../VBoxManageControlVM.cpp" line="1800"/>
    2308         <location filename="../VBoxManageControlVM.cpp" line="1896"/>
    2309         <location filename="../VBoxManageControlVM.cpp" line="2162"/>
    2310         <source>Guest not running</source>
    2311         <translation type="unfinished"></translation>
    2312     </message>
    2313     <message>
    2314         <location filename="../VBoxManageControlVM.cpp" line="693"/>
    2315         <source>Current installed Guest Additions don&apos;t support %s the guest.</source>
    2316         <translation type="unfinished"></translation>
    2317     </message>
    2318     <message>
    2319         <location filename="../VBoxManageControlVM.cpp" line="694"/>
    2320         <source>rebooting</source>
    2321         <translation type="unfinished"></translation>
    2322     </message>
    2323     <message>
    2324         <location filename="../VBoxManageControlVM.cpp" line="694"/>
    2325         <source>shutting down</source>
    2326         <translation type="unfinished"></translation>
    2327     </message>
    2328     <message>
    2329         <location filename="../VBoxManageControlVM.cpp" line="711"/>
    2330         <source>Missing argument to &apos;%s&apos;. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).</source>
    2331         <translation type="unfinished"></translation>
    2332     </message>
    2333     <message>
    2334         <location filename="../VBoxManageControlVM.cpp" line="731"/>
    2335         <source>Converting &apos;%s&apos; returned %Rrc!</source>
    2336         <translation type="unfinished"></translation>
    2337     </message>
    2338     <message>
    2339         <location filename="../VBoxManageControlVM.cpp" line="740"/>
    2340         <source>Error: &apos;%s&apos; is not a hex byte!</source>
    2341         <translation type="unfinished"></translation>
    2342     </message>
    2343     <message>
    2344         <location filename="../VBoxManageControlVM.cpp" line="764"/>
    2345         <source>Missing argument to &apos;%s&apos;. Expected ASCII string(s).</source>
    2346         <translation type="unfinished"></translation>
    2347     </message>
    2348     <message>
    2349         <location filename="../VBoxManageControlVM.cpp" line="784"/>
    2350         <source>Missing argument to &apos;%s&apos;. Expected file name.</source>
    2351         <translation type="unfinished"></translation>
    2352     </message>
    2353     <message>
    2354         <location filename="../VBoxManageControlVM.cpp" line="803"/>
    2355         <location filename="../VBoxManageControlVM.cpp" line="847"/>
    2356         <location filename="../VBoxManageControlVM.cpp" line="890"/>
    2357         <location filename="../VBoxManageControlVM.cpp" line="938"/>
    2358         <location filename="../VBoxManageControlVM.cpp" line="1031"/>
    2359         <location filename="../VBoxManageControlVM.cpp" line="1092"/>
    2360         <location filename="../VBoxManageControlVM.cpp" line="1141"/>
    2361         <location filename="../VBoxManageControlVM.cpp" line="1170"/>
    2362         <location filename="../VBoxManageControlVM.cpp" line="1182"/>
    2363         <location filename="../VBoxManageControlVM.cpp" line="1194"/>
    2364         <location filename="../VBoxManageControlVM.cpp" line="1207"/>
    2365         <location filename="../VBoxManageControlVM.cpp" line="1218"/>
    2366         <location filename="../VBoxManageControlVM.cpp" line="1230"/>
    2367         <location filename="../VBoxManageControlVM.cpp" line="1258"/>
    2368         <location filename="../VBoxManageControlVM.cpp" line="1293"/>
    2369         <location filename="../VBoxManageControlVM.cpp" line="1324"/>
    2370         <location filename="../VBoxManageControlVM.cpp" line="1344"/>
    2371         <location filename="../VBoxManageControlVM.cpp" line="2153"/>
    2372         <location filename="../VBoxManageControlVM.cpp" line="2269"/>
    2373         <source>Missing argument to &apos;%s&apos;</source>
    2374         <translation type="unfinished"></translation>
    2375     </message>
    2376     <message>
    2377         <location filename="../VBoxManageControlVM.cpp" line="822"/>
    2378         <source>Invalid link state &apos;%s&apos;</source>
    2379         <translation type="unfinished"></translation>
    2380     </message>
    2381     <message>
    2382         <location filename="../VBoxManageControlVM.cpp" line="867"/>
    2383         <source>Invalid filename or filename not specified for NIC %lu</source>
    2384         <translation type="unfinished"></translation>
    2385     </message>
    2386     <message>
    2387         <location filename="../VBoxManageControlVM.cpp" line="875"/>
    2388         <source>The NIC %d is currently disabled and thus its tracefile can&apos;t be changed</source>
    2389         <translation type="unfinished"></translation>
    2390     </message>
    2391     <message>
    2392         <location filename="../VBoxManageControlVM.cpp" line="914"/>
    2393         <source>Invalid nictrace%lu argument &apos;%s&apos;</source>
    2394         <translation type="unfinished"></translation>
    2395     </message>
    2396     <message>
    2397         <location filename="../VBoxManageControlVM.cpp" line="922"/>
    2398         <source>The NIC %d is currently disabled and thus its trace flag can&apos;t be changed</source>
    2399         <translation type="unfinished"></translation>
    2400     </message>
    2401     <message>
    2402         <location filename="../VBoxManageControlVM.cpp" line="973"/>
    2403         <source>Missing or invalid argument to &apos;%s&apos;</source>
    2404         <translation type="unfinished"></translation>
    2405     </message>
    2406     <message>
    2407         <location filename="../VBoxManageControlVM.cpp" line="1009"/>
    2408         <source>Wrong rule proto &apos;%s&apos; specified -- only &apos;udp&apos; and &apos;tcp&apos; are allowed.</source>
    2409         <translation type="unfinished"></translation>
    2410     </message>
    2411     <message>
    2412         <location filename="../VBoxManageControlVM.cpp" line="1062"/>
    2413         <source>Invalid nicproperty%d argument &apos;%s&apos;</source>
    2414         <translation type="unfinished"></translation>
    2415     </message>
    2416     <message>
    2417         <location filename="../VBoxManageControlVM.cpp" line="1069"/>
    2418         <source>Error: Failed to allocate memory for nicproperty%d &apos;%s&apos;
    2419 </source>
    2420         <translation type="unfinished"></translation>
    2421     </message>
    2422     <message>
    2423         <location filename="../VBoxManageControlVM.cpp" line="1077"/>
    2424         <source>The NIC %d is currently disabled and thus its properties can&apos;t be changed</source>
    2425         <translation type="unfinished"></translation>
    2426     </message>
    2427     <message>
    2428         <location filename="../VBoxManageControlVM.cpp" line="1116"/>
    2429         <source>Unknown promiscuous mode policy &apos;%s&apos;</source>
    2430         <translation type="unfinished"></translation>
    2431     </message>
    2432     <message>
    2433         <location filename="../VBoxManageControlVM.cpp" line="1126"/>
    2434         <source>The NIC %d is currently disabled and thus its promiscuous mode can&apos;t be changed</source>
    2435         <translation type="unfinished"></translation>
    2436     </message>
    2437     <message>
    2438         <location filename="../VBoxManageControlVM.cpp" line="1239"/>
    2439         <source>Invalid type &apos;%s&apos; specfied for NIC %lu</source>
    2440         <translation type="unfinished"></translation>
    2441     </message>
    2442     <message>
    2443         <location filename="../VBoxManageControlVM.cpp" line="1247"/>
    2444         <source>The NIC %d is currently disabled and thus its attachment type can&apos;t be changed</source>
    2445         <translation type="unfinished"></translation>
    2446     </message>
    2447     <message>
    2448         <location filename="../VBoxManageControlVM.cpp" line="1254"/>
    2449         <source>Warning: &apos;vrdp&apos; is deprecated. Use &apos;vrde&apos;.
    2450 </source>
    2451         <translation type="unfinished"></translation>
    2452     </message>
    2453     <message>
    2454         <location filename="../VBoxManageControlVM.cpp" line="1277"/>
    2455         <source>Invalid remote desktop server state &apos;%s&apos;</source>
    2456         <translation type="unfinished"></translation>
    2457     </message>
    2458     <message>
    2459         <location filename="../VBoxManageControlVM.cpp" line="1289"/>
    2460         <source>Warning: &apos;vrdpport&apos; is deprecated. Use &apos;vrdeport&apos;.
    2461 </source>
    2462         <translation type="unfinished"></translation>
    2463     </message>
    2464     <message>
    2465         <location filename="../VBoxManageControlVM.cpp" line="1320"/>
    2466         <source>Warning: &apos;vrdpvideochannelquality&apos; is deprecated. Use &apos;vrdevideochannelquality&apos;.
    2467 </source>
    2468         <translation type="unfinished"></translation>
    2469     </message>
    2470     <message>
    2471         <location filename="../VBoxManageControlVM.cpp" line="1370"/>
    2472         <source>Invalid vrdeproperty argument &apos;%s&apos;</source>
    2473         <translation type="unfinished"></translation>
    2474     </message>
    2475     <message>
    2476         <location filename="../VBoxManageControlVM.cpp" line="1377"/>
    2477         <source>Error: Failed to allocate memory for VRDE property &apos;%s&apos;
    2478 </source>
    2479         <translation type="unfinished"></translation>
    2480     </message>
    2481     <message>
    2482         <location filename="../VBoxManageControlVM.cpp" line="1398"/>
    2483         <source>Wrong number of arguments</source>
    2484         <translation type="unfinished"></translation>
    2485     </message>
    2486     <message>
    2487         <location filename="../VBoxManageControlVM.cpp" line="1414"/>
    2488         <location filename="../VBoxManageControlVM.cpp" line="1608"/>
    2489         <location filename="../VBoxManageControlVM.cpp" line="2417"/>
    2490         <source>Invalid parameter &apos;%s&apos;</source>
    2491         <translation type="unfinished"></translation>
    2492     </message>
    2493     <message>
    2494         <location filename="../VBoxManageControlVM.cpp" line="1447"/>
    2495         <source>Zero UUID argument &apos;%s&apos;</source>
    2496         <translation type="unfinished"></translation>
    2497     </message>
    2498     <message>
    2499         <location filename="../VBoxManageControlVM.cpp" line="1465"/>
    2500         <location filename="../VBoxManageControlVM.cpp" line="1513"/>
    2501         <location filename="../VBoxManageControlVM.cpp" line="1564"/>
    2502         <location filename="../VBoxManageControlVM.cpp" line="1620"/>
    2503         <location filename="../VBoxManageControlVM.cpp" line="1660"/>
    2504         <location filename="../VBoxManageControlVM.cpp" line="1724"/>
    2505         <location filename="../VBoxManageControlVM.cpp" line="1780"/>
    2506         <location filename="../VBoxManageControlVM.cpp" line="1876"/>
    2507         <location filename="../VBoxManageControlVM.cpp" line="1928"/>
    2508         <location filename="../VBoxManageControlVM.cpp" line="2009"/>
    2509         <location filename="../VBoxManageControlVM.cpp" line="2022"/>
    2510         <location filename="../VBoxManageControlVM.cpp" line="2055"/>
    2511         <location filename="../VBoxManageControlVM.cpp" line="2076"/>
    2512         <location filename="../VBoxManageControlVM.cpp" line="2097"/>
    2513         <location filename="../VBoxManageControlVM.cpp" line="2118"/>
    2514         <location filename="../VBoxManageControlVM.cpp" line="2139"/>
     2251        <location filename="../VBoxManageControlVM.cpp" line="1587"/>
     2252        <location filename="../VBoxManageControlVM.cpp" line="2259"/>
     2253        <source>Invalid parameter &apos;%s&apos;.</source>
     2254        <translation type="unfinished"></translation>
     2255    </message>
     2256    <message>
     2257        <location filename="../VBoxManageControlVM.cpp" line="1425"/>
     2258        <source>Zero UUID argument &apos;%s&apos;.</source>
     2259        <translation type="unfinished"></translation>
     2260    </message>
     2261    <message>
     2262        <location filename="../VBoxManageControlVM.cpp" line="1444"/>
     2263        <location filename="../VBoxManageControlVM.cpp" line="1491"/>
     2264        <location filename="../VBoxManageControlVM.cpp" line="1542"/>
     2265        <location filename="../VBoxManageControlVM.cpp" line="1599"/>
     2266        <location filename="../VBoxManageControlVM.cpp" line="1638"/>
     2267        <location filename="../VBoxManageControlVM.cpp" line="1735"/>
     2268        <location filename="../VBoxManageControlVM.cpp" line="1787"/>
     2269        <location filename="../VBoxManageControlVM.cpp" line="1821"/>
     2270        <location filename="../VBoxManageControlVM.cpp" line="1840"/>
     2271        <location filename="../VBoxManageControlVM.cpp" line="1854"/>
     2272        <location filename="../VBoxManageControlVM.cpp" line="1888"/>
     2273        <location filename="../VBoxManageControlVM.cpp" line="1910"/>
     2274        <location filename="../VBoxManageControlVM.cpp" line="1932"/>
     2275        <location filename="../VBoxManageControlVM.cpp" line="1954"/>
     2276        <location filename="../VBoxManageControlVM.cpp" line="1978"/>
     2277        <location filename="../VBoxManageControlVM.cpp" line="2048"/>
     2278        <location filename="../VBoxManageControlVM.cpp" line="2093"/>
     2279        <source>Incorrect number of parameters.</source>
     2280        <translation type="unfinished"></translation>
     2281    </message>
     2282    <message>
     2283        <location filename="../VBoxManageControlVM.cpp" line="1462"/>
     2284        <source>Either &quot;yes&quot; or &quot;no&quot; is expected.</source>
     2285        <translation type="unfinished"></translation>
     2286    </message>
     2287    <message>
     2288        <location filename="../VBoxManageControlVM.cpp" line="1527"/>
     2289        <source>Display status must be &lt;on&gt; or &lt;off&gt;.</source>
     2290        <translation type="unfinished"></translation>
     2291    </message>
     2292    <message>
     2293        <location filename="../VBoxManageControlVM.cpp" line="1647"/>
     2294        <source>Error parsing guest memory balloon size &apos;%s&apos;.</source>
     2295        <translation type="unfinished"></translation>
     2296    </message>
     2297    <message>
     2298        <location filename="../VBoxManageControlVM.cpp" line="1728"/>
     2299        <source>Teleportation failed</source>
     2300        <translation type="unfinished"></translation>
     2301    </message>
     2302    <message>
     2303        <location filename="../VBoxManageControlVM.cpp" line="1746"/>
     2304        <source>Error parsing display number &apos;%s&apos;.</source>
     2305        <translation type="unfinished"></translation>
     2306    </message>
     2307    <message>
     2308        <location filename="../VBoxManageControlVM.cpp" line="1769"/>
     2309        <source>Failed to create file &apos;%s&apos; (%Rrc).</source>
     2310        <translation type="unfinished"></translation>
     2311    </message>
     2312    <message>
     2313        <location filename="../VBoxManageControlVM.cpp" line="1776"/>
     2314        <source>Failed to write screenshot to file &apos;%s&apos; (%Rrc).</source>
     2315        <translation type="unfinished"></translation>
     2316    </message>
     2317    <message>
     2318        <location filename="../VBoxManageControlVM.cpp" line="1827"/>
     2319        <source>Error parsing list of screen IDs &apos;%s&apos;.</source>
     2320        <translation type="unfinished"></translation>
     2321    </message>
     2322    <message>
     2323        <location filename="../VBoxManageControlVM.cpp" line="1863"/>
     2324        <source>Error parsing video width &apos;%s&apos;.</source>
     2325        <translation type="unfinished"></translation>
     2326    </message>
     2327    <message>
     2328        <location filename="../VBoxManageControlVM.cpp" line="1872"/>
     2329        <source>Error parsing video height &apos;%s&apos;.</source>
     2330        <translation type="unfinished"></translation>
     2331    </message>
     2332    <message>
     2333        <location filename="../VBoxManageControlVM.cpp" line="1897"/>
     2334        <source>Error parsing video rate &apos;%s&apos;.</source>
     2335        <translation type="unfinished"></translation>
     2336    </message>
     2337    <message>
     2338        <location filename="../VBoxManageControlVM.cpp" line="1919"/>
     2339        <source>Error parsing video FPS &apos;%s&apos;.</source>
     2340        <translation type="unfinished"></translation>
     2341    </message>
     2342    <message>
     2343        <location filename="../VBoxManageControlVM.cpp" line="1941"/>
     2344        <source>Error parsing maximum time &apos;%s&apos;.</source>
     2345        <translation type="unfinished"></translation>
     2346    </message>
     2347    <message>
     2348        <location filename="../VBoxManageControlVM.cpp" line="1963"/>
     2349        <source>Error parsing maximum file size &apos;%s&apos;.</source>
     2350        <translation type="unfinished"></translation>
     2351    </message>
     2352    <message>
     2353        <location filename="../VBoxManageControlVM.cpp" line="2037"/>
     2354        <source>Invalid argument to &apos;%s&apos;.</source>
     2355        <translation type="unfinished"></translation>
     2356    </message>
     2357    <message>
     2358        <location filename="../VBoxManageControlVM.cpp" line="2059"/>
     2359        <source>Invalid parameters.</source>
     2360        <translation type="unfinished"></translation>
     2361    </message>
     2362    <message>
     2363        <location filename="../VBoxManageControlVM.cpp" line="2072"/>
     2364        <source>Enter password:</source>
     2365        <translation type="unfinished"></translation>
     2366    </message>
     2367    <message>
     2368        <location filename="../VBoxManageControlVM.cpp" line="2081"/>
     2369        <source>Failed to read new password from file.</source>
     2370        <translation type="unfinished"></translation>
     2371    </message>
     2372    <message>
     2373        <location filename="../VBoxManageControlVM.cpp" line="2129"/>
     2374        <location filename="../VBoxManageControlVM.cpp" line="2144"/>
     2375        <location filename="../VBoxManageControlVM.cpp" line="2185"/>
     2376        <location filename="../VBoxManageControlVM.cpp" line="2198"/>
     2377        <location filename="../VBoxManageControlVM.cpp" line="2219"/>
     2378        <location filename="../VBoxManageControlVM.cpp" line="2239"/>
     2379        <source>Incorrect arguments to &apos;%s&apos;.</source>
     2380        <translation type="unfinished"></translation>
     2381    </message>
     2382    <message>
    25152383        <location filename="../VBoxManageControlVM.cpp" line="2205"/>
    2516         <location filename="../VBoxManageControlVM.cpp" line="2249"/>
    2517         <source>Incorrect number of parameters</source>
    2518         <translation type="unfinished"></translation>
    2519     </message>
    2520     <message>
    2521         <location filename="../VBoxManageControlVM.cpp" line="1484"/>
    2522         <source>Either &quot;yes&quot; or &quot;no&quot; is expected</source>
    2523         <translation type="unfinished"></translation>
    2524     </message>
    2525     <message>
    2526         <location filename="../VBoxManageControlVM.cpp" line="1549"/>
    2527         <source>Display status must be &lt;on&gt; or &lt;off&gt;</source>
    2528         <translation type="unfinished"></translation>
    2529     </message>
    2530     <message>
    2531         <location filename="../VBoxManageControlVM.cpp" line="1681"/>
    2532         <source>Invalid host DVD drive name &quot;%s&quot;</source>
    2533         <translation type="unfinished"></translation>
    2534     </message>
    2535     <message>
    2536         <location filename="../VBoxManageControlVM.cpp" line="1717"/>
    2537         <source>IDE Controller</source>
    2538         <translation type="unfinished"></translation>
    2539     </message>
    2540     <message>
    2541         <location filename="../VBoxManageControlVM.cpp" line="1744"/>
    2542         <source>Invalid host floppy drive name &quot;%s&quot;</source>
    2543         <translation type="unfinished"></translation>
    2544     </message>
    2545     <message>
    2546         <location filename="../VBoxManageControlVM.cpp" line="1773"/>
    2547         <source>Floppy Controller</source>
    2548         <translation type="unfinished"></translation>
    2549     </message>
    2550     <message>
    2551         <location filename="../VBoxManageControlVM.cpp" line="1789"/>
    2552         <source>Error parsing guest memory balloon size &apos;%s&apos;</source>
    2553         <translation type="unfinished"></translation>
    2554     </message>
    2555     <message>
    2556         <location filename="../VBoxManageControlVM.cpp" line="1870"/>
    2557         <source>Teleportation failed</source>
    2558         <translation type="unfinished"></translation>
    2559     </message>
    2560     <message>
    2561         <location filename="../VBoxManageControlVM.cpp" line="1887"/>
    2562         <location filename="../VBoxManageControlVM.cpp" line="1988"/>
    2563         <source>Error parsing display number &apos;%s&apos;</source>
    2564         <translation type="unfinished"></translation>
    2565     </message>
    2566     <message>
    2567         <location filename="../VBoxManageControlVM.cpp" line="1910"/>
    2568         <source>Failed to create file &apos;%s&apos; (%Rrc)</source>
    2569         <translation type="unfinished"></translation>
    2570     </message>
    2571     <message>
    2572         <location filename="../VBoxManageControlVM.cpp" line="1917"/>
    2573         <source>Failed to write screenshot to file &apos;%s&apos; (%Rrc)</source>
    2574         <translation type="unfinished"></translation>
    2575     </message>
    2576     <message>
    2577         <location filename="../VBoxManageControlVM.cpp" line="1994"/>
    2578         <source>Invalid screen ID specified &apos;%u&apos;</source>
    2579         <translation type="unfinished"></translation>
    2580     </message>
    2581     <message>
    2582         <location filename="../VBoxManageControlVM.cpp" line="2031"/>
    2583         <source>Error parsing video width &apos;%s&apos;</source>
    2584         <translation type="unfinished"></translation>
    2585     </message>
    2586     <message>
    2587         <location filename="../VBoxManageControlVM.cpp" line="2040"/>
    2588         <source>Error parsing video height &apos;%s&apos;</source>
    2589         <translation type="unfinished"></translation>
    2590     </message>
    2591     <message>
    2592         <location filename="../VBoxManageControlVM.cpp" line="2064"/>
    2593         <source>Error parsing video rate &apos;%s&apos;</source>
    2594         <translation type="unfinished"></translation>
    2595     </message>
    2596     <message>
    2597         <location filename="../VBoxManageControlVM.cpp" line="2085"/>
    2598         <source>Error parsing video FPS &apos;%s&apos;</source>
    2599         <translation type="unfinished"></translation>
    2600     </message>
    2601     <message>
    2602         <location filename="../VBoxManageControlVM.cpp" line="2106"/>
    2603         <source>Error parsing maximum time &apos;%s&apos;</source>
    2604         <translation type="unfinished"></translation>
    2605     </message>
    2606     <message>
    2607         <location filename="../VBoxManageControlVM.cpp" line="2127"/>
    2608         <source>Error parsing maximum file size &apos;%s&apos;</source>
    2609         <translation type="unfinished"></translation>
    2610     </message>
    2611     <message>
    2612         <location filename="../VBoxManageControlVM.cpp" line="2195"/>
    2613         <source>Invalid argument to &apos;%s&apos;</source>
    2614         <translation type="unfinished"></translation>
    2615     </message>
    2616     <message>
    2617         <location filename="../VBoxManageControlVM.cpp" line="2216"/>
    2618         <source>Invalid parameters</source>
    2619         <translation type="unfinished"></translation>
    2620     </message>
    2621     <message>
    2622         <location filename="../VBoxManageControlVM.cpp" line="2229"/>
    2623         <source>Enter password:</source>
    2624         <translation type="unfinished"></translation>
    2625     </message>
    2626     <message>
    2627         <location filename="../VBoxManageControlVM.cpp" line="2238"/>
    2628         <source>Failed to read new password from file</source>
    2629         <translation type="unfinished"></translation>
    2630     </message>
    2631     <message>
    2632         <location filename="../VBoxManageControlVM.cpp" line="2283"/>
    2633         <location filename="../VBoxManageControlVM.cpp" line="2298"/>
    2634         <location filename="../VBoxManageControlVM.cpp" line="2339"/>
    2635         <location filename="../VBoxManageControlVM.cpp" line="2351"/>
    2636         <location filename="../VBoxManageControlVM.cpp" line="2371"/>
    2637         <location filename="../VBoxManageControlVM.cpp" line="2397"/>
    2638         <source>Incorrect arguments to &apos;%s&apos;</source>
    2639         <translation type="unfinished"></translation>
    2640     </message>
    2641     <message>
    2642         <location filename="../VBoxManageControlVM.cpp" line="2358"/>
    2643         <source>Invalid vm-process-priority &apos;%s&apos;</source>
    2644         <translation type="unfinished"></translation>
    2645     </message>
    2646     <message>
    2647         <location filename="../VBoxManageControlVM.cpp" line="2406"/>
    2648         <source>Invalid autostart delay number &apos;%s&apos;</source>
     2384        <source>Invalid vm-process-priority &apos;%s&apos;.</source>
     2385        <translation type="unfinished"></translation>
     2386    </message>
     2387    <message>
     2388        <location filename="../VBoxManageControlVM.cpp" line="2248"/>
     2389        <source>Invalid autostart delay number &apos;%s&apos;.</source>
    26492390        <translation type="unfinished"></translation>
    26502391    </message>
     
    30312772    <name>Disk</name>
    30322773    <message>
    3033         <location filename="../VBoxManageDisk.cpp" line="66"/>
     2774        <location filename="../VBoxManageDisk.cpp" line="64"/>
    30342775        <source>Error code %Rrc at %s(%u) in function %s</source>
    30352776        <translation type="unfinished"></translation>
    30362777    </message>
    30372778    <message>
    3038         <location filename="../VBoxManageDisk.cpp" line="186"/>
    3039         <location filename="../VBoxManageDisk.cpp" line="221"/>
     2779        <location filename="../VBoxManageDisk.cpp" line="184"/>
     2780        <location filename="../VBoxManageDisk.cpp" line="219"/>
    30402781        <source>Cannot convert filename &quot;%s&quot; to absolute path</source>
    30412782        <translation type="unfinished"></translation>
    30422783    </message>
    30432784    <message>
    3044         <location filename="../VBoxManageDisk.cpp" line="290"/>
     2785        <location filename="../VBoxManageDisk.cpp" line="288"/>
    30452786        <source>Out of memory copying &apos;%s&apos;</source>
    30462787        <translation type="unfinished"></translation>
    30472788    </message>
    30482789    <message>
    3049         <location filename="../VBoxManageDisk.cpp" line="330"/>
    3050         <location filename="../VBoxManageDisk.cpp" line="336"/>
    3051         <location filename="../VBoxManageDisk.cpp" line="342"/>
    3052         <location filename="../VBoxManageDisk.cpp" line="701"/>
    3053         <location filename="../VBoxManageDisk.cpp" line="707"/>
    3054         <location filename="../VBoxManageDisk.cpp" line="713"/>
    3055         <location filename="../VBoxManageDisk.cpp" line="1027"/>
    3056         <location filename="../VBoxManageDisk.cpp" line="1033"/>
    3057         <location filename="../VBoxManageDisk.cpp" line="1039"/>
    3058         <location filename="../VBoxManageDisk.cpp" line="1662"/>
    3059         <location filename="../VBoxManageDisk.cpp" line="1668"/>
    3060         <location filename="../VBoxManageDisk.cpp" line="1674"/>
    3061         <location filename="../VBoxManageDisk.cpp" line="1774"/>
    3062         <location filename="../VBoxManageDisk.cpp" line="1780"/>
    3063         <location filename="../VBoxManageDisk.cpp" line="1786"/>
     2790        <location filename="../VBoxManageDisk.cpp" line="328"/>
     2791        <location filename="../VBoxManageDisk.cpp" line="334"/>
     2792        <location filename="../VBoxManageDisk.cpp" line="340"/>
     2793        <location filename="../VBoxManageDisk.cpp" line="699"/>
     2794        <location filename="../VBoxManageDisk.cpp" line="705"/>
     2795        <location filename="../VBoxManageDisk.cpp" line="711"/>
     2796        <location filename="../VBoxManageDisk.cpp" line="1025"/>
     2797        <location filename="../VBoxManageDisk.cpp" line="1031"/>
     2798        <location filename="../VBoxManageDisk.cpp" line="1037"/>
     2799        <location filename="../VBoxManageDisk.cpp" line="1660"/>
     2800        <location filename="../VBoxManageDisk.cpp" line="1666"/>
     2801        <location filename="../VBoxManageDisk.cpp" line="1672"/>
     2802        <location filename="../VBoxManageDisk.cpp" line="1772"/>
     2803        <location filename="../VBoxManageDisk.cpp" line="1778"/>
     2804        <location filename="../VBoxManageDisk.cpp" line="1784"/>
    30642805        <source>Only one command can be specified: &apos;%s&apos;</source>
    30652806        <translation type="unfinished"></translation>
    30662807    </message>
    30672808    <message>
    3068         <location filename="../VBoxManageDisk.cpp" line="373"/>
     2809        <location filename="../VBoxManageDisk.cpp" line="371"/>
    30692810        <source>Invalid key value pair: No &apos;=&apos;.</source>
    30702811        <translation type="unfinished"></translation>
    30712812    </message>
    30722813    <message>
    3073         <location filename="../VBoxManageDisk.cpp" line="389"/>
     2814        <location filename="../VBoxManageDisk.cpp" line="387"/>
    30742815        <source>Cannot open replacement value file &apos;%s&apos;: %Rrc</source>
    30752816        <translation type="unfinished"></translation>
    30762817    </message>
    30772818    <message>
    3078         <location filename="../VBoxManageDisk.cpp" line="405"/>
     2819        <location filename="../VBoxManageDisk.cpp" line="403"/>
    30792820        <source>Error reading replacement MBR file &apos;%s&apos;: %Rrc</source>
    30802821        <translation type="unfinished"></translation>
    30812822    </message>
    30822823    <message>
    3083         <location filename="../VBoxManageDisk.cpp" line="408"/>
     2824        <location filename="../VBoxManageDisk.cpp" line="406"/>
    30842825        <source>Out of memory reading &apos;%s&apos;: %Rrc</source>
    30852826        <translation type="unfinished"></translation>
    30862827    </message>
    30872828    <message>
    3088         <location filename="../VBoxManageDisk.cpp" line="412"/>
     2829        <location filename="../VBoxManageDisk.cpp" line="410"/>
    30892830        <source>Replacement value file &apos;%s&apos; is to big: %Rhcb, max 16MiB</source>
    30902831        <translation type="unfinished"></translation>
    30912832    </message>
    30922833    <message>
    3093         <location filename="../VBoxManageDisk.cpp" line="416"/>
     2834        <location filename="../VBoxManageDisk.cpp" line="414"/>
    30942835        <source>Cannot get the size of the value file &apos;%s&apos;: %Rrc</source>
    30952836        <translation type="unfinished"></translation>
    30962837    </message>
    30972838    <message>
    3098         <location filename="../VBoxManageDisk.cpp" line="435"/>
    3099         <location filename="../VBoxManageDisk.cpp" line="1062"/>
    3100         <location filename="../VBoxManageDisk.cpp" line="1247"/>
    3101         <location filename="../VBoxManageDisk.cpp" line="2588"/>
     2839        <location filename="../VBoxManageDisk.cpp" line="433"/>
     2840        <location filename="../VBoxManageDisk.cpp" line="1060"/>
     2841        <location filename="../VBoxManageDisk.cpp" line="1245"/>
     2842        <location filename="../VBoxManageDisk.cpp" line="2585"/>
    31022843        <source>Invalid medium variant &apos;%s&apos;</source>
    31032844        <translation type="unfinished"></translation>
    31042845    </message>
    31052846    <message>
    3106         <location filename="../VBoxManageDisk.cpp" line="439"/>
    3107         <location filename="../VBoxManageDisk.cpp" line="801"/>
    3108         <location filename="../VBoxManageDisk.cpp" line="1071"/>
    3109         <location filename="../VBoxManageDisk.cpp" line="1263"/>
    3110         <location filename="../VBoxManageDisk.cpp" line="1682"/>
    3111         <location filename="../VBoxManageDisk.cpp" line="1798"/>
    3112         <location filename="../VBoxManageDisk.cpp" line="2010"/>
     2847        <location filename="../VBoxManageDisk.cpp" line="437"/>
     2848        <location filename="../VBoxManageDisk.cpp" line="799"/>
     2849        <location filename="../VBoxManageDisk.cpp" line="1069"/>
     2850        <location filename="../VBoxManageDisk.cpp" line="1261"/>
     2851        <location filename="../VBoxManageDisk.cpp" line="1680"/>
     2852        <location filename="../VBoxManageDisk.cpp" line="1796"/>
     2853        <location filename="../VBoxManageDisk.cpp" line="2008"/>
    31132854        <source>Invalid parameter &apos;%s&apos;</source>
     2855        <translation type="unfinished"></translation>
     2856    </message>
     2857    <message>
     2858        <location filename="../VBoxManageDisk.cpp" line="443"/>
     2859        <location filename="../VBoxManageDisk.cpp" line="806"/>
     2860        <location filename="../VBoxManageDisk.cpp" line="1687"/>
     2861        <location filename="../VBoxManageDisk.cpp" line="1803"/>
     2862        <location filename="../VBoxManageDisk.cpp" line="2015"/>
     2863        <source>Invalid option -%c</source>
    31142864        <translation type="unfinished"></translation>
    31152865    </message>
     
    31202870        <location filename="../VBoxManageDisk.cpp" line="1805"/>
    31212871        <location filename="../VBoxManageDisk.cpp" line="2017"/>
    3122         <source>Invalid option -%c</source>
    3123         <translation type="unfinished"></translation>
    3124     </message>
    3125     <message>
    3126         <location filename="../VBoxManageDisk.cpp" line="447"/>
    3127         <location filename="../VBoxManageDisk.cpp" line="810"/>
    3128         <location filename="../VBoxManageDisk.cpp" line="1691"/>
    3129         <location filename="../VBoxManageDisk.cpp" line="1807"/>
    3130         <location filename="../VBoxManageDisk.cpp" line="2019"/>
    31312872        <source>Invalid option case %i</source>
    31322873        <translation type="unfinished"></translation>
    31332874    </message>
    31342875    <message>
    3135         <location filename="../VBoxManageDisk.cpp" line="450"/>
    3136         <location filename="../VBoxManageDisk.cpp" line="813"/>
    3137         <location filename="../VBoxManageDisk.cpp" line="1694"/>
    3138         <location filename="../VBoxManageDisk.cpp" line="1810"/>
    3139         <location filename="../VBoxManageDisk.cpp" line="2022"/>
     2876        <location filename="../VBoxManageDisk.cpp" line="448"/>
     2877        <location filename="../VBoxManageDisk.cpp" line="811"/>
     2878        <location filename="../VBoxManageDisk.cpp" line="1692"/>
     2879        <location filename="../VBoxManageDisk.cpp" line="1808"/>
     2880        <location filename="../VBoxManageDisk.cpp" line="2020"/>
    31402881        <source>unknown option: %s
    31412882</source>
     
    31432884    </message>
    31442885    <message>
    3145         <location filename="../VBoxManageDisk.cpp" line="454"/>
    3146         <location filename="../VBoxManageDisk.cpp" line="817"/>
    3147         <location filename="../VBoxManageDisk.cpp" line="1087"/>
    3148         <location filename="../VBoxManageDisk.cpp" line="1698"/>
    3149         <location filename="../VBoxManageDisk.cpp" line="1814"/>
    3150         <location filename="../VBoxManageDisk.cpp" line="2026"/>
     2886        <location filename="../VBoxManageDisk.cpp" line="452"/>
     2887        <location filename="../VBoxManageDisk.cpp" line="815"/>
     2888        <location filename="../VBoxManageDisk.cpp" line="1085"/>
     2889        <location filename="../VBoxManageDisk.cpp" line="1696"/>
     2890        <location filename="../VBoxManageDisk.cpp" line="1812"/>
     2891        <location filename="../VBoxManageDisk.cpp" line="2024"/>
    31512892        <source>error: %Rrs</source>
    31522893        <translation type="unfinished"></translation>
    31532894    </message>
    31542895    <message>
     2896        <location filename="../VBoxManageDisk.cpp" line="463"/>
     2897        <location filename="../VBoxManageDisk.cpp" line="483"/>
     2898        <source>Parameters --filename is required</source>
     2899        <translation type="unfinished"></translation>
     2900    </message>
     2901    <message>
    31552902        <location filename="../VBoxManageDisk.cpp" line="465"/>
    3156         <location filename="../VBoxManageDisk.cpp" line="485"/>
    3157         <source>Parameters --filename is required</source>
    3158         <translation type="unfinished"></translation>
    3159     </message>
    3160     <message>
    3161         <location filename="../VBoxManageDisk.cpp" line="467"/>
    31622903        <source>Parameters --size is required</source>
    31632904        <translation type="unfinished"></translation>
    31642905    </message>
    31652906    <message>
    3166         <location filename="../VBoxManageDisk.cpp" line="488"/>
     2907        <location filename="../VBoxManageDisk.cpp" line="486"/>
    31672908        <source>Creating a differencing medium is only supported for hard disks</source>
    31682909        <translation type="unfinished"></translation>
    31692910    </message>
    31702911    <message>
    3171         <location filename="../VBoxManageDisk.cpp" line="507"/>
     2912        <location filename="../VBoxManageDisk.cpp" line="505"/>
    31722913        <source>Invalid parent hard disk reference, avoiding crash</source>
    31732914        <translation type="unfinished"></translation>
    31742915    </message>
    31752916    <message>
    3176         <location filename="../VBoxManageDisk.cpp" line="590"/>
     2917        <location filename="../VBoxManageDisk.cpp" line="588"/>
    31772918        <source>The %s is not found in the property list of the requested medium format.</source>
    31782919        <translation type="unfinished"></translation>
    31792920    </message>
    31802921    <message>
    3181         <location filename="../VBoxManageDisk.cpp" line="600"/>
     2922        <location filename="../VBoxManageDisk.cpp" line="598"/>
    31822923        <source>Base64 encoding of the property %s failed. (%Rhrc)</source>
    31832924        <translation type="unfinished"></translation>
    31842925    </message>
    31852926    <message>
    3186         <location filename="../VBoxManageDisk.cpp" line="624"/>
     2927        <location filename="../VBoxManageDisk.cpp" line="622"/>
    31872928        <source>Failed to create medium</source>
    31882929        <translation type="unfinished"></translation>
    31892930    </message>
    31902931    <message>
    3191         <location filename="../VBoxManageDisk.cpp" line="632"/>
     2932        <location filename="../VBoxManageDisk.cpp" line="630"/>
    31922933        <source>Medium created. UUID: %s
    31932934</source>
     
    31952936    </message>
    31962937    <message>
    3197         <location filename="../VBoxManageDisk.cpp" line="720"/>
     2938        <location filename="../VBoxManageDisk.cpp" line="718"/>
    31982939        <source>Invalid medium type &apos;%s&apos;</source>
    31992940        <translation type="unfinished"></translation>
    32002941    </message>
    32012942    <message>
    3202         <location filename="../VBoxManageDisk.cpp" line="727"/>
     2943        <location filename="../VBoxManageDisk.cpp" line="725"/>
    32032944        <source>Invalid autoreset parameter &apos;%s&apos;</source>
    32042945        <translation type="unfinished"></translation>
    32052946    </message>
    32062947    <message>
    3207         <location filename="../VBoxManageDisk.cpp" line="750"/>
     2948        <location filename="../VBoxManageDisk.cpp" line="748"/>
    32082949        <source>Invalid --property argument &apos;%s&apos;</source>
    32092950        <translation type="unfinished"></translation>
    32102951    </message>
    32112952    <message>
    3212         <location filename="../VBoxManageDisk.cpp" line="757"/>
     2953        <location filename="../VBoxManageDisk.cpp" line="755"/>
    32132954        <source>Error: Failed to allocate memory for medium property &apos;%s&apos;
    32142955</source>
     
    32162957    </message>
    32172958    <message>
    3218         <location filename="../VBoxManageDisk.cpp" line="825"/>
    3219         <location filename="../VBoxManageDisk.cpp" line="1707"/>
    3220         <location filename="../VBoxManageDisk.cpp" line="1822"/>
     2959        <location filename="../VBoxManageDisk.cpp" line="823"/>
     2960        <location filename="../VBoxManageDisk.cpp" line="1705"/>
     2961        <location filename="../VBoxManageDisk.cpp" line="1820"/>
    32212962        <source>Medium name or UUID required</source>
    32222963        <translation type="unfinished"></translation>
    32232964    </message>
    32242965    <message>
    3225         <location filename="../VBoxManageDisk.cpp" line="836"/>
     2966        <location filename="../VBoxManageDisk.cpp" line="834"/>
    32262967        <source>No operation specified</source>
    32272968        <translation type="unfinished"></translation>
    32282969    </message>
    32292970    <message>
    3230         <location filename="../VBoxManageDisk.cpp" line="857"/>
     2971        <location filename="../VBoxManageDisk.cpp" line="855"/>
    32312972        <source>Invalid medium reference, avoiding crash</source>
    32322973        <translation type="unfinished"></translation>
    32332974    </message>
    32342975    <message>
    3235         <location filename="../VBoxManageDisk.cpp" line="878"/>
     2976        <location filename="../VBoxManageDisk.cpp" line="876"/>
    32362977        <source>Error: Attempt to resize the medium from %RU64.%RU64 MB to %RU64.%RU64 MB. Use --resizebyte if this is intended!
    32372978</source>
     
    32392980    </message>
    32402981    <message>
     2982        <location filename="../VBoxManageDisk.cpp" line="910"/>
     2983        <source>Compact medium operation is not implemented!</source>
     2984        <translation type="unfinished"></translation>
     2985    </message>
     2986    <message>
    32412987        <location filename="../VBoxManageDisk.cpp" line="912"/>
    3242         <source>Compact medium operation is not implemented!</source>
     2988        <source>Compact medium operation for this format is not implemented yet!</source>
    32432989        <translation type="unfinished"></translation>
    32442990    </message>
    32452991    <message>
    32462992        <location filename="../VBoxManageDisk.cpp" line="914"/>
    3247         <source>Compact medium operation for this format is not implemented yet!</source>
     2993        <source>Failed to compact medium</source>
    32482994        <translation type="unfinished"></translation>
    32492995    </message>
    32502996    <message>
    32512997        <location filename="../VBoxManageDisk.cpp" line="916"/>
    3252         <source>Failed to compact medium</source>
    3253         <translation type="unfinished"></translation>
    3254     </message>
    3255     <message>
    3256         <location filename="../VBoxManageDisk.cpp" line="918"/>
    32572998        <source>Failed to compact medium!</source>
    32582999        <translation type="unfinished"></translation>
    32593000    </message>
    32603001    <message>
     3002        <location filename="../VBoxManageDisk.cpp" line="929"/>
     3003        <source>Failed to resize medium</source>
     3004        <translation type="unfinished"></translation>
     3005    </message>
     3006    <message>
    32613007        <location filename="../VBoxManageDisk.cpp" line="931"/>
    3262         <source>Failed to resize medium</source>
     3008        <source>Resize medium operation is not implemented!</source>
    32633009        <translation type="unfinished"></translation>
    32643010    </message>
    32653011    <message>
    32663012        <location filename="../VBoxManageDisk.cpp" line="933"/>
    3267         <source>Resize medium operation is not implemented!</source>
     3013        <source>Resize medium operation for this format is not implemented yet!</source>
    32683014        <translation type="unfinished"></translation>
    32693015    </message>
    32703016    <message>
    32713017        <location filename="../VBoxManageDisk.cpp" line="935"/>
    3272         <source>Resize medium operation for this format is not implemented yet!</source>
    3273         <translation type="unfinished"></translation>
    3274     </message>
    3275     <message>
    3276         <location filename="../VBoxManageDisk.cpp" line="937"/>
    32773018        <source>Failed to resize medium!</source>
    32783019        <translation type="unfinished"></translation>
    32793020    </message>
    32803021    <message>
    3281         <location filename="../VBoxManageDisk.cpp" line="953"/>
     3022        <location filename="../VBoxManageDisk.cpp" line="951"/>
    32823023        <source>Failed to move medium</source>
    32833024        <translation type="unfinished"></translation>
    32843025    </message>
    32853026    <message>
    3286         <location filename="../VBoxManageDisk.cpp" line="959"/>
     3027        <location filename="../VBoxManageDisk.cpp" line="957"/>
    32873028        <source>Move medium with UUID %s finished
    32883029</source>
     
    32903031    </message>
    32913032    <message>
    3292         <location filename="../VBoxManageDisk.cpp" line="972"/>
     3033        <location filename="../VBoxManageDisk.cpp" line="970"/>
    32933034        <source>Set new location of medium with UUID %s finished
    32943035</source>
     
    32963037    </message>
    32973038    <message>
    3298         <location filename="../VBoxManageDisk.cpp" line="979"/>
     3039        <location filename="../VBoxManageDisk.cpp" line="977"/>
    32993040        <source>Medium description has been changed.
    33003041</source>
     
    33023043    </message>
    33033044    <message>
     3045        <location filename="../VBoxManageDisk.cpp" line="1076"/>
     3046        <source>unhandled option: -%c</source>
     3047        <translation type="unfinished"></translation>
     3048    </message>
     3049    <message>
    33043050        <location filename="../VBoxManageDisk.cpp" line="1078"/>
    3305         <source>unhandled option: -%c</source>
    3306         <translation type="unfinished"></translation>
    3307     </message>
    3308     <message>
    3309         <location filename="../VBoxManageDisk.cpp" line="1080"/>
    33103051        <source>unhandled option: %i</source>
    33113052        <translation type="unfinished"></translation>
    33123053    </message>
    33133054    <message>
    3314         <location filename="../VBoxManageDisk.cpp" line="1083"/>
     3055        <location filename="../VBoxManageDisk.cpp" line="1081"/>
    33153056        <source>unknown option: %s</source>
    33163057        <translation type="unfinished"></translation>
    33173058    </message>
    33183059    <message>
     3060        <location filename="../VBoxManageDisk.cpp" line="1092"/>
     3061        <source>Mandatory UUID or input file parameter missing</source>
     3062        <translation type="unfinished"></translation>
     3063    </message>
     3064    <message>
    33193065        <location filename="../VBoxManageDisk.cpp" line="1094"/>
    3320         <source>Mandatory UUID or input file parameter missing</source>
     3066        <source>Mandatory output file parameter missing</source>
    33213067        <translation type="unfinished"></translation>
    33223068    </message>
    33233069    <message>
    33243070        <location filename="../VBoxManageDisk.cpp" line="1096"/>
    3325         <source>Mandatory output file parameter missing</source>
    3326         <translation type="unfinished"></translation>
    3327     </message>
    3328     <message>
    3329         <location filename="../VBoxManageDisk.cpp" line="1098"/>
    33303071        <source>Specified options which cannot be used with --existing</source>
    33313072        <translation type="unfinished"></translation>
    33323073    </message>
    33333074    <message>
    3334         <location filename="../VBoxManageDisk.cpp" line="1186"/>
     3075        <location filename="../VBoxManageDisk.cpp" line="1184"/>
    33353076        <source>Failed to clone medium</source>
    33363077        <translation type="unfinished"></translation>
    33373078    </message>
    33383079    <message>
    3339         <location filename="../VBoxManageDisk.cpp" line="1191"/>
     3080        <location filename="../VBoxManageDisk.cpp" line="1189"/>
    33403081        <source>Clone medium created in format &apos;%ls&apos;. UUID: %s
    33413082</source>
     
    33433084    </message>
    33443085    <message>
    3345         <location filename="../VBoxManageDisk.cpp" line="1235"/>
     3086        <location filename="../VBoxManageDisk.cpp" line="1233"/>
    33463087        <source>Invalid UUID &apos;%s&apos;</source>
    33473088        <translation type="unfinished"></translation>
    33483089    </message>
    33493090    <message>
    3350         <location filename="../VBoxManageDisk.cpp" line="1272"/>
     3091        <location filename="../VBoxManageDisk.cpp" line="1270"/>
    33513092        <source>Incorrect number of parameters</source>
    33523093        <translation type="unfinished"></translation>
    33533094    </message>
    33543095    <message>
    3355         <location filename="../VBoxManageDisk.cpp" line="1273"/>
     3096        <location filename="../VBoxManageDisk.cpp" line="1271"/>
    33563097        <source>Converting from raw image file=&quot;%s&quot; to file=&quot;%s&quot;...
    33573098</source>
     
    33593100    </message>
    33603101    <message>
    3361         <location filename="../VBoxManageDisk.cpp" line="1295"/>
     3102        <location filename="../VBoxManageDisk.cpp" line="1293"/>
    33623103        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    33633104        <translation type="unfinished"></translation>
    33643105    </message>
    33653106    <message>
    3366         <location filename="../VBoxManageDisk.cpp" line="1307"/>
     3107        <location filename="../VBoxManageDisk.cpp" line="1305"/>
    33673108        <source>Cannot get image size for file &quot;%s&quot;: %Rrc</source>
    33683109        <translation type="unfinished"></translation>
    33693110    </message>
    33703111    <message numerus="yes">
    3371         <location filename="../VBoxManageDisk.cpp" line="1311"/>
     3112        <location filename="../VBoxManageDisk.cpp" line="1309"/>
    33723113        <source>Creating %s image with size %RU64 bytes (%RU64MB)...
    33733114</source>
     
    33773118    </message>
    33783119    <message>
    3379         <location filename="../VBoxManageDisk.cpp" line="1312"/>
     3120        <location filename="../VBoxManageDisk.cpp" line="1310"/>
    33803121        <source>fixed</source>
    33813122        <comment>adjective</comment>
     
    33833124    </message>
    33843125    <message>
    3385         <location filename="../VBoxManageDisk.cpp" line="1312"/>
     3126        <location filename="../VBoxManageDisk.cpp" line="1310"/>
    33863127        <source>dynamic</source>
    33873128        <comment>adjective</comment>
     
    33893130    </message>
    33903131    <message>
    3391         <location filename="../VBoxManageDisk.cpp" line="1315"/>
     3132        <location filename="../VBoxManageDisk.cpp" line="1313"/>
    33923133        <source>Converted image from %s</source>
    33933134        <translation type="unfinished"></translation>
    33943135    </message>
    33953136    <message>
    3396         <location filename="../VBoxManageDisk.cpp" line="1319"/>
     3137        <location filename="../VBoxManageDisk.cpp" line="1317"/>
    33973138        <source>Cannot create the virtual disk container: %Rrc</source>
    33983139        <translation type="unfinished"></translation>
    33993140    </message>
    34003141    <message>
    3401         <location filename="../VBoxManageDisk.cpp" line="1337"/>
     3142        <location filename="../VBoxManageDisk.cpp" line="1335"/>
    34023143        <source>Cannot create the disk image &quot;%s&quot;: %Rrc</source>
    34033144        <translation type="unfinished"></translation>
    34043145    </message>
    34053146    <message>
    3406         <location filename="../VBoxManageDisk.cpp" line="1347"/>
     3147        <location filename="../VBoxManageDisk.cpp" line="1345"/>
    34073148        <source>Out of memory allocating buffers for image &quot;%s&quot;: %Rrc</source>
    34083149        <translation type="unfinished"></translation>
    34093150    </message>
    34103151    <message>
    3411         <location filename="../VBoxManageDisk.cpp" line="1366"/>
     3152        <location filename="../VBoxManageDisk.cpp" line="1364"/>
    34123153        <source>Failed to write to disk image &quot;%s&quot;: %Rrc</source>
    34133154        <translation type="unfinished"></translation>
    34143155    </message>
    34153156    <message>
    3416         <location filename="../VBoxManageDisk.cpp" line="1395"/>
     3157        <location filename="../VBoxManageDisk.cpp" line="1393"/>
    34173158        <source>Parent UUID:    %s
    34183159</source>
     
    34203161    </message>
    34213162    <message>
    3422         <location filename="../VBoxManageDisk.cpp" line="1400"/>
    3423         <location filename="../VBoxManageDisk.cpp" line="1447"/>
    3424         <location filename="../VBoxManageDisk.cpp" line="1502"/>
     3163        <location filename="../VBoxManageDisk.cpp" line="1398"/>
     3164        <location filename="../VBoxManageDisk.cpp" line="1445"/>
     3165        <location filename="../VBoxManageDisk.cpp" line="1500"/>
    34253166        <source>unknown</source>
    34263167        <translation type="unfinished"></translation>
    34273168    </message>
    34283169    <message>
    3429         <location filename="../VBoxManageDisk.cpp" line="1404"/>
     3170        <location filename="../VBoxManageDisk.cpp" line="1402"/>
    34303171        <source>not created</source>
    34313172        <translation type="unfinished"></translation>
    34323173    </message>
    34333174    <message>
    3434         <location filename="../VBoxManageDisk.cpp" line="1407"/>
     3175        <location filename="../VBoxManageDisk.cpp" line="1405"/>
    34353176        <source>created</source>
    34363177        <translation type="unfinished"></translation>
    34373178    </message>
    34383179    <message>
    3439         <location filename="../VBoxManageDisk.cpp" line="1410"/>
     3180        <location filename="../VBoxManageDisk.cpp" line="1408"/>
    34403181        <source>locked read</source>
    34413182        <translation type="unfinished"></translation>
    34423183    </message>
    34433184    <message>
    3444         <location filename="../VBoxManageDisk.cpp" line="1413"/>
     3185        <location filename="../VBoxManageDisk.cpp" line="1411"/>
    34453186        <source>locked write</source>
    34463187        <translation type="unfinished"></translation>
    34473188    </message>
    34483189    <message>
    3449         <location filename="../VBoxManageDisk.cpp" line="1416"/>
     3190        <location filename="../VBoxManageDisk.cpp" line="1414"/>
    34503191        <source>inaccessible</source>
    34513192        <translation type="unfinished"></translation>
    34523193    </message>
    34533194    <message>
    3454         <location filename="../VBoxManageDisk.cpp" line="1419"/>
     3195        <location filename="../VBoxManageDisk.cpp" line="1417"/>
    34553196        <source>creating</source>
    34563197        <translation type="unfinished"></translation>
    34573198    </message>
    34583199    <message>
    3459         <location filename="../VBoxManageDisk.cpp" line="1422"/>
     3200        <location filename="../VBoxManageDisk.cpp" line="1420"/>
    34603201        <source>deleting</source>
    34613202        <translation type="unfinished"></translation>
    34623203    </message>
    34633204    <message>
    3464         <location filename="../VBoxManageDisk.cpp" line="1428"/>
     3205        <location filename="../VBoxManageDisk.cpp" line="1426"/>
    34653206        <source>State:          %s
    34663207</source>
     
    34683209    </message>
    34693210    <message>
    3470         <location filename="../VBoxManageDisk.cpp" line="1434"/>
     3211        <location filename="../VBoxManageDisk.cpp" line="1432"/>
    34713212        <source>Access Error:   %ls
    34723213</source>
     
    34743215    </message>
    34753216    <message>
    3476         <location filename="../VBoxManageDisk.cpp" line="1442"/>
     3217        <location filename="../VBoxManageDisk.cpp" line="1440"/>
    34773218        <source>Description:    %ls
    34783219</source>
     
    34803221    </message>
    34813222    <message>
     3223        <location filename="../VBoxManageDisk.cpp" line="1450"/>
     3224        <source>normal (differencing)</source>
     3225        <translation type="unfinished"></translation>
     3226    </message>
     3227    <message>
    34823228        <location filename="../VBoxManageDisk.cpp" line="1452"/>
    3483         <source>normal (differencing)</source>
    3484         <translation type="unfinished"></translation>
    3485     </message>
    3486     <message>
    3487         <location filename="../VBoxManageDisk.cpp" line="1454"/>
    34883229        <source>normal (base)</source>
    34893230        <translation type="unfinished"></translation>
    34903231    </message>
    34913232    <message>
    3492         <location filename="../VBoxManageDisk.cpp" line="1457"/>
     3233        <location filename="../VBoxManageDisk.cpp" line="1455"/>
    34933234        <source>immutable</source>
    34943235        <translation type="unfinished"></translation>
    34953236    </message>
    34963237    <message>
    3497         <location filename="../VBoxManageDisk.cpp" line="1460"/>
     3238        <location filename="../VBoxManageDisk.cpp" line="1458"/>
    34983239        <source>writethrough</source>
    34993240        <translation type="unfinished"></translation>
    35003241    </message>
    35013242    <message>
    3502         <location filename="../VBoxManageDisk.cpp" line="1463"/>
     3243        <location filename="../VBoxManageDisk.cpp" line="1461"/>
    35033244        <source>shareable</source>
    35043245        <translation type="unfinished"></translation>
    35053246    </message>
    35063247    <message>
    3507         <location filename="../VBoxManageDisk.cpp" line="1466"/>
     3248        <location filename="../VBoxManageDisk.cpp" line="1464"/>
    35083249        <source>readonly</source>
    35093250        <translation type="unfinished"></translation>
    35103251    </message>
    35113252    <message>
    3512         <location filename="../VBoxManageDisk.cpp" line="1469"/>
     3253        <location filename="../VBoxManageDisk.cpp" line="1467"/>
    35133254        <source>multiattach</source>
    35143255        <translation type="unfinished"></translation>
    35153256    </message>
    35163257    <message>
    3517         <location filename="../VBoxManageDisk.cpp" line="1475"/>
     3258        <location filename="../VBoxManageDisk.cpp" line="1473"/>
    35183259        <source>Type:           %s
    35193260</source>
     
    35213262    </message>
    35223263    <message>
    3523         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     3264        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    35243265        <source>Auto-Reset:     %s
    35253266</source>
     
    35273268    </message>
    35283269    <message>
    3529         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     3270        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    35303271        <source>on</source>
    35313272        <translation type="unfinished"></translation>
    35323273    </message>
    35333274    <message>
    3534         <location filename="../VBoxManageDisk.cpp" line="1482"/>
     3275        <location filename="../VBoxManageDisk.cpp" line="1480"/>
    35353276        <source>off</source>
    35363277        <translation type="unfinished"></translation>
    35373278    </message>
    35383279    <message>
    3539         <location filename="../VBoxManageDisk.cpp" line="1487"/>
     3280        <location filename="../VBoxManageDisk.cpp" line="1485"/>
    35403281        <source>Location:       %ls
    35413282</source>
     
    35433284    </message>
    35443285    <message>
    3545         <location filename="../VBoxManageDisk.cpp" line="1491"/>
     3286        <location filename="../VBoxManageDisk.cpp" line="1489"/>
    35463287        <source>Storage format: %ls
    35473288</source>
     
    35493290    </message>
    35503291    <message>
    3551         <location filename="../VBoxManageDisk.cpp" line="1506"/>
     3292        <location filename="../VBoxManageDisk.cpp" line="1504"/>
    35523293        <source>split2G</source>
    35533294        <translation type="unfinished"></translation>
    35543295    </message>
    35553296    <message>
    3556         <location filename="../VBoxManageDisk.cpp" line="1509"/>
     3297        <location filename="../VBoxManageDisk.cpp" line="1507"/>
    35573298        <source>streamOptimized</source>
    35583299        <translation type="unfinished"></translation>
    35593300    </message>
    35603301    <message>
    3561         <location filename="../VBoxManageDisk.cpp" line="1512"/>
     3302        <location filename="../VBoxManageDisk.cpp" line="1510"/>
    35623303        <source>ESX</source>
    35633304        <translation type="unfinished"></translation>
    35643305    </message>
    35653306    <message>
    3566         <location filename="../VBoxManageDisk.cpp" line="1515"/>
     3307        <location filename="../VBoxManageDisk.cpp" line="1513"/>
    35673308        <source>default</source>
    35683309        <translation type="unfinished"></translation>
    35693310    </message>
    35703311    <message>
     3312        <location filename="../VBoxManageDisk.cpp" line="1516"/>
     3313        <source>dynamic</source>
     3314        <translation type="unfinished"></translation>
     3315    </message>
     3316    <message>
    35713317        <location filename="../VBoxManageDisk.cpp" line="1518"/>
    3572         <source>dynamic</source>
     3318        <source>fixed</source>
    35733319        <translation type="unfinished"></translation>
    35743320    </message>
    35753321    <message>
    35763322        <location filename="../VBoxManageDisk.cpp" line="1520"/>
    3577         <source>fixed</source>
    3578         <translation type="unfinished"></translation>
    3579     </message>
    3580     <message>
    3581         <location filename="../VBoxManageDisk.cpp" line="1522"/>
    35823323        <source>differencing</source>
    35833324        <translation type="unfinished"></translation>
    35843325    </message>
    35853326    <message>
    3586         <location filename="../VBoxManageDisk.cpp" line="1523"/>
     3327        <location filename="../VBoxManageDisk.cpp" line="1521"/>
    35873328        <source>Format variant: %s %s
    35883329</source>
     
    35903331    </message>
    35913332    <message>
    3592         <location filename="../VBoxManageDisk.cpp" line="1528"/>
     3333        <location filename="../VBoxManageDisk.cpp" line="1526"/>
    35933334        <source>Capacity:       %lld MBytes
    35943335</source>
     
    35963337    </message>
    35973338    <message>
    3598         <location filename="../VBoxManageDisk.cpp" line="1533"/>
     3339        <location filename="../VBoxManageDisk.cpp" line="1531"/>
    35993340        <source>Size on disk:   %lld MBytes
    36003341</source>
     
    36023343    </message>
    36033344    <message>
    3604         <location filename="../VBoxManageDisk.cpp" line="1541"/>
     3345        <location filename="../VBoxManageDisk.cpp" line="1539"/>
    36053346        <source>Encryption:     enabled
    36063347</source>
     
    36083349    </message>
    36093350    <message>
    3610         <location filename="../VBoxManageDisk.cpp" line="1544"/>
     3351        <location filename="../VBoxManageDisk.cpp" line="1542"/>
    36113352        <source>Cipher:         %ls
    36123353</source>
     
    36143355    </message>
    36153356    <message>
    3616         <location filename="../VBoxManageDisk.cpp" line="1545"/>
     3357        <location filename="../VBoxManageDisk.cpp" line="1543"/>
    36173358        <source>Password ID:    %ls
    36183359</source>
     
    36203361    </message>
    36213362    <message>
    3622         <location filename="../VBoxManageDisk.cpp" line="1549"/>
     3363        <location filename="../VBoxManageDisk.cpp" line="1547"/>
    36233364        <source>Encryption:     disabled
    36243365</source>
     
    36263367    </message>
    36273368    <message>
    3628         <location filename="../VBoxManageDisk.cpp" line="1565"/>
     3369        <location filename="../VBoxManageDisk.cpp" line="1563"/>
    36293370        <source>Property:       </source>
    36303371        <translation type="unfinished"></translation>
    36313372    </message>
    36323373    <message>
    3633         <location filename="../VBoxManageDisk.cpp" line="1586"/>
     3374        <location filename="../VBoxManageDisk.cpp" line="1584"/>
    36343375        <source>In use by VMs:  </source>
    36353376        <translation type="unfinished"></translation>
    36363377    </message>
    36373378    <message>
    3638         <location filename="../VBoxManageDisk.cpp" line="1621"/>
     3379        <location filename="../VBoxManageDisk.cpp" line="1619"/>
    36393380        <source>Child UUIDs:    </source>
    36403381        <translation type="unfinished"></translation>
    36413382    </message>
    36423383    <message>
    3643         <location filename="../VBoxManageDisk.cpp" line="1727"/>
     3384        <location filename="../VBoxManageDisk.cpp" line="1725"/>
    36443385        <source>base</source>
    36453386        <translation type="unfinished"></translation>
    36463387    </message>
    36473388    <message>
    3648         <location filename="../VBoxManageDisk.cpp" line="1847"/>
     3389        <location filename="../VBoxManageDisk.cpp" line="1845"/>
    36493390        <source>Failed to delete medium</source>
    36503391        <translation type="unfinished"></translation>
    36513392    </message>
    36523393    <message>
    3653         <location filename="../VBoxManageDisk.cpp" line="1850"/>
     3394        <location filename="../VBoxManageDisk.cpp" line="1848"/>
    36543395        <source>Failed to delete medium. Error code %Rrc</source>
    36553396        <translation type="unfinished"></translation>
    36563397    </message>
    36573398    <message>
    3658         <location filename="../VBoxManageDisk.cpp" line="1886"/>
     3399        <location filename="../VBoxManageDisk.cpp" line="1884"/>
    36593400        <source>unexpected parameter %s
    36603401</source>
     
    36623403    </message>
    36633404    <message>
    3664         <location filename="../VBoxManageDisk.cpp" line="1899"/>
     3405        <location filename="../VBoxManageDisk.cpp" line="1897"/>
    36653406        <source>Missing action</source>
    36663407        <translation type="unfinished"></translation>
    36673408    </message>
    36683409    <message>
    3669         <location filename="../VBoxManageDisk.cpp" line="1905"/>
     3410        <location filename="../VBoxManageDisk.cpp" line="1903"/>
    36703411        <source>Invalid action given: %s</source>
    36713412        <translation type="unfinished"></translation>
    36723413    </message>
    36733414    <message>
    3674         <location filename="../VBoxManageDisk.cpp" line="1911"/>
     3415        <location filename="../VBoxManageDisk.cpp" line="1909"/>
    36753416        <source>Invalid number of arguments given for action: %s</source>
    36763417        <translation type="unfinished"></translation>
    36773418    </message>
    36783419    <message>
    3679         <location filename="../VBoxManageDisk.cpp" line="2031"/>
     3420        <location filename="../VBoxManageDisk.cpp" line="2029"/>
    36803421        <source>Disk name or UUID required</source>
    36813422        <translation type="unfinished"></translation>
    36823423    </message>
    36833424    <message>
    3684         <location filename="../VBoxManageDisk.cpp" line="2034"/>
     3425        <location filename="../VBoxManageDisk.cpp" line="2032"/>
    36853426        <source>No password specified</source>
    36863427        <translation type="unfinished"></translation>
    36873428    </message>
    36883429    <message>
    3689         <location filename="../VBoxManageDisk.cpp" line="2039"/>
     3430        <location filename="../VBoxManageDisk.cpp" line="2036"/>
    36903431        <source>A new password must always have a valid identifier set at the same time</source>
    36913432        <translation type="unfinished"></translation>
    36923433    </message>
    36933434    <message>
    3694         <location filename="../VBoxManageDisk.cpp" line="2046"/>
     3435        <location filename="../VBoxManageDisk.cpp" line="2043"/>
    36953436        <source>Enter new password:</source>
    36963437        <translation type="unfinished"></translation>
    36973438    </message>
    36983439    <message>
    3699         <location filename="../VBoxManageDisk.cpp" line="2055"/>
     3440        <location filename="../VBoxManageDisk.cpp" line="2052"/>
    37003441        <source>Failed to read new password from file</source>
    37013442        <translation type="unfinished"></translation>
    37023443    </message>
    37033444    <message>
    3704         <location filename="../VBoxManageDisk.cpp" line="2066"/>
     3445        <location filename="../VBoxManageDisk.cpp" line="2063"/>
    37053446        <source>Enter old password:</source>
    37063447        <translation type="unfinished"></translation>
    37073448    </message>
    37083449    <message>
    3709         <location filename="../VBoxManageDisk.cpp" line="2075"/>
     3450        <location filename="../VBoxManageDisk.cpp" line="2072"/>
    37103451        <source>Failed to read old password from file</source>
    37113452        <translation type="unfinished"></translation>
    37123453    </message>
    37133454    <message>
    3714         <location filename="../VBoxManageDisk.cpp" line="2088"/>
    3715         <location filename="../VBoxManageDisk.cpp" line="2147"/>
     3455        <location filename="../VBoxManageDisk.cpp" line="2085"/>
     3456        <location filename="../VBoxManageDisk.cpp" line="2144"/>
    37163457        <source>Invalid hard disk reference, avoiding crash</source>
    37173458        <translation type="unfinished"></translation>
    37183459    </message>
    37193460    <message>
    3720         <location filename="../VBoxManageDisk.cpp" line="2099"/>
     3461        <location filename="../VBoxManageDisk.cpp" line="2096"/>
    37213462        <source>Encrypt hard disk operation is not implemented!</source>
    37223463        <translation type="unfinished"></translation>
    37233464    </message>
    37243465    <message>
    3725         <location filename="../VBoxManageDisk.cpp" line="2101"/>
     3466        <location filename="../VBoxManageDisk.cpp" line="2098"/>
    37263467        <source>Encrypt hard disk operation for this cipher is not implemented yet!</source>
    37273468        <translation type="unfinished"></translation>
    37283469    </message>
    37293470    <message>
    3730         <location filename="../VBoxManageDisk.cpp" line="2103"/>
     3471        <location filename="../VBoxManageDisk.cpp" line="2100"/>
    37313472        <source>Failed to encrypt hard disk</source>
    37323473        <translation type="unfinished"></translation>
    37333474    </message>
    37343475    <message>
    3735         <location filename="../VBoxManageDisk.cpp" line="2105"/>
     3476        <location filename="../VBoxManageDisk.cpp" line="2102"/>
    37363477        <source>Failed to encrypt hard disk!</source>
    37373478        <translation type="unfinished"></translation>
    37383479    </message>
    37393480    <message>
    3740         <location filename="../VBoxManageDisk.cpp" line="2119"/>
     3481        <location filename="../VBoxManageDisk.cpp" line="2116"/>
    37413482        <source>Invalid number of arguments: %d</source>
    37423483        <translation type="unfinished"></translation>
    37433484    </message>
    37443485    <message>
    3745         <location filename="../VBoxManageDisk.cpp" line="2126"/>
     3486        <location filename="../VBoxManageDisk.cpp" line="2123"/>
    37463487        <source>Enter password:</source>
    37473488        <translation type="unfinished"></translation>
    37483489    </message>
    37493490    <message>
    3750         <location filename="../VBoxManageDisk.cpp" line="2135"/>
     3491        <location filename="../VBoxManageDisk.cpp" line="2132"/>
    37513492        <source>Failed to read password from file</source>
    37523493        <translation type="unfinished"></translation>
    37533494    </message>
    37543495    <message>
    3755         <location filename="../VBoxManageDisk.cpp" line="2151"/>
     3496        <location filename="../VBoxManageDisk.cpp" line="2148"/>
    37563497        <source>The given password is correct
    37573498</source>
     
    37593500    </message>
    37603501    <message>
    3761         <location filename="../VBoxManageDisk.cpp" line="2229"/>
     3502        <location filename="../VBoxManageDisk.cpp" line="2226"/>
    37623503        <source>No medium specified!</source>
    37633504        <translation type="unfinished"></translation>
    37643505    </message>
    37653506    <message>
    3766         <location filename="../VBoxManageDisk.cpp" line="2240"/>
     3507        <location filename="../VBoxManageDisk.cpp" line="2237"/>
    37673508        <source>Enter encryption password:</source>
    37683509        <translation type="unfinished"></translation>
    37693510    </message>
    37703511    <message>
    3771         <location filename="../VBoxManageDisk.cpp" line="2392"/>
    3772         <location filename="../VBoxManageDisk.cpp" line="2613"/>
     3512        <location filename="../VBoxManageDisk.cpp" line="2389"/>
     3513        <location filename="../VBoxManageDisk.cpp" line="2610"/>
    37733514        <source>Error opening &apos;%s&apos; for writing: %Rrc</source>
    37743515        <translation type="unfinished"></translation>
    37753516    </message>
    37763517    <message>
    3777         <location filename="../VBoxManageDisk.cpp" line="2408"/>
     3518        <location filename="../VBoxManageDisk.cpp" line="2405"/>
    37783519        <source>Specified offset (%#RX64) is beyond the end of the medium (%#RX64)</source>
    37793520        <translation type="unfinished"></translation>
    37803521    </message>
    37813522    <message numerus="yes">
    3782         <location filename="../VBoxManageDisk.cpp" line="2438"/>
     3523        <location filename="../VBoxManageDisk.cpp" line="2435"/>
    37833524        <source>Read(%zu bytes at %#RX64)</source>
    37843525        <translation type="unfinished">
     
    37873528    </message>
    37883529    <message>
    3789         <location filename="../VBoxManageDisk.cpp" line="2467"/>
     3530        <location filename="../VBoxManageDisk.cpp" line="2464"/>
    37903531        <source>**********  &lt;ditto x %RU64&gt;
    37913532</source>
     
    37933534    </message>
    37943535    <message>
    3795         <location filename="../VBoxManageDisk.cpp" line="2516"/>
    3796         <location filename="../VBoxManageDisk.cpp" line="2657"/>
     3536        <location filename="../VBoxManageDisk.cpp" line="2513"/>
     3537        <location filename="../VBoxManageDisk.cpp" line="2654"/>
    37973538        <source>Error writing to &apos;%s&apos;: %Rrc</source>
    37983539        <translation type="unfinished"></translation>
    37993540    </message>
    38003541    <message numerus="yes">
    3801         <location filename="../VBoxManageDisk.cpp" line="2524"/>
     3542        <location filename="../VBoxManageDisk.cpp" line="2521"/>
    38023543        <source>Expected read() at offset %RU64 (%#RX64) to return %#zx bytes, only got %#zx!
    38033544</source>
     
    38073548    </message>
    38083549    <message>
    3809         <location filename="../VBoxManageDisk.cpp" line="2540"/>
    3810         <location filename="../VBoxManageDisk.cpp" line="2678"/>
     3550        <location filename="../VBoxManageDisk.cpp" line="2537"/>
     3551        <location filename="../VBoxManageDisk.cpp" line="2675"/>
    38113552        <source>Error closing &apos;%s&apos;: %Rrc</source>
    38123553        <translation type="unfinished"></translation>
     
    38163557    <name>GuestCtrl</name>
    38173558    <message>
    3818         <location filename="../VBoxManageGuestCtrl.cpp" line="419"/>
     3559        <location filename="../VBoxManageGuestCtrl.cpp" line="276"/>
    38193560        <source>Unable to install console control handler, rc=%Rrc
    38203561</source>
     
    38223563    </message>
    38233564    <message>
    3824         <location filename="../VBoxManageGuestCtrl.cpp" line="446"/>
     3565        <location filename="../VBoxManageGuestCtrl.cpp" line="303"/>
    38253566        <source>Unable to uninstall console control handler, rc=%Rrc
    38263567</source>
     
    38283569    </message>
    38293570    <message>
    3830         <location filename="../VBoxManageGuestCtrl.cpp" line="473"/>
    3831         <location filename="../VBoxManageGuestCtrl.cpp" line="539"/>
     3571        <location filename="../VBoxManageGuestCtrl.cpp" line="332"/>
     3572        <location filename="../VBoxManageGuestCtrl.cpp" line="398"/>
    38323573        <source>starting</source>
    38333574        <translation type="unfinished"></translation>
    38343575    </message>
    38353576    <message>
    3836         <location filename="../VBoxManageGuestCtrl.cpp" line="475"/>
    3837         <location filename="../VBoxManageGuestCtrl.cpp" line="508"/>
    3838         <location filename="../VBoxManageGuestCtrl.cpp" line="541"/>
     3577        <location filename="../VBoxManageGuestCtrl.cpp" line="334"/>
     3578        <location filename="../VBoxManageGuestCtrl.cpp" line="367"/>
     3579        <location filename="../VBoxManageGuestCtrl.cpp" line="400"/>
    38393580        <source>started</source>
    38403581        <translation type="unfinished"></translation>
    38413582    </message>
    38423583    <message>
    3843         <location filename="../VBoxManageGuestCtrl.cpp" line="477"/>
     3584        <location filename="../VBoxManageGuestCtrl.cpp" line="336"/>
    38443585        <source>paused</source>
    38453586        <translation type="unfinished"></translation>
    38463587    </message>
    38473588    <message>
    3848         <location filename="../VBoxManageGuestCtrl.cpp" line="479"/>
    3849         <location filename="../VBoxManageGuestCtrl.cpp" line="543"/>
     3589        <location filename="../VBoxManageGuestCtrl.cpp" line="338"/>
     3590        <location filename="../VBoxManageGuestCtrl.cpp" line="402"/>
    38503591        <source>terminating</source>
    38513592        <translation type="unfinished"></translation>
    38523593    </message>
    38533594    <message>
    3854         <location filename="../VBoxManageGuestCtrl.cpp" line="481"/>
     3595        <location filename="../VBoxManageGuestCtrl.cpp" line="340"/>
    38553596        <source>successfully terminated</source>
    38563597        <translation type="unfinished"></translation>
    38573598    </message>
    38583599    <message>
     3600        <location filename="../VBoxManageGuestCtrl.cpp" line="342"/>
     3601        <source>terminated by signal</source>
     3602        <translation type="unfinished"></translation>
     3603    </message>
     3604    <message>
     3605        <location filename="../VBoxManageGuestCtrl.cpp" line="344"/>
     3606        <source>abnormally aborted</source>
     3607        <translation type="unfinished"></translation>
     3608    </message>
     3609    <message>
     3610        <location filename="../VBoxManageGuestCtrl.cpp" line="346"/>
     3611        <location filename="../VBoxManageGuestCtrl.cpp" line="375"/>
     3612        <location filename="../VBoxManageGuestCtrl.cpp" line="406"/>
     3613        <source>timed out</source>
     3614        <translation type="unfinished"></translation>
     3615    </message>
     3616    <message>
     3617        <location filename="../VBoxManageGuestCtrl.cpp" line="348"/>
     3618        <location filename="../VBoxManageGuestCtrl.cpp" line="408"/>
     3619        <source>timed out, hanging</source>
     3620        <translation type="unfinished"></translation>
     3621    </message>
     3622    <message>
     3623        <location filename="../VBoxManageGuestCtrl.cpp" line="350"/>
     3624        <location filename="../VBoxManageGuestCtrl.cpp" line="410"/>
     3625        <location filename="../VBoxManageGuestCtrl.cpp" line="435"/>
     3626        <source>killed</source>
     3627        <translation type="unfinished"></translation>
     3628    </message>
     3629    <message>
     3630        <location filename="../VBoxManageGuestCtrl.cpp" line="352"/>
     3631        <location filename="../VBoxManageGuestCtrl.cpp" line="373"/>
     3632        <location filename="../VBoxManageGuestCtrl.cpp" line="412"/>
     3633        <location filename="../VBoxManageGuestCtrl.cpp" line="437"/>
     3634        <source>error</source>
     3635        <translation type="unfinished"></translation>
     3636    </message>
     3637    <message>
     3638        <location filename="../VBoxManageGuestCtrl.cpp" line="356"/>
     3639        <location filename="../VBoxManageGuestCtrl.cpp" line="387"/>
     3640        <location filename="../VBoxManageGuestCtrl.cpp" line="416"/>
     3641        <location filename="../VBoxManageGuestCtrl.cpp" line="441"/>
     3642        <location filename="../VBoxManageGuestCtrl.cpp" line="451"/>
     3643        <location filename="../VBoxManageGuestCtrl.cpp" line="464"/>
     3644        <source>unknown</source>
     3645        <translation type="unfinished"></translation>
     3646    </message>
     3647    <message>
     3648        <location filename="../VBoxManageGuestCtrl.cpp" line="369"/>
     3649        <location filename="../VBoxManageGuestCtrl.cpp" line="404"/>
     3650        <source>terminated</source>
     3651        <translation type="unfinished"></translation>
     3652    </message>
     3653    <message>
     3654        <location filename="../VBoxManageGuestCtrl.cpp" line="371"/>
     3655        <source>status changed</source>
     3656        <translation type="unfinished"></translation>
     3657    </message>
     3658    <message>
     3659        <location filename="../VBoxManageGuestCtrl.cpp" line="377"/>
     3660        <source>stdin ready</source>
     3661        <translation type="unfinished"></translation>
     3662    </message>
     3663    <message>
     3664        <location filename="../VBoxManageGuestCtrl.cpp" line="379"/>
     3665        <source>data on stdout</source>
     3666        <translation type="unfinished"></translation>
     3667    </message>
     3668    <message>
     3669        <location filename="../VBoxManageGuestCtrl.cpp" line="381"/>
     3670        <source>data on stderr</source>
     3671        <translation type="unfinished"></translation>
     3672    </message>
     3673    <message>
     3674        <location filename="../VBoxManageGuestCtrl.cpp" line="383"/>
     3675        <source>waiting flag not supported</source>
     3676        <translation type="unfinished"></translation>
     3677    </message>
     3678    <message>
     3679        <location filename="../VBoxManageGuestCtrl.cpp" line="427"/>
     3680        <source>opening</source>
     3681        <translation type="unfinished"></translation>
     3682    </message>
     3683    <message>
     3684        <location filename="../VBoxManageGuestCtrl.cpp" line="429"/>
     3685        <source>open</source>
     3686        <translation type="unfinished"></translation>
     3687    </message>
     3688    <message>
     3689        <location filename="../VBoxManageGuestCtrl.cpp" line="431"/>
     3690        <source>closing</source>
     3691        <translation type="unfinished"></translation>
     3692    </message>
     3693    <message>
     3694        <location filename="../VBoxManageGuestCtrl.cpp" line="433"/>
     3695        <source>closed</source>
     3696        <translation type="unfinished"></translation>
     3697    </message>
     3698    <message>
     3699        <location filename="../VBoxManageGuestCtrl.cpp" line="452"/>
     3700        <source>fifo</source>
     3701        <translation type="unfinished"></translation>
     3702    </message>
     3703    <message>
     3704        <location filename="../VBoxManageGuestCtrl.cpp" line="453"/>
     3705        <source>char-device</source>
     3706        <translation type="unfinished"></translation>
     3707    </message>
     3708    <message>
     3709        <location filename="../VBoxManageGuestCtrl.cpp" line="454"/>
     3710        <source>directory</source>
     3711        <translation type="unfinished"></translation>
     3712    </message>
     3713    <message>
     3714        <location filename="../VBoxManageGuestCtrl.cpp" line="455"/>
     3715        <source>block-device</source>
     3716        <translation type="unfinished"></translation>
     3717    </message>
     3718    <message>
     3719        <location filename="../VBoxManageGuestCtrl.cpp" line="456"/>
     3720        <source>file</source>
     3721        <translation type="unfinished"></translation>
     3722    </message>
     3723    <message>
     3724        <location filename="../VBoxManageGuestCtrl.cpp" line="457"/>
     3725        <source>symlink</source>
     3726        <translation type="unfinished"></translation>
     3727    </message>
     3728    <message>
     3729        <location filename="../VBoxManageGuestCtrl.cpp" line="458"/>
     3730        <source>socket</source>
     3731        <translation type="unfinished"></translation>
     3732    </message>
     3733    <message>
     3734        <location filename="../VBoxManageGuestCtrl.cpp" line="459"/>
     3735        <source>white-out</source>
     3736        <translation type="unfinished"></translation>
     3737    </message>
     3738    <message>
     3739        <location filename="../VBoxManageGuestCtrl.cpp" line="478"/>
     3740        <source>Error details:</source>
     3741        <translation type="unfinished"></translation>
     3742    </message>
     3743    <message>
    38593744        <location filename="../VBoxManageGuestCtrl.cpp" line="483"/>
    3860         <source>terminated by signal</source>
    3861         <translation type="unfinished"></translation>
    3862     </message>
    3863     <message>
    3864         <location filename="../VBoxManageGuestCtrl.cpp" line="485"/>
    3865         <source>abnormally aborted</source>
    3866         <translation type="unfinished"></translation>
    3867     </message>
    3868     <message>
    3869         <location filename="../VBoxManageGuestCtrl.cpp" line="487"/>
    3870         <location filename="../VBoxManageGuestCtrl.cpp" line="516"/>
    3871         <location filename="../VBoxManageGuestCtrl.cpp" line="547"/>
    3872         <source>timed out</source>
    3873         <translation type="unfinished"></translation>
    3874     </message>
    3875     <message>
    3876         <location filename="../VBoxManageGuestCtrl.cpp" line="489"/>
    3877         <location filename="../VBoxManageGuestCtrl.cpp" line="549"/>
    3878         <source>timed out, hanging</source>
    3879         <translation type="unfinished"></translation>
    3880     </message>
    3881     <message>
    3882         <location filename="../VBoxManageGuestCtrl.cpp" line="491"/>
    3883         <location filename="../VBoxManageGuestCtrl.cpp" line="551"/>
    3884         <location filename="../VBoxManageGuestCtrl.cpp" line="576"/>
    3885         <source>killed</source>
    3886         <translation type="unfinished"></translation>
    3887     </message>
    3888     <message>
    3889         <location filename="../VBoxManageGuestCtrl.cpp" line="493"/>
    3890         <location filename="../VBoxManageGuestCtrl.cpp" line="514"/>
    3891         <location filename="../VBoxManageGuestCtrl.cpp" line="553"/>
    3892         <location filename="../VBoxManageGuestCtrl.cpp" line="578"/>
    3893         <source>error</source>
    3894         <translation type="unfinished"></translation>
    3895     </message>
    3896     <message>
    3897         <location filename="../VBoxManageGuestCtrl.cpp" line="497"/>
    3898         <location filename="../VBoxManageGuestCtrl.cpp" line="528"/>
    3899         <location filename="../VBoxManageGuestCtrl.cpp" line="557"/>
    3900         <location filename="../VBoxManageGuestCtrl.cpp" line="582"/>
    3901         <location filename="../VBoxManageGuestCtrl.cpp" line="592"/>
    3902         <location filename="../VBoxManageGuestCtrl.cpp" line="605"/>
    3903         <source>unknown</source>
    3904         <translation type="unfinished"></translation>
    3905     </message>
    3906     <message>
    3907         <location filename="../VBoxManageGuestCtrl.cpp" line="510"/>
    3908         <location filename="../VBoxManageGuestCtrl.cpp" line="545"/>
    3909         <source>terminated</source>
    3910         <translation type="unfinished"></translation>
    3911     </message>
    3912     <message>
    3913         <location filename="../VBoxManageGuestCtrl.cpp" line="512"/>
    3914         <source>status changed</source>
    3915         <translation type="unfinished"></translation>
    3916     </message>
    3917     <message>
    3918         <location filename="../VBoxManageGuestCtrl.cpp" line="518"/>
    3919         <source>stdin ready</source>
    3920         <translation type="unfinished"></translation>
    3921     </message>
    3922     <message>
    3923         <location filename="../VBoxManageGuestCtrl.cpp" line="520"/>
    3924         <source>data on stdout</source>
    3925         <translation type="unfinished"></translation>
    3926     </message>
    3927     <message>
    3928         <location filename="../VBoxManageGuestCtrl.cpp" line="522"/>
    3929         <source>data on stderr</source>
    3930         <translation type="unfinished"></translation>
    3931     </message>
    3932     <message>
    3933         <location filename="../VBoxManageGuestCtrl.cpp" line="524"/>
    3934         <source>waiting flag not supported</source>
    3935         <translation type="unfinished"></translation>
    3936     </message>
    3937     <message>
    3938         <location filename="../VBoxManageGuestCtrl.cpp" line="568"/>
    3939         <source>opening</source>
    3940         <translation type="unfinished"></translation>
    3941     </message>
    3942     <message>
    3943         <location filename="../VBoxManageGuestCtrl.cpp" line="570"/>
    3944         <source>open</source>
    3945         <translation type="unfinished"></translation>
    3946     </message>
    3947     <message>
    3948         <location filename="../VBoxManageGuestCtrl.cpp" line="572"/>
    3949         <source>closing</source>
     3745        <source>Object has indicated no error (%Rhrc)!?
     3746</source>
     3747        <translation type="unfinished"></translation>
     3748    </message>
     3749    <message>
     3750        <location filename="../VBoxManageGuestCtrl.cpp" line="515"/>
     3751        <source>Could not lookup progress information
     3752</source>
    39503753        <translation type="unfinished"></translation>
    39513754    </message>
    39523755    <message>
    39533756        <location filename="../VBoxManageGuestCtrl.cpp" line="574"/>
    3954         <source>closed</source>
    3955         <translation type="unfinished"></translation>
    3956     </message>
    3957     <message>
    3958         <location filename="../VBoxManageGuestCtrl.cpp" line="593"/>
    3959         <source>fifo</source>
    3960         <translation type="unfinished"></translation>
    3961     </message>
    3962     <message>
    3963         <location filename="../VBoxManageGuestCtrl.cpp" line="594"/>
    3964         <source>char-device</source>
    3965         <translation type="unfinished"></translation>
    3966     </message>
    3967     <message>
    3968         <location filename="../VBoxManageGuestCtrl.cpp" line="595"/>
    3969         <source>directory</source>
    3970         <translation type="unfinished"></translation>
    3971     </message>
    3972     <message>
    3973         <location filename="../VBoxManageGuestCtrl.cpp" line="596"/>
    3974         <source>block-device</source>
    3975         <translation type="unfinished"></translation>
    3976     </message>
    3977     <message>
    3978         <location filename="../VBoxManageGuestCtrl.cpp" line="597"/>
    3979         <source>file</source>
    3980         <translation type="unfinished"></translation>
    3981     </message>
    3982     <message>
    3983         <location filename="../VBoxManageGuestCtrl.cpp" line="598"/>
    3984         <source>symlink</source>
    3985         <translation type="unfinished"></translation>
    3986     </message>
    3987     <message>
    3988         <location filename="../VBoxManageGuestCtrl.cpp" line="599"/>
    3989         <source>socket</source>
    3990         <translation type="unfinished"></translation>
    3991     </message>
    3992     <message>
    3993         <location filename="../VBoxManageGuestCtrl.cpp" line="600"/>
    3994         <source>white-out</source>
    3995         <translation type="unfinished"></translation>
    3996     </message>
    3997     <message>
    3998         <location filename="../VBoxManageGuestCtrl.cpp" line="619"/>
    3999         <source>Error details:</source>
    4000         <translation type="unfinished"></translation>
    4001     </message>
    4002     <message>
    4003         <location filename="../VBoxManageGuestCtrl.cpp" line="624"/>
    4004         <source>Object has indicated no error (%Rhrc)!?
    4005 </source>
    4006         <translation type="unfinished"></translation>
    4007     </message>
    4008     <message>
    4009         <location filename="../VBoxManageGuestCtrl.cpp" line="656"/>
    4010         <source>Could not lookup progress information
    4011 </source>
    4012         <translation type="unfinished"></translation>
    4013     </message>
    4014     <message>
    4015         <location filename="../VBoxManageGuestCtrl.cpp" line="715"/>
    4016         <location filename="../VBoxManageGuestCtrl.cpp" line="3400"/>
     3757        <location filename="../VBoxManageGuestCtrl.cpp" line="3247"/>
    40173758        <source>Out of memory</source>
    40183759        <translation type="unfinished"></translation>
    40193760    </message>
    40203761    <message>
    4021         <location filename="../VBoxManageGuestCtrl.cpp" line="743"/>
     3762        <location filename="../VBoxManageGuestCtrl.cpp" line="602"/>
    40223763        <source>The --username|-u option is ignored by &apos;%s&apos;</source>
    40233764        <translation type="unfinished"></translation>
    40243765    </message>
    40253766    <message>
    4026         <location filename="../VBoxManageGuestCtrl.cpp" line="750"/>
     3767        <location filename="../VBoxManageGuestCtrl.cpp" line="609"/>
    40273768        <source>Password is given more than once.</source>
    40283769        <translation type="unfinished"></translation>
    40293770    </message>
    40303771    <message>
     3772        <location filename="../VBoxManageGuestCtrl.cpp" line="613"/>
     3773        <source>The --password option is ignored by &apos;%s&apos;</source>
     3774        <translation type="unfinished"></translation>
     3775    </message>
     3776    <message>
     3777        <location filename="../VBoxManageGuestCtrl.cpp" line="620"/>
     3778        <source>The --password-file|-p option is ignored by &apos;%s&apos;</source>
     3779        <translation type="unfinished"></translation>
     3780    </message>
     3781    <message>
     3782        <location filename="../VBoxManageGuestCtrl.cpp" line="627"/>
     3783        <source>The --domain option is ignored by &apos;%s&apos;</source>
     3784        <translation type="unfinished"></translation>
     3785    </message>
     3786    <message>
     3787        <location filename="../VBoxManageGuestCtrl.cpp" line="692"/>
     3788        <source>Failed to get a IConsole pointer for the machine. Is it still running?
     3789</source>
     3790        <translation type="unfinished"></translation>
     3791    </message>
     3792    <message>
     3793        <location filename="../VBoxManageGuestCtrl.cpp" line="697"/>
     3794        <source>Machine &quot;%s&quot; is not running (currently %s)!
     3795</source>
     3796        <translation type="unfinished"></translation>
     3797    </message>
     3798    <message>
     3799        <location filename="../VBoxManageGuestCtrl.cpp" line="726"/>
     3800        <source>[%RU32] VBoxManage Guest Control [%s] - %s</source>
     3801        <translation type="unfinished"></translation>
     3802    </message>
     3803    <message>
     3804        <location filename="../VBoxManageGuestCtrl.cpp" line="728"/>
     3805        <source>No enough memory for session name</source>
     3806        <translation type="unfinished"></translation>
     3807    </message>
     3808    <message>
     3809        <location filename="../VBoxManageGuestCtrl.cpp" line="734"/>
     3810        <source>Creating guest session as user &apos;%s&apos;...
     3811</source>
     3812        <translation type="unfinished"></translation>
     3813    </message>
     3814    <message>
     3815        <location filename="../VBoxManageGuestCtrl.cpp" line="745"/>
     3816        <source>Out of memory setting up IGuest::CreateSession call</source>
     3817        <translation type="unfinished"></translation>
     3818    </message>
     3819    <message>
    40313820        <location filename="../VBoxManageGuestCtrl.cpp" line="754"/>
    4032         <source>The --password option is ignored by &apos;%s&apos;</source>
    4033         <translation type="unfinished"></translation>
    4034     </message>
    4035     <message>
    4036         <location filename="../VBoxManageGuestCtrl.cpp" line="761"/>
    4037         <source>The --password-file|-p option is ignored by &apos;%s&apos;</source>
    4038         <translation type="unfinished"></translation>
    4039     </message>
    4040     <message>
    4041         <location filename="../VBoxManageGuestCtrl.cpp" line="768"/>
    4042         <source>The --domain option is ignored by &apos;%s&apos;</source>
    4043         <translation type="unfinished"></translation>
    4044     </message>
    4045     <message>
    4046         <location filename="../VBoxManageGuestCtrl.cpp" line="833"/>
    4047         <source>Failed to get a IConsole pointer for the machine. Is it still running?
    4048 </source>
    4049         <translation type="unfinished"></translation>
    4050     </message>
    4051     <message>
    4052         <location filename="../VBoxManageGuestCtrl.cpp" line="838"/>
    4053         <source>Machine &quot;%s&quot; is not running (currently %s)!
    4054 </source>
    4055         <translation type="unfinished"></translation>
    4056     </message>
    4057     <message>
    4058         <location filename="../VBoxManageGuestCtrl.cpp" line="867"/>
    4059         <source>[%RU32] VBoxManage Guest Control [%s] - %s</source>
    4060         <translation type="unfinished"></translation>
    4061     </message>
    4062     <message>
    4063         <location filename="../VBoxManageGuestCtrl.cpp" line="869"/>
    4064         <source>No enough memory for session name</source>
    4065         <translation type="unfinished"></translation>
    4066     </message>
    4067     <message>
    4068         <location filename="../VBoxManageGuestCtrl.cpp" line="875"/>
    4069         <source>Creating guest session as user &apos;%s&apos;...
    4070 </source>
    4071         <translation type="unfinished"></translation>
    4072     </message>
    4073     <message>
    4074         <location filename="../VBoxManageGuestCtrl.cpp" line="886"/>
    4075         <source>Out of memory setting up IGuest::CreateSession call</source>
    4076         <translation type="unfinished"></translation>
    4077     </message>
    4078     <message>
    4079         <location filename="../VBoxManageGuestCtrl.cpp" line="895"/>
    40803821        <source>Waiting for guest session to start...
    40813822</source>
     
    40833824    </message>
    40843825    <message>
    4085         <location filename="../VBoxManageGuestCtrl.cpp" line="907"/>
     3826        <location filename="../VBoxManageGuestCtrl.cpp" line="766"/>
    40863827        <source>Out of memory setting up IGuestSession::WaitForArray call</source>
    40873828        <translation type="unfinished"></translation>
    40883829    </message>
    40893830    <message>
    4090         <location filename="../VBoxManageGuestCtrl.cpp" line="923"/>
     3831        <location filename="../VBoxManageGuestCtrl.cpp" line="782"/>
    40913832        <source>Successfully started guest session (ID %RU32)
    40923833</source>
     
    40943835    </message>
    40953836    <message>
    4096         <location filename="../VBoxManageGuestCtrl.cpp" line="932"/>
     3837        <location filename="../VBoxManageGuestCtrl.cpp" line="791"/>
    40973838        <source>Error starting guest session (current status is: %s)
    40983839</source>
     
    41003841    </message>
    41013842    <message>
    4102         <location filename="../VBoxManageGuestCtrl.cpp" line="933"/>
     3843        <location filename="../VBoxManageGuestCtrl.cpp" line="792"/>
    41033844        <source>&lt;unknown&gt;</source>
    41043845        <translation type="unfinished"></translation>
    41053846    </message>
    41063847    <message>
    4107         <location filename="../VBoxManageGuestCtrl.cpp" line="992"/>
     3848        <location filename="../VBoxManageGuestCtrl.cpp" line="851"/>
    41083849        <source>No user name specified!</source>
    41093850        <translation type="unfinished"></translation>
    41103851    </message>
    41113852    <message>
    4112         <location filename="../VBoxManageGuestCtrl.cpp" line="1032"/>
     3853        <location filename="../VBoxManageGuestCtrl.cpp" line="891"/>
    41133854        <source>Closing guest session ...
    41143855</source>
     
    41163857    </message>
    41173858    <message>
    4118         <location filename="../VBoxManageGuestCtrl.cpp" line="1038"/>
     3859        <location filename="../VBoxManageGuestCtrl.cpp" line="897"/>
    41193860        <source>Guest session detached
    41203861</source>
     
    41223863    </message>
    41233864    <message>
    4124         <location filename="../VBoxManageGuestCtrl.cpp" line="1199"/>
     3865        <location filename="../VBoxManageGuestCtrl.cpp" line="1058"/>
    41253866        <source>Unable to write output, rc=%Rrc
    41263867</source>
     
    41283869    </message>
    41293870    <message>
    4130         <location filename="../VBoxManageGuestCtrl.cpp" line="1229"/>
     3871        <location filename="../VBoxManageGuestCtrl.cpp" line="1088"/>
    41313872        <source>Unsupported %s line ending conversion</source>
    41323873        <translation type="unfinished"></translation>
    41333874    </message>
    41343875    <message>
    4135         <location filename="../VBoxManageGuestCtrl.cpp" line="1234"/>
     3876        <location filename="../VBoxManageGuestCtrl.cpp" line="1093"/>
    41363877        <source>Error getting %s handle: %Rrc</source>
    41373878        <translation type="unfinished"></translation>
    41383879    </message>
    41393880    <message>
    4140         <location filename="../VBoxManageGuestCtrl.cpp" line="1360"/>
     3881        <location filename="../VBoxManageGuestCtrl.cpp" line="1216"/>
    41413882        <source>Invalid argument variable[=value]: &apos;%s&apos;</source>
    41423883        <translation type="unfinished"></translation>
    41433884    </message>
    41443885    <message>
    4145         <location filename="../VBoxManageGuestCtrl.cpp" line="1370"/>
     3886        <location filename="../VBoxManageGuestCtrl.cpp" line="1226"/>
    41463887        <source>Warning: Deprecated option &quot;--no-profile&quot; specified
    41473888</source>
     
    41493890    </message>
    41503891    <message>
    4151         <location filename="../VBoxManageGuestCtrl.cpp" line="1436"/>
     3892        <location filename="../VBoxManageGuestCtrl.cpp" line="1292"/>
    41523893        <source>No executable specified!</source>
    41533894        <translation type="unfinished"></translation>
    41543895    </message>
    41553896    <message>
    4156         <location filename="../VBoxManageGuestCtrl.cpp" line="1488"/>
     3897        <location filename="../VBoxManageGuestCtrl.cpp" line="1344"/>
    41573898        <source>Starting guest process ...
    41583899</source>
     
    41603901    </message>
    41613902    <message>
    4162         <location filename="../VBoxManageGuestCtrl.cpp" line="1490"/>
     3903        <location filename="../VBoxManageGuestCtrl.cpp" line="1346"/>
    41633904        <source>Starting guest process (within %ums)
    41643905</source>
     
    41663907    </message>
    41673908    <message>
    4168         <location filename="../VBoxManageGuestCtrl.cpp" line="1512"/>
     3909        <location filename="../VBoxManageGuestCtrl.cpp" line="1368"/>
    41693910        <source>Process &apos;%s&apos; (PID %RU32) started
    41703911</source>
     
    41723913    </message>
    41733914    <message>
    4174         <location filename="../VBoxManageGuestCtrl.cpp" line="1517"/>
     3915        <location filename="../VBoxManageGuestCtrl.cpp" line="1373"/>
    41753916        <source>[%RU32 - Session %RU32]
    41763917</source>
     
    41783919    </message>
    41793920    <message>
     3921        <location filename="../VBoxManageGuestCtrl.cpp" line="1394"/>
     3922        <source>waitResult: %d
     3923</source>
     3924        <translation type="unfinished"></translation>
     3925    </message>
     3926    <message>
     3927        <location filename="../VBoxManageGuestCtrl.cpp" line="1410"/>
     3928        <source>Process terminated
     3929</source>
     3930        <translation type="unfinished"></translation>
     3931    </message>
     3932    <message>
     3933        <location filename="../VBoxManageGuestCtrl.cpp" line="1487"/>
     3934        <source>Process execution aborted!
     3935</source>
     3936        <translation type="unfinished"></translation>
     3937    </message>
     3938    <message>
     3939        <location filename="../VBoxManageGuestCtrl.cpp" line="1493"/>
     3940        <source>Process successfully started!
     3941</source>
     3942        <translation type="unfinished"></translation>
     3943    </message>
     3944    <message>
     3945        <location filename="../VBoxManageGuestCtrl.cpp" line="1507"/>
     3946        <source>Exit code=%u (Status=%u [%s])
     3947</source>
     3948        <translation type="unfinished"></translation>
     3949    </message>
     3950    <message>
     3951        <location filename="../VBoxManageGuestCtrl.cpp" line="1516"/>
     3952        <source>Process timed out (guest side) and %s
     3953</source>
     3954        <translation type="unfinished"></translation>
     3955    </message>
     3956    <message>
     3957        <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/>
     3958        <source>failed to terminate so far</source>
     3959        <translation type="unfinished"></translation>
     3960    </message>
     3961    <message>
     3962        <location filename="../VBoxManageGuestCtrl.cpp" line="1518"/>
     3963        <source>was terminated</source>
     3964        <translation type="unfinished"></translation>
     3965    </message>
     3966    <message>
     3967        <location filename="../VBoxManageGuestCtrl.cpp" line="1524"/>
     3968        <source>Process now is in status [%s] (unexpected)
     3969</source>
     3970        <translation type="unfinished"></translation>
     3971    </message>
     3972    <message>
     3973        <location filename="../VBoxManageGuestCtrl.cpp" line="1532"/>
     3974        <source>Process monitor loop quit with vrc=%Rrc
     3975</source>
     3976        <translation type="unfinished"></translation>
     3977    </message>
     3978    <message>
    41803979        <location filename="../VBoxManageGuestCtrl.cpp" line="1538"/>
    4181         <source>waitResult: %d
    4182 </source>
    4183         <translation type="unfinished"></translation>
    4184     </message>
    4185     <message>
    4186         <location filename="../VBoxManageGuestCtrl.cpp" line="1554"/>
    4187         <source>Process terminated
    4188 </source>
    4189         <translation type="unfinished"></translation>
    4190     </message>
    4191     <message>
    4192         <location filename="../VBoxManageGuestCtrl.cpp" line="1631"/>
    4193         <source>Process execution aborted!
    4194 </source>
    4195         <translation type="unfinished"></translation>
    4196     </message>
    4197     <message>
    4198         <location filename="../VBoxManageGuestCtrl.cpp" line="1637"/>
    4199         <source>Process successfully started!
    4200 </source>
    4201         <translation type="unfinished"></translation>
    4202     </message>
    4203     <message>
    4204         <location filename="../VBoxManageGuestCtrl.cpp" line="1651"/>
    4205         <source>Exit code=%u (Status=%u [%s])
    4206 </source>
    4207         <translation type="unfinished"></translation>
    4208     </message>
    4209     <message>
    4210         <location filename="../VBoxManageGuestCtrl.cpp" line="1660"/>
    4211         <source>Process timed out (guest side) and %s
    4212 </source>
    4213         <translation type="unfinished"></translation>
    4214     </message>
    4215     <message>
    4216         <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>
    4217         <source>failed to terminate so far</source>
    4218         <translation type="unfinished"></translation>
    4219     </message>
    4220     <message>
    4221         <location filename="../VBoxManageGuestCtrl.cpp" line="1662"/>
    4222         <source>was terminated</source>
    4223         <translation type="unfinished"></translation>
    4224     </message>
    4225     <message>
    4226         <location filename="../VBoxManageGuestCtrl.cpp" line="1668"/>
    4227         <source>Process now is in status [%s] (unexpected)
    4228 </source>
    4229         <translation type="unfinished"></translation>
    4230     </message>
    4231     <message>
    4232         <location filename="../VBoxManageGuestCtrl.cpp" line="1676"/>
    4233         <source>Process monitor loop quit with vrc=%Rrc
    4234 </source>
    4235         <translation type="unfinished"></translation>
    4236     </message>
    4237     <message>
    4238         <location filename="../VBoxManageGuestCtrl.cpp" line="1682"/>
    42393980        <source>Process monitor loop timed out
    42403981</source>
     
    42423983    </message>
    42433984    <message>
    4244         <location filename="../VBoxManageGuestCtrl.cpp" line="1786"/>
     3985        <location filename="../VBoxManageGuestCtrl.cpp" line="1641"/>
    42453986        <source>No sources specified!</source>
    42463987        <translation type="unfinished"></translation>
    42473988    </message>
    42483989    <message>
    4249         <location filename="../VBoxManageGuestCtrl.cpp" line="1794"/>
    4250         <location filename="../VBoxManageGuestCtrl.cpp" line="2348"/>
     3990        <location filename="../VBoxManageGuestCtrl.cpp" line="1649"/>
     3991        <location filename="../VBoxManageGuestCtrl.cpp" line="2201"/>
    42513992        <source>No destination specified!</source>
    42523993        <translation type="unfinished"></translation>
    42533994    </message>
    42543995    <message>
    4255         <location filename="../VBoxManageGuestCtrl.cpp" line="1803"/>
    4256         <location filename="../VBoxManageGuestCtrl.cpp" line="1907"/>
     3996        <location filename="../VBoxManageGuestCtrl.cpp" line="1658"/>
     3997        <location filename="../VBoxManageGuestCtrl.cpp" line="1762"/>
    42573998        <source>RTPathAbs failed on &apos;%s&apos;: %Rrc</source>
    42583999        <translation type="unfinished"></translation>
    42594000    </message>
    42604001    <message>
    4261         <location filename="../VBoxManageGuestCtrl.cpp" line="1816"/>
     4002        <location filename="../VBoxManageGuestCtrl.cpp" line="1671"/>
    42624003        <source>Copying from host to guest ...
    42634004</source>
     
    42654006    </message>
    42664007    <message>
    4267         <location filename="../VBoxManageGuestCtrl.cpp" line="1818"/>
     4008        <location filename="../VBoxManageGuestCtrl.cpp" line="1673"/>
    42684009        <source>Copying from guest to host ...
    42694010</source>
     
    42714012    </message>
    42724013    <message>
    4273         <location filename="../VBoxManageGuestCtrl.cpp" line="1830"/>
    4274         <location filename="../VBoxManageGuestCtrl.cpp" line="1904"/>
     4014        <location filename="../VBoxManageGuestCtrl.cpp" line="1685"/>
     4015        <location filename="../VBoxManageGuestCtrl.cpp" line="1759"/>
    42754016        <source>RTPathQueryInfo failed on &apos;%s&apos;: %Rrc</source>
    42764017        <translation type="unfinished"></translation>
    42774018    </message>
    42784019    <message>
    4279         <location filename="../VBoxManageGuestCtrl.cpp" line="1848"/>
     4020        <location filename="../VBoxManageGuestCtrl.cpp" line="1703"/>
    42804021        <source>Destination must be a directory!</source>
    42814022        <translation type="unfinished"></translation>
    42824023    </message>
    42834024    <message>
    4284         <location filename="../VBoxManageGuestCtrl.cpp" line="1880"/>
    4285         <location filename="../VBoxManageGuestCtrl.cpp" line="1941"/>
     4025        <location filename="../VBoxManageGuestCtrl.cpp" line="1735"/>
     4026        <location filename="../VBoxManageGuestCtrl.cpp" line="1796"/>
    42864027        <source>File &apos;%s&apos; -&gt; &apos;%s&apos;
    42874028</source>
     
    42894030    </message>
    42904031    <message>
    4291         <location filename="../VBoxManageGuestCtrl.cpp" line="1889"/>
    4292         <location filename="../VBoxManageGuestCtrl.cpp" line="1927"/>
     4032        <location filename="../VBoxManageGuestCtrl.cpp" line="1744"/>
     4033        <location filename="../VBoxManageGuestCtrl.cpp" line="1782"/>
    42934034        <source>Directory &apos;%s&apos; -&gt; &apos;%s&apos;
    42944035</source>
     
    42964037    </message>
    42974038    <message>
    4298         <location filename="../VBoxManageGuestCtrl.cpp" line="1901"/>
    4299         <location filename="../VBoxManageGuestCtrl.cpp" line="1950"/>
     4039        <location filename="../VBoxManageGuestCtrl.cpp" line="1756"/>
     4040        <location filename="../VBoxManageGuestCtrl.cpp" line="1805"/>
    43004041        <source>Not a file or directory: %s
    43014042</source>
     
    43034044    </message>
    43044045    <message>
    4305         <location filename="../VBoxManageGuestCtrl.cpp" line="1956"/>
     4046        <location filename="../VBoxManageGuestCtrl.cpp" line="1811"/>
    43064047        <source>FsObjQueryInfo failed on &apos;%s&apos;: %Rhrc</source>
    43074048        <translation type="unfinished"></translation>
    43084049    </message>
    43094050    <message>
    4310         <location filename="../VBoxManageGuestCtrl.cpp" line="1970"/>
     4051        <location filename="../VBoxManageGuestCtrl.cpp" line="1825"/>
    43114052        <source>File copy failed</source>
    43124053        <translation type="unfinished"></translation>
    43134054    </message>
    43144055    <message numerus="yes">
    4315         <location filename="../VBoxManageGuestCtrl.cpp" line="2039"/>
     4056        <location filename="../VBoxManageGuestCtrl.cpp" line="1894"/>
    43164057        <source>Creating %RU32 directories...
    43174058</source>
     
    43214062    </message>
    43224063    <message>
    4323         <location filename="../VBoxManageGuestCtrl.cpp" line="2043"/>
     4064        <location filename="../VBoxManageGuestCtrl.cpp" line="1898"/>
    43244065        <source>mkdir was interrupted by Ctrl-C (%u left)
    43254066</source>
     
    43274068    </message>
    43284069    <message>
    4329         <location filename="../VBoxManageGuestCtrl.cpp" line="2056"/>
     4070        <location filename="../VBoxManageGuestCtrl.cpp" line="1911"/>
    43304071        <source>Creating directory &quot;%s&quot; ...
    43314072</source>
     
    43334074    </message>
    43344075    <message>
    4335         <location filename="../VBoxManageGuestCtrl.cpp" line="2067"/>
    4336         <location filename="../VBoxManageGuestCtrl.cpp" line="2151"/>
    4337         <location filename="../VBoxManageGuestCtrl.cpp" line="2272"/>
     4076        <location filename="../VBoxManageGuestCtrl.cpp" line="1922"/>
     4077        <location filename="../VBoxManageGuestCtrl.cpp" line="2006"/>
     4078        <location filename="../VBoxManageGuestCtrl.cpp" line="2127"/>
    43384079        <source>Out of memory
    43394080</source>
     
    43414082    </message>
    43424083    <message>
    4343         <location filename="../VBoxManageGuestCtrl.cpp" line="2077"/>
     4084        <location filename="../VBoxManageGuestCtrl.cpp" line="1932"/>
    43444085        <source>No directory to create specified!</source>
    43454086        <translation type="unfinished"></translation>
    43464087    </message>
    43474088    <message numerus="yes">
    4348         <location filename="../VBoxManageGuestCtrl.cpp" line="2125"/>
     4089        <location filename="../VBoxManageGuestCtrl.cpp" line="1980"/>
    43494090        <source>Removing %RU32 directory tree(s)...
    43504091</source>
     
    43544095    </message>
    43554096    <message numerus="yes">
    4356         <location filename="../VBoxManageGuestCtrl.cpp" line="2128"/>
     4097        <location filename="../VBoxManageGuestCtrl.cpp" line="1983"/>
    43574098        <source>Removing %RU32 directorie(s)...
    43584099</source>
     
    43624103    </message>
    43634104    <message>
    4364         <location filename="../VBoxManageGuestCtrl.cpp" line="2133"/>
     4105        <location filename="../VBoxManageGuestCtrl.cpp" line="1988"/>
    43654106        <source>rmdir was interrupted by Ctrl-C (%u left)
    43664107</source>
     
    43684109    </message>
    43694110    <message>
    4370         <location filename="../VBoxManageGuestCtrl.cpp" line="2144"/>
     4111        <location filename="../VBoxManageGuestCtrl.cpp" line="1999"/>
    43714112        <source>Removing directory &quot;%s&quot; ...
    43724113</source>
     
    43744115    </message>
    43754116    <message>
    4376         <location filename="../VBoxManageGuestCtrl.cpp" line="2163"/>
     4117        <location filename="../VBoxManageGuestCtrl.cpp" line="2018"/>
    43774118        <source>Recursively removing directory &quot;%s&quot; ...
    43784119</source>
     
    43804121    </message>
    43814122    <message>
    4382         <location filename="../VBoxManageGuestCtrl.cpp" line="2181"/>
     4123        <location filename="../VBoxManageGuestCtrl.cpp" line="2036"/>
    43834124        <source>Directory deletion failed</source>
    43844125        <translation type="unfinished"></translation>
    43854126    </message>
    43864127    <message>
    4387         <location filename="../VBoxManageGuestCtrl.cpp" line="2187"/>
     4128        <location filename="../VBoxManageGuestCtrl.cpp" line="2042"/>
    43884129        <source>Out of memory during recursive rmdir
    43894130</source>
     
    43914132    </message>
    43924133    <message>
    4393         <location filename="../VBoxManageGuestCtrl.cpp" line="2205"/>
     4134        <location filename="../VBoxManageGuestCtrl.cpp" line="2060"/>
    43944135        <source>No directory to remove specified!</source>
    43954136        <translation type="unfinished"></translation>
    43964137    </message>
    43974138    <message numerus="yes">
    4398         <location filename="../VBoxManageGuestCtrl.cpp" line="2245"/>
     4139        <location filename="../VBoxManageGuestCtrl.cpp" line="2100"/>
    43994140        <source>Removing %RU32 file(s)...
    44004141</source>
     
    44044145    </message>
    44054146    <message>
    4406         <location filename="../VBoxManageGuestCtrl.cpp" line="2249"/>
     4147        <location filename="../VBoxManageGuestCtrl.cpp" line="2104"/>
    44074148        <source>rm was interrupted by Ctrl-C (%u left)
    44084149</source>
     
    44104151    </message>
    44114152    <message>
    4412         <location filename="../VBoxManageGuestCtrl.cpp" line="2260"/>
     4153        <location filename="../VBoxManageGuestCtrl.cpp" line="2115"/>
    44134154        <source>Removing file &quot;%s&quot; ...
    44144155</source>
     
    44164157    </message>
    44174158    <message>
    4418         <location filename="../VBoxManageGuestCtrl.cpp" line="2282"/>
     4159        <location filename="../VBoxManageGuestCtrl.cpp" line="2137"/>
    44194160        <source>No file to remove specified!</source>
    44204161        <translation type="unfinished"></translation>
    44214162    </message>
    44224163    <message>
    4423         <location filename="../VBoxManageGuestCtrl.cpp" line="2340"/>
     4164        <location filename="../VBoxManageGuestCtrl.cpp" line="2195"/>
    44244165        <source>Failed to initialize, rc=%Rrc
    44254166</source>
     
    44274168    </message>
    44284169    <message>
    4429         <location filename="../VBoxManageGuestCtrl.cpp" line="2345"/>
     4170        <location filename="../VBoxManageGuestCtrl.cpp" line="2199"/>
    44304171        <source>No source(s) to move specified!</source>
    44314172        <translation type="unfinished"></translation>
    44324173    </message>
    44334174    <message>
    4434         <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/>
     4175        <location filename="../VBoxManageGuestCtrl.cpp" line="2220"/>
    44354176        <source>Destination does not exist
    44364177</source>
     
    44384179    </message>
    44394180    <message>
    4440         <location filename="../VBoxManageGuestCtrl.cpp" line="2377"/>
     4181        <location filename="../VBoxManageGuestCtrl.cpp" line="2230"/>
    44414182        <source>Destination must be a directory when specifying multiple sources
    44424183</source>
     
    44444185    </message>
    44454186    <message>
    4446         <location filename="../VBoxManageGuestCtrl.cpp" line="2381"/>
     4187        <location filename="../VBoxManageGuestCtrl.cpp" line="2234"/>
    44474188        <source>Unable to determine destination type: %Rhrc
    44484189</source>
     
    44504191    </message>
    44514192    <message>
    4452         <location filename="../VBoxManageGuestCtrl.cpp" line="2390"/>
     4193        <location filename="../VBoxManageGuestCtrl.cpp" line="2243"/>
    44534194        <source>Renaming %RU32 %s ...
    44544195</source>
     
    44564197    </message>
    44574198    <message numerus="yes">
    4458         <location filename="../VBoxManageGuestCtrl.cpp" line="2391"/>
     4199        <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/>
    44594200        <source>sources</source>
    44604201        <translation type="unfinished">
     
    44634204    </message>
    44644205    <message>
    4465         <location filename="../VBoxManageGuestCtrl.cpp" line="2391"/>
     4206        <location filename="../VBoxManageGuestCtrl.cpp" line="2244"/>
    44664207        <source>source</source>
    44674208        <translation type="unfinished"></translation>
    44684209    </message>
    44694210    <message>
    4470         <location filename="../VBoxManageGuestCtrl.cpp" line="2406"/>
     4211        <location filename="../VBoxManageGuestCtrl.cpp" line="2259"/>
    44714212        <source>Cannot stat &quot;%s&quot;: No such file or directory
    44724213</source>
     
    44744215    </message>
    44754216    <message>
    4476         <location filename="../VBoxManageGuestCtrl.cpp" line="2423"/>
     4217        <location filename="../VBoxManageGuestCtrl.cpp" line="2276"/>
    44774218        <source>Renaming %s &quot;%s&quot; to &quot;%s&quot; ...
    44784219</source>
     
    44804221    </message>
    44814222    <message>
    4482         <location filename="../VBoxManageGuestCtrl.cpp" line="2424"/>
     4223        <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/>
    44834224        <source>directory</source>
    44844225        <comment>object</comment>
     
    44864227    </message>
    44874228    <message>
    4488         <location filename="../VBoxManageGuestCtrl.cpp" line="2424"/>
     4229        <location filename="../VBoxManageGuestCtrl.cpp" line="2277"/>
    44894230        <source>file</source>
    44904231        <comment>object</comment>
     
    44924233    </message>
    44934234    <message>
    4494         <location filename="../VBoxManageGuestCtrl.cpp" line="2443"/>
     4235        <location filename="../VBoxManageGuestCtrl.cpp" line="2296"/>
    44954236        <source>Warning: Not all sources were renamed
    44964237</source>
     
    44984239    </message>
    44994240    <message>
    4500         <location filename="../VBoxManageGuestCtrl.cpp" line="2503"/>
     4241        <location filename="../VBoxManageGuestCtrl.cpp" line="2355"/>
    45014242        <source>More than one template specified!
    45024243</source>
     
    45044245    </message>
    45054246    <message>
    4506         <location filename="../VBoxManageGuestCtrl.cpp" line="2513"/>
     4247        <location filename="../VBoxManageGuestCtrl.cpp" line="2364"/>
    45074248        <source>No template specified!</source>
    45084249        <translation type="unfinished"></translation>
    45094250    </message>
    45104251    <message>
     4252        <location filename="../VBoxManageGuestCtrl.cpp" line="2367"/>
     4253        <source>Creating temporary files is currently not supported!</source>
     4254        <translation type="unfinished"></translation>
     4255    </message>
     4256    <message>
     4257        <location filename="../VBoxManageGuestCtrl.cpp" line="2379"/>
     4258        <source>Creating temporary directory from template &apos;%s&apos; in directory &apos;%s&apos; ...
     4259</source>
     4260        <translation type="unfinished"></translation>
     4261    </message>
     4262    <message>
     4263        <location filename="../VBoxManageGuestCtrl.cpp" line="2382"/>
     4264        <source>Creating temporary directory from template &apos;%s&apos; in default temporary directory ...
     4265</source>
     4266        <translation type="unfinished"></translation>
     4267    </message>
     4268    <message>
     4269        <location filename="../VBoxManageGuestCtrl.cpp" line="2385"/>
     4270        <source>Creating temporary file from template &apos;%s&apos; in directory &apos;%s&apos; ...
     4271</source>
     4272        <translation type="unfinished"></translation>
     4273    </message>
     4274    <message>
     4275        <location filename="../VBoxManageGuestCtrl.cpp" line="2388"/>
     4276        <source>Creating temporary file from template &apos;%s&apos; in default temporary directory ...
     4277</source>
     4278        <translation type="unfinished"></translation>
     4279    </message>
     4280    <message>
     4281        <location filename="../VBoxManageGuestCtrl.cpp" line="2401"/>
     4282        <source>Directory name: %ls
     4283</source>
     4284        <translation type="unfinished"></translation>
     4285    </message>
     4286    <message>
     4287        <location filename="../VBoxManageGuestCtrl.cpp" line="2444"/>
     4288        <source>Command &quot;%s&quot; not implemented yet!</source>
     4289        <translation type="unfinished"></translation>
     4290    </message>
     4291    <message>
     4292        <location filename="../VBoxManageGuestCtrl.cpp" line="2452"/>
     4293        <source>Nothing to stat!</source>
     4294        <translation type="unfinished"></translation>
     4295    </message>
     4296    <message>
     4297        <location filename="../VBoxManageGuestCtrl.cpp" line="2465"/>
     4298        <source>Checking for element &quot;%s&quot; ...
     4299</source>
     4300        <translation type="unfinished"></translation>
     4301    </message>
     4302    <message>
     4303        <location filename="../VBoxManageGuestCtrl.cpp" line="2475"/>
     4304        <source>Failed to stat &apos;%s&apos;: No such file
     4305</source>
     4306        <translation type="unfinished"></translation>
     4307    </message>
     4308    <message>
     4309        <location filename="../VBoxManageGuestCtrl.cpp" line="2480"/>
     4310        <source>  File: &apos;%s&apos;
     4311</source>
     4312        <translation type="unfinished"></translation>
     4313    </message>
     4314    <message>
     4315        <location filename="../VBoxManageGuestCtrl.cpp" line="2515"/>
     4316        <source>  Size: %-17RU64 Alloc: %-19RU64 Type: %s
     4317</source>
     4318        <translation type="unfinished"></translation>
     4319    </message>
     4320    <message>
    45114321        <location filename="../VBoxManageGuestCtrl.cpp" line="2517"/>
    4512         <source>Creating temporary files is currently not supported!</source>
    4513         <translation type="unfinished"></translation>
    4514     </message>
    4515     <message>
    4516         <location filename="../VBoxManageGuestCtrl.cpp" line="2529"/>
    4517         <source>Creating temporary directory from template &apos;%s&apos; in directory &apos;%s&apos; ...
     4322        <source>Device: %#-17RX32 INode: %-18RU64 Links: %u
     4323</source>
     4324        <translation type="unfinished"></translation>
     4325    </message>
     4326    <message>
     4327        <location filename="../VBoxManageGuestCtrl.cpp" line="2528"/>
     4328        <source>  Mode: %-16s Attrib: %-17s Dev ID: %#RX32
     4329</source>
     4330        <translation type="unfinished"></translation>
     4331    </message>
     4332    <message>
     4333        <location filename="../VBoxManageGuestCtrl.cpp" line="2530"/>
     4334        <source>  Mode: %-16s Attrib: %s
    45184335</source>
    45194336        <translation type="unfinished"></translation>
     
    45214338    <message>
    45224339        <location filename="../VBoxManageGuestCtrl.cpp" line="2532"/>
    4523         <source>Creating temporary directory from template &apos;%s&apos; in default temporary directory ...
    4524 </source>
    4525         <translation type="unfinished"></translation>
    4526     </message>
    4527     <message>
    4528         <location filename="../VBoxManageGuestCtrl.cpp" line="2535"/>
    4529         <source>Creating temporary file from template &apos;%s&apos; in directory &apos;%s&apos; ...
     4340        <source> Owner: %4d/%-12ls Group: %4d/%ls
     4341</source>
     4342        <translation type="unfinished"></translation>
     4343    </message>
     4344    <message>
     4345        <location filename="../VBoxManageGuestCtrl.cpp" line="2536"/>
     4346        <source> Birth: %s
    45304347</source>
    45314348        <translation type="unfinished"></translation>
     
    45334350    <message>
    45344351        <location filename="../VBoxManageGuestCtrl.cpp" line="2538"/>
    4535         <source>Creating temporary file from template &apos;%s&apos; in default temporary directory ...
    4536 </source>
    4537         <translation type="unfinished"></translation>
    4538     </message>
    4539     <message>
    4540         <location filename="../VBoxManageGuestCtrl.cpp" line="2551"/>
    4541         <source>Directory name: %ls
     4352        <source>Change: %s
     4353</source>
     4354        <translation type="unfinished"></translation>
     4355    </message>
     4356    <message>
     4357        <location filename="../VBoxManageGuestCtrl.cpp" line="2540"/>
     4358        <source>Modify: %s
     4359</source>
     4360        <translation type="unfinished"></translation>
     4361    </message>
     4362    <message>
     4363        <location filename="../VBoxManageGuestCtrl.cpp" line="2542"/>
     4364        <source>Access: %s
    45424365</source>
    45434366        <translation type="unfinished"></translation>
     
    45454368    <message>
    45464369        <location filename="../VBoxManageGuestCtrl.cpp" line="2595"/>
    4547         <source>Command &quot;%s&quot; not implemented yet!</source>
    4548         <translation type="unfinished"></translation>
    4549     </message>
    4550     <message>
    4551         <location filename="../VBoxManageGuestCtrl.cpp" line="2603"/>
    4552         <source>Nothing to stat!</source>
    4553         <translation type="unfinished"></translation>
    4554     </message>
    4555     <message>
    4556         <location filename="../VBoxManageGuestCtrl.cpp" line="2616"/>
    4557         <source>Checking for element &quot;%s&quot; ...
    4558 </source>
    4559         <translation type="unfinished"></translation>
    4560     </message>
    4561     <message>
    4562         <location filename="../VBoxManageGuestCtrl.cpp" line="2626"/>
    4563         <source>Failed to stat &apos;%s&apos;: No such file
    4564 </source>
    4565         <translation type="unfinished"></translation>
    4566     </message>
    4567     <message>
    4568         <location filename="../VBoxManageGuestCtrl.cpp" line="2631"/>
    4569         <source>  File: &apos;%s&apos;
    4570 </source>
    4571         <translation type="unfinished"></translation>
    4572     </message>
    4573     <message>
    4574         <location filename="../VBoxManageGuestCtrl.cpp" line="2666"/>
    4575         <source>  Size: %-17RU64 Alloc: %-19RU64 Type: %s
    4576 </source>
    4577         <translation type="unfinished"></translation>
    4578     </message>
    4579     <message>
    4580         <location filename="../VBoxManageGuestCtrl.cpp" line="2668"/>
    4581         <source>Device: %#-17RX32 INode: %-18RU64 Links: %u
    4582 </source>
    4583         <translation type="unfinished"></translation>
    4584     </message>
    4585     <message>
    4586         <location filename="../VBoxManageGuestCtrl.cpp" line="2679"/>
    4587         <source>  Mode: %-16s Attrib: %-17s Dev ID: %#RX32
    4588 </source>
    4589         <translation type="unfinished"></translation>
    4590     </message>
    4591     <message>
    4592         <location filename="../VBoxManageGuestCtrl.cpp" line="2681"/>
    4593         <source>  Mode: %-16s Attrib: %s
    4594 </source>
    4595         <translation type="unfinished"></translation>
    4596     </message>
    4597     <message>
    4598         <location filename="../VBoxManageGuestCtrl.cpp" line="2683"/>
    4599         <source> Owner: %4d/%-12ls Group: %4d/%ls
    4600 </source>
    4601         <translation type="unfinished"></translation>
    4602     </message>
    4603     <message>
    4604         <location filename="../VBoxManageGuestCtrl.cpp" line="2687"/>
    4605         <source> Birth: %s
    4606 </source>
    4607         <translation type="unfinished"></translation>
    4608     </message>
    4609     <message>
    4610         <location filename="../VBoxManageGuestCtrl.cpp" line="2689"/>
    4611         <source>Change: %s
    4612 </source>
    4613         <translation type="unfinished"></translation>
    4614     </message>
    4615     <message>
    4616         <location filename="../VBoxManageGuestCtrl.cpp" line="2691"/>
    4617         <source>Modify: %s
    4618 </source>
    4619         <translation type="unfinished"></translation>
    4620     </message>
    4621     <message>
    4622         <location filename="../VBoxManageGuestCtrl.cpp" line="2693"/>
    4623         <source>Access: %s
    4624 </source>
    4625         <translation type="unfinished"></translation>
    4626     </message>
    4627     <message>
    4628         <location filename="../VBoxManageGuestCtrl.cpp" line="2746"/>
    46294370        <source>Current run level is %RU32
    46304371</source>
     
    46324373    </message>
    46334374    <message>
    4634         <location filename="../VBoxManageGuestCtrl.cpp" line="2753"/>
     4375        <location filename="../VBoxManageGuestCtrl.cpp" line="2602"/>
    46354376        <source>Waiting for run level %RU32 ...
    46364377</source>
     
    46384379    </message>
    46394380    <message>
     4381        <location filename="../VBoxManageGuestCtrl.cpp" line="2615"/>
     4382        <location filename="../VBoxManageGuestCtrl.cpp" line="3565"/>
     4383        <source>Waiting failed with %Rrc
     4384</source>
     4385        <translation type="unfinished"></translation>
     4386    </message>
     4387    <message>
     4388        <location filename="../VBoxManageGuestCtrl.cpp" line="2621"/>
     4389        <source>Run level %RU32 reached
     4390</source>
     4391        <translation type="unfinished"></translation>
     4392    </message>
     4393    <message>
     4394        <location filename="../VBoxManageGuestCtrl.cpp" line="2630"/>
     4395        <source>Run level %RU32 not reached within time
     4396</source>
     4397        <translation type="unfinished"></translation>
     4398    </message>
     4399    <message>
     4400        <location filename="../VBoxManageGuestCtrl.cpp" line="2716"/>
     4401        <source>RTPathAbsCxx failed on &apos;%s&apos;: %Rrc</source>
     4402        <translation type="unfinished"></translation>
     4403    </message>
     4404    <message>
     4405        <location filename="../VBoxManageGuestCtrl.cpp" line="2745"/>
     4406        <source>Updating Guest Additions ...
     4407</source>
     4408        <translation type="unfinished"></translation>
     4409    </message>
     4410    <message>
     4411        <location filename="../VBoxManageGuestCtrl.cpp" line="2761"/>
     4412        <source>No Guest Additions source found or specified, aborting
     4413</source>
     4414        <translation type="unfinished"></translation>
     4415    </message>
     4416    <message>
    46404417        <location filename="../VBoxManageGuestCtrl.cpp" line="2766"/>
    4641         <location filename="../VBoxManageGuestCtrl.cpp" line="3724"/>
    4642         <source>Waiting failed with %Rrc
    4643 </source>
    4644         <translation type="unfinished"></translation>
    4645     </message>
    4646     <message>
    4647         <location filename="../VBoxManageGuestCtrl.cpp" line="2772"/>
    4648         <source>Run level %RU32 reached
    4649 </source>
    4650         <translation type="unfinished"></translation>
    4651     </message>
    4652     <message>
    4653         <location filename="../VBoxManageGuestCtrl.cpp" line="2781"/>
    4654         <source>Run level %RU32 not reached within time
    4655 </source>
    4656         <translation type="unfinished"></translation>
    4657     </message>
    4658     <message>
    4659         <location filename="../VBoxManageGuestCtrl.cpp" line="2867"/>
    4660         <source>RTPathAbsCxx failed on &apos;%s&apos;: %Rrc</source>
    4661         <translation type="unfinished"></translation>
    4662     </message>
    4663     <message>
    4664         <location filename="../VBoxManageGuestCtrl.cpp" line="2896"/>
    4665         <source>Updating Guest Additions ...
    4666 </source>
    4667         <translation type="unfinished"></translation>
    4668     </message>
    4669     <message>
    4670         <location filename="../VBoxManageGuestCtrl.cpp" line="2912"/>
    4671         <source>No Guest Additions source found or specified, aborting
    4672 </source>
    4673         <translation type="unfinished"></translation>
    4674     </message>
    4675     <message>
    4676         <location filename="../VBoxManageGuestCtrl.cpp" line="2917"/>
    46774418        <source>Source &quot;%s&quot; does not exist!
    46784419</source>
     
    46804421    </message>
    46814422    <message>
    4682         <location filename="../VBoxManageGuestCtrl.cpp" line="2928"/>
     4423        <location filename="../VBoxManageGuestCtrl.cpp" line="2777"/>
    46834424        <source>OS type:</source>
    46844425        <translation type="unfinished"></translation>
    46854426    </message>
    46864427    <message>
    4687         <location filename="../VBoxManageGuestCtrl.cpp" line="2933"/>
     4428        <location filename="../VBoxManageGuestCtrl.cpp" line="2782"/>
    46884429        <source>Additions run level:</source>
    46894430        <translation type="unfinished"></translation>
    46904431    </message>
    46914432    <message>
    4692         <location filename="../VBoxManageGuestCtrl.cpp" line="2945"/>
     4433        <location filename="../VBoxManageGuestCtrl.cpp" line="2794"/>
    46934434        <source>Additions version:</source>
    46944435        <translation type="unfinished"></translation>
    46954436    </message>
    46964437    <message>
    4697         <location filename="../VBoxManageGuestCtrl.cpp" line="2953"/>
     4438        <location filename="../VBoxManageGuestCtrl.cpp" line="2802"/>
    46984439        <source>Using source: %s
    46994440</source>
     
    47014442    </message>
    47024443    <message>
    4703         <location filename="../VBoxManageGuestCtrl.cpp" line="2962"/>
     4444        <location filename="../VBoxManageGuestCtrl.cpp" line="2811"/>
    47044445        <source>Waiting for current Guest Additions inside VM getting ready for updating ...
    47054446</source>
     
    47074448    </message>
    47084449    <message>
    4709         <location filename="../VBoxManageGuestCtrl.cpp" line="2983"/>
     4450        <location filename="../VBoxManageGuestCtrl.cpp" line="2832"/>
    47104451        <source>Guest Additions %lsr%RU64 currently installed, waiting for Guest Additions installer to start ...
    47114452</source>
     
    47134454    </message>
    47144455    <message>
    4715         <location filename="../VBoxManageGuestCtrl.cpp" line="3007"/>
     4456        <location filename="../VBoxManageGuestCtrl.cpp" line="2856"/>
    47164457        <source>Guest Additions update failed</source>
    47174458        <translation type="unfinished"></translation>
    47184459    </message>
    47194460    <message>
    4720         <location filename="../VBoxManageGuestCtrl.cpp" line="3012"/>
     4461        <location filename="../VBoxManageGuestCtrl.cpp" line="2861"/>
    47214462        <source>Guest Additions update successful.
    47224463</source>
     
    47244465    </message>
    47254466    <message>
    4726         <location filename="../VBoxManageGuestCtrl.cpp" line="3017"/>
     4467        <location filename="../VBoxManageGuestCtrl.cpp" line="2866"/>
    47274468        <source>Rebooting guest ...
    47284469</source>
     
    47304471    </message>
    47314472    <message>
    4732         <location filename="../VBoxManageGuestCtrl.cpp" line="3025"/>
     4473        <location filename="../VBoxManageGuestCtrl.cpp" line="2874"/>
    47334474        <source>Current installed Guest Additions don&apos;t support automatic rebooting. Please reboot manually.
    47344475</source>
     
    47364477    </message>
    47374478    <message>
    4738         <location filename="../VBoxManageGuestCtrl.cpp" line="3037"/>
     4479        <location filename="../VBoxManageGuestCtrl.cpp" line="2886"/>
    47394480        <source>Waiting for new Guest Additions inside VM getting ready ...
    47404481</source>
     
    47424483    </message>
    47434484    <message>
    4744         <location filename="../VBoxManageGuestCtrl.cpp" line="3045"/>
     4485        <location filename="../VBoxManageGuestCtrl.cpp" line="2894"/>
    47454486        <source>Verifying Guest Additions update ...
    47464487</source>
     
    47484489    </message>
    47494490    <message>
    4750         <location filename="../VBoxManageGuestCtrl.cpp" line="3064"/>
     4491        <location filename="../VBoxManageGuestCtrl.cpp" line="2913"/>
    47514492        <source>Old Guest Additions: %ls%RU64
    47524493</source>
     
    47544495    </message>
    47554496    <message>
    4756         <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/>
     4497        <location filename="../VBoxManageGuestCtrl.cpp" line="2915"/>
    47574498        <source>New Guest Additions: %ls%RU64
    47584499</source>
     
    47604501    </message>
    47614502    <message>
    4762         <location filename="../VBoxManageGuestCtrl.cpp" line="3071"/>
     4503        <location filename="../VBoxManageGuestCtrl.cpp" line="2920"/>
    47634504        <source>
    47644505Error updating Guest Additions, please check guest installer log
     
    47674508    </message>
    47684509    <message>
    4769         <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/>
     4510        <location filename="../VBoxManageGuestCtrl.cpp" line="2925"/>
    47704511        <source>
    47714512WARNING: Guest Additions were downgraded
     
    47744515    </message>
    47754516    <message>
    4776         <location filename="../VBoxManageGuestCtrl.cpp" line="3083"/>
     4517        <location filename="../VBoxManageGuestCtrl.cpp" line="2932"/>
    47774518        <source>The guest needs to be restarted in order to make use of the updated Guest Additions.
    47784519</source>
     
    47804521    </message>
    47814522    <message>
    4782         <location filename="../VBoxManageGuestCtrl.cpp" line="3157"/>
     4523        <location filename="../VBoxManageGuestCtrl.cpp" line="3005"/>
    47834524        <source>Invalid run level specified. Valid values are: system, userland, desktop</source>
    47844525        <translation type="unfinished"></translation>
    47854526    </message>
    47864527    <message>
    4787         <location filename="../VBoxManageGuestCtrl.cpp" line="3171"/>
     4528        <location filename="../VBoxManageGuestCtrl.cpp" line="3019"/>
    47884529        <source>Missing run level to wait for</source>
    47894530        <translation type="unfinished"></translation>
    47904531    </message>
    47914532    <message>
    4792         <location filename="../VBoxManageGuestCtrl.cpp" line="3219"/>
     4533        <location filename="../VBoxManageGuestCtrl.cpp" line="3066"/>
    47934534        <source>Unknown list: &apos;%s&apos;</source>
    47944535        <translation type="unfinished"></translation>
    47954536    </message>
    47964537    <message>
    4797         <location filename="../VBoxManageGuestCtrl.cpp" line="3229"/>
     4538        <location filename="../VBoxManageGuestCtrl.cpp" line="3076"/>
    47984539        <source>Missing list name</source>
    47994540        <translation type="unfinished"></translation>
    48004541    </message>
    48014542    <message>
    4802         <location filename="../VBoxManageGuestCtrl.cpp" line="3250"/>
     4543        <location filename="../VBoxManageGuestCtrl.cpp" line="3097"/>
    48034544        <source>Active guest sessions:
    48044545</source>
     
    48064547    </message>
    48074548    <message>
    4808         <location filename="../VBoxManageGuestCtrl.cpp" line="3269"/>
     4549        <location filename="../VBoxManageGuestCtrl.cpp" line="3116"/>
    48094550        <source>
    48104551        Session #%-3zu ID=%-3RU32 User=%-16ls Status=[%s] Name=%ls</source>
     
    48124553    </message>
    48134554    <message>
    4814         <location filename="../VBoxManageGuestCtrl.cpp" line="3292"/>
     4555        <location filename="../VBoxManageGuestCtrl.cpp" line="3139"/>
    48154556        <source>
    48164557                Process #%-03zu PID=%-6RU32 Status=[%s] Command=%ls</source>
     
    48184559    </message>
    48194560    <message>
    4820         <location filename="../VBoxManageGuestCtrl.cpp" line="3320"/>
     4561        <location filename="../VBoxManageGuestCtrl.cpp" line="3167"/>
    48214562        <source>
    48224563                File #%-03zu ID=%-6RU32 Status=[%s] Name=%ls</source>
     
    48244565    </message>
    48254566    <message>
    4826         <location filename="../VBoxManageGuestCtrl.cpp" line="3331"/>
     4567        <location filename="../VBoxManageGuestCtrl.cpp" line="3178"/>
    48274568        <source>
    48284569
     
    48324573    </message>
    48334574    <message>
    4834         <location filename="../VBoxManageGuestCtrl.cpp" line="3333"/>
     4575        <location filename="../VBoxManageGuestCtrl.cpp" line="3180"/>
    48354576        <source>Total guest processes: %zu
    48364577</source>
     
    48384579    </message>
    48394580    <message>
     4581        <location filename="../VBoxManageGuestCtrl.cpp" line="3182"/>
     4582        <source>Total guest files: %zu
     4583</source>
     4584        <translation type="unfinished"></translation>
     4585    </message>
     4586    <message>
     4587        <location filename="../VBoxManageGuestCtrl.cpp" line="3185"/>
     4588        <source>No active guest sessions found
     4589</source>
     4590        <translation type="unfinished"></translation>
     4591    </message>
     4592    <message>
     4593        <location filename="../VBoxManageGuestCtrl.cpp" line="3251"/>
     4594        <source>Invalid PID value: 0</source>
     4595        <translation type="unfinished"></translation>
     4596    </message>
     4597    <message>
     4598        <location filename="../VBoxManageGuestCtrl.cpp" line="3254"/>
     4599        <source>Error parsing PID value: %Rrc</source>
     4600        <translation type="unfinished"></translation>
     4601    </message>
     4602    <message>
     4603        <location filename="../VBoxManageGuestCtrl.cpp" line="3264"/>
     4604        <source>At least one PID must be specified to kill!</source>
     4605        <translation type="unfinished"></translation>
     4606    </message>
     4607    <message>
     4608        <location filename="../VBoxManageGuestCtrl.cpp" line="3268"/>
     4609        <location filename="../VBoxManageGuestCtrl.cpp" line="3422"/>
     4610        <source>No session ID specified!</source>
     4611        <translation type="unfinished"></translation>
     4612    </message>
     4613    <message>
     4614        <location filename="../VBoxManageGuestCtrl.cpp" line="3272"/>
     4615        <location filename="../VBoxManageGuestCtrl.cpp" line="3426"/>
     4616        <source>Either session ID or name (pattern) must be specified</source>
     4617        <translation type="unfinished"></translation>
     4618    </message>
     4619    <message>
    48404620        <location filename="../VBoxManageGuestCtrl.cpp" line="3335"/>
    4841         <source>Total guest files: %zu
    4842 </source>
    4843         <translation type="unfinished"></translation>
    4844     </message>
    4845     <message>
    4846         <location filename="../VBoxManageGuestCtrl.cpp" line="3338"/>
    4847         <source>No active guest sessions found
    4848 </source>
    4849         <translation type="unfinished"></translation>
    4850     </message>
    4851     <message>
    4852         <location filename="../VBoxManageGuestCtrl.cpp" line="3405"/>
    4853         <source>Invalid PID value: 0</source>
    4854         <translation type="unfinished"></translation>
    4855     </message>
    4856     <message>
    4857         <location filename="../VBoxManageGuestCtrl.cpp" line="3409"/>
    4858         <source>Error parsing PID value: %Rrc</source>
    4859         <translation type="unfinished"></translation>
    4860     </message>
    4861     <message>
    4862         <location filename="../VBoxManageGuestCtrl.cpp" line="3420"/>
    4863         <source>At least one PID must be specified to kill!</source>
    4864         <translation type="unfinished"></translation>
    4865     </message>
    4866     <message>
    4867         <location filename="../VBoxManageGuestCtrl.cpp" line="3424"/>
    4868         <location filename="../VBoxManageGuestCtrl.cpp" line="3580"/>
    4869         <source>No session ID specified!</source>
    4870         <translation type="unfinished"></translation>
    4871     </message>
    4872     <message>
    4873         <location filename="../VBoxManageGuestCtrl.cpp" line="3429"/>
    4874         <location filename="../VBoxManageGuestCtrl.cpp" line="3585"/>
    4875         <source>Either session ID or name (pattern) must be specified</source>
    4876         <translation type="unfinished"></translation>
    4877     </message>
    4878     <message>
    4879         <location filename="../VBoxManageGuestCtrl.cpp" line="3492"/>
    48804621        <source>Terminating process (PID %RU32) (session ID %RU32) ...
    48814622</source>
     
    48834624    </message>
    48844625    <message>
    4885         <location filename="../VBoxManageGuestCtrl.cpp" line="3500"/>
     4626        <location filename="../VBoxManageGuestCtrl.cpp" line="3343"/>
    48864627        <source>No matching process(es) for session ID %RU32 found
    48874628</source>
     
    48894630    </message>
    48904631    <message>
    4891         <location filename="../VBoxManageGuestCtrl.cpp" line="3512"/>
     4632        <location filename="../VBoxManageGuestCtrl.cpp" line="3355"/>
    48924633        <source>No matching session(s) found
    48934634</source>
     
    48954636    </message>
    48964637    <message numerus="yes">
    4897         <location filename="../VBoxManageGuestCtrl.cpp" line="3515"/>
     4638        <location filename="../VBoxManageGuestCtrl.cpp" line="3358"/>
    48984639        <source>%RU32 process(es) terminated
    48994640</source>
     
    49034644    </message>
    49044645    <message>
    4905         <location filename="../VBoxManageGuestCtrl.cpp" line="3623"/>
     4646        <location filename="../VBoxManageGuestCtrl.cpp" line="3464"/>
    49064647        <source>Closing guest session ID=#%RU32 &quot;%s&quot; ...
    49074648</source>
     
    49094650    </message>
    49104651    <message>
    4911         <location filename="../VBoxManageGuestCtrl.cpp" line="3627"/>
     4652        <location filename="../VBoxManageGuestCtrl.cpp" line="3468"/>
    49124653        <source>Guest session successfully closed
    49134654</source>
     
    49154656    </message>
    49164657    <message>
    4917         <location filename="../VBoxManageGuestCtrl.cpp" line="3635"/>
     4658        <location filename="../VBoxManageGuestCtrl.cpp" line="3476"/>
    49184659        <source>No guest session(s) found
    49194660</source>
     
    49214662    </message>
    49224663    <message>
    4923         <location filename="../VBoxManageGuestCtrl.cpp" line="3713"/>
     4664        <location filename="../VBoxManageGuestCtrl.cpp" line="3554"/>
    49244665        <source>Waiting for events ...
    49254666</source>
     
    49274668    </message>
    49284669    <message>
    4929         <location filename="../VBoxManageGuestCtrl.cpp" line="3867"/>
     4670        <location filename="../VBoxManageGuestCtrl.cpp" line="3709"/>
    49304671        <source>Unknown sub-command: &apos;%s&apos;</source>
    49314672        <translation type="unfinished"></translation>
    49324673    </message>
    49334674    <message>
    4934         <location filename="../VBoxManageGuestCtrl.cpp" line="3876"/>
     4675        <location filename="../VBoxManageGuestCtrl.cpp" line="3718"/>
    49354676        <source>Missing sub-command</source>
    49364677        <translation type="unfinished"></translation>
    49374678    </message>
    49384679    <message>
    4939         <location filename="../VBoxManageGuestCtrl.cpp" line="3878"/>
     4680        <location filename="../VBoxManageGuestCtrl.cpp" line="3720"/>
    49404681        <source>Missing VM name and sub-command</source>
    49414682        <translation type="unfinished"></translation>
     
    49454686    <name>GuestCtrlLsnr</name>
    49464687    <message>
    4947         <location filename="../VBoxManageGuestCtrlListener.cpp" line="108"/>
     4688        <location filename="../VBoxManageGuestCtrlListener.cpp" line="106"/>
    49484689        <source>File ID=%RU32 &quot;%s&quot; changed status to [%s]
    49494690</source>
     
    49514692    </message>
    49524693    <message>
    4953         <location filename="../VBoxManageGuestCtrlListener.cpp" line="164"/>
     4694        <location filename="../VBoxManageGuestCtrlListener.cpp" line="162"/>
    49544695        <source>Process PID=%RU32 &quot;%s&quot; changed status to [%s]
    49554696</source>
     
    49574698    </message>
    49584699    <message>
     4700        <location filename="../VBoxManageGuestCtrlListener.cpp" line="254"/>
     4701        <source>File &quot;%s&quot; %s
     4702</source>
     4703        <translation type="unfinished"></translation>
     4704    </message>
     4705    <message>
    49594706        <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/>
    4960         <source>File &quot;%s&quot; %s
    4961 </source>
    4962         <translation type="unfinished"></translation>
    4963     </message>
    4964     <message>
    4965         <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/>
    4966         <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/>
    4967         <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/>
     4707        <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     4708        <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
    49684709        <source>registered</source>
    49694710        <translation type="unfinished"></translation>
    49704711    </message>
    49714712    <message>
    4972         <location filename="../VBoxManageGuestCtrlListener.cpp" line="258"/>
    4973         <location filename="../VBoxManageGuestCtrlListener.cpp" line="322"/>
    4974         <location filename="../VBoxManageGuestCtrlListener.cpp" line="463"/>
     4713        <location filename="../VBoxManageGuestCtrlListener.cpp" line="256"/>
     4714        <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     4715        <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
    49754716        <source>unregistered</source>
    49764717        <translation type="unfinished"></translation>
    49774718    </message>
    49784719    <message>
    4979         <location filename="../VBoxManageGuestCtrlListener.cpp" line="262"/>
    4980         <location filename="../VBoxManageGuestCtrlListener.cpp" line="326"/>
    4981         <location filename="../VBoxManageGuestCtrlListener.cpp" line="467"/>
     4720        <location filename="../VBoxManageGuestCtrlListener.cpp" line="260"/>
     4721        <location filename="../VBoxManageGuestCtrlListener.cpp" line="324"/>
     4722        <location filename="../VBoxManageGuestCtrlListener.cpp" line="465"/>
    49824723        <source>Registering ...
    49834724</source>
     
    49854726    </message>
    49864727    <message>
    4987         <location filename="../VBoxManageGuestCtrlListener.cpp" line="285"/>
     4728        <location filename="../VBoxManageGuestCtrlListener.cpp" line="283"/>
    49884729        <source>Unregistering file ...
    49894730</source>
     
    49914732    </message>
    49924733    <message>
    4993         <location filename="../VBoxManageGuestCtrlListener.cpp" line="320"/>
     4734        <location filename="../VBoxManageGuestCtrlListener.cpp" line="318"/>
    49944735        <source>Process &quot;%s&quot; %s
    49954736</source>
     
    49974738    </message>
    49984739    <message>
    4999         <location filename="../VBoxManageGuestCtrlListener.cpp" line="349"/>
     4740        <location filename="../VBoxManageGuestCtrlListener.cpp" line="347"/>
    50004741        <source>Unregistering process ...
    50014742</source>
     
    50034744    </message>
    50044745    <message>
    5005         <location filename="../VBoxManageGuestCtrlListener.cpp" line="386"/>
     4746        <location filename="../VBoxManageGuestCtrlListener.cpp" line="384"/>
    50064747        <source>Session ID=%RU32 &quot;%s&quot; changed status to [%s]
    50074748</source>
     
    50094750    </message>
    50104751    <message>
    5011         <location filename="../VBoxManageGuestCtrlListener.cpp" line="461"/>
     4752        <location filename="../VBoxManageGuestCtrlListener.cpp" line="459"/>
    50124753        <source>Session ID=%RU32 &quot;%s&quot; %s
    50134754</source>
     
    50154756    </message>
    50164757    <message>
    5017         <location filename="../VBoxManageGuestCtrlListener.cpp" line="492"/>
     4758        <location filename="../VBoxManageGuestCtrlListener.cpp" line="490"/>
    50184759        <source>Unregistering ...
    50194760</source>
     
    50214762    </message>
    50224763    <message>
    5023         <location filename="../VBoxManageGuestCtrlListener.cpp" line="554"/>
     4764        <location filename="../VBoxManageGuestCtrlListener.cpp" line="552"/>
    50244765        <source>Reached run level %RU32
    50254766</source>
     
    50304771    <name>GuestProp</name>
    50314772    <message>
    5032         <location filename="../VBoxManageGuestProp.cpp" line="87"/>
    5033         <location filename="../VBoxManageGuestProp.cpp" line="146"/>
    5034         <location filename="../VBoxManageGuestProp.cpp" line="190"/>
    5035         <location filename="../VBoxManageGuestProp.cpp" line="232"/>
    5036         <location filename="../VBoxManageGuestProp.cpp" line="319"/>
    5037         <location filename="../VBoxManageGuestProp.cpp" line="417"/>
    5038         <location filename="../VBoxManageGuestProp.cpp" line="432"/>
     4773        <location filename="../VBoxManageGuestProp.cpp" line="64"/>
     4774        <location filename="../VBoxManageGuestProp.cpp" line="125"/>
     4775        <location filename="../VBoxManageGuestProp.cpp" line="171"/>
     4776        <location filename="../VBoxManageGuestProp.cpp" line="215"/>
     4777        <location filename="../VBoxManageGuestProp.cpp" line="304"/>
     4778        <location filename="../VBoxManageGuestProp.cpp" line="407"/>
     4779        <location filename="../VBoxManageGuestProp.cpp" line="422"/>
    50394780        <source>Incorrect parameters</source>
    50404781        <translation type="unfinished"></translation>
    50414782    </message>
    50424783    <message>
    5043         <location filename="../VBoxManageGuestProp.cpp" line="107"/>
     4784        <location filename="../VBoxManageGuestProp.cpp" line="84"/>
    50444785        <source>No value set!
    50454786</source>
     
    50474788    </message>
    50484789    <message>
    5049         <location filename="../VBoxManageGuestProp.cpp" line="109"/>
     4790        <location filename="../VBoxManageGuestProp.cpp" line="86"/>
    50504791        <source>Value: %ls
    50514792</source>
     
    50534794    </message>
    50544795    <message>
    5055         <location filename="../VBoxManageGuestProp.cpp" line="112"/>
     4796        <location filename="../VBoxManageGuestProp.cpp" line="89"/>
    50564797        <source>Timestamp: %lld
    50574798</source>
     
    50594800    </message>
    50604801    <message>
    5061         <location filename="../VBoxManageGuestProp.cpp" line="113"/>
     4802        <location filename="../VBoxManageGuestProp.cpp" line="90"/>
    50624803        <source>Flags: %ls
    50634804</source>
     
    50654806    </message>
    50664807    <message>
    5067         <location filename="../VBoxManageGuestProp.cpp" line="268"/>
     4808        <location filename="../VBoxManageGuestProp.cpp" line="251"/>
    50684809        <source>No properties found.
    50694810</source>
     
    50714812    </message>
    50724813    <message>
    5073         <location filename="../VBoxManageGuestProp.cpp" line="270"/>
     4814        <location filename="../VBoxManageGuestProp.cpp" line="253"/>
    50744815        <source>Name: %ls, value: %ls, timestamp: %lld, flags: %ls
    50754816</source>
     
    50774818    </message>
    50784819    <message>
    5079         <location filename="../VBoxManageGuestProp.cpp" line="374"/>
     4820        <location filename="../VBoxManageGuestProp.cpp" line="362"/>
     4821        <source>Property %ls was deleted
     4822</source>
     4823        <translation type="unfinished"></translation>
     4824    </message>
     4825    <message>
     4826        <location filename="../VBoxManageGuestProp.cpp" line="364"/>
    50804827        <source>Name: %ls, value: %ls, flags: %ls
    50814828</source>
     
    50834830    </message>
    50844831    <message>
    5085         <location filename="../VBoxManageGuestProp.cpp" line="391"/>
     4832        <location filename="../VBoxManageGuestProp.cpp" line="381"/>
    50864833        <source>Time out or interruption while waiting for a notification.</source>
    50874834        <translation type="unfinished"></translation>
     
    51194866    <message>
    51204867        <location filename="../VBoxManageHelp.cpp" line="397"/>
    5121         <location filename="../VBoxManageHelp.cpp" line="1164"/>
    51224868        <source>Invalid parameter &apos;%s&apos;</source>
    51234869        <translation type="unfinished"></translation>
     
    51254871    <message>
    51264872        <location filename="../VBoxManageHelp.cpp" line="401"/>
    5127         <location filename="../VBoxManageHelp.cpp" line="1168"/>
    51284873        <source>Invalid option -%c</source>
    51294874        <translation type="unfinished"></translation>
     
    51314876    <message>
    51324877        <location filename="../VBoxManageHelp.cpp" line="403"/>
    5133         <location filename="../VBoxManageHelp.cpp" line="1169"/>
    51344878        <source>Invalid option case %i</source>
    51354879        <translation type="unfinished"></translation>
     
    51374881    <message>
    51384882        <location filename="../VBoxManageHelp.cpp" line="406"/>
    5139         <location filename="../VBoxManageHelp.cpp" line="1172"/>
    51404883        <source>Unknown option: %s</source>
    51414884        <translation type="unfinished"></translation>
     
    51434886    <message>
    51444887        <location filename="../VBoxManageHelp.cpp" line="408"/>
    5145         <location filename="../VBoxManageHelp.cpp" line="1174"/>
    51464888        <source>Invalid argument format: %s</source>
    51474889        <translation type="unfinished"></translation>
     
    51704912        <location filename="../VBoxManageHelp.cpp" line="437"/>
    51714913        <source>th</source>
    5172         <translation type="unfinished"></translation>
    5173     </message>
    5174     <message>
    5175         <location filename="../VBoxManageHelp.cpp" line="563"/>
    5176         <source>Usage:
    5177 
    5178 </source>
    5179         <translation type="unfinished"></translation>
    5180     </message>
    5181     <message>
    5182         <location filename="../VBoxManageHelp.cpp" line="1081"/>
    5183         <location filename="../VBoxManageHelp.cpp" line="1105"/>
    5184         <source>
    5185 Syntax error: %N
    5186 </source>
    51874914        <translation type="unfinished"></translation>
    51884915    </message>
     
    51914918    <name>HostOnly</name>
    51924919    <message>
    5193         <location filename="../VBoxManageHostonly.cpp" line="97"/>
     4920        <location filename="../VBoxManageHostonly.cpp" line="95"/>
    51944921        <source>Failed to create the host-only adapter</source>
    51954922        <translation type="unfinished"></translation>
    51964923    </message>
    51974924    <message>
    5198         <location filename="../VBoxManageHostonly.cpp" line="106"/>
     4925        <location filename="../VBoxManageHostonly.cpp" line="104"/>
    51994926        <source>Interface &apos;%ls&apos; was successfully created
    52004927</source>
     
    52024929    </message>
    52034930    <message>
    5204         <location filename="../VBoxManageHostonly.cpp" line="125"/>
    5205         <location filename="../VBoxManageHostonly.cpp" line="216"/>
     4931        <location filename="../VBoxManageHostonly.cpp" line="123"/>
     4932        <location filename="../VBoxManageHostonly.cpp" line="214"/>
    52064933        <source>Only one interface name can be specified</source>
    52074934        <translation type="unfinished"></translation>
    52084935    </message>
    52094936    <message>
    5210         <location filename="../VBoxManageHostonly.cpp" line="133"/>
     4937        <location filename="../VBoxManageHostonly.cpp" line="131"/>
    52114938        <source>No interface name was specified</source>
    52124939        <translation type="unfinished"></translation>
    52134940    </message>
    52144941    <message>
    5215         <location filename="../VBoxManageHostonly.cpp" line="151"/>
     4942        <location filename="../VBoxManageHostonly.cpp" line="149"/>
    52164943        <source>Failed to remove the host-only adapter</source>
    52174944        <translation type="unfinished"></translation>
    52184945    </message>
    52194946    <message>
    5220         <location filename="../VBoxManageHostonly.cpp" line="195"/>
     4947        <location filename="../VBoxManageHostonly.cpp" line="193"/>
    52214948        <source>The --ip option is specified more than once</source>
    52224949        <translation type="unfinished"></translation>
    52234950    </message>
    52244951    <message>
    5225         <location filename="../VBoxManageHostonly.cpp" line="200"/>
     4952        <location filename="../VBoxManageHostonly.cpp" line="198"/>
    52264953        <source>The --netmask option is specified more than once</source>
    52274954        <translation type="unfinished"></translation>
    52284955    </message>
    52294956    <message>
    5230         <location filename="../VBoxManageHostonly.cpp" line="205"/>
     4957        <location filename="../VBoxManageHostonly.cpp" line="203"/>
    52314958        <source>The --ipv6 option is specified more than once</source>
    52324959        <translation type="unfinished"></translation>
    52334960    </message>
    52344961    <message>
    5235         <location filename="../VBoxManageHostonly.cpp" line="210"/>
     4962        <location filename="../VBoxManageHostonly.cpp" line="208"/>
    52364963        <source>The --netmasklengthv6 option is specified more than once</source>
    52374964        <translation type="unfinished"></translation>
    52384965    </message>
    52394966    <message>
    5240         <location filename="../VBoxManageHostonly.cpp" line="227"/>
     4967        <location filename="../VBoxManageHostonly.cpp" line="224"/>
    52414968        <source>You can not use --dhcp with static ip configuration parameters: --ip, --netmask, --ipv6 and --netmasklengthv6.</source>
    52424969        <translation type="unfinished"></translation>
    52434970    </message>
    52444971    <message>
    5245         <location filename="../VBoxManageHostonly.cpp" line="230"/>
     4972        <location filename="../VBoxManageHostonly.cpp" line="226"/>
    52464973        <source>You can not use ipv4 configuration (--ip and --netmask) with ipv6 (--ipv6 and --netmasklengthv6) simultaneously.</source>
    52474974        <translation type="unfinished"></translation>
    52484975    </message>
    52494976    <message>
    5250         <location filename="../VBoxManageHostonly.cpp" line="238"/>
     4977        <location filename="../VBoxManageHostonly.cpp" line="234"/>
    52514978        <source>Could not find interface &apos;%s&apos;</source>
    52524979        <translation type="unfinished"></translation>
    52534980    </message>
    52544981    <message>
    5255         <location filename="../VBoxManageHostonly.cpp" line="254"/>
     4982        <location filename="../VBoxManageHostonly.cpp" line="250"/>
    52564983        <source>IPv6 setting is not supported for this adapter</source>
    52574984        <translation type="unfinished"></translation>
    52584985    </message>
    52594986    <message>
    5260         <location filename="../VBoxManageHostonly.cpp" line="263"/>
     4987        <location filename="../VBoxManageHostonly.cpp" line="259"/>
    52614988        <source>Neither -dhcp nor -ip nor -ipv6 was specfified</source>
    52624989        <translation type="unfinished"></translation>
    52634990    </message>
    52644991    <message>
    5265         <location filename="../VBoxManageHostonly.cpp" line="272"/>
    5266         <location filename="../VBoxManageHostonly.cpp" line="509"/>
     4992        <location filename="../VBoxManageHostonly.cpp" line="268"/>
     4993        <location filename="../VBoxManageHostonly.cpp" line="514"/>
    52674994        <source>No sub-command specified</source>
    52684995        <translation type="unfinished"></translation>
    52694996    </message>
    52704997    <message>
    5271         <location filename="../VBoxManageHostonly.cpp" line="284"/>
    5272         <location filename="../VBoxManageHostonly.cpp" line="528"/>
     4998        <location filename="../VBoxManageHostonly.cpp" line="289"/>
     4999        <location filename="../VBoxManageHostonly.cpp" line="533"/>
    52735000        <source>Unknown sub-command &apos;%s&apos;</source>
    52745001        <translation type="unfinished"></translation>
    52755002    </message>
    52765003    <message>
    5277         <location filename="../VBoxManageHostonly.cpp" line="405"/>
     5004        <location filename="../VBoxManageHostonly.cpp" line="410"/>
    52785005        <source>The --name parameter must be specified</source>
    52795006        <translation type="unfinished"></translation>
    52805007    </message>
    52815008    <message>
    5282         <location filename="../VBoxManageHostonly.cpp" line="407"/>
     5009        <location filename="../VBoxManageHostonly.cpp" line="412"/>
    52835010        <source>The --netmask parameter must be specified</source>
    52845011        <translation type="unfinished"></translation>
    52855012    </message>
    52865013    <message>
    5287         <location filename="../VBoxManageHostonly.cpp" line="409"/>
     5014        <location filename="../VBoxManageHostonly.cpp" line="414"/>
    52885015        <source>The --lower-ip parameter must be specified</source>
    52895016        <translation type="unfinished"></translation>
    52905017    </message>
    52915018    <message>
    5292         <location filename="../VBoxManageHostonly.cpp" line="411"/>
     5019        <location filename="../VBoxManageHostonly.cpp" line="416"/>
    52935020        <source>The --upper-ip parameter must be specified</source>
    52945021        <translation type="unfinished"></translation>
    52955022    </message>
    52965023    <message>
    5297         <location filename="../VBoxManageHostonly.cpp" line="442"/>
    5298         <location filename="../VBoxManageHostonly.cpp" line="498"/>
     5024        <location filename="../VBoxManageHostonly.cpp" line="447"/>
     5025        <location filename="../VBoxManageHostonly.cpp" line="503"/>
    52995026        <source>Either --name or --id parameter must be specified</source>
    53005027        <translation type="unfinished"></translation>
     
    53045031    <name>Info</name>
    53055032    <message>
    5306         <location filename="../VBoxManageInfo.cpp" line="87"/>
    5307         <location filename="../VBoxManageInfo.cpp" line="110"/>
    5308         <location filename="../VBoxManageInfo.cpp" line="133"/>
    5309         <location filename="../VBoxManageInfo.cpp" line="2205"/>
    5310         <location filename="../VBoxManageInfo.cpp" line="2314"/>
    5311         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    5312         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     5033        <location filename="../VBoxManageInfo.cpp" line="85"/>
     5034        <location filename="../VBoxManageInfo.cpp" line="108"/>
     5035        <location filename="../VBoxManageInfo.cpp" line="131"/>
     5036        <location filename="../VBoxManageInfo.cpp" line="2240"/>
     5037        <location filename="../VBoxManageInfo.cpp" line="2349"/>
     5038        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     5039        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    53135040        <source>enabled</source>
    53145041        <translation type="unfinished"></translation>
    53155042    </message>
    53165043    <message>
    5317         <location filename="../VBoxManageInfo.cpp" line="87"/>
    5318         <location filename="../VBoxManageInfo.cpp" line="110"/>
    5319         <location filename="../VBoxManageInfo.cpp" line="133"/>
    5320         <location filename="../VBoxManageInfo.cpp" line="1230"/>
    5321         <location filename="../VBoxManageInfo.cpp" line="1284"/>
    5322         <location filename="../VBoxManageInfo.cpp" line="2205"/>
    5323         <location filename="../VBoxManageInfo.cpp" line="2315"/>
    5324         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    5325         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     5044        <location filename="../VBoxManageInfo.cpp" line="85"/>
     5045        <location filename="../VBoxManageInfo.cpp" line="108"/>
     5046        <location filename="../VBoxManageInfo.cpp" line="131"/>
     5047        <location filename="../VBoxManageInfo.cpp" line="1263"/>
     5048        <location filename="../VBoxManageInfo.cpp" line="1317"/>
     5049        <location filename="../VBoxManageInfo.cpp" line="2240"/>
     5050        <location filename="../VBoxManageInfo.cpp" line="2350"/>
     5051        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     5052        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    53265053        <source>disabled</source>
    53275054        <translation type="unfinished"></translation>
    53285055    </message>
    53295056    <message>
    5330         <location filename="../VBoxManageInfo.cpp" line="286"/>
     5057        <location filename="../VBoxManageInfo.cpp" line="284"/>
    53315058        <source>   %sName: %ls (UUID: %s)%s
    53325059</source>
     
    53345061    </message>
    53355062    <message>
     5063        <location filename="../VBoxManageInfo.cpp" line="290"/>
     5064        <source>   %sDescription: %ls
     5065</source>
     5066        <translation type="unfinished"></translation>
     5067    </message>
     5068    <message>
    53365069        <location filename="../VBoxManageInfo.cpp" line="292"/>
    5337         <source>   %sDescription: %ls
    5338 </source>
    5339         <translation type="unfinished"></translation>
    5340     </message>
    5341     <message>
    5342         <location filename="../VBoxManageInfo.cpp" line="294"/>
    53435070        <source>   %sDescription:
    53445071%ls
     
    53475074    </message>
    53485075    <message>
     5076        <location filename="../VBoxManageInfo.cpp" line="341"/>
     5077        <source>powered off</source>
     5078        <translation type="unfinished"></translation>
     5079    </message>
     5080    <message>
    53495081        <location filename="../VBoxManageInfo.cpp" line="343"/>
    5350         <source>powered off</source>
     5082        <source>saved</source>
    53515083        <translation type="unfinished"></translation>
    53525084    </message>
    53535085    <message>
    53545086        <location filename="../VBoxManageInfo.cpp" line="345"/>
    5355         <source>saved</source>
     5087        <source>teleported</source>
    53565088        <translation type="unfinished"></translation>
    53575089    </message>
    53585090    <message>
    53595091        <location filename="../VBoxManageInfo.cpp" line="347"/>
    5360         <source>teleported</source>
     5092        <source>aborted</source>
    53615093        <translation type="unfinished"></translation>
    53625094    </message>
    53635095    <message>
    53645096        <location filename="../VBoxManageInfo.cpp" line="349"/>
    5365         <source>aborted</source>
     5097        <source>aborted-saved</source>
    53665098        <translation type="unfinished"></translation>
    53675099    </message>
    53685100    <message>
    53695101        <location filename="../VBoxManageInfo.cpp" line="351"/>
    5370         <source>aborted-saved</source>
     5102        <source>running</source>
    53715103        <translation type="unfinished"></translation>
    53725104    </message>
    53735105    <message>
    53745106        <location filename="../VBoxManageInfo.cpp" line="353"/>
    5375         <source>running</source>
     5107        <location filename="../VBoxManageInfo.cpp" line="399"/>
     5108        <source>paused</source>
    53765109        <translation type="unfinished"></translation>
    53775110    </message>
    53785111    <message>
    53795112        <location filename="../VBoxManageInfo.cpp" line="355"/>
     5113        <source>guru meditation</source>
     5114        <translation type="unfinished"></translation>
     5115    </message>
     5116    <message>
     5117        <location filename="../VBoxManageInfo.cpp" line="357"/>
     5118        <source>teleporting</source>
     5119        <translation type="unfinished"></translation>
     5120    </message>
     5121    <message>
     5122        <location filename="../VBoxManageInfo.cpp" line="359"/>
     5123        <source>live snapshotting</source>
     5124        <translation type="unfinished"></translation>
     5125    </message>
     5126    <message>
     5127        <location filename="../VBoxManageInfo.cpp" line="361"/>
     5128        <source>starting</source>
     5129        <translation type="unfinished"></translation>
     5130    </message>
     5131    <message>
     5132        <location filename="../VBoxManageInfo.cpp" line="363"/>
     5133        <source>stopping</source>
     5134        <translation type="unfinished"></translation>
     5135    </message>
     5136    <message>
     5137        <location filename="../VBoxManageInfo.cpp" line="365"/>
     5138        <source>saving</source>
     5139        <translation type="unfinished"></translation>
     5140    </message>
     5141    <message>
     5142        <location filename="../VBoxManageInfo.cpp" line="367"/>
     5143        <source>restoring</source>
     5144        <translation type="unfinished"></translation>
     5145    </message>
     5146    <message>
     5147        <location filename="../VBoxManageInfo.cpp" line="369"/>
     5148        <source>teleporting paused vm</source>
     5149        <translation type="unfinished"></translation>
     5150    </message>
     5151    <message>
     5152        <location filename="../VBoxManageInfo.cpp" line="371"/>
     5153        <source>teleporting (incoming)</source>
     5154        <translation type="unfinished"></translation>
     5155    </message>
     5156    <message>
     5157        <location filename="../VBoxManageInfo.cpp" line="373"/>
     5158        <source>deleting snapshot live</source>
     5159        <translation type="unfinished"></translation>
     5160    </message>
     5161    <message>
     5162        <location filename="../VBoxManageInfo.cpp" line="375"/>
     5163        <source>deleting snapshot live paused</source>
     5164        <translation type="unfinished"></translation>
     5165    </message>
     5166    <message>
     5167        <location filename="../VBoxManageInfo.cpp" line="377"/>
     5168        <source>online snapshotting</source>
     5169        <translation type="unfinished"></translation>
     5170    </message>
     5171    <message>
     5172        <location filename="../VBoxManageInfo.cpp" line="379"/>
     5173        <source>restoring snapshot</source>
     5174        <translation type="unfinished"></translation>
     5175    </message>
     5176    <message>
     5177        <location filename="../VBoxManageInfo.cpp" line="381"/>
     5178        <source>deleting snapshot</source>
     5179        <translation type="unfinished"></translation>
     5180    </message>
     5181    <message>
     5182        <location filename="../VBoxManageInfo.cpp" line="383"/>
     5183        <source>setting up</source>
     5184        <translation type="unfinished"></translation>
     5185    </message>
     5186    <message>
     5187        <location filename="../VBoxManageInfo.cpp" line="385"/>
     5188        <source>offline snapshotting</source>
     5189        <translation type="unfinished"></translation>
     5190    </message>
     5191    <message>
     5192        <location filename="../VBoxManageInfo.cpp" line="389"/>
     5193        <location filename="../VBoxManageInfo.cpp" line="416"/>
     5194        <location filename="../VBoxManageInfo.cpp" line="446"/>
     5195        <location filename="../VBoxManageInfo.cpp" line="699"/>
     5196        <location filename="../VBoxManageInfo.cpp" line="1186"/>
     5197        <location filename="../VBoxManageInfo.cpp" line="1206"/>
     5198        <location filename="../VBoxManageInfo.cpp" line="1806"/>
     5199        <location filename="../VBoxManageInfo.cpp" line="1860"/>
     5200        <location filename="../VBoxManageInfo.cpp" line="2412"/>
     5201        <source>unknown</source>
     5202        <translation type="unfinished"></translation>
     5203    </message>
     5204    <message>
     5205        <location filename="../VBoxManageInfo.cpp" line="397"/>
     5206        <location filename="../VBoxManageInfo.cpp" line="2738"/>
     5207        <location filename="../VBoxManageInfo.cpp" line="2828"/>
     5208        <location filename="../VBoxManageInfo.cpp" line="2830"/>
     5209        <source>not active</source>
     5210        <translation type="unfinished"></translation>
     5211    </message>
     5212    <message>
    53805213        <location filename="../VBoxManageInfo.cpp" line="401"/>
    5381         <source>paused</source>
    5382         <translation type="unfinished"></translation>
    5383     </message>
    5384     <message>
    5385         <location filename="../VBoxManageInfo.cpp" line="357"/>
    5386         <source>guru meditation</source>
    5387         <translation type="unfinished"></translation>
    5388     </message>
    5389     <message>
    5390         <location filename="../VBoxManageInfo.cpp" line="359"/>
    5391         <source>teleporting</source>
    5392         <translation type="unfinished"></translation>
    5393     </message>
    5394     <message>
    5395         <location filename="../VBoxManageInfo.cpp" line="361"/>
    5396         <source>live snapshotting</source>
    5397         <translation type="unfinished"></translation>
    5398     </message>
    5399     <message>
    5400         <location filename="../VBoxManageInfo.cpp" line="363"/>
    5401         <source>starting</source>
    5402         <translation type="unfinished"></translation>
    5403     </message>
    5404     <message>
    5405         <location filename="../VBoxManageInfo.cpp" line="365"/>
    5406         <source>stopping</source>
    5407         <translation type="unfinished"></translation>
    5408     </message>
    5409     <message>
    5410         <location filename="../VBoxManageInfo.cpp" line="367"/>
    5411         <source>saving</source>
    5412         <translation type="unfinished"></translation>
    5413     </message>
    5414     <message>
    5415         <location filename="../VBoxManageInfo.cpp" line="369"/>
    5416         <source>restoring</source>
    5417         <translation type="unfinished"></translation>
    5418     </message>
    5419     <message>
    5420         <location filename="../VBoxManageInfo.cpp" line="371"/>
    5421         <source>teleporting paused vm</source>
    5422         <translation type="unfinished"></translation>
    5423     </message>
    5424     <message>
    5425         <location filename="../VBoxManageInfo.cpp" line="373"/>
    5426         <source>teleporting (incoming)</source>
    5427         <translation type="unfinished"></translation>
    5428     </message>
    5429     <message>
    5430         <location filename="../VBoxManageInfo.cpp" line="375"/>
    5431         <source>deleting snapshot live</source>
    5432         <translation type="unfinished"></translation>
    5433     </message>
    5434     <message>
    5435         <location filename="../VBoxManageInfo.cpp" line="377"/>
    5436         <source>deleting snapshot live paused</source>
    5437         <translation type="unfinished"></translation>
    5438     </message>
    5439     <message>
    5440         <location filename="../VBoxManageInfo.cpp" line="379"/>
    5441         <source>online snapshotting</source>
    5442         <translation type="unfinished"></translation>
    5443     </message>
    5444     <message>
    5445         <location filename="../VBoxManageInfo.cpp" line="381"/>
    5446         <source>restoring snapshot</source>
    5447         <translation type="unfinished"></translation>
    5448     </message>
    5449     <message>
    5450         <location filename="../VBoxManageInfo.cpp" line="383"/>
    5451         <source>deleting snapshot</source>
    5452         <translation type="unfinished"></translation>
    5453     </message>
    5454     <message>
    5455         <location filename="../VBoxManageInfo.cpp" line="385"/>
    5456         <source>setting up</source>
    5457         <translation type="unfinished"></translation>
    5458     </message>
    5459     <message>
    5460         <location filename="../VBoxManageInfo.cpp" line="387"/>
    5461         <source>offline snapshotting</source>
    5462         <translation type="unfinished"></translation>
    5463     </message>
    5464     <message>
    5465         <location filename="../VBoxManageInfo.cpp" line="391"/>
    5466         <location filename="../VBoxManageInfo.cpp" line="418"/>
    5467         <location filename="../VBoxManageInfo.cpp" line="448"/>
    5468         <location filename="../VBoxManageInfo.cpp" line="691"/>
     5214        <source>pre-initializing</source>
     5215        <translation type="unfinished"></translation>
     5216    </message>
     5217    <message>
     5218        <location filename="../VBoxManageInfo.cpp" line="403"/>
     5219        <source>initializing</source>
     5220        <translation type="unfinished"></translation>
     5221    </message>
     5222    <message>
     5223        <location filename="../VBoxManageInfo.cpp" line="405"/>
     5224        <source>active/running</source>
     5225        <translation type="unfinished"></translation>
     5226    </message>
     5227    <message>
     5228        <location filename="../VBoxManageInfo.cpp" line="407"/>
     5229        <source>terminating</source>
     5230        <translation type="unfinished"></translation>
     5231    </message>
     5232    <message>
     5233        <location filename="../VBoxManageInfo.cpp" line="409"/>
     5234        <source>terminated</source>
     5235        <translation type="unfinished"></translation>
     5236    </message>
     5237    <message>
     5238        <location filename="../VBoxManageInfo.cpp" line="411"/>
     5239        <source>failed</source>
     5240        <translation type="unfinished"></translation>
     5241    </message>
     5242    <message>
     5243        <location filename="../VBoxManageInfo.cpp" line="692"/>
     5244        <location filename="../VBoxManageInfo.cpp" line="1404"/>
     5245        <location filename="../VBoxManageInfo.cpp" line="2139"/>
     5246        <source>Null</source>
     5247        <translation type="unfinished"></translation>
     5248    </message>
     5249    <message>
     5250        <location filename="../VBoxManageInfo.cpp" line="693"/>
     5251        <source>Disk</source>
     5252        <translation type="unfinished"></translation>
     5253    </message>
     5254    <message>
     5255        <location filename="../VBoxManageInfo.cpp" line="694"/>
     5256        <location filename="../VBoxManageInfo.cpp" line="1295"/>
     5257        <source>Network</source>
     5258        <translation type="unfinished"></translation>
     5259    </message>
     5260    <message>
     5261        <location filename="../VBoxManageInfo.cpp" line="709"/>
     5262        <location filename="../VBoxManageInfo.cpp" line="2693"/>
     5263        <source>&lt;none&gt;
     5264</source>
     5265        <translation type="unfinished"></translation>
     5266    </message>
     5267    <message>
     5268        <location filename="../VBoxManageInfo.cpp" line="732"/>
     5269        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: none (disabled)
     5270</source>
     5271        <translation type="unfinished"></translation>
     5272    </message>
     5273    <message>
     5274        <location filename="../VBoxManageInfo.cpp" line="780"/>
     5275        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: %RI64 %s (%RI64 %s)
     5276</source>
     5277        <translation type="unfinished"></translation>
     5278    </message>
     5279    <message>
     5280        <location filename="../VBoxManageInfo.cpp" line="784"/>
     5281        <source>#%zu: Name: &apos;%ls&apos;, Type: %s, Limit: %RI64 %s
     5282</source>
     5283        <translation type="unfinished"></translation>
     5284    </message>
     5285    <message>
     5286        <location filename="../VBoxManageInfo.cpp" line="813"/>
     5287        <source>Name: &apos;%ls&apos;, Host path: &apos;%ls&apos; (%s), %s%s</source>
     5288        <translation type="unfinished"></translation>
     5289    </message>
     5290    <message>
     5291        <location filename="../VBoxManageInfo.cpp" line="814"/>
     5292        <source>writable</source>
     5293        <translation type="unfinished"></translation>
     5294    </message>
     5295    <message>
     5296        <location filename="../VBoxManageInfo.cpp" line="814"/>
     5297        <source>readonly</source>
     5298        <translation type="unfinished"></translation>
     5299    </message>
     5300    <message>
     5301        <location filename="../VBoxManageInfo.cpp" line="815"/>
     5302        <source>, auto-mount</source>
     5303        <translation type="unfinished"></translation>
     5304    </message>
     5305    <message>
     5306        <location filename="../VBoxManageInfo.cpp" line="817"/>
     5307        <source>, mount-point: &apos;%ls&apos;
     5308</source>
     5309        <translation type="unfinished"></translation>
     5310    </message>
     5311    <message>
     5312        <location filename="../VBoxManageInfo.cpp" line="840"/>
     5313        <source>VendorId:</source>
     5314        <translation type="unfinished"></translation>
     5315    </message>
     5316    <message>
     5317        <location filename="../VBoxManageInfo.cpp" line="841"/>
     5318        <source>ProductId:</source>
     5319        <translation type="unfinished"></translation>
     5320    </message>
     5321    <message>
     5322        <location filename="../VBoxManageInfo.cpp" line="850"/>
     5323        <source>Revision:</source>
     5324        <translation type="unfinished"></translation>
     5325    </message>
     5326    <message>
     5327        <location filename="../VBoxManageInfo.cpp" line="852"/>
     5328        <source>Manufacturer:</source>
     5329        <translation type="unfinished"></translation>
     5330    </message>
     5331    <message>
     5332        <location filename="../VBoxManageInfo.cpp" line="853"/>
     5333        <source>Product:</source>
     5334        <translation type="unfinished"></translation>
     5335    </message>
     5336    <message>
     5337        <location filename="../VBoxManageInfo.cpp" line="854"/>
     5338        <source>SerialNumber:</source>
     5339        <translation type="unfinished"></translation>
     5340    </message>
     5341    <message>
     5342        <location filename="../VBoxManageInfo.cpp" line="855"/>
     5343        <source>Address:</source>
     5344        <translation type="unfinished"></translation>
     5345    </message>
     5346    <message>
     5347        <location filename="../VBoxManageInfo.cpp" line="862"/>
     5348        <location filename="../VBoxManageInfo.cpp" line="1542"/>
     5349        <location filename="../VBoxManageInfo.cpp" line="2572"/>
     5350        <location filename="../VBoxManageInfo.cpp" line="2985"/>
     5351        <source>&lt;none&gt;</source>
     5352        <translation type="unfinished"></translation>
     5353    </message>
     5354    <message>
     5355        <location filename="../VBoxManageInfo.cpp" line="920"/>
     5356        <source>  Port %u, Unit %u: UUID: %ls%s%s%s%s%s%s
     5357    Location: &quot;%ls&quot;
     5358</source>
     5359        <translation type="unfinished"></translation>
     5360    </message>
     5361    <message>
     5362        <location filename="../VBoxManageInfo.cpp" line="922"/>
     5363        <source>, passthrough enabled</source>
     5364        <translation type="unfinished"></translation>
     5365    </message>
     5366    <message>
     5367        <location filename="../VBoxManageInfo.cpp" line="923"/>
     5368        <location filename="../VBoxManageInfo.cpp" line="966"/>
     5369        <source>, temp eject</source>
     5370        <translation type="unfinished"></translation>
     5371    </message>
     5372    <message>
     5373        <location filename="../VBoxManageInfo.cpp" line="924"/>
     5374        <location filename="../VBoxManageInfo.cpp" line="967"/>
     5375        <source>, ejected</source>
     5376        <translation type="unfinished"></translation>
     5377    </message>
     5378    <message>
     5379        <location filename="../VBoxManageInfo.cpp" line="925"/>
     5380        <source>, hot-pluggable</source>
     5381        <translation type="unfinished"></translation>
     5382    </message>
     5383    <message>
     5384        <location filename="../VBoxManageInfo.cpp" line="926"/>
     5385        <source>, non-rotational (SSD)</source>
     5386        <translation type="unfinished"></translation>
     5387    </message>
     5388    <message>
     5389        <location filename="../VBoxManageInfo.cpp" line="927"/>
     5390        <source>, discards unused blocks</source>
     5391        <translation type="unfinished"></translation>
     5392    </message>
     5393    <message>
     5394        <location filename="../VBoxManageInfo.cpp" line="965"/>
     5395        <source>  Port %u, Unit %u: Empty%s%s
     5396</source>
     5397        <translation type="unfinished"></translation>
     5398    </message>
     5399    <message>
     5400        <location filename="../VBoxManageInfo.cpp" line="979"/>
     5401        <source>  Port %u, Unit %u: GetMedium failed: %Rhrc
     5402</source>
     5403        <translation type="unfinished"></translation>
     5404    </message>
     5405    <message>
     5406        <location filename="../VBoxManageInfo.cpp" line="995"/>
     5407        <location filename="../VBoxManageInfo.cpp" line="1027"/>
     5408        <location filename="../VBoxManageInfo.cpp" line="1914"/>
     5409        <location filename="../VBoxManageInfo.cpp" line="1950"/>
     5410        <source>None</source>
     5411        <translation type="unfinished"></translation>
     5412    </message>
     5413    <message>
     5414        <location filename="../VBoxManageInfo.cpp" line="1000"/>
     5415        <source>Automatic</source>
     5416        <translation type="unfinished"></translation>
     5417    </message>
     5418    <message>
     5419        <location filename="../VBoxManageInfo.cpp" line="1015"/>
     5420        <location filename="../VBoxManageInfo.cpp" line="1057"/>
     5421        <location filename="../VBoxManageInfo.cpp" line="1428"/>
     5422        <location filename="../VBoxManageInfo.cpp" line="1908"/>
     5423        <location filename="../VBoxManageInfo.cpp" line="1945"/>
     5424        <location filename="../VBoxManageInfo.cpp" line="2124"/>
     5425        <location filename="../VBoxManageInfo.cpp" line="2125"/>
     5426        <location filename="../VBoxManageInfo.cpp" line="2126"/>
     5427        <location filename="../VBoxManageInfo.cpp" line="2269"/>
     5428        <location filename="../VBoxManageInfo.cpp" line="2298"/>
     5429        <source>Unknown</source>
     5430        <translation type="unfinished"></translation>
     5431    </message>
     5432    <message>
     5433        <location filename="../VBoxManageInfo.cpp" line="1032"/>
     5434        <source>Default</source>
     5435        <translation type="unfinished"></translation>
     5436    </message>
     5437    <message>
     5438        <location filename="../VBoxManageInfo.cpp" line="1037"/>
     5439        <source>Legacy</source>
     5440        <translation type="unfinished"></translation>
     5441    </message>
     5442    <message>
     5443        <location filename="../VBoxManageInfo.cpp" line="1042"/>
     5444        <source>Minimal</source>
     5445        <translation type="unfinished"></translation>
     5446    </message>
     5447    <message>
     5448        <location filename="../VBoxManageInfo.cpp" line="1106"/>
     5449        <source>&quot;&lt;inaccessible&gt;&quot; {%s}
     5450</source>
     5451        <translation type="unfinished"></translation>
     5452    </message>
     5453    <message>
     5454        <location filename="../VBoxManageInfo.cpp" line="1112"/>
     5455        <source>Name:            &lt;inaccessible!&gt;
     5456</source>
     5457        <translation type="unfinished"></translation>
     5458    </message>
     5459    <message>
     5460        <location filename="../VBoxManageInfo.cpp" line="1121"/>
     5461        <source>Config file:     %ls
     5462</source>
     5463        <translation type="unfinished"></translation>
     5464    </message>
     5465    <message>
     5466        <location filename="../VBoxManageInfo.cpp" line="1124"/>
     5467        <source>Access error details:
     5468</source>
     5469        <translation type="unfinished"></translation>
     5470    </message>
     5471    <message>
     5472        <location filename="../VBoxManageInfo.cpp" line="1144"/>
     5473        <source>Name:</source>
     5474        <translation type="unfinished"></translation>
     5475    </message>
     5476    <message>
     5477        <location filename="../VBoxManageInfo.cpp" line="1145"/>
     5478        <source>Groups:</source>
     5479        <translation type="unfinished"></translation>
     5480    </message>
     5481    <message>
     5482        <location filename="../VBoxManageInfo.cpp" line="1151"/>
    54695483        <location filename="../VBoxManageInfo.cpp" line="1153"/>
    5470         <location filename="../VBoxManageInfo.cpp" line="1173"/>
    5471         <location filename="../VBoxManageInfo.cpp" line="1773"/>
    5472         <location filename="../VBoxManageInfo.cpp" line="1825"/>
    5473         <location filename="../VBoxManageInfo.cpp" line="2377"/>
    5474         <source>unknown</source>
    5475         <translation type="unfinished"></translation>
    5476     </message>
    5477     <message>
    5478         <location filename="../VBoxManageInfo.cpp" line="399"/>
    5479         <location filename="../VBoxManageInfo.cpp" line="2703"/>
    5480         <location filename="../VBoxManageInfo.cpp" line="2793"/>
    5481         <location filename="../VBoxManageInfo.cpp" line="2795"/>
    5482         <source>not active</source>
    5483         <translation type="unfinished"></translation>
    5484     </message>
    5485     <message>
    5486         <location filename="../VBoxManageInfo.cpp" line="403"/>
    5487         <source>pre-initializing</source>
    5488         <translation type="unfinished"></translation>
    5489     </message>
    5490     <message>
    5491         <location filename="../VBoxManageInfo.cpp" line="405"/>
    5492         <source>initializing</source>
    5493         <translation type="unfinished"></translation>
    5494     </message>
    5495     <message>
    5496         <location filename="../VBoxManageInfo.cpp" line="407"/>
    5497         <source>active/running</source>
    5498         <translation type="unfinished"></translation>
    5499     </message>
    5500     <message>
    5501         <location filename="../VBoxManageInfo.cpp" line="409"/>
    5502         <source>terminating</source>
    5503         <translation type="unfinished"></translation>
    5504     </message>
    5505     <message>
    5506         <location filename="../VBoxManageInfo.cpp" line="411"/>
    5507         <source>terminated</source>
    5508         <translation type="unfinished"></translation>
    5509     </message>
    5510     <message>
    5511         <location filename="../VBoxManageInfo.cpp" line="413"/>
    5512         <source>failed</source>
    5513         <translation type="unfinished"></translation>
    5514     </message>
    5515     <message>
    5516         <location filename="../VBoxManageInfo.cpp" line="684"/>
    5517         <location filename="../VBoxManageInfo.cpp" line="1371"/>
    5518         <location filename="../VBoxManageInfo.cpp" line="2104"/>
    5519         <source>Null</source>
    5520         <translation type="unfinished"></translation>
    5521     </message>
    5522     <message>
    5523         <location filename="../VBoxManageInfo.cpp" line="685"/>
    5524         <source>Disk</source>
    5525         <translation type="unfinished"></translation>
    5526     </message>
    5527     <message>
    5528         <location filename="../VBoxManageInfo.cpp" line="686"/>
    5529         <location filename="../VBoxManageInfo.cpp" line="1262"/>
    5530         <source>Network</source>
    5531         <translation type="unfinished"></translation>
    5532     </message>
    5533     <message>
    5534         <location filename="../VBoxManageInfo.cpp" line="723"/>
    5535         <source>Name: &apos;%ls&apos;, Type: %s, Limit: none (disabled)
    5536 </source>
    5537         <translation type="unfinished"></translation>
    5538     </message>
    5539     <message>
    5540         <location filename="../VBoxManageInfo.cpp" line="764"/>
    5541         <source>Name: &apos;%ls&apos;, Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec)
    5542 </source>
    5543         <translation type="unfinished"></translation>
    5544     </message>
    5545     <message>
    5546         <location filename="../VBoxManageInfo.cpp" line="769"/>
    5547         <source>Name: &apos;%ls&apos;, Type: %s, Limit: %lld %sbytes/sec
    5548 </source>
    5549         <translation type="unfinished"></translation>
    5550     </message>
    5551     <message>
    5552         <location filename="../VBoxManageInfo.cpp" line="773"/>
    5553         <location filename="../VBoxManageInfo.cpp" line="2658"/>
    5554         <source>&lt;none&gt;
    5555 </source>
    5556         <translation type="unfinished"></translation>
    5557     </message>
    5558     <message>
    5559         <location filename="../VBoxManageInfo.cpp" line="800"/>
    5560         <source>Name: &apos;%ls&apos;, Host path: &apos;%ls&apos; (%s), %s%s</source>
    5561         <translation type="unfinished"></translation>
    5562     </message>
    5563     <message>
    5564         <location filename="../VBoxManageInfo.cpp" line="801"/>
    5565         <source>writable</source>
    5566         <translation type="unfinished"></translation>
    5567     </message>
    5568     <message>
    5569         <location filename="../VBoxManageInfo.cpp" line="801"/>
    5570         <source>readonly</source>
    5571         <translation type="unfinished"></translation>
    5572     </message>
    5573     <message>
    5574         <location filename="../VBoxManageInfo.cpp" line="802"/>
    5575         <source>, auto-mount</source>
    5576         <translation type="unfinished"></translation>
    5577     </message>
    5578     <message>
    5579         <location filename="../VBoxManageInfo.cpp" line="804"/>
    5580         <source>, mount-point: &apos;%ls&apos;
    5581 </source>
    5582         <translation type="unfinished"></translation>
    5583     </message>
    5584     <message>
    5585         <location filename="../VBoxManageInfo.cpp" line="827"/>
    5586         <source>VendorId:</source>
    5587         <translation type="unfinished"></translation>
    5588     </message>
    5589     <message>
    5590         <location filename="../VBoxManageInfo.cpp" line="828"/>
    5591         <source>ProductId:</source>
    5592         <translation type="unfinished"></translation>
    5593     </message>
    5594     <message>
    5595         <location filename="../VBoxManageInfo.cpp" line="837"/>
    5596         <source>Revision:</source>
    5597         <translation type="unfinished"></translation>
    5598     </message>
    5599     <message>
    5600         <location filename="../VBoxManageInfo.cpp" line="839"/>
    5601         <source>Manufacturer:</source>
    5602         <translation type="unfinished"></translation>
    5603     </message>
    5604     <message>
    5605         <location filename="../VBoxManageInfo.cpp" line="840"/>
    5606         <source>Product:</source>
    5607         <translation type="unfinished"></translation>
    5608     </message>
    5609     <message>
    5610         <location filename="../VBoxManageInfo.cpp" line="841"/>
    5611         <source>SerialNumber:</source>
    5612         <translation type="unfinished"></translation>
    5613     </message>
    5614     <message>
    5615         <location filename="../VBoxManageInfo.cpp" line="842"/>
    5616         <source>Address:</source>
    5617         <translation type="unfinished"></translation>
    5618     </message>
    5619     <message>
    5620         <location filename="../VBoxManageInfo.cpp" line="849"/>
    5621         <location filename="../VBoxManageInfo.cpp" line="1509"/>
    5622         <location filename="../VBoxManageInfo.cpp" line="2537"/>
    5623         <location filename="../VBoxManageInfo.cpp" line="2950"/>
    5624         <source>&lt;none&gt;</source>
    5625         <translation type="unfinished"></translation>
    5626     </message>
    5627     <message>
    5628         <location filename="../VBoxManageInfo.cpp" line="901"/>
    5629         <source>  Port %u, Unit %u: UUID: %ls%s%s%s
    5630     Location: &quot;%ls&quot;
    5631 </source>
    5632         <translation type="unfinished"></translation>
    5633     </message>
    5634     <message>
    5635         <location filename="../VBoxManageInfo.cpp" line="903"/>
    5636         <source>, passthrough enabled</source>
    5637         <translation type="unfinished"></translation>
    5638     </message>
    5639     <message>
    5640         <location filename="../VBoxManageInfo.cpp" line="904"/>
    5641         <location filename="../VBoxManageInfo.cpp" line="933"/>
    5642         <source>, temp eject</source>
    5643         <translation type="unfinished"></translation>
    5644     </message>
    5645     <message>
    5646         <location filename="../VBoxManageInfo.cpp" line="905"/>
    5647         <location filename="../VBoxManageInfo.cpp" line="934"/>
    5648         <source>, ejected</source>
    5649         <translation type="unfinished"></translation>
    5650     </message>
    5651     <message>
    5652         <location filename="../VBoxManageInfo.cpp" line="932"/>
    5653         <source>  Port %u, Unit %u: Empty%s%s
    5654 </source>
    5655         <translation type="unfinished"></translation>
    5656     </message>
    5657     <message>
    5658         <location filename="../VBoxManageInfo.cpp" line="946"/>
    5659         <source>  Port %u, Unit %u: GetMedium failed: %Rhrc
    5660 </source>
    5661         <translation type="unfinished"></translation>
    5662     </message>
    5663     <message>
    5664         <location filename="../VBoxManageInfo.cpp" line="962"/>
    5665         <location filename="../VBoxManageInfo.cpp" line="994"/>
    5666         <location filename="../VBoxManageInfo.cpp" line="1879"/>
    5667         <location filename="../VBoxManageInfo.cpp" line="1915"/>
    5668         <source>None</source>
    5669         <translation type="unfinished"></translation>
    5670     </message>
    5671     <message>
    5672         <location filename="../VBoxManageInfo.cpp" line="967"/>
    5673         <source>Automatic</source>
    5674         <translation type="unfinished"></translation>
    5675     </message>
    5676     <message>
    5677         <location filename="../VBoxManageInfo.cpp" line="982"/>
    5678         <location filename="../VBoxManageInfo.cpp" line="1024"/>
    5679         <location filename="../VBoxManageInfo.cpp" line="1395"/>
    5680         <location filename="../VBoxManageInfo.cpp" line="1873"/>
    5681         <location filename="../VBoxManageInfo.cpp" line="1910"/>
    5682         <location filename="../VBoxManageInfo.cpp" line="2089"/>
    5683         <location filename="../VBoxManageInfo.cpp" line="2090"/>
    5684         <location filename="../VBoxManageInfo.cpp" line="2091"/>
    5685         <location filename="../VBoxManageInfo.cpp" line="2234"/>
     5484        <source>Guest OS:</source>
     5485        <translation type="unfinished"></translation>
     5486    </message>
     5487    <message>
     5488        <location filename="../VBoxManageInfo.cpp" line="1155"/>
     5489        <source>Config file:</source>
     5490        <translation type="unfinished"></translation>
     5491    </message>
     5492    <message>
     5493        <location filename="../VBoxManageInfo.cpp" line="1156"/>
     5494        <source>Snapshot folder:</source>
     5495        <translation type="unfinished"></translation>
     5496    </message>
     5497    <message>
     5498        <location filename="../VBoxManageInfo.cpp" line="1157"/>
     5499        <source>Log folder:</source>
     5500        <translation type="unfinished"></translation>
     5501    </message>
     5502    <message>
     5503        <location filename="../VBoxManageInfo.cpp" line="1158"/>
     5504        <source>Hardware UUID:</source>
     5505        <translation type="unfinished"></translation>
     5506    </message>
     5507    <message>
     5508        <location filename="../VBoxManageInfo.cpp" line="1159"/>
     5509        <source>Memory size:</source>
     5510        <translation type="unfinished"></translation>
     5511    </message>
     5512    <message>
     5513        <location filename="../VBoxManageInfo.cpp" line="1160"/>
     5514        <source>Page Fusion:</source>
     5515        <translation type="unfinished"></translation>
     5516    </message>
     5517    <message>
     5518        <location filename="../VBoxManageInfo.cpp" line="1163"/>
     5519        <source>VRAM size:</source>
     5520        <translation type="unfinished"></translation>
     5521    </message>
     5522    <message>
     5523        <location filename="../VBoxManageInfo.cpp" line="1164"/>
     5524        <source>CPU exec cap:</source>
     5525        <translation type="unfinished"></translation>
     5526    </message>
     5527    <message>
     5528        <location filename="../VBoxManageInfo.cpp" line="1165"/>
     5529        <source>HPET:</source>
     5530        <translation type="unfinished"></translation>
     5531    </message>
     5532    <message>
     5533        <location filename="../VBoxManageInfo.cpp" line="1166"/>
     5534        <source>CPUProfile:</source>
     5535        <translation type="unfinished"></translation>
     5536    </message>
     5537    <message>
     5538        <location filename="../VBoxManageInfo.cpp" line="1177"/>
     5539        <source>invalid</source>
     5540        <translation type="unfinished"></translation>
     5541    </message>
     5542    <message>
     5543        <location filename="../VBoxManageInfo.cpp" line="1189"/>
     5544        <source>Chipset:</source>
     5545        <translation type="unfinished"></translation>
     5546    </message>
     5547    <message>
     5548        <location filename="../VBoxManageInfo.cpp" line="1209"/>
     5549        <source>Firmware:</source>
     5550        <translation type="unfinished"></translation>
     5551    </message>
     5552    <message>
     5553        <location filename="../VBoxManageInfo.cpp" line="1211"/>
     5554        <source>Number of CPUs:</source>
     5555        <translation type="unfinished"></translation>
     5556    </message>
     5557    <message>
     5558        <location filename="../VBoxManageInfo.cpp" line="1213"/>
     5559        <source>Long Mode:</source>
     5560        <translation type="unfinished"></translation>
     5561    </message>
     5562    <message>
     5563        <location filename="../VBoxManageInfo.cpp" line="1214"/>
     5564        <source>Triple Fault Reset:</source>
     5565        <translation type="unfinished"></translation>
     5566    </message>
     5567    <message>
     5568        <location filename="../VBoxManageInfo.cpp" line="1217"/>
     5569        <source>Nested VT-x/AMD-V:</source>
     5570        <translation type="unfinished"></translation>
     5571    </message>
     5572    <message>
     5573        <location filename="../VBoxManageInfo.cpp" line="1218"/>
     5574        <source>CPUID Portability Level:</source>
     5575        <translation type="unfinished"></translation>
     5576    </message>
     5577    <message>
     5578        <location filename="../VBoxManageInfo.cpp" line="1221"/>
     5579        <source>CPUID overrides:</source>
     5580        <translation type="unfinished"></translation>
     5581    </message>
     5582    <message>
     5583        <location filename="../VBoxManageInfo.cpp" line="1234"/>
     5584        <source>Leaf no.      EAX      EBX      ECX      EDX
     5585</source>
     5586        <translation type="unfinished"></translation>
     5587    </message>
     5588    <message>
     5589        <location filename="../VBoxManageInfo.cpp" line="1246"/>
     5590        <source>None
     5591</source>
     5592        <translation type="unfinished"></translation>
     5593    </message>
     5594    <message>
     5595        <location filename="../VBoxManageInfo.cpp" line="1269"/>
     5596        <source>menu only</source>
     5597        <translation type="unfinished"></translation>
     5598    </message>
     5599    <message>
     5600        <location filename="../VBoxManageInfo.cpp" line="1275"/>
     5601        <source>message and menu</source>
     5602        <translation type="unfinished"></translation>
     5603    </message>
     5604    <message>
     5605        <location filename="../VBoxManageInfo.cpp" line="1277"/>
     5606        <source>Boot menu mode:</source>
     5607        <translation type="unfinished"></translation>
     5608    </message>
     5609    <message>
     5610        <location filename="../VBoxManageInfo.cpp" line="1289"/>
     5611        <source>Floppy</source>
     5612        <translation type="unfinished"></translation>
     5613    </message>
     5614    <message>
     5615        <location filename="../VBoxManageInfo.cpp" line="1293"/>
     5616        <source>HardDisk</source>
     5617        <translation type="unfinished"></translation>
     5618    </message>
     5619    <message>
     5620        <location filename="../VBoxManageInfo.cpp" line="1299"/>
     5621        <source>Shared Folder</source>
     5622        <translation type="unfinished"></translation>
     5623    </message>
     5624    <message>
     5625        <location filename="../VBoxManageInfo.cpp" line="1301"/>
     5626        <source>Not Assigned</source>
     5627        <translation type="unfinished"></translation>
     5628    </message>
     5629    <message>
     5630        <location filename="../VBoxManageInfo.cpp" line="1302"/>
     5631        <source>Boot Device %u:</source>
     5632        <translation type="unfinished"></translation>
     5633    </message>
     5634    <message>
     5635        <location filename="../VBoxManageInfo.cpp" line="1333"/>
     5636        <source>BIOS APIC mode:</source>
     5637        <translation type="unfinished"></translation>
     5638    </message>
     5639    <message>
     5640        <location filename="../VBoxManageInfo.cpp" line="1335"/>
     5641        <source>Time offset:</source>
     5642        <translation type="unfinished"></translation>
     5643    </message>
     5644    <message>
     5645        <location filename="../VBoxManageInfo.cpp" line="1335"/>
     5646        <source>ms</source>
     5647        <translation type="unfinished"></translation>
     5648    </message>
     5649    <message>
     5650        <location filename="../VBoxManageInfo.cpp" line="1339"/>
     5651        <source>BIOS NVRAM File:</source>
     5652        <translation type="unfinished"></translation>
     5653    </message>
     5654    <message>
     5655        <location filename="../VBoxManageInfo.cpp" line="1340"/>
     5656        <source>RTC:</source>
     5657        <translation type="unfinished"></translation>
     5658    </message>
     5659    <message>
     5660        <location filename="../VBoxManageInfo.cpp" line="1340"/>
     5661        <source>local time</source>
     5662        <translation type="unfinished"></translation>
     5663    </message>
     5664    <message>
     5665        <location filename="../VBoxManageInfo.cpp" line="1341"/>
     5666        <source>Hardware Virtualization:</source>
     5667        <translation type="unfinished"></translation>
     5668    </message>
     5669    <message>
     5670        <location filename="../VBoxManageInfo.cpp" line="1342"/>
     5671        <source>Nested Paging:</source>
     5672        <translation type="unfinished"></translation>
     5673    </message>
     5674    <message>
     5675        <location filename="../VBoxManageInfo.cpp" line="1343"/>
     5676        <source>Large Pages:</source>
     5677        <translation type="unfinished"></translation>
     5678    </message>
     5679    <message>
     5680        <location filename="../VBoxManageInfo.cpp" line="1345"/>
     5681        <source>VT-x Unrestricted Exec.:</source>
     5682        <translation type="unfinished"></translation>
     5683    </message>
     5684    <message>
     5685        <location filename="../VBoxManageInfo.cpp" line="1346"/>
     5686        <source>AMD-V Virt. Vmsave/Vmload:</source>
     5687        <translation type="unfinished"></translation>
     5688    </message>
     5689    <message>
     5690        <location filename="../VBoxManageInfo.cpp" line="1358"/>
     5691        <source>Paravirt. Provider:</source>
     5692        <translation type="unfinished"></translation>
     5693    </message>
     5694    <message>
     5695        <location filename="../VBoxManageInfo.cpp" line="1363"/>
     5696        <source>Effective Paravirt. Prov.:</source>
     5697        <translation type="unfinished"></translation>
     5698    </message>
     5699    <message>
     5700        <location filename="../VBoxManageInfo.cpp" line="1368"/>
     5701        <source>Paravirt. Debug:</source>
     5702        <translation type="unfinished"></translation>
     5703    </message>
     5704    <message>
     5705        <location filename="../VBoxManageInfo.cpp" line="1391"/>
     5706        <source>%-28s %s (since %s)
     5707</source>
     5708        <translation type="unfinished"></translation>
     5709    </message>
     5710    <message>
     5711        <location filename="../VBoxManageInfo.cpp" line="1391"/>
     5712        <source>State:</source>
     5713        <translation type="unfinished"></translation>
     5714    </message>
     5715    <message>
     5716        <location filename="../VBoxManageInfo.cpp" line="1435"/>
     5717        <source>Graphics Controller:</source>
     5718        <translation type="unfinished"></translation>
     5719    </message>
     5720    <message>
     5721        <location filename="../VBoxManageInfo.cpp" line="1438"/>
     5722        <source>Monitor count:</source>
     5723        <translation type="unfinished"></translation>
     5724    </message>
     5725    <message>
     5726        <location filename="../VBoxManageInfo.cpp" line="1439"/>
     5727        <source>3D Acceleration:</source>
     5728        <translation type="unfinished"></translation>
     5729    </message>
     5730    <message>
     5731        <location filename="../VBoxManageInfo.cpp" line="1441"/>
     5732        <source>2D Video Acceleration:</source>
     5733        <translation type="unfinished"></translation>
     5734    </message>
     5735    <message>
     5736        <location filename="../VBoxManageInfo.cpp" line="1443"/>
     5737        <source>Teleporter Enabled:</source>
     5738        <translation type="unfinished"></translation>
     5739    </message>
     5740    <message>
     5741        <location filename="../VBoxManageInfo.cpp" line="1444"/>
     5742        <source>Teleporter Port:</source>
     5743        <translation type="unfinished"></translation>
     5744    </message>
     5745    <message>
     5746        <location filename="../VBoxManageInfo.cpp" line="1445"/>
     5747        <source>Teleporter Address:</source>
     5748        <translation type="unfinished"></translation>
     5749    </message>
     5750    <message>
     5751        <location filename="../VBoxManageInfo.cpp" line="1446"/>
     5752        <source>Teleporter Password:</source>
     5753        <translation type="unfinished"></translation>
     5754    </message>
     5755    <message>
     5756        <location filename="../VBoxManageInfo.cpp" line="1447"/>
     5757        <source>Tracing Enabled:</source>
     5758        <translation type="unfinished"></translation>
     5759    </message>
     5760    <message>
     5761        <location filename="../VBoxManageInfo.cpp" line="1448"/>
     5762        <source>Allow Tracing to Access VM:</source>
     5763        <translation type="unfinished"></translation>
     5764    </message>
     5765    <message>
     5766        <location filename="../VBoxManageInfo.cpp" line="1449"/>
     5767        <source>Tracing Configuration:</source>
     5768        <translation type="unfinished"></translation>
     5769    </message>
     5770    <message>
     5771        <location filename="../VBoxManageInfo.cpp" line="1450"/>
     5772        <source>Autostart Enabled:</source>
     5773        <translation type="unfinished"></translation>
     5774    </message>
     5775    <message>
     5776        <location filename="../VBoxManageInfo.cpp" line="1451"/>
     5777        <source>Autostart Delay:</source>
     5778        <translation type="unfinished"></translation>
     5779    </message>
     5780    <message>
     5781        <location filename="../VBoxManageInfo.cpp" line="1452"/>
     5782        <source>Default Frontend:</source>
     5783        <translation type="unfinished"></translation>
     5784    </message>
     5785    <message>
     5786        <location filename="../VBoxManageInfo.cpp" line="1463"/>
     5787        <source>flat</source>
     5788        <translation type="unfinished"></translation>
     5789    </message>
     5790    <message>
     5791        <location filename="../VBoxManageInfo.cpp" line="1469"/>
     5792        <source>low</source>
     5793        <translation type="unfinished"></translation>
     5794    </message>
     5795    <message>
     5796        <location filename="../VBoxManageInfo.cpp" line="1475"/>
     5797        <source>normal</source>
     5798        <translation type="unfinished"></translation>
     5799    </message>
     5800    <message>
     5801        <location filename="../VBoxManageInfo.cpp" line="1481"/>
     5802        <source>high</source>
     5803        <translation type="unfinished"></translation>
     5804    </message>
     5805    <message>
     5806        <location filename="../VBoxManageInfo.cpp" line="1487"/>
     5807        <source>default</source>
     5808        <translation type="unfinished"></translation>
     5809    </message>
     5810    <message>
     5811        <location filename="../VBoxManageInfo.cpp" line="1490"/>
     5812        <source>VM process priority:</source>
     5813        <translation type="unfinished"></translation>
     5814    </message>
     5815    <message>
     5816        <location filename="../VBoxManageInfo.cpp" line="1502"/>
     5817        <location filename="../VBoxManageInfo.cpp" line="1542"/>
     5818        <source>Storage Controllers:</source>
     5819        <translation type="unfinished"></translation>
     5820    </message>
     5821    <message>
     5822        <location filename="../VBoxManageInfo.cpp" line="1532"/>
     5823        <source>#%u: &apos;%ls&apos;, Type: %s, Instance: %u, Ports: %u (max %u), %s
     5824</source>
     5825        <translation type="unfinished"></translation>
     5826    </message>
     5827    <message>
     5828        <location filename="../VBoxManageInfo.cpp" line="1534"/>
     5829        <source>Bootable</source>
     5830        <translation type="unfinished"></translation>
     5831    </message>
     5832    <message>
     5833        <location filename="../VBoxManageInfo.cpp" line="1534"/>
     5834        <source>Not bootable</source>
     5835        <translation type="unfinished"></translation>
     5836    </message>
     5837    <message>
     5838        <location filename="../VBoxManageInfo.cpp" line="1561"/>
     5839        <source>NIC %u:</source>
     5840        <translation type="unfinished"></translation>
     5841    </message>
     5842    <message>
     5843        <location filename="../VBoxManageInfo.cpp" line="1570"/>
     5844        <location filename="../VBoxManageInfo.cpp" line="1992"/>
     5845        <location filename="../VBoxManageInfo.cpp" line="2098"/>
     5846        <location filename="../VBoxManageInfo.cpp" line="2459"/>
     5847        <location filename="../VBoxManageInfo.cpp" line="2491"/>
     5848        <source>%-28s disabled
     5849</source>
     5850        <translation type="unfinished"></translation>
     5851    </message>
     5852    <message>
     5853        <location filename="../VBoxManageInfo.cpp" line="1587"/>
     5854        <location filename="../VBoxManageInfo.cpp" line="1892"/>
     5855        <location filename="../VBoxManageInfo.cpp" line="1897"/>
     5856        <source>none</source>
     5857        <translation type="unfinished"></translation>
     5858    </message>
     5859    <message>
     5860        <location filename="../VBoxManageInfo.cpp" line="1655"/>
     5861        <source>%sNIC %d Rule(%d):   name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s
     5862</source>
     5863        <translation type="unfinished"></translation>
     5864    </message>
     5865    <message>
     5866        <location filename="../VBoxManageInfo.cpp" line="1678"/>
     5867        <source>NIC %d Settings:  MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d)
     5868</source>
     5869        <translation type="unfinished"></translation>
     5870    </message>
     5871    <message>
     5872        <location filename="../VBoxManageInfo.cpp" line="1694"/>
     5873        <source>Bridged Interface &apos;%ls&apos;</source>
     5874        <translation type="unfinished"></translation>
     5875    </message>
     5876    <message>
     5877        <location filename="../VBoxManageInfo.cpp" line="1708"/>
     5878        <source>Internal Network &apos;%s&apos;</source>
     5879        <translation type="unfinished"></translation>
     5880    </message>
     5881    <message>
     5882        <location filename="../VBoxManageInfo.cpp" line="1722"/>
     5883        <source>Host-only Interface &apos;%ls&apos;</source>
     5884        <translation type="unfinished"></translation>
     5885    </message>
     5886    <message>
     5887        <location filename="../VBoxManageInfo.cpp" line="1737"/>
     5888        <source>Generic &apos;%ls&apos;</source>
     5889        <translation type="unfinished"></translation>
     5890    </message>
     5891    <message>
     5892        <location filename="../VBoxManageInfo.cpp" line="1766"/>
     5893        <source>NAT Network &apos;%s&apos;</source>
     5894        <translation type="unfinished"></translation>
     5895    </message>
     5896    <message>
     5897        <location filename="../VBoxManageInfo.cpp" line="1781"/>
     5898        <source>Host Only Network &apos;%s&apos;</source>
     5899        <translation type="unfinished"></translation>
     5900    </message>
     5901    <message>
     5902        <location filename="../VBoxManageInfo.cpp" line="1797"/>
     5903        <source>Cloud Network &apos;%s&apos;</source>
     5904        <translation type="unfinished"></translation>
     5905    </message>
     5906    <message>
     5907        <location filename="../VBoxManageInfo.cpp" line="1820"/>
     5908        <source>deny</source>
     5909        <translation type="unfinished"></translation>
     5910    </message>
     5911    <message>
     5912        <location filename="../VBoxManageInfo.cpp" line="1821"/>
     5913        <source>allow-vms</source>
     5914        <translation type="unfinished"></translation>
     5915    </message>
     5916    <message>
     5917        <location filename="../VBoxManageInfo.cpp" line="1822"/>
     5918        <source>allow-all</source>
     5919        <translation type="unfinished"></translation>
     5920    </message>
     5921    <message>
     5922        <location filename="../VBoxManageInfo.cpp" line="1888"/>
     5923        <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls
     5924</source>
     5925        <translation type="unfinished"></translation>
     5926    </message>
     5927    <message>
     5928        <location filename="../VBoxManageInfo.cpp" line="1890"/>
     5929        <location filename="../VBoxManageInfo.cpp" line="1891"/>
     5930        <location filename="../VBoxManageInfo.cpp" line="2452"/>
     5931        <location filename="../VBoxManageInfo.cpp" line="2453"/>
     5932        <source>on</source>
     5933        <translation type="unfinished"></translation>
     5934    </message>
     5935    <message>
     5936        <location filename="../VBoxManageInfo.cpp" line="1890"/>
     5937        <location filename="../VBoxManageInfo.cpp" line="1891"/>
     5938        <location filename="../VBoxManageInfo.cpp" line="2452"/>
     5939        <location filename="../VBoxManageInfo.cpp" line="2453"/>
     5940        <source>off</source>
     5941        <translation type="unfinished"></translation>
     5942    </message>
     5943    <message>
     5944        <location filename="../VBoxManageInfo.cpp" line="1918"/>
     5945        <source>PS/2 Mouse</source>
     5946        <translation type="unfinished"></translation>
     5947    </message>
     5948    <message>
     5949        <location filename="../VBoxManageInfo.cpp" line="1922"/>
     5950        <source>USB Mouse</source>
     5951        <translation type="unfinished"></translation>
     5952    </message>
     5953    <message>
     5954        <location filename="../VBoxManageInfo.cpp" line="1926"/>
     5955        <source>USB Tablet</source>
     5956        <translation type="unfinished"></translation>
     5957    </message>
     5958    <message>
     5959        <location filename="../VBoxManageInfo.cpp" line="1930"/>
     5960        <source>USB Tablet and PS/2 Mouse</source>
     5961        <translation type="unfinished"></translation>
     5962    </message>
     5963    <message>
     5964        <location filename="../VBoxManageInfo.cpp" line="1934"/>
     5965        <source>USB Multi-Touch</source>
     5966        <translation type="unfinished"></translation>
     5967    </message>
     5968    <message>
     5969        <location filename="../VBoxManageInfo.cpp" line="1940"/>
     5970        <source>Pointing Device:</source>
     5971        <translation type="unfinished"></translation>
     5972    </message>
     5973    <message>
     5974        <location filename="../VBoxManageInfo.cpp" line="1954"/>
     5975        <source>PS/2 Keyboard</source>
     5976        <translation type="unfinished"></translation>
     5977    </message>
     5978    <message>
     5979        <location filename="../VBoxManageInfo.cpp" line="1958"/>
     5980        <source>USB Keyboard</source>
     5981        <translation type="unfinished"></translation>
     5982    </message>
     5983    <message>
     5984        <location filename="../VBoxManageInfo.cpp" line="1962"/>
     5985        <source>USB and PS/2 Keyboard</source>
     5986        <translation type="unfinished"></translation>
     5987    </message>
     5988    <message>
     5989        <location filename="../VBoxManageInfo.cpp" line="1968"/>
     5990        <source>Keyboard Device:</source>
     5991        <translation type="unfinished"></translation>
     5992    </message>
     5993    <message>
     5994        <location filename="../VBoxManageInfo.cpp" line="1982"/>
     5995        <source>UART %u:</source>
     5996        <translation type="unfinished"></translation>
     5997    </message>
     5998    <message>
     5999        <location filename="../VBoxManageInfo.cpp" line="2011"/>
     6000        <location filename="../VBoxManageInfo.cpp" line="2111"/>
     6001        <source>%-28s I/O base: %#06x, IRQ: %d</source>
     6002        <translation type="unfinished"></translation>
     6003    </message>
     6004    <message>
     6005        <location filename="../VBoxManageInfo.cpp" line="2019"/>
     6006        <source>, disconnected</source>
     6007        <translation type="unfinished"></translation>
     6008    </message>
     6009    <message>
     6010        <location filename="../VBoxManageInfo.cpp" line="2026"/>
     6011        <source>, attached to raw file &apos;%ls&apos;
     6012</source>
     6013        <translation type="unfinished"></translation>
     6014    </message>
     6015    <message>
     6016        <location filename="../VBoxManageInfo.cpp" line="2034"/>
     6017        <source>, attached to tcp (%s) &apos;%ls&apos;</source>
     6018        <translation type="unfinished"></translation>
     6019    </message>
     6020    <message>
     6021        <location filename="../VBoxManageInfo.cpp" line="2035"/>
     6022        <location filename="../VBoxManageInfo.cpp" line="2043"/>
     6023        <source>server</source>
     6024        <translation type="unfinished"></translation>
     6025    </message>
     6026    <message>
     6027        <location filename="../VBoxManageInfo.cpp" line="2035"/>
     6028        <location filename="../VBoxManageInfo.cpp" line="2043"/>
     6029        <source>client</source>
     6030        <translation type="unfinished"></translation>
     6031    </message>
     6032    <message>
     6033        <location filename="../VBoxManageInfo.cpp" line="2042"/>
     6034        <source>, attached to pipe (%s) &apos;%ls&apos;</source>
     6035        <translation type="unfinished"></translation>
     6036    </message>
     6037    <message>
     6038        <location filename="../VBoxManageInfo.cpp" line="2050"/>
     6039        <source>, attached to device &apos;%ls&apos;</source>
     6040        <translation type="unfinished"></translation>
     6041    </message>
     6042    <message>
     6043        <location filename="../VBoxManageInfo.cpp" line="2088"/>
     6044        <source>LPT %u:</source>
     6045        <translation type="unfinished"></translation>
     6046    </message>
     6047    <message>
     6048        <location filename="../VBoxManageInfo.cpp" line="2115"/>
     6049        <source>, attached to device &apos;%ls&apos;
     6050</source>
     6051        <translation type="unfinished"></translation>
     6052    </message>
     6053    <message>
     6054        <location filename="../VBoxManageInfo.cpp" line="2240"/>
     6055        <source>Audio:</source>
     6056        <translation type="unfinished"></translation>
     6057    </message>
     6058    <message>
     6059        <location filename="../VBoxManageInfo.cpp" line="2242"/>
     6060        <source> (Driver: %s, Controller: %s, Codec: %s)</source>
     6061        <translation type="unfinished"></translation>
     6062    </message>
     6063    <message>
     6064        <location filename="../VBoxManageInfo.cpp" line="2245"/>
     6065        <source>Audio playback:</source>
     6066        <translation type="unfinished"></translation>
     6067    </message>
     6068    <message>
     6069        <location filename="../VBoxManageInfo.cpp" line="2246"/>
     6070        <source>Audio capture:</source>
     6071        <translation type="unfinished"></translation>
     6072    </message>
     6073    <message>
     6074        <location filename="../VBoxManageInfo.cpp" line="2260"/>
     6075        <location filename="../VBoxManageInfo.cpp" line="2289"/>
     6076        <source>HostToGuest</source>
     6077        <translation type="unfinished"></translation>
     6078    </message>
     6079    <message>
    56866080        <location filename="../VBoxManageInfo.cpp" line="2263"/>
    5687         <source>Unknown</source>
    5688         <translation type="unfinished"></translation>
    5689     </message>
    5690     <message>
    5691         <location filename="../VBoxManageInfo.cpp" line="999"/>
    5692         <source>Default</source>
    5693         <translation type="unfinished"></translation>
    5694     </message>
    5695     <message>
    5696         <location filename="../VBoxManageInfo.cpp" line="1004"/>
    5697         <source>Legacy</source>
    5698         <translation type="unfinished"></translation>
    5699     </message>
    5700     <message>
    5701         <location filename="../VBoxManageInfo.cpp" line="1009"/>
    5702         <source>Minimal</source>
    5703         <translation type="unfinished"></translation>
    5704     </message>
    5705     <message>
    5706         <location filename="../VBoxManageInfo.cpp" line="1073"/>
    5707         <source>&quot;&lt;inaccessible&gt;&quot; {%s}
    5708 </source>
    5709         <translation type="unfinished"></translation>
    5710     </message>
    5711     <message>
    5712         <location filename="../VBoxManageInfo.cpp" line="1079"/>
    5713         <source>Name:            &lt;inaccessible!&gt;
    5714 </source>
    5715         <translation type="unfinished"></translation>
    5716     </message>
    5717     <message>
    5718         <location filename="../VBoxManageInfo.cpp" line="1088"/>
    5719         <source>Config file:     %ls
    5720 </source>
    5721         <translation type="unfinished"></translation>
    5722     </message>
    5723     <message>
    5724         <location filename="../VBoxManageInfo.cpp" line="1091"/>
    5725         <source>Access error details:
    5726 </source>
    5727         <translation type="unfinished"></translation>
    5728     </message>
    5729     <message>
    5730         <location filename="../VBoxManageInfo.cpp" line="1111"/>
    5731         <source>Name:</source>
    5732         <translation type="unfinished"></translation>
    5733     </message>
    5734     <message>
    5735         <location filename="../VBoxManageInfo.cpp" line="1112"/>
    5736         <source>Groups:</source>
    5737         <translation type="unfinished"></translation>
    5738     </message>
    5739     <message>
    5740         <location filename="../VBoxManageInfo.cpp" line="1118"/>
    5741         <location filename="../VBoxManageInfo.cpp" line="1120"/>
    5742         <source>Guest OS:</source>
    5743         <translation type="unfinished"></translation>
    5744     </message>
    5745     <message>
    5746         <location filename="../VBoxManageInfo.cpp" line="1122"/>
    5747         <source>Config file:</source>
    5748         <translation type="unfinished"></translation>
    5749     </message>
    5750     <message>
    5751         <location filename="../VBoxManageInfo.cpp" line="1123"/>
    5752         <source>Snapshot folder:</source>
    5753         <translation type="unfinished"></translation>
    5754     </message>
    5755     <message>
    5756         <location filename="../VBoxManageInfo.cpp" line="1124"/>
    5757         <source>Log folder:</source>
    5758         <translation type="unfinished"></translation>
    5759     </message>
    5760     <message>
    5761         <location filename="../VBoxManageInfo.cpp" line="1125"/>
    5762         <source>Hardware UUID:</source>
    5763         <translation type="unfinished"></translation>
    5764     </message>
    5765     <message>
    5766         <location filename="../VBoxManageInfo.cpp" line="1126"/>
    5767         <source>Memory size:</source>
    5768         <translation type="unfinished"></translation>
    5769     </message>
    5770     <message>
    5771         <location filename="../VBoxManageInfo.cpp" line="1127"/>
    5772         <source>Page Fusion:</source>
    5773         <translation type="unfinished"></translation>
    5774     </message>
    5775     <message>
    5776         <location filename="../VBoxManageInfo.cpp" line="1130"/>
    5777         <source>VRAM size:</source>
    5778         <translation type="unfinished"></translation>
    5779     </message>
    5780     <message>
    5781         <location filename="../VBoxManageInfo.cpp" line="1131"/>
    5782         <source>CPU exec cap:</source>
    5783         <translation type="unfinished"></translation>
    5784     </message>
    5785     <message>
    5786         <location filename="../VBoxManageInfo.cpp" line="1132"/>
    5787         <source>HPET:</source>
    5788         <translation type="unfinished"></translation>
    5789     </message>
    5790     <message>
    5791         <location filename="../VBoxManageInfo.cpp" line="1133"/>
    5792         <source>CPUProfile:</source>
    5793         <translation type="unfinished"></translation>
    5794     </message>
    5795     <message>
    5796         <location filename="../VBoxManageInfo.cpp" line="1144"/>
    5797         <source>invalid</source>
    5798         <translation type="unfinished"></translation>
    5799     </message>
    5800     <message>
    5801         <location filename="../VBoxManageInfo.cpp" line="1156"/>
    5802         <source>Chipset:</source>
    5803         <translation type="unfinished"></translation>
    5804     </message>
    5805     <message>
    5806         <location filename="../VBoxManageInfo.cpp" line="1176"/>
    5807         <source>Firmware:</source>
    5808         <translation type="unfinished"></translation>
    5809     </message>
    5810     <message>
    5811         <location filename="../VBoxManageInfo.cpp" line="1178"/>
    5812         <source>Number of CPUs:</source>
    5813         <translation type="unfinished"></translation>
    5814     </message>
    5815     <message>
    5816         <location filename="../VBoxManageInfo.cpp" line="1180"/>
    5817         <source>Long Mode:</source>
    5818         <translation type="unfinished"></translation>
    5819     </message>
    5820     <message>
    5821         <location filename="../VBoxManageInfo.cpp" line="1181"/>
    5822         <source>Triple Fault Reset:</source>
    5823         <translation type="unfinished"></translation>
    5824     </message>
    5825     <message>
    5826         <location filename="../VBoxManageInfo.cpp" line="1184"/>
    5827         <source>Nested VT-x/AMD-V:</source>
    5828         <translation type="unfinished"></translation>
    5829     </message>
    5830     <message>
    5831         <location filename="../VBoxManageInfo.cpp" line="1185"/>
    5832         <source>CPUID Portability Level:</source>
    5833         <translation type="unfinished"></translation>
    5834     </message>
    5835     <message>
    5836         <location filename="../VBoxManageInfo.cpp" line="1188"/>
    5837         <source>CPUID overrides:</source>
    5838         <translation type="unfinished"></translation>
    5839     </message>
    5840     <message>
    5841         <location filename="../VBoxManageInfo.cpp" line="1201"/>
    5842         <source>Leaf no.      EAX      EBX      ECX      EDX
    5843 </source>
    5844         <translation type="unfinished"></translation>
    5845     </message>
    5846     <message>
    5847         <location filename="../VBoxManageInfo.cpp" line="1213"/>
    5848         <source>None
    5849 </source>
    5850         <translation type="unfinished"></translation>
    5851     </message>
    5852     <message>
    5853         <location filename="../VBoxManageInfo.cpp" line="1236"/>
    5854         <source>menu only</source>
    5855         <translation type="unfinished"></translation>
    5856     </message>
    5857     <message>
    5858         <location filename="../VBoxManageInfo.cpp" line="1242"/>
    5859         <source>message and menu</source>
    5860         <translation type="unfinished"></translation>
    5861     </message>
    5862     <message>
    5863         <location filename="../VBoxManageInfo.cpp" line="1244"/>
    5864         <source>Boot menu mode:</source>
    5865         <translation type="unfinished"></translation>
    5866     </message>
    5867     <message>
    5868         <location filename="../VBoxManageInfo.cpp" line="1256"/>
    5869         <source>Floppy</source>
    5870         <translation type="unfinished"></translation>
    5871     </message>
    5872     <message>
    5873         <location filename="../VBoxManageInfo.cpp" line="1260"/>
    5874         <source>HardDisk</source>
    5875         <translation type="unfinished"></translation>
    5876     </message>
    5877     <message>
    5878         <location filename="../VBoxManageInfo.cpp" line="1266"/>
    5879         <source>Shared Folder</source>
    5880         <translation type="unfinished"></translation>
    5881     </message>
    5882     <message>
    5883         <location filename="../VBoxManageInfo.cpp" line="1268"/>
    5884         <source>Not Assigned</source>
    5885         <translation type="unfinished"></translation>
    5886     </message>
    5887     <message>
    5888         <location filename="../VBoxManageInfo.cpp" line="1269"/>
    5889         <source>Boot Device %u:</source>
    5890         <translation type="unfinished"></translation>
    5891     </message>
    5892     <message>
    5893         <location filename="../VBoxManageInfo.cpp" line="1300"/>
    5894         <source>BIOS APIC mode:</source>
    5895         <translation type="unfinished"></translation>
    5896     </message>
    5897     <message>
    5898         <location filename="../VBoxManageInfo.cpp" line="1302"/>
    5899         <source>Time offset:</source>
    5900         <translation type="unfinished"></translation>
    5901     </message>
    5902     <message>
    5903         <location filename="../VBoxManageInfo.cpp" line="1302"/>
    5904         <source>ms</source>
    5905         <translation type="unfinished"></translation>
    5906     </message>
    5907     <message>
    5908         <location filename="../VBoxManageInfo.cpp" line="1306"/>
    5909         <source>BIOS NVRAM File:</source>
    5910         <translation type="unfinished"></translation>
    5911     </message>
    5912     <message>
    5913         <location filename="../VBoxManageInfo.cpp" line="1307"/>
    5914         <source>RTC:</source>
    5915         <translation type="unfinished"></translation>
    5916     </message>
    5917     <message>
    5918         <location filename="../VBoxManageInfo.cpp" line="1307"/>
    5919         <source>local time</source>
    5920         <translation type="unfinished"></translation>
    5921     </message>
    5922     <message>
    5923         <location filename="../VBoxManageInfo.cpp" line="1308"/>
    5924         <source>Hardware Virtualization:</source>
    5925         <translation type="unfinished"></translation>
    5926     </message>
    5927     <message>
    5928         <location filename="../VBoxManageInfo.cpp" line="1309"/>
    5929         <source>Nested Paging:</source>
    5930         <translation type="unfinished"></translation>
    5931     </message>
    5932     <message>
    5933         <location filename="../VBoxManageInfo.cpp" line="1310"/>
    5934         <source>Large Pages:</source>
    5935         <translation type="unfinished"></translation>
    5936     </message>
    5937     <message>
    5938         <location filename="../VBoxManageInfo.cpp" line="1312"/>
    5939         <source>VT-x Unrestricted Exec.:</source>
    5940         <translation type="unfinished"></translation>
    5941     </message>
    5942     <message>
    5943         <location filename="../VBoxManageInfo.cpp" line="1313"/>
    5944         <source>AMD-V Virt. Vmsave/Vmload:</source>
    5945         <translation type="unfinished"></translation>
    5946     </message>
    5947     <message>
    5948         <location filename="../VBoxManageInfo.cpp" line="1325"/>
    5949         <source>Paravirt. Provider:</source>
    5950         <translation type="unfinished"></translation>
    5951     </message>
    5952     <message>
    5953         <location filename="../VBoxManageInfo.cpp" line="1330"/>
    5954         <source>Effective Paravirt. Prov.:</source>
    5955         <translation type="unfinished"></translation>
    5956     </message>
    5957     <message>
    5958         <location filename="../VBoxManageInfo.cpp" line="1335"/>
    5959         <source>Paravirt. Debug:</source>
    5960         <translation type="unfinished"></translation>
    5961     </message>
    5962     <message>
    5963         <location filename="../VBoxManageInfo.cpp" line="1358"/>
    5964         <source>%-28s %s (since %s)
    5965 </source>
    5966         <translation type="unfinished"></translation>
    5967     </message>
    5968     <message>
    5969         <location filename="../VBoxManageInfo.cpp" line="1358"/>
    5970         <source>State:</source>
    5971         <translation type="unfinished"></translation>
    5972     </message>
    5973     <message>
    5974         <location filename="../VBoxManageInfo.cpp" line="1402"/>
    5975         <source>Graphics Controller:</source>
    5976         <translation type="unfinished"></translation>
    5977     </message>
    5978     <message>
    5979         <location filename="../VBoxManageInfo.cpp" line="1405"/>
    5980         <source>Monitor count:</source>
    5981         <translation type="unfinished"></translation>
    5982     </message>
    5983     <message>
    5984         <location filename="../VBoxManageInfo.cpp" line="1406"/>
    5985         <source>3D Acceleration:</source>
    5986         <translation type="unfinished"></translation>
    5987     </message>
    5988     <message>
    5989         <location filename="../VBoxManageInfo.cpp" line="1408"/>
    5990         <source>2D Video Acceleration:</source>
    5991         <translation type="unfinished"></translation>
    5992     </message>
    5993     <message>
    5994         <location filename="../VBoxManageInfo.cpp" line="1410"/>
    5995         <source>Teleporter Enabled:</source>
    5996         <translation type="unfinished"></translation>
    5997     </message>
    5998     <message>
    5999         <location filename="../VBoxManageInfo.cpp" line="1411"/>
    6000         <source>Teleporter Port:</source>
    6001         <translation type="unfinished"></translation>
    6002     </message>
    6003     <message>
    6004         <location filename="../VBoxManageInfo.cpp" line="1412"/>
    6005         <source>Teleporter Address:</source>
    6006         <translation type="unfinished"></translation>
    6007     </message>
    6008     <message>
    6009         <location filename="../VBoxManageInfo.cpp" line="1413"/>
    6010         <source>Teleporter Password:</source>
    6011         <translation type="unfinished"></translation>
    6012     </message>
    6013     <message>
    6014         <location filename="../VBoxManageInfo.cpp" line="1414"/>
    6015         <source>Tracing Enabled:</source>
    6016         <translation type="unfinished"></translation>
    6017     </message>
    6018     <message>
    6019         <location filename="../VBoxManageInfo.cpp" line="1415"/>
    6020         <source>Allow Tracing to Access VM:</source>
    6021         <translation type="unfinished"></translation>
    6022     </message>
    6023     <message>
    6024         <location filename="../VBoxManageInfo.cpp" line="1416"/>
    6025         <source>Tracing Configuration:</source>
    6026         <translation type="unfinished"></translation>
    6027     </message>
    6028     <message>
    6029         <location filename="../VBoxManageInfo.cpp" line="1417"/>
    6030         <source>Autostart Enabled:</source>
    6031         <translation type="unfinished"></translation>
    6032     </message>
    6033     <message>
    6034         <location filename="../VBoxManageInfo.cpp" line="1418"/>
    6035         <source>Autostart Delay:</source>
    6036         <translation type="unfinished"></translation>
    6037     </message>
    6038     <message>
    6039         <location filename="../VBoxManageInfo.cpp" line="1419"/>
    6040         <source>Default Frontend:</source>
    6041         <translation type="unfinished"></translation>
    6042     </message>
    6043     <message>
    6044         <location filename="../VBoxManageInfo.cpp" line="1430"/>
    6045         <source>flat</source>
    6046         <translation type="unfinished"></translation>
    6047     </message>
    6048     <message>
    6049         <location filename="../VBoxManageInfo.cpp" line="1436"/>
    6050         <source>low</source>
    6051         <translation type="unfinished"></translation>
    6052     </message>
    6053     <message>
    6054         <location filename="../VBoxManageInfo.cpp" line="1442"/>
    6055         <source>normal</source>
    6056         <translation type="unfinished"></translation>
    6057     </message>
    6058     <message>
    6059         <location filename="../VBoxManageInfo.cpp" line="1448"/>
    6060         <source>high</source>
    6061         <translation type="unfinished"></translation>
    6062     </message>
    6063     <message>
    6064         <location filename="../VBoxManageInfo.cpp" line="1454"/>
    6065         <source>default</source>
    6066         <translation type="unfinished"></translation>
    6067     </message>
    6068     <message>
    6069         <location filename="../VBoxManageInfo.cpp" line="1457"/>
    6070         <source>VM process priority:</source>
    6071         <translation type="unfinished"></translation>
    6072     </message>
    6073     <message>
    6074         <location filename="../VBoxManageInfo.cpp" line="1469"/>
    6075         <location filename="../VBoxManageInfo.cpp" line="1509"/>
    6076         <source>Storage Controllers:</source>
    6077         <translation type="unfinished"></translation>
    6078     </message>
    6079     <message>
    6080         <location filename="../VBoxManageInfo.cpp" line="1499"/>
    6081         <source>#%u: &apos;%ls&apos;, Type: %s, Instance: %u, Ports: %u (max %u), %s
    6082 </source>
    6083         <translation type="unfinished"></translation>
    6084     </message>
    6085     <message>
    6086         <location filename="../VBoxManageInfo.cpp" line="1501"/>
    6087         <source>Bootable</source>
    6088         <translation type="unfinished"></translation>
    6089     </message>
    6090     <message>
    6091         <location filename="../VBoxManageInfo.cpp" line="1501"/>
    6092         <source>Not bootable</source>
    6093         <translation type="unfinished"></translation>
    6094     </message>
    6095     <message>
    6096         <location filename="../VBoxManageInfo.cpp" line="1528"/>
    6097         <source>NIC %u:</source>
    6098         <translation type="unfinished"></translation>
    6099     </message>
    6100     <message>
    6101         <location filename="../VBoxManageInfo.cpp" line="1537"/>
    6102         <location filename="../VBoxManageInfo.cpp" line="1957"/>
    6103         <location filename="../VBoxManageInfo.cpp" line="2063"/>
    6104         <location filename="../VBoxManageInfo.cpp" line="2424"/>
    6105         <location filename="../VBoxManageInfo.cpp" line="2456"/>
    6106         <source>%-28s disabled
    6107 </source>
    6108         <translation type="unfinished"></translation>
    6109     </message>
    6110     <message>
    6111         <location filename="../VBoxManageInfo.cpp" line="1554"/>
    6112         <location filename="../VBoxManageInfo.cpp" line="1857"/>
    6113         <location filename="../VBoxManageInfo.cpp" line="1862"/>
    6114         <source>none</source>
    6115         <translation type="unfinished"></translation>
    6116     </message>
    6117     <message>
    6118         <location filename="../VBoxManageInfo.cpp" line="1622"/>
    6119         <source>%sNIC %d Rule(%d):   name = %s, protocol = %s, host ip = %s, host port = %s, guest ip = %s, guest port = %s
    6120 </source>
    6121         <translation type="unfinished"></translation>
    6122     </message>
    6123     <message>
    6124         <location filename="../VBoxManageInfo.cpp" line="1645"/>
    6125         <source>NIC %d Settings:  MTU: %d, Socket (send: %d, receive: %d), TCP Window (send:%d, receive: %d)
    6126 </source>
    6127         <translation type="unfinished"></translation>
    6128     </message>
    6129     <message>
    6130         <location filename="../VBoxManageInfo.cpp" line="1661"/>
    6131         <source>Bridged Interface &apos;%ls&apos;</source>
    6132         <translation type="unfinished"></translation>
    6133     </message>
    6134     <message>
    6135         <location filename="../VBoxManageInfo.cpp" line="1675"/>
    6136         <source>Internal Network &apos;%s&apos;</source>
    6137         <translation type="unfinished"></translation>
    6138     </message>
    6139     <message>
    6140         <location filename="../VBoxManageInfo.cpp" line="1689"/>
    6141         <source>Host-only Interface &apos;%ls&apos;</source>
    6142         <translation type="unfinished"></translation>
    6143     </message>
    6144     <message>
    6145         <location filename="../VBoxManageInfo.cpp" line="1704"/>
    6146         <source>Generic &apos;%ls&apos;</source>
    6147         <translation type="unfinished"></translation>
    6148     </message>
    6149     <message>
    6150         <location filename="../VBoxManageInfo.cpp" line="1733"/>
    6151         <source>NAT Network &apos;%s&apos;</source>
    6152         <translation type="unfinished"></translation>
    6153     </message>
    6154     <message>
    6155         <location filename="../VBoxManageInfo.cpp" line="1748"/>
    6156         <source>Host Only Network &apos;%s&apos;</source>
    6157         <translation type="unfinished"></translation>
    6158     </message>
    6159     <message>
    6160         <location filename="../VBoxManageInfo.cpp" line="1764"/>
    6161         <source>Cloud Network &apos;%s&apos;</source>
    6162         <translation type="unfinished"></translation>
    6163     </message>
    6164     <message>
    6165         <location filename="../VBoxManageInfo.cpp" line="1787"/>
    6166         <source>deny</source>
    6167         <translation type="unfinished"></translation>
    6168     </message>
    6169     <message>
    6170         <location filename="../VBoxManageInfo.cpp" line="1788"/>
    6171         <source>allow-vms</source>
    6172         <translation type="unfinished"></translation>
    6173     </message>
    6174     <message>
    6175         <location filename="../VBoxManageInfo.cpp" line="1789"/>
    6176         <source>allow-all</source>
    6177         <translation type="unfinished"></translation>
    6178     </message>
    6179     <message>
    6180         <location filename="../VBoxManageInfo.cpp" line="1853"/>
    6181         <source>%-28s MAC: %ls, Attachment: %s, Cable connected: %s, Trace: %s (file: %ls), Type: %s, Reported speed: %d Mbps, Boot priority: %d, Promisc Policy: %s, Bandwidth group: %ls
    6182 </source>
    6183         <translation type="unfinished"></translation>
    6184     </message>
    6185     <message>
    6186         <location filename="../VBoxManageInfo.cpp" line="1855"/>
    6187         <location filename="../VBoxManageInfo.cpp" line="1856"/>
    6188         <location filename="../VBoxManageInfo.cpp" line="2417"/>
    6189         <location filename="../VBoxManageInfo.cpp" line="2418"/>
    6190         <source>on</source>
    6191         <translation type="unfinished"></translation>
    6192     </message>
    6193     <message>
    6194         <location filename="../VBoxManageInfo.cpp" line="1855"/>
    6195         <location filename="../VBoxManageInfo.cpp" line="1856"/>
    6196         <location filename="../VBoxManageInfo.cpp" line="2417"/>
    6197         <location filename="../VBoxManageInfo.cpp" line="2418"/>
    6198         <source>off</source>
    6199         <translation type="unfinished"></translation>
    6200     </message>
    6201     <message>
    6202         <location filename="../VBoxManageInfo.cpp" line="1883"/>
    6203         <source>PS/2 Mouse</source>
    6204         <translation type="unfinished"></translation>
    6205     </message>
    6206     <message>
    6207         <location filename="../VBoxManageInfo.cpp" line="1887"/>
    6208         <source>USB Mouse</source>
    6209         <translation type="unfinished"></translation>
    6210     </message>
    6211     <message>
    6212         <location filename="../VBoxManageInfo.cpp" line="1891"/>
    6213         <source>USB Tablet</source>
    6214         <translation type="unfinished"></translation>
    6215     </message>
    6216     <message>
    6217         <location filename="../VBoxManageInfo.cpp" line="1895"/>
    6218         <source>USB Tablet and PS/2 Mouse</source>
    6219         <translation type="unfinished"></translation>
    6220     </message>
    6221     <message>
    6222         <location filename="../VBoxManageInfo.cpp" line="1899"/>
    6223         <source>USB Multi-Touch</source>
    6224         <translation type="unfinished"></translation>
    6225     </message>
    6226     <message>
    6227         <location filename="../VBoxManageInfo.cpp" line="1905"/>
    6228         <source>Pointing Device:</source>
    6229         <translation type="unfinished"></translation>
    6230     </message>
    6231     <message>
    6232         <location filename="../VBoxManageInfo.cpp" line="1919"/>
    6233         <source>PS/2 Keyboard</source>
    6234         <translation type="unfinished"></translation>
    6235     </message>
    6236     <message>
    6237         <location filename="../VBoxManageInfo.cpp" line="1923"/>
    6238         <source>USB Keyboard</source>
    6239         <translation type="unfinished"></translation>
    6240     </message>
    6241     <message>
    6242         <location filename="../VBoxManageInfo.cpp" line="1927"/>
    6243         <source>USB and PS/2 Keyboard</source>
    6244         <translation type="unfinished"></translation>
    6245     </message>
    6246     <message>
    6247         <location filename="../VBoxManageInfo.cpp" line="1933"/>
    6248         <source>Keyboard Device:</source>
    6249         <translation type="unfinished"></translation>
    6250     </message>
    6251     <message>
    6252         <location filename="../VBoxManageInfo.cpp" line="1947"/>
    6253         <source>UART %u:</source>
    6254         <translation type="unfinished"></translation>
    6255     </message>
    6256     <message>
    6257         <location filename="../VBoxManageInfo.cpp" line="1976"/>
    6258         <location filename="../VBoxManageInfo.cpp" line="2076"/>
    6259         <source>%-28s I/O base: %#06x, IRQ: %d</source>
    6260         <translation type="unfinished"></translation>
    6261     </message>
    6262     <message>
    6263         <location filename="../VBoxManageInfo.cpp" line="1984"/>
    6264         <source>, disconnected</source>
    6265         <translation type="unfinished"></translation>
    6266     </message>
    6267     <message>
    6268         <location filename="../VBoxManageInfo.cpp" line="1991"/>
    6269         <source>, attached to raw file &apos;%ls&apos;
    6270 </source>
    6271         <translation type="unfinished"></translation>
    6272     </message>
    6273     <message>
    6274         <location filename="../VBoxManageInfo.cpp" line="1999"/>
    6275         <source>, attached to tcp (%s) &apos;%ls&apos;</source>
    6276         <translation type="unfinished"></translation>
    6277     </message>
    6278     <message>
    6279         <location filename="../VBoxManageInfo.cpp" line="2000"/>
    6280         <location filename="../VBoxManageInfo.cpp" line="2008"/>
    6281         <source>server</source>
    6282         <translation type="unfinished"></translation>
    6283     </message>
    6284     <message>
    6285         <location filename="../VBoxManageInfo.cpp" line="2000"/>
    6286         <location filename="../VBoxManageInfo.cpp" line="2008"/>
    6287         <source>client</source>
    6288         <translation type="unfinished"></translation>
    6289     </message>
    6290     <message>
    6291         <location filename="../VBoxManageInfo.cpp" line="2007"/>
    6292         <source>, attached to pipe (%s) &apos;%ls&apos;</source>
    6293         <translation type="unfinished"></translation>
    6294     </message>
    6295     <message>
    6296         <location filename="../VBoxManageInfo.cpp" line="2015"/>
    6297         <source>, attached to device &apos;%ls&apos;</source>
    6298         <translation type="unfinished"></translation>
    6299     </message>
    6300     <message>
    6301         <location filename="../VBoxManageInfo.cpp" line="2053"/>
    6302         <source>LPT %u:</source>
    6303         <translation type="unfinished"></translation>
    6304     </message>
    6305     <message>
    6306         <location filename="../VBoxManageInfo.cpp" line="2080"/>
    6307         <source>, attached to device &apos;%ls&apos;
    6308 </source>
    6309         <translation type="unfinished"></translation>
    6310     </message>
    6311     <message>
    6312         <location filename="../VBoxManageInfo.cpp" line="2205"/>
    6313         <source>Audio:</source>
    6314         <translation type="unfinished"></translation>
    6315     </message>
    6316     <message>
    6317         <location filename="../VBoxManageInfo.cpp" line="2207"/>
    6318         <source> (Driver: %s, Controller: %s, Codec: %s)</source>
    6319         <translation type="unfinished"></translation>
    6320     </message>
    6321     <message>
    6322         <location filename="../VBoxManageInfo.cpp" line="2210"/>
    6323         <source>Audio playback:</source>
    6324         <translation type="unfinished"></translation>
    6325     </message>
    6326     <message>
    6327         <location filename="../VBoxManageInfo.cpp" line="2211"/>
    6328         <source>Audio capture:</source>
    6329         <translation type="unfinished"></translation>
    6330     </message>
    6331     <message>
    6332         <location filename="../VBoxManageInfo.cpp" line="2225"/>
    6333         <location filename="../VBoxManageInfo.cpp" line="2254"/>
    6334         <source>HostToGuest</source>
    6335         <translation type="unfinished"></translation>
    6336     </message>
    6337     <message>
    6338         <location filename="../VBoxManageInfo.cpp" line="2228"/>
    6339         <location filename="../VBoxManageInfo.cpp" line="2257"/>
     6081        <location filename="../VBoxManageInfo.cpp" line="2292"/>
    63406082        <source>GuestToHost</source>
    63416083        <translation type="unfinished"></translation>
    63426084    </message>
    63436085    <message>
    6344         <location filename="../VBoxManageInfo.cpp" line="2231"/>
    6345         <location filename="../VBoxManageInfo.cpp" line="2260"/>
     6086        <location filename="../VBoxManageInfo.cpp" line="2266"/>
     6087        <location filename="../VBoxManageInfo.cpp" line="2295"/>
    63466088        <source>Bidirectional</source>
    63476089        <translation type="unfinished"></translation>
    63486090    </message>
    63496091    <message>
    6350         <location filename="../VBoxManageInfo.cpp" line="2237"/>
     6092        <location filename="../VBoxManageInfo.cpp" line="2272"/>
    63516093        <source>Clipboard Mode:</source>
    63526094        <translation type="unfinished"></translation>
    63536095    </message>
    63546096    <message>
    6355         <location filename="../VBoxManageInfo.cpp" line="2239"/>
     6097        <location filename="../VBoxManageInfo.cpp" line="2274"/>
    63566098        <source>Clipboard file transfers:</source>
    63576099        <translation type="unfinished"></translation>
    63586100    </message>
    63596101    <message>
    6360         <location filename="../VBoxManageInfo.cpp" line="2266"/>
     6102        <location filename="../VBoxManageInfo.cpp" line="2301"/>
    63616103        <source>Drag and drop Mode:</source>
    63626104        <translation type="unfinished"></translation>
    63636105    </message>
    63646106    <message>
    6365         <location filename="../VBoxManageInfo.cpp" line="2277"/>
     6107        <location filename="../VBoxManageInfo.cpp" line="2312"/>
    63666108        <source>Session name:</source>
    63676109        <translation type="unfinished"></translation>
    63686110    </message>
    63696111    <message>
    6370         <location filename="../VBoxManageInfo.cpp" line="2310"/>
     6112        <location filename="../VBoxManageInfo.cpp" line="2345"/>
    63716113        <source>unknown status</source>
    63726114        <translation type="unfinished"></translation>
    63736115    </message>
    63746116    <message>
    6375         <location filename="../VBoxManageInfo.cpp" line="2313"/>
     6117        <location filename="../VBoxManageInfo.cpp" line="2348"/>
    63766118        <source>blank</source>
    63776119        <translation type="unfinished"></translation>
    63786120    </message>
    63796121    <message>
    6380         <location filename="../VBoxManageInfo.cpp" line="2318"/>
     6122        <location filename="../VBoxManageInfo.cpp" line="2353"/>
    63816123        <source>Video mode:</source>
    63826124        <translation type="unfinished"></translation>
    63836125    </message>
    63846126    <message>
    6385         <location filename="../VBoxManageInfo.cpp" line="2359"/>
     6127        <location filename="../VBoxManageInfo.cpp" line="2394"/>
    63866128        <source>null</source>
    63876129        <translation type="unfinished"></translation>
    63886130    </message>
    63896131    <message>
    6390         <location filename="../VBoxManageInfo.cpp" line="2365"/>
     6132        <location filename="../VBoxManageInfo.cpp" line="2400"/>
    63916133        <source>external</source>
    63926134        <translation type="unfinished"></translation>
    63936135    </message>
    63946136    <message>
    6395         <location filename="../VBoxManageInfo.cpp" line="2371"/>
     6137        <location filename="../VBoxManageInfo.cpp" line="2406"/>
    63966138        <source>guest</source>
    63976139        <translation type="unfinished"></translation>
    63986140    </message>
    63996141    <message>
    6400         <location filename="../VBoxManageInfo.cpp" line="2416"/>
     6142        <location filename="../VBoxManageInfo.cpp" line="2451"/>
    64016143        <source>%-28s enabled (Address %ls, Ports %ls, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s)
    64026144</source>
     
    64046146    </message>
    64056147    <message>
    6406         <location filename="../VBoxManageInfo.cpp" line="2420"/>
     6148        <location filename="../VBoxManageInfo.cpp" line="2455"/>
    64076149        <source>VRDE port:</source>
    64086150        <translation type="unfinished"></translation>
    64096151    </message>
    64106152    <message>
    6411         <location filename="../VBoxManageInfo.cpp" line="2422"/>
     6153        <location filename="../VBoxManageInfo.cpp" line="2457"/>
    64126154        <source>%-28s enabled (Quality %ls)
    64136155</source>
     
    64156157    </message>
    64166158    <message>
    6417         <location filename="../VBoxManageInfo.cpp" line="2422"/>
    6418         <location filename="../VBoxManageInfo.cpp" line="2424"/>
     6159        <location filename="../VBoxManageInfo.cpp" line="2457"/>
     6160        <location filename="../VBoxManageInfo.cpp" line="2459"/>
    64196161        <source>Video redirection:</source>
    64206162        <translation type="unfinished"></translation>
    64216163    </message>
    64226164    <message>
    6423         <location filename="../VBoxManageInfo.cpp" line="2444"/>
     6165        <location filename="../VBoxManageInfo.cpp" line="2479"/>
    64246166        <source>%-28s: %-10lS = &lt;not set&gt;
    64256167</source>
     
    64276169    </message>
    64286170    <message>
    6429         <location filename="../VBoxManageInfo.cpp" line="2444"/>
    6430         <location filename="../VBoxManageInfo.cpp" line="2446"/>
     6171        <location filename="../VBoxManageInfo.cpp" line="2479"/>
     6172        <location filename="../VBoxManageInfo.cpp" line="2481"/>
    64316173        <source>VRDE property</source>
    64326174        <translation type="unfinished"></translation>
    64336175    </message>
    64346176    <message>
    6435         <location filename="../VBoxManageInfo.cpp" line="2511"/>
     6177        <location filename="../VBoxManageInfo.cpp" line="2546"/>
    64366178        <source>USB Device Filters:
    64376179</source>
     
    64396181    </message>
    64406182    <message>
    6441         <location filename="../VBoxManageInfo.cpp" line="2517"/>
     6183        <location filename="../VBoxManageInfo.cpp" line="2552"/>
    64426184        <source>Index:</source>
    64436185        <translation type="unfinished"></translation>
    64446186    </message>
    64456187    <message>
    6446         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     6188        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    64476189        <source>  Active:</source>
    64486190        <translation type="unfinished"></translation>
    64496191    </message>
    64506192    <message>
    6451         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     6193        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    64526194        <source>yes</source>
    64536195        <translation type="unfinished"></translation>
    64546196    </message>
    64556197    <message>
    6456         <location filename="../VBoxManageInfo.cpp" line="2518"/>
     6198        <location filename="../VBoxManageInfo.cpp" line="2553"/>
    64576199        <source>no</source>
    64586200        <translation type="unfinished"></translation>
    64596201    </message>
    64606202    <message>
    6461         <location filename="../VBoxManageInfo.cpp" line="2519"/>
     6203        <location filename="../VBoxManageInfo.cpp" line="2554"/>
    64626204        <source>  Name:</source>
    64636205        <translation type="unfinished"></translation>
    64646206    </message>
    64656207    <message>
    6466         <location filename="../VBoxManageInfo.cpp" line="2520"/>
     6208        <location filename="../VBoxManageInfo.cpp" line="2555"/>
    64676209        <source>  VendorId:</source>
    64686210        <translation type="unfinished"></translation>
    64696211    </message>
    64706212    <message>
    6471         <location filename="../VBoxManageInfo.cpp" line="2521"/>
     6213        <location filename="../VBoxManageInfo.cpp" line="2556"/>
    64726214        <source>  ProductId:</source>
    64736215        <translation type="unfinished"></translation>
    64746216    </message>
    64756217    <message>
    6476         <location filename="../VBoxManageInfo.cpp" line="2522"/>
     6218        <location filename="../VBoxManageInfo.cpp" line="2557"/>
    64776219        <source>  Revision:</source>
    64786220        <translation type="unfinished"></translation>
    64796221    </message>
    64806222    <message>
    6481         <location filename="../VBoxManageInfo.cpp" line="2523"/>
     6223        <location filename="../VBoxManageInfo.cpp" line="2558"/>
    64826224        <source>  Manufacturer:</source>
    64836225        <translation type="unfinished"></translation>
    64846226    </message>
    64856227    <message>
    6486         <location filename="../VBoxManageInfo.cpp" line="2524"/>
     6228        <location filename="../VBoxManageInfo.cpp" line="2559"/>
    64876229        <source>  Product:</source>
    64886230        <translation type="unfinished"></translation>
    64896231    </message>
    64906232    <message>
    6491         <location filename="../VBoxManageInfo.cpp" line="2525"/>
     6233        <location filename="../VBoxManageInfo.cpp" line="2560"/>
    64926234        <source>  Remote:</source>
    64936235        <translation type="unfinished"></translation>
    64946236    </message>
    64956237    <message>
    6496         <location filename="../VBoxManageInfo.cpp" line="2526"/>
     6238        <location filename="../VBoxManageInfo.cpp" line="2561"/>
    64976239        <source>  Serial Number:</source>
    64986240        <translation type="unfinished"></translation>
    64996241    </message>
    65006242    <message>
    6501         <location filename="../VBoxManageInfo.cpp" line="2532"/>
     6243        <location filename="../VBoxManageInfo.cpp" line="2567"/>
    65026244        <source>Masked Interfaces:</source>
    65036245        <translation type="unfinished"></translation>
    65046246    </message>
    65056247    <message>
    6506         <location filename="../VBoxManageInfo.cpp" line="2537"/>
     6248        <location filename="../VBoxManageInfo.cpp" line="2572"/>
    65076249        <source>USB Device Filters:</source>
    65086250        <translation type="unfinished"></translation>
    65096251    </message>
    65106252    <message>
    6511         <location filename="../VBoxManageInfo.cpp" line="2545"/>
     6253        <location filename="../VBoxManageInfo.cpp" line="2580"/>
    65126254        <source>Available remote USB devices:</source>
    65136255        <translation type="unfinished"></translation>
    65146256    </message>
    65156257    <message>
    6516         <location filename="../VBoxManageInfo.cpp" line="2553"/>
     6258        <location filename="../VBoxManageInfo.cpp" line="2588"/>
    65176259        <source>Currently attached USB devices:</source>
    65186260        <translation type="unfinished"></translation>
    65196261    </message>
    65206262    <message>
    6521         <location filename="../VBoxManageInfo.cpp" line="2569"/>
     6263        <location filename="../VBoxManageInfo.cpp" line="2604"/>
    65226264        <source>
    65236265Attached physical PCI devices:
     
    65276269    </message>
    65286270    <message>
    6529         <location filename="../VBoxManageInfo.cpp" line="2588"/>
     6271        <location filename="../VBoxManageInfo.cpp" line="2623"/>
    65306272        <source>   Host device %ls at %s attached as %s
    65316273</source>
     
    65336275    </message>
    65346276    <message>
    6535         <location filename="../VBoxManageInfo.cpp" line="2604"/>
     6277        <location filename="../VBoxManageInfo.cpp" line="2639"/>
    65366278        <source>Bandwidth groups:</source>
    65376279        <translation type="unfinished"></translation>
    65386280    </message>
    65396281    <message>
    6540         <location filename="../VBoxManageInfo.cpp" line="2617"/>
     6282        <location filename="../VBoxManageInfo.cpp" line="2652"/>
    65416283        <source>Shared folders:</source>
    65426284        <translation type="unfinished"></translation>
    65436285    </message>
    65446286    <message>
    6545         <location filename="../VBoxManageInfo.cpp" line="2627"/>
     6287        <location filename="../VBoxManageInfo.cpp" line="2662"/>
    65466288        <source>global mapping</source>
    65476289        <translation type="unfinished"></translation>
    65486290    </message>
    65496291    <message>
    6550         <location filename="../VBoxManageInfo.cpp" line="2639"/>
     6292        <location filename="../VBoxManageInfo.cpp" line="2674"/>
    65516293        <source>machine mapping</source>
    65526294        <translation type="unfinished"></translation>
    65536295    </message>
    65546296    <message>
    6555         <location filename="../VBoxManageInfo.cpp" line="2651"/>
     6297        <location filename="../VBoxManageInfo.cpp" line="2686"/>
    65566298        <source>transient mapping</source>
    65576299        <translation type="unfinished"></translation>
    65586300    </message>
    65596301    <message>
    6560         <location filename="../VBoxManageInfo.cpp" line="2703"/>
     6302        <location filename="../VBoxManageInfo.cpp" line="2738"/>
    65616303        <source>VRDE Connection:</source>
    65626304        <translation type="unfinished"></translation>
    65636305    </message>
    65646306    <message>
    6565         <location filename="../VBoxManageInfo.cpp" line="2703"/>
    6566         <location filename="../VBoxManageInfo.cpp" line="2793"/>
    6567         <location filename="../VBoxManageInfo.cpp" line="2795"/>
     6307        <location filename="../VBoxManageInfo.cpp" line="2738"/>
     6308        <location filename="../VBoxManageInfo.cpp" line="2828"/>
     6309        <location filename="../VBoxManageInfo.cpp" line="2830"/>
    65686310        <source>active</source>
    65696311        <translation type="unfinished"></translation>
    65706312    </message>
    65716313    <message>
    6572         <location filename="../VBoxManageInfo.cpp" line="2704"/>
     6314        <location filename="../VBoxManageInfo.cpp" line="2739"/>
    65736315        <source>Clients so far:</source>
    65746316        <translation type="unfinished"></translation>
    65756317    </message>
    65766318    <message>
    6577         <location filename="../VBoxManageInfo.cpp" line="2711"/>
     6319        <location filename="../VBoxManageInfo.cpp" line="2746"/>
    65786320        <source>Start time:</source>
    65796321        <translation type="unfinished"></translation>
    65806322    </message>
    65816323    <message>
    6582         <location filename="../VBoxManageInfo.cpp" line="2714"/>
     6324        <location filename="../VBoxManageInfo.cpp" line="2749"/>
    65836325        <source>Last started:</source>
    65846326        <translation type="unfinished"></translation>
    65856327    </message>
    65866328    <message>
    6587         <location filename="../VBoxManageInfo.cpp" line="2716"/>
     6329        <location filename="../VBoxManageInfo.cpp" line="2751"/>
    65886330        <source>Last ended:</source>
    65896331        <translation type="unfinished"></translation>
    65906332    </message>
    65916333    <message>
    6592         <location filename="../VBoxManageInfo.cpp" line="2726"/>
     6334        <location filename="../VBoxManageInfo.cpp" line="2761"/>
    65936335        <source>Sent:</source>
    65946336        <translation type="unfinished"></translation>
    65956337    </message>
    65966338    <message>
    6597         <location filename="../VBoxManageInfo.cpp" line="2726"/>
    6598         <location filename="../VBoxManageInfo.cpp" line="2728"/>
    6599         <location filename="../VBoxManageInfo.cpp" line="2730"/>
    6600         <location filename="../VBoxManageInfo.cpp" line="2732"/>
     6339        <location filename="../VBoxManageInfo.cpp" line="2761"/>
     6340        <location filename="../VBoxManageInfo.cpp" line="2763"/>
     6341        <location filename="../VBoxManageInfo.cpp" line="2765"/>
     6342        <location filename="../VBoxManageInfo.cpp" line="2767"/>
    66016343        <source>Bytes</source>
    66026344        <translation type="unfinished"></translation>
    66036345    </message>
    66046346    <message>
    6605         <location filename="../VBoxManageInfo.cpp" line="2727"/>
     6347        <location filename="../VBoxManageInfo.cpp" line="2762"/>
    66066348        <source>Average speed:</source>
    66076349        <translation type="unfinished"></translation>
    66086350    </message>
    66096351    <message>
    6610         <location filename="../VBoxManageInfo.cpp" line="2727"/>
    6611         <location filename="../VBoxManageInfo.cpp" line="2731"/>
     6352        <location filename="../VBoxManageInfo.cpp" line="2762"/>
     6353        <location filename="../VBoxManageInfo.cpp" line="2766"/>
    66126354        <source>B/s</source>
    66136355        <translation type="unfinished"></translation>
    66146356    </message>
    66156357    <message>
    6616         <location filename="../VBoxManageInfo.cpp" line="2728"/>
     6358        <location filename="../VBoxManageInfo.cpp" line="2763"/>
    66176359        <source>Sent total:</source>
    66186360        <translation type="unfinished"></translation>
    66196361    </message>
    66206362    <message>
    6621         <location filename="../VBoxManageInfo.cpp" line="2730"/>
     6363        <location filename="../VBoxManageInfo.cpp" line="2765"/>
    66226364        <source>Received:</source>
    66236365        <translation type="unfinished"></translation>
    66246366    </message>
    66256367    <message>
    6626         <location filename="../VBoxManageInfo.cpp" line="2731"/>
     6368        <location filename="../VBoxManageInfo.cpp" line="2766"/>
    66276369        <source>Speed:</source>
    66286370        <translation type="unfinished"></translation>
    66296371    </message>
    66306372    <message>
    6631         <location filename="../VBoxManageInfo.cpp" line="2732"/>
     6373        <location filename="../VBoxManageInfo.cpp" line="2767"/>
    66326374        <source>Received total:</source>
    66336375        <translation type="unfinished"></translation>
    66346376    </message>
    66356377    <message>
    6636         <location filename="../VBoxManageInfo.cpp" line="2736"/>
     6378        <location filename="../VBoxManageInfo.cpp" line="2771"/>
    66376379        <source>User name:</source>
    66386380        <translation type="unfinished"></translation>
    66396381    </message>
    66406382    <message>
    6641         <location filename="../VBoxManageInfo.cpp" line="2737"/>
     6383        <location filename="../VBoxManageInfo.cpp" line="2772"/>
    66426384        <source>Domain:</source>
    66436385        <translation type="unfinished"></translation>
    66446386    </message>
    66456387    <message>
    6646         <location filename="../VBoxManageInfo.cpp" line="2738"/>
     6388        <location filename="../VBoxManageInfo.cpp" line="2773"/>
    66476389        <source>Client name:</source>
    66486390        <translation type="unfinished"></translation>
    66496391    </message>
    66506392    <message>
    6651         <location filename="../VBoxManageInfo.cpp" line="2739"/>
     6393        <location filename="../VBoxManageInfo.cpp" line="2774"/>
    66526394        <source>Client IP:</source>
    66536395        <translation type="unfinished"></translation>
    66546396    </message>
    66556397    <message>
    6656         <location filename="../VBoxManageInfo.cpp" line="2740"/>
     6398        <location filename="../VBoxManageInfo.cpp" line="2775"/>
    66576399        <source>Client version:</source>
    66586400        <translation type="unfinished"></translation>
    66596401    </message>
    66606402    <message>
    6661         <location filename="../VBoxManageInfo.cpp" line="2741"/>
     6403        <location filename="../VBoxManageInfo.cpp" line="2776"/>
    66626404        <source>Encryption:</source>
    66636405        <translation type="unfinished"></translation>
    66646406    </message>
    66656407    <message>
    6666         <location filename="../VBoxManageInfo.cpp" line="2793"/>
     6408        <location filename="../VBoxManageInfo.cpp" line="2828"/>
    66676409        <source>Capturing:</source>
    66686410        <translation type="unfinished"></translation>
    66696411    </message>
    66706412    <message>
    6671         <location filename="../VBoxManageInfo.cpp" line="2795"/>
     6413        <location filename="../VBoxManageInfo.cpp" line="2830"/>
    66726414        <source>Capture audio:</source>
    66736415        <translation type="unfinished"></translation>
    66746416    </message>
    66756417    <message>
    6676         <location filename="../VBoxManageInfo.cpp" line="2805"/>
     6418        <location filename="../VBoxManageInfo.cpp" line="2840"/>
    66776419        <source>Capture screens:</source>
    66786420        <translation type="unfinished"></translation>
    66796421    </message>
    66806422    <message>
    6681         <location filename="../VBoxManageInfo.cpp" line="2806"/>
     6423        <location filename="../VBoxManageInfo.cpp" line="2841"/>
    66826424        <source>Capture file:</source>
    66836425        <translation type="unfinished"></translation>
    66846426    </message>
    66856427    <message>
    6686         <location filename="../VBoxManageInfo.cpp" line="2808"/>
     6428        <location filename="../VBoxManageInfo.cpp" line="2843"/>
    66876429        <source>Capture dimensions:</source>
    66886430        <translation type="unfinished"></translation>
    66896431    </message>
    66906432    <message>
    6691         <location filename="../VBoxManageInfo.cpp" line="2809"/>
     6433        <location filename="../VBoxManageInfo.cpp" line="2844"/>
    66926434        <source>Capture rate:</source>
    66936435        <translation type="unfinished"></translation>
    66946436    </message>
    66956437    <message>
    6696         <location filename="../VBoxManageInfo.cpp" line="2809"/>
    6697         <location filename="../VBoxManageInfo.cpp" line="2810"/>
     6438        <location filename="../VBoxManageInfo.cpp" line="2844"/>
     6439        <location filename="../VBoxManageInfo.cpp" line="2845"/>
    66986440        <source>kbps</source>
    66996441        <translation type="unfinished"></translation>
    67006442    </message>
    67016443    <message>
    6702         <location filename="../VBoxManageInfo.cpp" line="2810"/>
     6444        <location filename="../VBoxManageInfo.cpp" line="2845"/>
    67036445        <source>Capture FPS:</source>
    67046446        <translation type="unfinished"></translation>
    67056447    </message>
    67066448    <message>
    6707         <location filename="../VBoxManageInfo.cpp" line="2811"/>
     6449        <location filename="../VBoxManageInfo.cpp" line="2846"/>
    67086450        <source>Capture options:</source>
    67096451        <translation type="unfinished"></translation>
    67106452    </message>
    67116453    <message>
    6712         <location filename="../VBoxManageInfo.cpp" line="2828"/>
     6454        <location filename="../VBoxManageInfo.cpp" line="2863"/>
    67136455        <source>Description:
    67146456%ls
     
    67176459    </message>
    67186460    <message>
    6719         <location filename="../VBoxManageInfo.cpp" line="2846"/>
     6461        <location filename="../VBoxManageInfo.cpp" line="2881"/>
    67206462        <source>VMMDev Testing</source>
    67216463        <translation type="unfinished"></translation>
    67226464    </message>
    67236465    <message>
    6724         <location filename="../VBoxManageInfo.cpp" line="2847"/>
    6725         <location filename="../VBoxManageInfo.cpp" line="2849"/>
     6466        <location filename="../VBoxManageInfo.cpp" line="2882"/>
     6467        <location filename="../VBoxManageInfo.cpp" line="2884"/>
    67266468        <source>misconfigured</source>
    67276469        <translation type="unfinished"></translation>
    67286470    </message>
    67296471    <message>
    6730         <location filename="../VBoxManageInfo.cpp" line="2872"/>
     6472        <location filename="../VBoxManageInfo.cpp" line="2907"/>
    67316473        <source>* Snapshots:
    67326474</source>
     
    67346476    </message>
    67356477    <message>
    6736         <location filename="../VBoxManageInfo.cpp" line="2881"/>
     6478        <location filename="../VBoxManageInfo.cpp" line="2916"/>
    67376479        <source>* Guest:
    67386480</source>
     
    67406482    </message>
    67416483    <message>
    6742         <location filename="../VBoxManageInfo.cpp" line="2884"/>
     6484        <location filename="../VBoxManageInfo.cpp" line="2919"/>
    67436485        <source>Configured memory balloon:</source>
    67446486        <translation type="unfinished"></translation>
    67456487    </message>
    67466488    <message>
    6747         <location filename="../VBoxManageInfo.cpp" line="2884"/>
     6489        <location filename="../VBoxManageInfo.cpp" line="2919"/>
    67486490        <source>MB</source>
    67496491        <translation type="unfinished"></translation>
    67506492    </message>
    67516493    <message>
    6752         <location filename="../VBoxManageInfo.cpp" line="2892"/>
     6494        <location filename="../VBoxManageInfo.cpp" line="2927"/>
    67536495        <source>OS type:</source>
    67546496        <translation type="unfinished"></translation>
    67556497    </message>
    67566498    <message>
    6757         <location filename="../VBoxManageInfo.cpp" line="2897"/>
     6499        <location filename="../VBoxManageInfo.cpp" line="2932"/>
    67586500        <source>Additions run level:</source>
    67596501        <translation type="unfinished"></translation>
    67606502    </message>
    67616503    <message>
    6762         <location filename="../VBoxManageInfo.cpp" line="2909"/>
     6504        <location filename="../VBoxManageInfo.cpp" line="2944"/>
    67636505        <source>Additions version:</source>
    67646506        <translation type="unfinished"></translation>
    67656507    </message>
    67666508    <message>
    6767         <location filename="../VBoxManageInfo.cpp" line="2918"/>
    6768         <location filename="../VBoxManageInfo.cpp" line="2950"/>
     6509        <location filename="../VBoxManageInfo.cpp" line="2953"/>
     6510        <location filename="../VBoxManageInfo.cpp" line="2985"/>
    67696511        <source>Guest Facilities:</source>
    67706512        <translation type="unfinished"></translation>
    67716513    </message>
    67726514    <message>
    6773         <location filename="../VBoxManageInfo.cpp" line="2938"/>
     6515        <location filename="../VBoxManageInfo.cpp" line="2973"/>
    67746516        <source>Facility &quot;%ls&quot;: %s (last update: %s)
    67756517</source>
     
    67776519    </message>
    67786520    <message>
    6779         <location filename="../VBoxManageInfo.cpp" line="3009"/>
     6521        <location filename="../VBoxManageInfo.cpp" line="3044"/>
    67806522        <source>Invalid parameter &apos;%s&apos;</source>
    67816523        <translation type="unfinished"></translation>
    67826524    </message>
    67836525    <message>
    6784         <location filename="../VBoxManageInfo.cpp" line="3019"/>
     6526        <location filename="../VBoxManageInfo.cpp" line="3054"/>
    67856527        <source>VM name or UUID required</source>
    67866528        <translation type="unfinished"></translation>
    67876529    </message>
    67886530    <message>
    6789         <location filename="../VBoxManageInfo.cpp" line="3030"/>
     6531        <location filename="../VBoxManageInfo.cpp" line="3065"/>
    67906532        <source>Option --log is exclusive</source>
    67916533        <translation type="unfinished"></translation>
     
    67956537    <name>Internal</name>
    67966538    <message>
    6797         <location filename="../VBoxInternalManage.cpp" line="145"/>
     6539        <location filename="../VBoxInternalManage.cpp" line="169"/>
    67986540        <source>Usage: VBoxManage internalcommands &lt;command&gt; [command arguments]
    67996541
     
    68076549    </message>
    68086550    <message>
    6809         <location filename="../VBoxInternalManage.cpp" line="156"/>
     6551        <location filename="../VBoxInternalManage.cpp" line="180"/>
    68106552        <source>  loadmap &lt;vmname|uuid&gt; &lt;symfile&gt; &lt;address&gt; [module] [subtrahend] [segment]
    68116553      This will instruct DBGF to load the given map file
     
    68166558    </message>
    68176559    <message>
    6818         <location filename="../VBoxInternalManage.cpp" line="163"/>
     6560        <location filename="../VBoxInternalManage.cpp" line="187"/>
    68196561        <source>  loadsyms &lt;vmname|uuid&gt; &lt;symfile&gt; [delta] [module] [module address]
    68206562      This will instruct DBGF to load the given symbol file
     
    68256567    </message>
    68266568    <message>
    6827         <location filename="../VBoxInternalManage.cpp" line="170"/>
     6569        <location filename="../VBoxInternalManage.cpp" line="194"/>
    68286570        <source>  sethduuid &lt;filepath&gt; [&lt;uuid&gt;]
    68296571       Assigns a new UUID to the given image file. This way, multiple copies
     
    68346576    </message>
    68356577    <message>
    6836         <location filename="../VBoxInternalManage.cpp" line="177"/>
     6578        <location filename="../VBoxInternalManage.cpp" line="201"/>
    68376579        <source>  sethdparentuuid &lt;filepath&gt; &lt;uuid&gt;
    68386580       Assigns a new parent UUID to the given image file.
     
    68426584    </message>
    68436585    <message>
    6844         <location filename="../VBoxInternalManage.cpp" line="183"/>
     6586        <location filename="../VBoxInternalManage.cpp" line="207"/>
    68456587        <source>  dumphdinfo &lt;filepath&gt;
    68466588       Prints information about the image at the given location.
     
    68506592    </message>
    68516593    <message>
    6852         <location filename="../VBoxInternalManage.cpp" line="189"/>
     6594        <location filename="../VBoxInternalManage.cpp" line="213"/>
    68536595        <source>  listpartitions -rawdisk &lt;diskname&gt;
    68546596       Lists all partitions on &lt;diskname&gt;.
     
    68586600    </message>
    68596601    <message>
    6860         <location filename="../VBoxInternalManage.cpp" line="195"/>
     6602        <location filename="../VBoxInternalManage.cpp" line="219"/>
    68616603        <source>  createrawvmdk -filename &lt;filename&gt; -rawdisk &lt;diskname&gt;
    68626604                [-partitions &lt;list of partition numbers&gt; [-mbr &lt;filename&gt;] ]
     
    68796621    </message>
    68806622    <message>
    6881         <location filename="../VBoxInternalManage.cpp" line="214"/>
     6623        <location filename="../VBoxInternalManage.cpp" line="238"/>
    68826624        <source>  renamevmdk -from &lt;filename&gt; -to &lt;filename&gt;
    68836625       Renames an existing VMDK image, including the base file and all its extents.
     
    68876629    </message>
    68886630    <message>
    6889         <location filename="../VBoxInternalManage.cpp" line="221"/>
     6631        <location filename="../VBoxInternalManage.cpp" line="245"/>
    68906632        <source>  converttoraw [-format &lt;fileformat&gt;] &lt;filename&gt; &lt;outputfile&gt;|stdout
    68916633       Convert image to raw, writing to file or stdout.
     
    68956637    </message>
    68966638    <message>
    6897         <location filename="../VBoxInternalManage.cpp" line="227"/>
     6639        <location filename="../VBoxInternalManage.cpp" line="251"/>
    68986640        <source>  converttoraw [-format &lt;fileformat&gt;] &lt;filename&gt; &lt;outputfile&gt;
    68996641       Convert image to raw, writing to file.
     
    69036645    </message>
    69046646    <message>
    6905         <location filename="../VBoxInternalManage.cpp" line="235"/>
     6647        <location filename="../VBoxInternalManage.cpp" line="259"/>
    69066648        <source>  converthd [-srcformat VDI|VMDK|VHD|RAW]
    69076649            [-dstformat VDI|VMDK|VHD|RAW]
     
    69136655    </message>
    69146656    <message>
    6915         <location filename="../VBoxInternalManage.cpp" line="243"/>
     6657        <location filename="../VBoxInternalManage.cpp" line="267"/>
    69166658        <source>  repairhd [-dry-run]
    69176659           [-format VDI|VMDK|VHD|...]
     
    69236665    </message>
    69246666    <message>
    6925         <location filename="../VBoxInternalManage.cpp" line="252"/>
     6667        <location filename="../VBoxInternalManage.cpp" line="276"/>
    69266668        <source>  modinstall
    69276669       Installs the necessary driver for the host OS
     
    69316673    </message>
    69326674    <message>
    6933         <location filename="../VBoxInternalManage.cpp" line="258"/>
     6675        <location filename="../VBoxInternalManage.cpp" line="282"/>
    69346676        <source>  moduninstall
    69356677       Deinstalls the driver
     
    69396681    </message>
    69406682    <message>
    6941         <location filename="../VBoxInternalManage.cpp" line="268"/>
     6683        <location filename="../VBoxInternalManage.cpp" line="292"/>
    69426684        <source>  debuglog &lt;vmname|uuid&gt; [--enable|--disable] [--flags todo]
    69436685           [--groups todo] [--destinations todo]
     
    69486690    </message>
    69496691    <message>
    6950         <location filename="../VBoxInternalManage.cpp" line="275"/>
     6692        <location filename="../VBoxInternalManage.cpp" line="299"/>
    69516693        <source>  passwordhash &lt;password&gt;
    69526694       Generates a password hash.
     
    69566698    </message>
    69576699    <message>
    6958         <location filename="../VBoxInternalManage.cpp" line="281"/>
     6700        <location filename="../VBoxInternalManage.cpp" line="305"/>
    69596701        <source>  gueststats &lt;vmname|uuid&gt; [--interval &lt;seconds&gt;]
    69606702       Obtains and prints internal guest statistics.
     
    69656707    </message>
    69666708    <message>
    6967         <location filename="../VBoxInternalManage.cpp" line="343"/>
     6709        <location filename="../VBoxInternalManage.cpp" line="451"/>
    69686710        <source>Cannot find unique key for &apos;%s&apos;!</source>
    69696711        <translation type="unfinished"></translation>
    69706712    </message>
    69716713    <message>
    6972         <location filename="../VBoxInternalManage.cpp" line="406"/>
     6714        <location filename="../VBoxInternalManage.cpp" line="514"/>
    69736715        <source>Failed to delete key &apos;%s&apos; from &apos;%s&apos;,  string conversion error %Rrc!</source>
    69746716        <translation type="unfinished"></translation>
    69756717    </message>
    69766718    <message>
    6977         <location filename="../VBoxInternalManage.cpp" line="430"/>
     6719        <location filename="../VBoxInternalManage.cpp" line="538"/>
    69786720        <source>Failed to set &apos;%s/%s/%s&apos; to &apos;%s&apos;! hrc=%#x</source>
    69796721        <translation type="unfinished"></translation>
    69806722    </message>
    69816723    <message>
    6982         <location filename="../VBoxInternalManage.cpp" line="498"/>
    6983         <location filename="../VBoxInternalManage.cpp" line="575"/>
     6724        <location filename="../VBoxInternalManage.cpp" line="606"/>
     6725        <location filename="../VBoxInternalManage.cpp" line="683"/>
    69846726        <source>Missing the filename argument!
    69856727</source>
     
    69876729    </message>
    69886730    <message>
    6989         <location filename="../VBoxInternalManage.cpp" line="506"/>
     6731        <location filename="../VBoxInternalManage.cpp" line="614"/>
    69906732        <source>Failed to read delta &apos;%s&apos;, rc=%Rrc
    69916733</source>
     
    69936735    </message>
    69946736    <message>
    6995         <location filename="../VBoxInternalManage.cpp" line="518"/>
    6996         <location filename="../VBoxInternalManage.cpp" line="583"/>
     6737        <location filename="../VBoxInternalManage.cpp" line="626"/>
     6738        <location filename="../VBoxInternalManage.cpp" line="691"/>
    69976739        <source>Failed to read module address &apos;%s&apos;, rc=%Rrc
    69986740</source>
     
    70006742    </message>
    70016743    <message>
    7002         <location filename="../VBoxInternalManage.cpp" line="526"/>
     6744        <location filename="../VBoxInternalManage.cpp" line="634"/>
    70036745        <source>Failed to read module size &apos;%s&apos;, rc=%Rrc
    70046746</source>
     
    70066748    </message>
    70076749    <message>
    7008         <location filename="../VBoxInternalManage.cpp" line="580"/>
     6750        <location filename="../VBoxInternalManage.cpp" line="688"/>
    70096751        <source>Missing the module address argument!
    70106752</source>
     
    70126754    </message>
    70136755    <message>
    7014         <location filename="../VBoxInternalManage.cpp" line="594"/>
     6756        <location filename="../VBoxInternalManage.cpp" line="702"/>
    70156757        <source>Failed to read subtrahend &apos;%s&apos;, rc=%Rrc
    70166758</source>
     
    70186760    </message>
    70196761    <message>
    7020         <location filename="../VBoxInternalManage.cpp" line="602"/>
     6762        <location filename="../VBoxInternalManage.cpp" line="710"/>
    70216763        <source>Failed to read segment number &apos;%s&apos;, rc=%Rrc
    70226764</source>
     
    70246766    </message>
    70256767    <message>
    7026         <location filename="../VBoxInternalManage.cpp" line="629"/>
     6768        <location filename="../VBoxInternalManage.cpp" line="737"/>
    70276769        <source>Error code %Rrc at %s(%u) in function %s</source>
    70286770        <translation type="unfinished"></translation>
    70296771    </message>
    70306772    <message>
    7031         <location filename="../VBoxInternalManage.cpp" line="652"/>
    7032         <location filename="../VBoxInternalManage.cpp" line="666"/>
    7033         <location filename="../VBoxInternalManage.cpp" line="724"/>
     6773        <location filename="../VBoxInternalManage.cpp" line="760"/>
     6774        <location filename="../VBoxInternalManage.cpp" line="774"/>
     6775        <location filename="../VBoxInternalManage.cpp" line="832"/>
    70346776        <source>Not enough parameters</source>
    70356777        <translation type="unfinished"></translation>
    70366778    </message>
    70376779    <message>
    7038         <location filename="../VBoxInternalManage.cpp" line="657"/>
    7039         <location filename="../VBoxInternalManage.cpp" line="668"/>
     6780        <location filename="../VBoxInternalManage.cpp" line="765"/>
     6781        <location filename="../VBoxInternalManage.cpp" line="776"/>
    70406782        <source>Invalid UUID parameter</source>
    70416783        <translation type="unfinished"></translation>
    70426784    </message>
    70436785    <message>
    7044         <location filename="../VBoxInternalManage.cpp" line="672"/>
     6786        <location filename="../VBoxInternalManage.cpp" line="780"/>
    70456787        <source>Invalid invocation</source>
    70466788        <translation type="unfinished"></translation>
    70476789    </message>
    70486790    <message>
    7049         <location filename="../VBoxInternalManage.cpp" line="680"/>
    7050         <location filename="../VBoxInternalManage.cpp" line="733"/>
     6791        <location filename="../VBoxInternalManage.cpp" line="788"/>
     6792        <location filename="../VBoxInternalManage.cpp" line="841"/>
    70516793        <source>Format autodetect failed: %Rrc</source>
    70526794        <translation type="unfinished"></translation>
    70536795    </message>
    70546796    <message>
    7055         <location filename="../VBoxInternalManage.cpp" line="695"/>
    7056         <location filename="../VBoxInternalManage.cpp" line="748"/>
    7057         <location filename="../VBoxInternalManage.cpp" line="1850"/>
    7058         <location filename="../VBoxInternalManage.cpp" line="1948"/>
    7059         <location filename="../VBoxInternalManage.cpp" line="2022"/>
     6797        <location filename="../VBoxInternalManage.cpp" line="803"/>
     6798        <location filename="../VBoxInternalManage.cpp" line="856"/>
     6799        <location filename="../VBoxInternalManage.cpp" line="1958"/>
     6800        <location filename="../VBoxInternalManage.cpp" line="2056"/>
     6801        <location filename="../VBoxInternalManage.cpp" line="2130"/>
    70606802        <source>Cannot create the virtual disk container: %Rrc</source>
    70616803        <translation type="unfinished"></translation>
    70626804    </message>
    70636805    <message>
    7064         <location filename="../VBoxInternalManage.cpp" line="700"/>
    7065         <location filename="../VBoxInternalManage.cpp" line="753"/>
     6806        <location filename="../VBoxInternalManage.cpp" line="808"/>
     6807        <location filename="../VBoxInternalManage.cpp" line="861"/>
    70666808        <source>Cannot open the image: %Rrc</source>
    70676809        <translation type="unfinished"></translation>
    70686810    </message>
    70696811    <message>
    7070         <location filename="../VBoxInternalManage.cpp" line="707"/>
     6812        <location filename="../VBoxInternalManage.cpp" line="815"/>
    70716813        <source>Cannot set a new UUID: %Rrc</source>
    70726814        <translation type="unfinished"></translation>
    70736815    </message>
    70746816    <message>
    7075         <location filename="../VBoxInternalManage.cpp" line="709"/>
     6817        <location filename="../VBoxInternalManage.cpp" line="817"/>
    70766818        <source>UUID changed to: %s
    70776819</source>
     
    70796821    </message>
    70806822    <message>
    7081         <location filename="../VBoxInternalManage.cpp" line="834"/>
     6823        <location filename="../VBoxInternalManage.cpp" line="942"/>
    70826824        <source>The GPT header seems corrupt because it contains too many entries</source>
    70836825        <translation type="unfinished"></translation>
    70846826    </message>
    70856827    <message>
    7086         <location filename="../VBoxInternalManage.cpp" line="841"/>
     6828        <location filename="../VBoxInternalManage.cpp" line="949"/>
    70876829        <source>Allocating memory for the GPT partitions entries failed</source>
    70886830        <translation type="unfinished"></translation>
    70896831    </message>
    70906832    <message>
    7091         <location filename="../VBoxInternalManage.cpp" line="850"/>
     6833        <location filename="../VBoxInternalManage.cpp" line="958"/>
    70926834        <source>Reading the partition table failed</source>
    70936835        <translation type="unfinished"></translation>
    70946836    </message>
    70956837    <message>
    7096         <location filename="../VBoxInternalManage.cpp" line="934"/>
     6838        <location filename="../VBoxInternalManage.cpp" line="1042"/>
    70976839        <source>More than one extended partition</source>
    70986840        <translation type="unfinished"></translation>
    70996841    </message>
    71006842    <message>
    7101         <location filename="../VBoxInternalManage.cpp" line="952"/>
     6843        <location filename="../VBoxInternalManage.cpp" line="1060"/>
    71026844        <source>Inconsistency for logical partition start</source>
    71036845        <translation type="unfinished"></translation>
    71046846    </message>
    71056847    <message>
    7106         <location filename="../VBoxInternalManage.cpp" line="964"/>
     6848        <location filename="../VBoxInternalManage.cpp" line="1072"/>
    71076849        <source>Logical partition without magic</source>
    71086850        <translation type="unfinished"></translation>
    71096851    </message>
    71106852    <message>
    7111         <location filename="../VBoxInternalManage.cpp" line="971"/>
     6853        <location filename="../VBoxInternalManage.cpp" line="1079"/>
    71126854        <source>Logical partition with type 0 encountered</source>
    71136855        <translation type="unfinished"></translation>
    71146856    </message>
    71156857    <message>
    7116         <location filename="../VBoxInternalManage.cpp" line="988"/>
     6858        <location filename="../VBoxInternalManage.cpp" line="1096"/>
    71176859        <source>Invalid partition start offset</source>
    71186860        <translation type="unfinished"></translation>
    71196861    </message>
    71206862    <message>
    7121         <location filename="../VBoxInternalManage.cpp" line="1008"/>
     6863        <location filename="../VBoxInternalManage.cpp" line="1116"/>
    71226864        <source>Logical partition chain broken</source>
    71236865        <translation type="unfinished"></translation>
    71246866    </message>
    71256867    <message>
    7126         <location filename="../VBoxInternalManage.cpp" line="1031"/>
     6868        <location filename="../VBoxInternalManage.cpp" line="1139"/>
    71276869        <source>Two partitions start at the same place</source>
    71286870        <translation type="unfinished"></translation>
    71296871    </message>
    71306872    <message>
    7131         <location filename="../VBoxInternalManage.cpp" line="1036"/>
     6873        <location filename="../VBoxInternalManage.cpp" line="1144"/>
    71326874        <source>Partition starts at sector 0</source>
    71336875        <translation type="unfinished"></translation>
    71346876    </message>
    71356877    <message>
    7136         <location filename="../VBoxInternalManage.cpp" line="1072"/>
     6878        <location filename="../VBoxInternalManage.cpp" line="1180"/>
    71376879        <source>Overlapping GPT partitions</source>
    71386880        <translation type="unfinished"></translation>
    71396881    </message>
    71406882    <message>
    7141         <location filename="../VBoxInternalManage.cpp" line="1088"/>
     6883        <location filename="../VBoxInternalManage.cpp" line="1196"/>
    71426884        <source>Overlapping MBR partitions</source>
    71436885        <translation type="unfinished"></translation>
    71446886    </message>
    71456887    <message>
    7146         <location filename="../VBoxInternalManage.cpp" line="1111"/>
    7147         <location filename="../VBoxInternalManage.cpp" line="1196"/>
    7148         <location filename="../VBoxInternalManage.cpp" line="1205"/>
    7149         <location filename="../VBoxInternalManage.cpp" line="1214"/>
    7150         <location filename="../VBoxInternalManage.cpp" line="1223"/>
    7151         <location filename="../VBoxInternalManage.cpp" line="1910"/>
    7152         <location filename="../VBoxInternalManage.cpp" line="1919"/>
     6888        <location filename="../VBoxInternalManage.cpp" line="1219"/>
     6889        <location filename="../VBoxInternalManage.cpp" line="1304"/>
     6890        <location filename="../VBoxInternalManage.cpp" line="1313"/>
     6891        <location filename="../VBoxInternalManage.cpp" line="1322"/>
     6892        <location filename="../VBoxInternalManage.cpp" line="1331"/>
     6893        <location filename="../VBoxInternalManage.cpp" line="2018"/>
     6894        <location filename="../VBoxInternalManage.cpp" line="2027"/>
     6895        <location filename="../VBoxInternalManage.cpp" line="2088"/>
     6896        <location filename="../VBoxInternalManage.cpp" line="2251"/>
     6897        <location filename="../VBoxInternalManage.cpp" line="2260"/>
     6898        <location filename="../VBoxInternalManage.cpp" line="2385"/>
     6899        <source>Missing argument to &apos;%s&apos;</source>
     6900        <translation type="unfinished"></translation>
     6901    </message>
     6902    <message>
     6903        <location filename="../VBoxInternalManage.cpp" line="368"/>
     6904        <location filename="../VBoxInternalManage.cpp" line="1226"/>
     6905        <location filename="../VBoxInternalManage.cpp" line="1343"/>
     6906        <location filename="../VBoxInternalManage.cpp" line="2034"/>
     6907        <location filename="../VBoxInternalManage.cpp" line="2107"/>
     6908        <location filename="../VBoxInternalManage.cpp" line="2275"/>
     6909        <location filename="../VBoxInternalManage.cpp" line="2396"/>
     6910        <source>Invalid parameter &apos;%s&apos;</source>
     6911        <translation type="unfinished"></translation>
     6912    </message>
     6913    <message>
     6914        <location filename="../VBoxInternalManage.cpp" line="327"/>
     6915        <source>
     6916Syntax error: %N
     6917</source>
     6918        <translation type="unfinished"></translation>
     6919    </message>
     6920    <message>
     6921        <location filename="../VBoxInternalManage.cpp" line="372"/>
     6922        <source>Invalid option -%c</source>
     6923        <translation type="unfinished"></translation>
     6924    </message>
     6925    <message>
     6926        <location filename="../VBoxInternalManage.cpp" line="373"/>
     6927        <source>Invalid option case %i</source>
     6928        <translation type="unfinished"></translation>
     6929    </message>
     6930    <message>
     6931        <location filename="../VBoxInternalManage.cpp" line="376"/>
     6932        <source>Unknown option: %s</source>
     6933        <translation type="unfinished"></translation>
     6934    </message>
     6935    <message>
     6936        <location filename="../VBoxInternalManage.cpp" line="378"/>
     6937        <source>Invalid argument format: %s</source>
     6938        <translation type="unfinished"></translation>
     6939    </message>
     6940    <message>
     6941        <location filename="../VBoxInternalManage.cpp" line="1231"/>
     6942        <location filename="../VBoxInternalManage.cpp" line="1349"/>
     6943        <source>Mandatory parameter -rawdisk missing</source>
     6944        <translation type="unfinished"></translation>
     6945    </message>
     6946    <message>
     6947        <location filename="../VBoxInternalManage.cpp" line="1236"/>
     6948        <source>Cannot open the raw disk: %Rrc</source>
     6949        <translation type="unfinished"></translation>
     6950    </message>
     6951    <message>
     6952        <location filename="../VBoxInternalManage.cpp" line="1242"/>
     6953        <source>Number  Type   StartCHS       EndCHS      Size (MiB)  Start (Sect)
     6954</source>
     6955        <translation type="unfinished"></translation>
     6956    </message>
     6957    <message>
     6958        <location filename="../VBoxInternalManage.cpp" line="1347"/>
     6959        <source>Mandatory parameter -filename missing</source>
     6960        <translation type="unfinished"></translation>
     6961    </message>
     6962    <message>
     6963        <location filename="../VBoxInternalManage.cpp" line="1352"/>
     6964        <source>The parameter -mbr is only valid when the parameter -partitions is also present</source>
     6965        <translation type="unfinished"></translation>
     6966    </message>
     6967    <message>
     6968        <location filename="../VBoxInternalManage.cpp" line="1361"/>
     6969        <source>Cannot open the raw disk &apos;%s&apos;: %Rrc</source>
     6970        <translation type="unfinished"></translation>
     6971    </message>
     6972    <message>
     6973        <location filename="../VBoxInternalManage.cpp" line="1390"/>
     6974        <source>File &apos;%s&apos; is no fixed/removable medium device</source>
     6975        <translation type="unfinished"></translation>
     6976    </message>
     6977    <message>
     6978        <location filename="../VBoxInternalManage.cpp" line="1407"/>
     6979        <source>The -relative parameter is invalid for raw disk %s</source>
     6980        <translation type="unfinished"></translation>
     6981    </message>
     6982    <message>
     6983        <location filename="../VBoxInternalManage.cpp" line="1421"/>
     6984        <source>Cannot get the geometry of the raw disk &apos;%s&apos;: %Rrc</source>
     6985        <translation type="unfinished"></translation>
     6986    </message>
     6987    <message>
     6988        <location filename="../VBoxInternalManage.cpp" line="1428"/>
     6989        <location filename="../VBoxInternalManage.cpp" line="1477"/>
     6990        <location filename="../VBoxInternalManage.cpp" line="1602"/>
     6991        <source>The -relative parameter is invalid for raw images</source>
     6992        <translation type="unfinished"></translation>
     6993    </message>
     6994    <message>
     6995        <location filename="../VBoxInternalManage.cpp" line="1462"/>
     6996        <location filename="../VBoxInternalManage.cpp" line="1556"/>
     6997        <location filename="../VBoxInternalManage.cpp" line="1627"/>
     6998        <source>Cannot get the size of the raw disk &apos;%s&apos;: %Rrc</source>
     6999        <translation type="unfinished"></translation>
     7000    </message>
     7001    <message>
     7002        <location filename="../VBoxInternalManage.cpp" line="1472"/>
     7003        <location filename="../VBoxInternalManage.cpp" line="1527"/>
     7004        <location filename="../VBoxInternalManage.cpp" line="1565"/>
     7005        <source>Failed to get size of file &apos;%s&apos;: %Rrc</source>
     7006        <translation type="unfinished"></translation>
     7007    </message>
     7008    <message>
     7009        <location filename="../VBoxInternalManage.cpp" line="1484"/>
     7010        <source>File &apos;%s&apos; is no block device</source>
     7011        <translation type="unfinished"></translation>
     7012    </message>
     7013    <message>
     7014        <location filename="../VBoxInternalManage.cpp" line="1492"/>
     7015        <location filename="../VBoxInternalManage.cpp" line="1541"/>
     7016        <location filename="../VBoxInternalManage.cpp" line="1579"/>
     7017        <location filename="../VBoxInternalManage.cpp" line="1618"/>
     7018        <source>Failed to get file informtation for raw disk &apos;%s&apos;: %Rrc</source>
     7019        <translation type="unfinished"></translation>
     7020    </message>
     7021    <message>
     7022        <location filename="../VBoxInternalManage.cpp" line="1509"/>
     7023        <source>Cannot get the block size for file &apos;%s&apos;: %Rrc</source>
     7024        <translation type="unfinished"></translation>
     7025    </message>
     7026    <message>
     7027        <location filename="../VBoxInternalManage.cpp" line="1517"/>
     7028        <location filename="../VBoxInternalManage.cpp" line="1594"/>
     7029        <source>Cannot get the block count for file &apos;%s&apos;: %Rrc</source>
     7030        <translation type="unfinished"></translation>
     7031    </message>
     7032    <message>
     7033        <location filename="../VBoxInternalManage.cpp" line="1533"/>
     7034        <source>File &apos;%s&apos; is neither block device nor regular file</source>
     7035        <translation type="unfinished"></translation>
     7036    </message>
     7037    <message>
     7038        <location filename="../VBoxInternalManage.cpp" line="1571"/>
     7039        <source>File &apos;%s&apos; is no block or char device</source>
     7040        <translation type="unfinished"></translation>
     7041    </message>
     7042    <message>
     7043        <location filename="../VBoxInternalManage.cpp" line="1610"/>
     7044        <source>File &apos;%s&apos; is neither character device nor regular file</source>
     7045        <translation type="unfinished"></translation>
     7046    </message>
     7047    <message>
     7048        <location filename="../VBoxInternalManage.cpp" line="1635"/>
     7049        <source>Detected size of raw disk &apos;%s&apos; is %RU64, an invalid value</source>
     7050        <translation type="unfinished"></translation>
     7051    </message>
     7052    <message>
     7053        <location filename="../VBoxInternalManage.cpp" line="1667"/>
     7054        <source>Incorrect value in partitions parameter</source>
     7055        <translation type="unfinished"></translation>
     7056    </message>
     7057    <message>
     7058        <location filename="../VBoxInternalManage.cpp" line="1681"/>
     7059        <source>Incorrect separator in partitions parameter</source>
     7060        <translation type="unfinished"></translation>
     7061    </message>
     7062    <message>
     7063        <location filename="../VBoxInternalManage.cpp" line="1691"/>
     7064        <source>Cannot read the partition information from &apos;%s&apos;</source>
     7065        <translation type="unfinished"></translation>
     7066    </message>
     7067    <message>
     7068        <location filename="../VBoxInternalManage.cpp" line="1706"/>
     7069        <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source>
     7070        <translation type="unfinished"></translation>
     7071    </message>
     7072    <message>
     7073        <location filename="../VBoxInternalManage.cpp" line="1726"/>
     7074        <location filename="../VBoxInternalManage.cpp" line="1794"/>
     7075        <source>Out of memory allocating the partition list for &apos;%s&apos;</source>
     7076        <translation type="unfinished"></translation>
     7077    </message>
     7078    <message>
     7079        <location filename="../VBoxInternalManage.cpp" line="1742"/>
     7080        <source>Out of memory allocating the partition descriptor for &apos;%s&apos;</source>
     7081        <translation type="unfinished"></translation>
     7082    </message>
     7083    <message>
     7084        <location filename="../VBoxInternalManage.cpp" line="1751"/>
     7085        <source>Cannot read partition data from raw device &apos;%s&apos;: %Rrc</source>
     7086        <translation type="unfinished"></translation>
     7087    </message>
     7088    <message>
     7089        <location filename="../VBoxInternalManage.cpp" line="1763"/>
     7090        <source>Cannot open replacement MBR file &apos;%s&apos; specified with -mbr: %Rrc</source>
     7091        <translation type="unfinished"></translation>
     7092    </message>
     7093    <message>
     7094        <location filename="../VBoxInternalManage.cpp" line="1771"/>
     7095        <source>Cannot read replacement MBR file &apos;%s&apos;: %Rrc</source>
     7096        <translation type="unfinished"></translation>
     7097    </message>
     7098    <message>
     7099        <location filename="../VBoxInternalManage.cpp" line="1837"/>
     7100        <source>Cannot create reference to individual partition %u, rc=%Rrc</source>
     7101        <translation type="unfinished"></translation>
     7102    </message>
     7103    <message>
     7104        <location filename="../VBoxInternalManage.cpp" line="1852"/>
     7105        <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source>
     7106        <translation type="unfinished"></translation>
     7107    </message>
     7108    <message>
     7109        <location filename="../VBoxInternalManage.cpp" line="1914"/>
     7110        <source>MBR/EPT overlaps with data area</source>
     7111        <translation type="unfinished"></translation>
     7112    </message>
     7113    <message>
     7114        <location filename="../VBoxInternalManage.cpp" line="1920"/>
     7115        <source>GPT overlaps with data area</source>
     7116        <translation type="unfinished"></translation>
     7117    </message>
     7118    <message>
     7119        <location filename="../VBoxInternalManage.cpp" line="1977"/>
     7120        <source>Cannot create the raw disk VMDK: %Rrc</source>
     7121        <translation type="unfinished"></translation>
     7122    </message>
     7123    <message>
    71537124        <location filename="../VBoxInternalManage.cpp" line="1980"/>
    7154         <location filename="../VBoxInternalManage.cpp" line="2143"/>
    7155         <location filename="../VBoxInternalManage.cpp" line="2152"/>
    7156         <location filename="../VBoxInternalManage.cpp" line="2277"/>
    7157         <source>Missing argument to &apos;%s&apos;</source>
    7158         <translation type="unfinished"></translation>
    7159     </message>
    7160     <message>
    7161         <location filename="../VBoxInternalManage.cpp" line="1118"/>
    7162         <location filename="../VBoxInternalManage.cpp" line="1235"/>
    7163         <location filename="../VBoxInternalManage.cpp" line="1926"/>
    7164         <location filename="../VBoxInternalManage.cpp" line="1999"/>
    7165         <location filename="../VBoxInternalManage.cpp" line="2167"/>
    7166         <location filename="../VBoxInternalManage.cpp" line="2288"/>
    7167         <source>Invalid parameter &apos;%s&apos;</source>
    7168         <translation type="unfinished"></translation>
    7169     </message>
    7170     <message>
    7171         <location filename="../VBoxInternalManage.cpp" line="1123"/>
    7172         <location filename="../VBoxInternalManage.cpp" line="1241"/>
    7173         <source>Mandatory parameter -rawdisk missing</source>
    7174         <translation type="unfinished"></translation>
    7175     </message>
    7176     <message>
    7177         <location filename="../VBoxInternalManage.cpp" line="1128"/>
    7178         <source>Cannot open the raw disk: %Rrc</source>
    7179         <translation type="unfinished"></translation>
    7180     </message>
    7181     <message>
    7182         <location filename="../VBoxInternalManage.cpp" line="1134"/>
    7183         <source>Number  Type   StartCHS       EndCHS      Size (MiB)  Start (Sect)
    7184 </source>
    7185         <translation type="unfinished"></translation>
    7186     </message>
    7187     <message>
    7188         <location filename="../VBoxInternalManage.cpp" line="1239"/>
    7189         <source>Mandatory parameter -filename missing</source>
    7190         <translation type="unfinished"></translation>
    7191     </message>
    7192     <message>
    7193         <location filename="../VBoxInternalManage.cpp" line="1244"/>
    7194         <source>The parameter -mbr is only valid when the parameter -partitions is also present</source>
    7195         <translation type="unfinished"></translation>
    7196     </message>
    7197     <message>
    7198         <location filename="../VBoxInternalManage.cpp" line="1253"/>
    7199         <source>Cannot open the raw disk &apos;%s&apos;: %Rrc</source>
    7200         <translation type="unfinished"></translation>
    7201     </message>
    7202     <message>
    7203         <location filename="../VBoxInternalManage.cpp" line="1282"/>
    7204         <source>File &apos;%s&apos; is no fixed/removable medium device</source>
    7205         <translation type="unfinished"></translation>
    7206     </message>
    7207     <message>
    7208         <location filename="../VBoxInternalManage.cpp" line="1299"/>
    7209         <source>The -relative parameter is invalid for raw disk %s</source>
    7210         <translation type="unfinished"></translation>
    7211     </message>
    7212     <message>
    7213         <location filename="../VBoxInternalManage.cpp" line="1313"/>
    7214         <source>Cannot get the geometry of the raw disk &apos;%s&apos;: %Rrc</source>
    7215         <translation type="unfinished"></translation>
    7216     </message>
    7217     <message>
    7218         <location filename="../VBoxInternalManage.cpp" line="1320"/>
    7219         <location filename="../VBoxInternalManage.cpp" line="1369"/>
    7220         <location filename="../VBoxInternalManage.cpp" line="1494"/>
    7221         <source>The -relative parameter is invalid for raw images</source>
    7222         <translation type="unfinished"></translation>
    7223     </message>
    7224     <message>
    7225         <location filename="../VBoxInternalManage.cpp" line="1354"/>
    7226         <location filename="../VBoxInternalManage.cpp" line="1448"/>
    7227         <location filename="../VBoxInternalManage.cpp" line="1519"/>
    7228         <source>Cannot get the size of the raw disk &apos;%s&apos;: %Rrc</source>
    7229         <translation type="unfinished"></translation>
    7230     </message>
    7231     <message>
    7232         <location filename="../VBoxInternalManage.cpp" line="1364"/>
    7233         <location filename="../VBoxInternalManage.cpp" line="1419"/>
    7234         <location filename="../VBoxInternalManage.cpp" line="1457"/>
    7235         <source>Failed to get size of file &apos;%s&apos;: %Rrc</source>
    7236         <translation type="unfinished"></translation>
    7237     </message>
    7238     <message>
    7239         <location filename="../VBoxInternalManage.cpp" line="1376"/>
    7240         <source>File &apos;%s&apos; is no block device</source>
    7241         <translation type="unfinished"></translation>
    7242     </message>
    7243     <message>
    7244         <location filename="../VBoxInternalManage.cpp" line="1384"/>
    7245         <location filename="../VBoxInternalManage.cpp" line="1433"/>
    7246         <location filename="../VBoxInternalManage.cpp" line="1471"/>
    7247         <location filename="../VBoxInternalManage.cpp" line="1510"/>
    7248         <source>Failed to get file informtation for raw disk &apos;%s&apos;: %Rrc</source>
    7249         <translation type="unfinished"></translation>
    7250     </message>
    7251     <message>
    7252         <location filename="../VBoxInternalManage.cpp" line="1401"/>
    7253         <source>Cannot get the block size for file &apos;%s&apos;: %Rrc</source>
    7254         <translation type="unfinished"></translation>
    7255     </message>
    7256     <message>
    7257         <location filename="../VBoxInternalManage.cpp" line="1409"/>
    7258         <location filename="../VBoxInternalManage.cpp" line="1486"/>
    7259         <source>Cannot get the block count for file &apos;%s&apos;: %Rrc</source>
    7260         <translation type="unfinished"></translation>
    7261     </message>
    7262     <message>
    7263         <location filename="../VBoxInternalManage.cpp" line="1425"/>
    7264         <source>File &apos;%s&apos; is neither block device nor regular file</source>
    7265         <translation type="unfinished"></translation>
    7266     </message>
    7267     <message>
    7268         <location filename="../VBoxInternalManage.cpp" line="1463"/>
    7269         <source>File &apos;%s&apos; is no block or char device</source>
    7270         <translation type="unfinished"></translation>
    7271     </message>
    7272     <message>
    7273         <location filename="../VBoxInternalManage.cpp" line="1502"/>
    7274         <source>File &apos;%s&apos; is neither character device nor regular file</source>
    7275         <translation type="unfinished"></translation>
    7276     </message>
    7277     <message>
    7278         <location filename="../VBoxInternalManage.cpp" line="1527"/>
    7279         <source>Detected size of raw disk &apos;%s&apos; is %RU64, an invalid value</source>
    7280         <translation type="unfinished"></translation>
    7281     </message>
    7282     <message>
    7283         <location filename="../VBoxInternalManage.cpp" line="1559"/>
    7284         <source>Incorrect value in partitions parameter</source>
    7285         <translation type="unfinished"></translation>
    7286     </message>
    7287     <message>
    7288         <location filename="../VBoxInternalManage.cpp" line="1573"/>
    7289         <source>Incorrect separator in partitions parameter</source>
    7290         <translation type="unfinished"></translation>
    7291     </message>
    7292     <message>
    7293         <location filename="../VBoxInternalManage.cpp" line="1583"/>
    7294         <source>Cannot read the partition information from &apos;%s&apos;</source>
    7295         <translation type="unfinished"></translation>
    7296     </message>
    7297     <message>
    7298         <location filename="../VBoxInternalManage.cpp" line="1598"/>
    7299         <source>It is not possible (and necessary) to explicitly give access to the extended partition %u. If required, enable access to all logical partitions inside this extended partition.</source>
    7300         <translation type="unfinished"></translation>
    7301     </message>
    7302     <message>
    7303         <location filename="../VBoxInternalManage.cpp" line="1618"/>
    7304         <location filename="../VBoxInternalManage.cpp" line="1686"/>
    7305         <source>Out of memory allocating the partition list for &apos;%s&apos;</source>
    7306         <translation type="unfinished"></translation>
    7307     </message>
    7308     <message>
    7309         <location filename="../VBoxInternalManage.cpp" line="1634"/>
    7310         <source>Out of memory allocating the partition descriptor for &apos;%s&apos;</source>
    7311         <translation type="unfinished"></translation>
    7312     </message>
    7313     <message>
    7314         <location filename="../VBoxInternalManage.cpp" line="1643"/>
    7315         <source>Cannot read partition data from raw device &apos;%s&apos;: %Rrc</source>
    7316         <translation type="unfinished"></translation>
    7317     </message>
    7318     <message>
    7319         <location filename="../VBoxInternalManage.cpp" line="1655"/>
    7320         <source>Cannot open replacement MBR file &apos;%s&apos; specified with -mbr: %Rrc</source>
    7321         <translation type="unfinished"></translation>
    7322     </message>
    7323     <message>
    7324         <location filename="../VBoxInternalManage.cpp" line="1663"/>
    7325         <source>Cannot read replacement MBR file &apos;%s&apos;: %Rrc</source>
    7326         <translation type="unfinished"></translation>
    7327     </message>
    7328     <message>
    7329         <location filename="../VBoxInternalManage.cpp" line="1729"/>
    7330         <source>Cannot create reference to individual partition %u, rc=%Rrc</source>
    7331         <translation type="unfinished"></translation>
    7332     </message>
    7333     <message>
    7334         <location filename="../VBoxInternalManage.cpp" line="1744"/>
    7335         <source>Cannot create reference to individual partition %u (numbered %u), rc=%Rrc</source>
    7336         <translation type="unfinished"></translation>
    7337     </message>
    7338     <message>
    7339         <location filename="../VBoxInternalManage.cpp" line="1806"/>
    7340         <source>MBR/EPT overlaps with data area</source>
    7341         <translation type="unfinished"></translation>
    7342     </message>
    7343     <message>
    7344         <location filename="../VBoxInternalManage.cpp" line="1812"/>
    7345         <source>GPT overlaps with data area</source>
    7346         <translation type="unfinished"></translation>
    7347     </message>
    7348     <message>
    7349         <location filename="../VBoxInternalManage.cpp" line="1869"/>
    7350         <source>Cannot create the raw disk VMDK: %Rrc</source>
    7351         <translation type="unfinished"></translation>
    7352     </message>
    7353     <message>
    7354         <location filename="../VBoxInternalManage.cpp" line="1872"/>
    73557125        <source>RAW host disk access VMDK file %s created successfully.
    73567126</source>
     
    73587128    </message>
    73597129    <message>
    7360         <location filename="../VBoxInternalManage.cpp" line="1894"/>
     7130        <location filename="../VBoxInternalManage.cpp" line="2002"/>
    73617131        <source>The raw disk vmdk file was not created</source>
    73627132        <translation type="unfinished"></translation>
    73637133    </message>
    73647134    <message>
    7365         <location filename="../VBoxInternalManage.cpp" line="1931"/>
     7135        <location filename="../VBoxInternalManage.cpp" line="2039"/>
    73667136        <source>Mandatory parameter -from missing</source>
    73677137        <translation type="unfinished"></translation>
    73687138    </message>
    73697139    <message>
    7370         <location filename="../VBoxInternalManage.cpp" line="1933"/>
     7140        <location filename="../VBoxInternalManage.cpp" line="2041"/>
    73717141        <source>Mandatory parameter -to missing</source>
    73727142        <translation type="unfinished"></translation>
    73737143    </message>
    73747144    <message>
    7375         <location filename="../VBoxInternalManage.cpp" line="1957"/>
     7145        <location filename="../VBoxInternalManage.cpp" line="2065"/>
    73767146        <source>Cannot rename the image: %Rrc</source>
    73777147        <translation type="unfinished"></translation>
    73787148    </message>
    73797149    <message>
    7380         <location filename="../VBoxInternalManage.cpp" line="1960"/>
     7150        <location filename="../VBoxInternalManage.cpp" line="2068"/>
    73817151        <source>Cannot create the source image: %Rrc</source>
    73827152        <translation type="unfinished"></translation>
    73837153    </message>
    73847154    <message>
    7385         <location filename="../VBoxInternalManage.cpp" line="2004"/>
     7155        <location filename="../VBoxInternalManage.cpp" line="2112"/>
    73867156        <source>Mandatory filename parameter missing</source>
    73877157        <translation type="unfinished"></translation>
    73887158    </message>
    73897159    <message>
    7390         <location filename="../VBoxInternalManage.cpp" line="2006"/>
     7160        <location filename="../VBoxInternalManage.cpp" line="2114"/>
    73917161        <source>Mandatory outputfile parameter missing</source>
    73927162        <translation type="unfinished"></translation>
    73937163    </message>
    73947164    <message>
    7395         <location filename="../VBoxInternalManage.cpp" line="2034"/>
     7165        <location filename="../VBoxInternalManage.cpp" line="2142"/>
    73967166        <source>Cannot create destination file &quot;%s&quot;: %Rrc</source>
    73977167        <translation type="unfinished"></translation>
    73987168    </message>
    73997169    <message>
    7400         <location filename="../VBoxInternalManage.cpp" line="2053"/>
    7401         <location filename="../VBoxInternalManage.cpp" line="2196"/>
    7402         <location filename="../VBoxInternalManage.cpp" line="2316"/>
     7170        <location filename="../VBoxInternalManage.cpp" line="2161"/>
     7171        <location filename="../VBoxInternalManage.cpp" line="2304"/>
     7172        <location filename="../VBoxInternalManage.cpp" line="2424"/>
    74037173        <source>No file format specified and autodetect failed - please specify format: %Rrc</source>
    74047174        <translation type="unfinished"></translation>
    74057175    </message>
    74067176    <message>
    7407         <location filename="../VBoxInternalManage.cpp" line="2056"/>
     7177        <location filename="../VBoxInternalManage.cpp" line="2164"/>
    74087178        <source>Only converting harddisk images is supported</source>
    74097179        <translation type="unfinished"></translation>
    74107180    </message>
    74117181    <message>
    7412         <location filename="../VBoxInternalManage.cpp" line="2071"/>
    7413         <location filename="../VBoxInternalManage.cpp" line="2215"/>
     7182        <location filename="../VBoxInternalManage.cpp" line="2179"/>
     7183        <location filename="../VBoxInternalManage.cpp" line="2323"/>
    74147184        <source>Cannot open the source image: %Rrc</source>
    74157185        <translation type="unfinished"></translation>
    74167186    </message>
    74177187    <message numerus="yes">
    7418         <location filename="../VBoxInternalManage.cpp" line="2081"/>
     7188        <location filename="../VBoxInternalManage.cpp" line="2189"/>
    74197189        <source>Converting image &quot;%s&quot; with size %RU64 bytes (%RU64MB) to raw...
    74207190</source>
     
    74247194    </message>
    74257195    <message>
    7426         <location filename="../VBoxInternalManage.cpp" line="2103"/>
     7196        <location filename="../VBoxInternalManage.cpp" line="2211"/>
    74277197        <source>Cannot copy image data: %Rrc</source>
    74287198        <translation type="unfinished"></translation>
    74297199    </message>
    74307200    <message>
    7431         <location filename="../VBoxInternalManage.cpp" line="2115"/>
     7201        <location filename="../VBoxInternalManage.cpp" line="2223"/>
    74327202        <source>Out of memory allocating read buffer</source>
    74337203        <translation type="unfinished"></translation>
    74347204    </message>
    74357205    <message>
    7436         <location filename="../VBoxInternalManage.cpp" line="2172"/>
    7437         <location filename="../VBoxInternalManage.cpp" line="2293"/>
     7206        <location filename="../VBoxInternalManage.cpp" line="2280"/>
     7207        <location filename="../VBoxInternalManage.cpp" line="2401"/>
    74387208        <source>Mandatory input image parameter missing</source>
    74397209        <translation type="unfinished"></translation>
    74407210    </message>
    74417211    <message>
    7442         <location filename="../VBoxInternalManage.cpp" line="2174"/>
     7212        <location filename="../VBoxInternalManage.cpp" line="2282"/>
    74437213        <source>Mandatory output image parameter missing</source>
    74447214        <translation type="unfinished"></translation>
    74457215    </message>
    74467216    <message>
    7447         <location filename="../VBoxInternalManage.cpp" line="2207"/>
     7217        <location filename="../VBoxInternalManage.cpp" line="2315"/>
    74487218        <source>Cannot create the source virtual disk container: %Rrc</source>
    74497219        <translation type="unfinished"></translation>
    74507220    </message>
    74517221    <message>
    7452         <location filename="../VBoxInternalManage.cpp" line="2226"/>
     7222        <location filename="../VBoxInternalManage.cpp" line="2334"/>
    74537223        <source>Cannot create the destination virtual disk container: %Rrc</source>
    74547224        <translation type="unfinished"></translation>
    74557225    </message>
    74567226    <message numerus="yes">
    7457         <location filename="../VBoxInternalManage.cpp" line="2231"/>
     7227        <location filename="../VBoxInternalManage.cpp" line="2339"/>
    74587228        <source>Converting image &quot;%s&quot; with size %RU64 bytes (%RU64MB)...
    74597229</source>
     
    74637233    </message>
    74647234    <message>
    7465         <location filename="../VBoxInternalManage.cpp" line="2240"/>
     7235        <location filename="../VBoxInternalManage.cpp" line="2348"/>
    74667236        <source>Cannot copy the image: %Rrc</source>
    74677237        <translation type="unfinished"></translation>
    74687238    </message>
    74697239    <message>
    7470         <location filename="../VBoxInternalManage.cpp" line="2368"/>
    7471         <location filename="../VBoxInternalManage.cpp" line="2503"/>
     7240        <location filename="../VBoxInternalManage.cpp" line="2476"/>
     7241        <location filename="../VBoxInternalManage.cpp" line="2611"/>
    74727242        <source>Missing VM name/UUID</source>
    74737243        <translation type="unfinished"></translation>
    74747244    </message>
    74757245    <message>
    7476         <location filename="../VBoxInternalManage.cpp" line="2468"/>
     7246        <location filename="../VBoxInternalManage.cpp" line="2576"/>
    74777247        <source>One or more of the requested features are not implemented! Feel free to do this.</source>
    74787248        <translation type="unfinished"></translation>
    74797249    </message>
    74807250    <message>
    7481         <location filename="../VBoxInternalManage.cpp" line="2484"/>
     7251        <location filename="../VBoxInternalManage.cpp" line="2592"/>
    74827252        <source>password to hash required</source>
    74837253        <translation type="unfinished"></translation>
    74847254    </message>
    74857255    <message>
    7486         <location filename="../VBoxInternalManage.cpp" line="2490"/>
     7256        <location filename="../VBoxInternalManage.cpp" line="2598"/>
    74877257        <source>Password hash: %s
    74887258</source>
     
    74907260    </message>
    74917261    <message>
    7492         <location filename="../VBoxInternalManage.cpp" line="2533"/>
     7262        <location filename="../VBoxInternalManage.cpp" line="2641"/>
    74937263        <source>Invalid update interval specified</source>
    74947264        <translation type="unfinished"></translation>
    74957265    </message>
    74967266    <message>
    7497         <location filename="../VBoxInternalManage.cpp" line="2535"/>
     7267        <location filename="../VBoxInternalManage.cpp" line="2643"/>
    74987268        <source>argc=%d interval=%u
    74997269</source>
     
    75017271    </message>
    75027272    <message>
    7503         <location filename="../VBoxInternalManage.cpp" line="2588"/>
     7273        <location filename="../VBoxInternalManage.cpp" line="2694"/>
    75047274        <source>Command missing</source>
    75057275        <translation type="unfinished"></translation>
    75067276    </message>
    75077277    <message>
    7508         <location filename="../VBoxInternalManage.cpp" line="2628"/>
     7278        <location filename="../VBoxInternalManage.cpp" line="2734"/>
    75097279        <source>Invalid command &apos;%s&apos;</source>
    75107280        <translation type="unfinished"></translation>
     
    75147284    <name>List</name>
    75157285    <message>
    7516         <location filename="../VBoxManageList.cpp" line="56"/>
    7517         <location filename="../VBoxManageList.cpp" line="70"/>
    7518         <location filename="../VBoxManageList.cpp" line="96"/>
    7519         <location filename="../VBoxManageList.cpp" line="855"/>
    7520         <location filename="../VBoxManageList.cpp" line="866"/>
     7286        <location filename="../VBoxManageList.cpp" line="54"/>
     7287        <location filename="../VBoxManageList.cpp" line="68"/>
     7288        <location filename="../VBoxManageList.cpp" line="94"/>
     7289        <location filename="../VBoxManageList.cpp" line="853"/>
     7290        <location filename="../VBoxManageList.cpp" line="864"/>
    75217291        <source>Unknown</source>
    75227292        <translation type="unfinished"></translation>
    75237293    </message>
    75247294    <message>
    7525         <location filename="../VBoxManageList.cpp" line="61"/>
    7526         <location filename="../VBoxManageList.cpp" line="75"/>
     7295        <location filename="../VBoxManageList.cpp" line="59"/>
     7296        <location filename="../VBoxManageList.cpp" line="73"/>
    75277297        <source>unknown</source>
    75287298        <translation type="unfinished"></translation>
    75297299    </message>
    75307300    <message>
    7531         <location filename="../VBoxManageList.cpp" line="68"/>
     7301        <location filename="../VBoxManageList.cpp" line="66"/>
    75327302        <source>Up</source>
    75337303        <translation type="unfinished"></translation>
    75347304    </message>
    75357305    <message>
    7536         <location filename="../VBoxManageList.cpp" line="69"/>
     7306        <location filename="../VBoxManageList.cpp" line="67"/>
    75377307        <source>Down</source>
    75387308        <translation type="unfinished"></translation>
    75397309    </message>
    75407310    <message>
     7311        <location filename="../VBoxManageList.cpp" line="81"/>
     7312        <source>HardDisk</source>
     7313        <translation type="unfinished"></translation>
     7314    </message>
     7315    <message>
    75417316        <location filename="../VBoxManageList.cpp" line="83"/>
    7542         <source>HardDisk</source>
    7543         <translation type="unfinished"></translation>
    7544     </message>
    7545     <message>
    7546         <location filename="../VBoxManageList.cpp" line="85"/>
    75477317        <source>Floppy</source>
    75487318        <translation type="unfinished"></translation>
    75497319    </message>
    75507320    <message>
     7321        <location filename="../VBoxManageList.cpp" line="86"/>
     7322        <source>Network</source>
     7323        <translation type="unfinished"></translation>
     7324    </message>
     7325    <message>
    75517326        <location filename="../VBoxManageList.cpp" line="88"/>
    7552         <source>Network</source>
    7553         <translation type="unfinished"></translation>
    7554     </message>
    7555     <message>
    7556         <location filename="../VBoxManageList.cpp" line="90"/>
    75577327        <source>SharedFolder</source>
    75587328        <translation type="unfinished"></translation>
    75597329    </message>
    75607330    <message>
    7561         <location filename="../VBoxManageList.cpp" line="91"/>
     7331        <location filename="../VBoxManageList.cpp" line="89"/>
    75627332        <source>Graphics3D</source>
    75637333        <translation type="unfinished"></translation>
    75647334    </message>
    75657335    <message>
    7566         <location filename="../VBoxManageList.cpp" line="113"/>
    7567         <location filename="../VBoxManageList.cpp" line="151"/>
     7336        <location filename="../VBoxManageList.cpp" line="111"/>
     7337        <location filename="../VBoxManageList.cpp" line="149"/>
    75687338        <source>Name:        %ls
    75697339</source>
     
    75717341    </message>
    75727342    <message>
    7573         <location filename="../VBoxManageList.cpp" line="158"/>
    7574         <location filename="../VBoxManageList.cpp" line="217"/>
    7575         <location filename="../VBoxManageList.cpp" line="263"/>
    7576         <location filename="../VBoxManageList.cpp" line="1316"/>
     7343        <location filename="../VBoxManageList.cpp" line="156"/>
     7344        <location filename="../VBoxManageList.cpp" line="215"/>
     7345        <location filename="../VBoxManageList.cpp" line="261"/>
     7346        <location filename="../VBoxManageList.cpp" line="1340"/>
    75777347        <source>Name:            %ls
    75787348</source>
     
    75807350    </message>
    75817351    <message>
    7582         <location filename="../VBoxManageList.cpp" line="164"/>
    7583         <location filename="../VBoxManageList.cpp" line="223"/>
    7584         <location filename="../VBoxManageList.cpp" line="269"/>
     7352        <location filename="../VBoxManageList.cpp" line="162"/>
     7353        <location filename="../VBoxManageList.cpp" line="221"/>
     7354        <location filename="../VBoxManageList.cpp" line="267"/>
    75857355        <source>Enabled</source>
    75867356        <translation type="unfinished"></translation>
    75877357    </message>
    75887358    <message>
    7589         <location filename="../VBoxManageList.cpp" line="164"/>
    7590         <location filename="../VBoxManageList.cpp" line="223"/>
    7591         <location filename="../VBoxManageList.cpp" line="269"/>
     7359        <location filename="../VBoxManageList.cpp" line="162"/>
     7360        <location filename="../VBoxManageList.cpp" line="221"/>
     7361        <location filename="../VBoxManageList.cpp" line="267"/>
    75927362        <source>Disabled</source>
    75937363        <translation type="unfinished"></translation>
    75947364    </message>
    75957365    <message>
    7596         <location filename="../VBoxManageList.cpp" line="168"/>
     7366        <location filename="../VBoxManageList.cpp" line="166"/>
    75977367        <source>IPAddress:       %ls
    75987368</source>
     
    76007370    </message>
    76017371    <message>
    7602         <location filename="../VBoxManageList.cpp" line="171"/>
    7603         <location filename="../VBoxManageList.cpp" line="227"/>
     7372        <location filename="../VBoxManageList.cpp" line="169"/>
     7373        <location filename="../VBoxManageList.cpp" line="225"/>
    76047374        <source>NetworkMask:     %ls
    76057375</source>
     
    76077377    </message>
    76087378    <message>
    7609         <location filename="../VBoxManageList.cpp" line="174"/>
     7379        <location filename="../VBoxManageList.cpp" line="172"/>
    76107380        <source>IPV6Address:     %ls
    76117381</source>
     
    76137383    </message>
    76147384    <message>
    7615         <location filename="../VBoxManageList.cpp" line="177"/>
     7385        <location filename="../VBoxManageList.cpp" line="175"/>
    76167386        <source>IPV6NetworkMaskPrefixLength: %d
    76177387</source>
     
    76197389    </message>
    76207390    <message>
    7621         <location filename="../VBoxManageList.cpp" line="180"/>
     7391        <location filename="../VBoxManageList.cpp" line="178"/>
    76227392        <source>HardwareAddress: %ls
    76237393</source>
     
    76257395    </message>
    76267396    <message>
    7627         <location filename="../VBoxManageList.cpp" line="183"/>
     7397        <location filename="../VBoxManageList.cpp" line="181"/>
    76287398        <source>MediumType:      %s
    76297399</source>
     
    76317401    </message>
    76327402    <message>
    7633         <location filename="../VBoxManageList.cpp" line="186"/>
     7403        <location filename="../VBoxManageList.cpp" line="184"/>
    76347404        <source>Wireless:        %s
    76357405</source>
     
    76377407    </message>
    76387408    <message>
    7639         <location filename="../VBoxManageList.cpp" line="186"/>
    7640         <location filename="../VBoxManageList.cpp" line="1045"/>
    7641         <location filename="../VBoxManageList.cpp" line="2201"/>
    7642         <location filename="../VBoxManageList.cpp" line="2206"/>
    7643         <location filename="../VBoxManageList.cpp" line="2208"/>
     7409        <location filename="../VBoxManageList.cpp" line="184"/>
     7410        <location filename="../VBoxManageList.cpp" line="1069"/>
    76447411        <source>Yes</source>
    76457412        <translation type="unfinished"></translation>
    76467413    </message>
    76477414    <message>
    7648         <location filename="../VBoxManageList.cpp" line="186"/>
    7649         <location filename="../VBoxManageList.cpp" line="1045"/>
    7650         <location filename="../VBoxManageList.cpp" line="2201"/>
    7651         <location filename="../VBoxManageList.cpp" line="2206"/>
    7652         <location filename="../VBoxManageList.cpp" line="2208"/>
     7415        <location filename="../VBoxManageList.cpp" line="184"/>
     7416        <location filename="../VBoxManageList.cpp" line="1069"/>
    76537417        <source>No</source>
    76547418        <translation type="unfinished"></translation>
    76557419    </message>
    76567420    <message>
    7657         <location filename="../VBoxManageList.cpp" line="189"/>
     7421        <location filename="../VBoxManageList.cpp" line="187"/>
    76587422        <source>Status:          %s
    76597423</source>
     
    76617425    </message>
    76627426    <message>
    7663         <location filename="../VBoxManageList.cpp" line="192"/>
    7664         <location filename="../VBoxManageList.cpp" line="238"/>
    7665         <location filename="../VBoxManageList.cpp" line="281"/>
     7427        <location filename="../VBoxManageList.cpp" line="190"/>
     7428        <location filename="../VBoxManageList.cpp" line="236"/>
     7429        <location filename="../VBoxManageList.cpp" line="279"/>
    76667430        <source>VBoxNetworkName: %ls
    76677431
     
    76707434    </message>
    76717435    <message>
    7672         <location filename="../VBoxManageList.cpp" line="223"/>
    7673         <location filename="../VBoxManageList.cpp" line="269"/>
     7436        <location filename="../VBoxManageList.cpp" line="221"/>
     7437        <location filename="../VBoxManageList.cpp" line="267"/>
    76747438        <source>State:           %s
    76757439</source>
     
    76777441    </message>
    76787442    <message>
    7679         <location filename="../VBoxManageList.cpp" line="230"/>
     7443        <location filename="../VBoxManageList.cpp" line="228"/>
    76807444        <source>LowerIP:         %ls
    76817445</source>
     
    76837447    </message>
    76847448    <message>
    7685         <location filename="../VBoxManageList.cpp" line="233"/>
     7449        <location filename="../VBoxManageList.cpp" line="231"/>
    76867450        <source>UpperIP:         %ls
    76877451</source>
     
    76897453    </message>
    76907454    <message>
    7691         <location filename="../VBoxManageList.cpp" line="273"/>
     7455        <location filename="../VBoxManageList.cpp" line="271"/>
    76927456        <source>CloudProvider:   %ls
    76937457</source>
     
    76957459    </message>
    76967460    <message>
    7697         <location filename="../VBoxManageList.cpp" line="276"/>
     7461        <location filename="../VBoxManageList.cpp" line="274"/>
    76987462        <source>CloudProfile:    %ls
    76997463</source>
     
    77017465    </message>
    77027466    <message>
    7703         <location filename="../VBoxManageList.cpp" line="279"/>
     7467        <location filename="../VBoxManageList.cpp" line="277"/>
    77047468        <source>CloudNetworkId:  %ls
    77057469</source>
     
    77077471    </message>
    77087472    <message>
     7473        <location filename="../VBoxManageList.cpp" line="301"/>
     7474        <source>HW virtualization</source>
     7475        <translation type="unfinished"></translation>
     7476    </message>
     7477    <message>
    77097478        <location filename="../VBoxManageList.cpp" line="303"/>
    7710         <source>HW virtualization</source>
     7479        <source>long mode</source>
     7480        <translation type="unfinished"></translation>
     7481    </message>
     7482    <message>
     7483        <location filename="../VBoxManageList.cpp" line="304"/>
     7484        <source>nested paging</source>
    77117485        <translation type="unfinished"></translation>
    77127486    </message>
    77137487    <message>
    77147488        <location filename="../VBoxManageList.cpp" line="305"/>
    7715         <source>long mode</source>
     7489        <source>unrestricted guest</source>
    77167490        <translation type="unfinished"></translation>
    77177491    </message>
    77187492    <message>
    77197493        <location filename="../VBoxManageList.cpp" line="306"/>
    7720         <source>nested paging</source>
     7494        <source>nested HW virtualization</source>
    77217495        <translation type="unfinished"></translation>
    77227496    </message>
    77237497    <message>
    77247498        <location filename="../VBoxManageList.cpp" line="307"/>
    7725         <source>unrestricted guest</source>
    7726         <translation type="unfinished"></translation>
    7727     </message>
    7728     <message>
    7729         <location filename="../VBoxManageList.cpp" line="308"/>
    7730         <source>nested HW virtualization</source>
    7731         <translation type="unfinished"></translation>
    7732     </message>
    7733     <message>
    7734         <location filename="../VBoxManageList.cpp" line="309"/>
    77357499        <source>virt. vmsave/vmload</source>
    77367500        <translation type="unfinished"></translation>
    77377501    </message>
    77387502    <message>
    7739         <location filename="../VBoxManageList.cpp" line="315"/>
     7503        <location filename="../VBoxManageList.cpp" line="313"/>
    77407504        <source>Host Information:
    77417505
     
    77447508    </message>
    77457509    <message>
    7746         <location filename="../VBoxManageList.cpp" line="321"/>
     7510        <location filename="../VBoxManageList.cpp" line="319"/>
    77477511        <source>Host time: %s
    77487512</source>
     
    77507514    </message>
    77517515    <message>
    7752         <location filename="../VBoxManageList.cpp" line="325"/>
     7516        <location filename="../VBoxManageList.cpp" line="323"/>
    77537517        <source>Processor online count: %lu
    77547518</source>
     
    77567520    </message>
    77577521    <message>
    7758         <location filename="../VBoxManageList.cpp" line="328"/>
     7522        <location filename="../VBoxManageList.cpp" line="326"/>
    77597523        <source>Processor count: %lu
    77607524</source>
     
    77627526    </message>
    77637527    <message>
    7764         <location filename="../VBoxManageList.cpp" line="331"/>
     7528        <location filename="../VBoxManageList.cpp" line="329"/>
    77657529        <source>Processor online core count: %lu
    77667530</source>
     
    77687532    </message>
    77697533    <message>
    7770         <location filename="../VBoxManageList.cpp" line="334"/>
     7534        <location filename="../VBoxManageList.cpp" line="332"/>
    77717535        <source>Processor core count: %lu
    77727536</source>
     
    77747538    </message>
    77757539    <message>
    7776         <location filename="../VBoxManageList.cpp" line="339"/>
     7540        <location filename="../VBoxManageList.cpp" line="337"/>
    77777541        <source>Processor supports %s: %s
    77787542</source>
     
    77807544    </message>
    77817545    <message>
    7782         <location filename="../VBoxManageList.cpp" line="339"/>
    7783         <location filename="../VBoxManageList.cpp" line="673"/>
    7784         <location filename="../VBoxManageList.cpp" line="827"/>
    7785         <location filename="../VBoxManageList.cpp" line="880"/>
    7786         <location filename="../VBoxManageList.cpp" line="1779"/>
    7787         <location filename="../VBoxManageList.cpp" line="1784"/>
     7546        <location filename="../VBoxManageList.cpp" line="337"/>
     7547        <location filename="../VBoxManageList.cpp" line="671"/>
     7548        <location filename="../VBoxManageList.cpp" line="825"/>
     7549        <location filename="../VBoxManageList.cpp" line="889"/>
     7550        <location filename="../VBoxManageList.cpp" line="1803"/>
     7551        <location filename="../VBoxManageList.cpp" line="1808"/>
    77887552        <source>yes</source>
    77897553        <translation type="unfinished"></translation>
    77907554    </message>
    77917555    <message>
    7792         <location filename="../VBoxManageList.cpp" line="339"/>
    7793         <location filename="../VBoxManageList.cpp" line="673"/>
    7794         <location filename="../VBoxManageList.cpp" line="827"/>
    7795         <location filename="../VBoxManageList.cpp" line="880"/>
    7796         <location filename="../VBoxManageList.cpp" line="1779"/>
    7797         <location filename="../VBoxManageList.cpp" line="1784"/>
     7556        <location filename="../VBoxManageList.cpp" line="337"/>
     7557        <location filename="../VBoxManageList.cpp" line="671"/>
     7558        <location filename="../VBoxManageList.cpp" line="825"/>
     7559        <location filename="../VBoxManageList.cpp" line="889"/>
     7560        <location filename="../VBoxManageList.cpp" line="1803"/>
     7561        <location filename="../VBoxManageList.cpp" line="1808"/>
    77987562        <source>no</source>
    77997563        <translation type="unfinished"></translation>
    78007564    </message>
    78017565    <message>
     7566        <location filename="../VBoxManageList.cpp" line="344"/>
     7567        <source>Processor#%u speed: %lu MHz
     7568</source>
     7569        <translation type="unfinished"></translation>
     7570    </message>
     7571    <message>
    78027572        <location filename="../VBoxManageList.cpp" line="346"/>
    7803         <source>Processor#%u speed: %lu MHz
    7804 </source>
    7805         <translation type="unfinished"></translation>
    7806     </message>
    7807     <message>
    7808         <location filename="../VBoxManageList.cpp" line="348"/>
    78097573        <source>Processor#%u speed: unknown
    78107574</source>
     
    78127576    </message>
    78137577    <message>
    7814         <location filename="../VBoxManageList.cpp" line="351"/>
     7578        <location filename="../VBoxManageList.cpp" line="349"/>
    78157579        <source>Processor#%u description: %ls
    78167580</source>
     
    78187582    </message>
    78197583    <message numerus="yes">
    7820         <location filename="../VBoxManageList.cpp" line="356"/>
     7584        <location filename="../VBoxManageList.cpp" line="354"/>
    78217585        <source>Memory size: %lu MByte
    78227586</source>
     
    78267590    </message>
    78277591    <message numerus="yes">
    7828         <location filename="../VBoxManageList.cpp" line="360"/>
     7592        <location filename="../VBoxManageList.cpp" line="358"/>
    78297593        <source>Memory available: %lu MByte
    78307594</source>
     
    78347598    </message>
    78357599    <message>
    7836         <location filename="../VBoxManageList.cpp" line="364"/>
     7600        <location filename="../VBoxManageList.cpp" line="362"/>
    78377601        <source>Operating system: %ls
    78387602</source>
     
    78407604    </message>
    78417605    <message>
    7842         <location filename="../VBoxManageList.cpp" line="368"/>
     7606        <location filename="../VBoxManageList.cpp" line="366"/>
    78437607        <source>Operating system version: %ls
    78447608</source>
     
    78467610    </message>
    78477611    <message>
    7848         <location filename="../VBoxManageList.cpp" line="426"/>
     7612        <location filename="../VBoxManageList.cpp" line="424"/>
    78497613        <source>Supported hard disk backends:
    78507614
     
    78537617    </message>
    78547618    <message>
    7855         <location filename="../VBoxManageList.cpp" line="445"/>
     7619        <location filename="../VBoxManageList.cpp" line="443"/>
    78567620        <source>Backend %u: id=&apos;%ls&apos; description=&apos;%ls&apos; capabilities=%#06x extensions=&apos;</source>
    78577621        <translation type="unfinished"></translation>
    78587622    </message>
    78597623    <message>
    7860         <location filename="../VBoxManageList.cpp" line="474"/>
     7624        <location filename="../VBoxManageList.cpp" line="472"/>
    78617625        <source> properties=(</source>
    78627626        <translation type="unfinished"></translation>
    78637627    </message>
    78647628    <message>
    7865         <location filename="../VBoxManageList.cpp" line="479"/>
     7629        <location filename="../VBoxManageList.cpp" line="477"/>
    78667630        <source>
    78677631  name=&apos;%ls&apos; desc=&apos;%ls&apos; type=</source>
     
    78697633    </message>
    78707634    <message>
     7635        <location filename="../VBoxManageList.cpp" line="481"/>
     7636        <source>int</source>
     7637        <translation type="unfinished"></translation>
     7638    </message>
     7639    <message>
     7640        <location filename="../VBoxManageList.cpp" line="482"/>
     7641        <source>byte</source>
     7642        <translation type="unfinished"></translation>
     7643    </message>
     7644    <message>
    78717645        <location filename="../VBoxManageList.cpp" line="483"/>
    7872         <source>int</source>
    7873         <translation type="unfinished"></translation>
    7874     </message>
    7875     <message>
    7876         <location filename="../VBoxManageList.cpp" line="484"/>
    7877         <source>byte</source>
    7878         <translation type="unfinished"></translation>
    7879     </message>
    7880     <message>
    7881         <location filename="../VBoxManageList.cpp" line="485"/>
    78827646        <source>string</source>
    78837647        <translation type="unfinished"></translation>
    78847648    </message>
    78857649    <message>
    7886         <location filename="../VBoxManageList.cpp" line="490"/>
     7650        <location filename="../VBoxManageList.cpp" line="488"/>
    78877651        <source> flags=%#04x</source>
    78887652        <translation type="unfinished"></translation>
    78897653    </message>
    78907654    <message>
    7891         <location filename="../VBoxManageList.cpp" line="491"/>
     7655        <location filename="../VBoxManageList.cpp" line="489"/>
    78927656        <source> default=&apos;%ls&apos;</source>
    78937657        <translation type="unfinished"></translation>
    78947658    </message>
    78957659    <message>
    7896         <location filename="../VBoxManageList.cpp" line="517"/>
     7660        <location filename="../VBoxManageList.cpp" line="515"/>
    78977661        <source>Host USB Devices:
    78987662
     
    79017665    </message>
    79027666    <message>
    7903         <location filename="../VBoxManageList.cpp" line="521"/>
    7904         <location filename="../VBoxManageList.cpp" line="659"/>
     7667        <location filename="../VBoxManageList.cpp" line="519"/>
     7668        <location filename="../VBoxManageList.cpp" line="657"/>
    79057669        <source>&lt;none&gt;
    79067670
     
    79097673    </message>
    79107674    <message>
    7911         <location filename="../VBoxManageList.cpp" line="545"/>
     7675        <location filename="../VBoxManageList.cpp" line="543"/>
    79127676        <source>UUID:               %s
    79137677VendorId:           %#06x (%04X)
     
    79197683    </message>
    79207684    <message>
    7921         <location filename="../VBoxManageList.cpp" line="561"/>
     7685        <location filename="../VBoxManageList.cpp" line="559"/>
    79227686        <source>Low</source>
    79237687        <translation type="unfinished"></translation>
    79247688    </message>
    79257689    <message>
    7926         <location filename="../VBoxManageList.cpp" line="564"/>
     7690        <location filename="../VBoxManageList.cpp" line="562"/>
    79277691        <source>Full</source>
    79287692        <translation type="unfinished"></translation>
    79297693    </message>
    79307694    <message>
    7931         <location filename="../VBoxManageList.cpp" line="567"/>
     7695        <location filename="../VBoxManageList.cpp" line="565"/>
    79327696        <source>High</source>
    79337697        <translation type="unfinished"></translation>
    79347698    </message>
    79357699    <message>
    7936         <location filename="../VBoxManageList.cpp" line="570"/>
     7700        <location filename="../VBoxManageList.cpp" line="568"/>
    79377701        <source>Super</source>
    79387702        <translation type="unfinished"></translation>
    79397703    </message>
    79407704    <message>
    7941         <location filename="../VBoxManageList.cpp" line="573"/>
     7705        <location filename="../VBoxManageList.cpp" line="571"/>
    79427706        <source>SuperPlus</source>
    79437707        <translation type="unfinished"></translation>
    79447708    </message>
    79457709    <message>
    7946         <location filename="../VBoxManageList.cpp" line="580"/>
     7710        <location filename="../VBoxManageList.cpp" line="578"/>
    79477711        <source>USB version/speed:  %u/%s
    79487712</source>
     
    79507714    </message>
    79517715    <message>
    7952         <location filename="../VBoxManageList.cpp" line="589"/>
     7716        <location filename="../VBoxManageList.cpp" line="587"/>
    79537717        <source>Manufacturer:       %ls
    79547718</source>
     
    79567720    </message>
    79577721    <message>
    7958         <location filename="../VBoxManageList.cpp" line="593"/>
     7722        <location filename="../VBoxManageList.cpp" line="591"/>
    79597723        <source>Product:            %ls
    79607724</source>
     
    79627726    </message>
    79637727    <message>
    7964         <location filename="../VBoxManageList.cpp" line="596"/>
     7728        <location filename="../VBoxManageList.cpp" line="594"/>
    79657729        <source>SerialNumber:       %ls
    79667730</source>
     
    79687732    </message>
    79697733    <message>
    7970         <location filename="../VBoxManageList.cpp" line="599"/>
     7734        <location filename="../VBoxManageList.cpp" line="597"/>
    79717735        <source>Address:            %ls
    79727736</source>
     
    79747738    </message>
    79757739    <message>
    7976         <location filename="../VBoxManageList.cpp" line="602"/>
     7740        <location filename="../VBoxManageList.cpp" line="600"/>
    79777741        <source>Port path:          %ls
    79787742</source>
     
    79807744    </message>
    79817745    <message>
    7982         <location filename="../VBoxManageList.cpp" line="611"/>
     7746        <location filename="../VBoxManageList.cpp" line="609"/>
    79837747        <source>Not supported</source>
    79847748        <translation type="unfinished"></translation>
    79857749    </message>
    79867750    <message>
    7987         <location filename="../VBoxManageList.cpp" line="614"/>
     7751        <location filename="../VBoxManageList.cpp" line="612"/>
    79887752        <source>Unavailable</source>
    79897753        <translation type="unfinished"></translation>
    79907754    </message>
    79917755    <message>
    7992         <location filename="../VBoxManageList.cpp" line="617"/>
     7756        <location filename="../VBoxManageList.cpp" line="615"/>
    79937757        <source>Busy</source>
    79947758        <translation type="unfinished"></translation>
    79957759    </message>
    79967760    <message>
    7997         <location filename="../VBoxManageList.cpp" line="620"/>
     7761        <location filename="../VBoxManageList.cpp" line="618"/>
    79987762        <source>Available</source>
    79997763        <translation type="unfinished"></translation>
    80007764    </message>
    80017765    <message>
    8002         <location filename="../VBoxManageList.cpp" line="623"/>
     7766        <location filename="../VBoxManageList.cpp" line="621"/>
    80037767        <source>Held</source>
    80047768        <translation type="unfinished"></translation>
    80057769    </message>
    80067770    <message>
    8007         <location filename="../VBoxManageList.cpp" line="626"/>
     7771        <location filename="../VBoxManageList.cpp" line="624"/>
    80087772        <source>Captured</source>
    80097773        <translation type="unfinished"></translation>
    80107774    </message>
    80117775    <message>
    8012         <location filename="../VBoxManageList.cpp" line="632"/>
     7776        <location filename="../VBoxManageList.cpp" line="630"/>
    80137777        <source>Current State:      %s
    80147778
     
    80177781    </message>
    80187782    <message>
    8019         <location filename="../VBoxManageList.cpp" line="649"/>
     7783        <location filename="../VBoxManageList.cpp" line="647"/>
    80207784        <source>Global USB Device Filters:
    80217785
     
    80247788    </message>
    80257789    <message>
    8026         <location filename="../VBoxManageList.cpp" line="669"/>
     7790        <location filename="../VBoxManageList.cpp" line="667"/>
    80277791        <source>Index:            %zu
    80287792</source>
     
    80307794    </message>
    80317795    <message>
    8032         <location filename="../VBoxManageList.cpp" line="673"/>
     7796        <location filename="../VBoxManageList.cpp" line="671"/>
    80337797        <source>Active:           %s
    80347798</source>
     
    80367800    </message>
    80377801    <message>
    8038         <location filename="../VBoxManageList.cpp" line="677"/>
     7802        <location filename="../VBoxManageList.cpp" line="675"/>
    80397803        <source>&lt;invalid&gt;</source>
    80407804        <translation type="unfinished"></translation>
    80417805    </message>
    80427806    <message>
    8043         <location filename="../VBoxManageList.cpp" line="681"/>
     7807        <location filename="../VBoxManageList.cpp" line="679"/>
    80447808        <source>Ignore</source>
    80457809        <translation type="unfinished"></translation>
    80467810    </message>
    80477811    <message>
    8048         <location filename="../VBoxManageList.cpp" line="684"/>
     7812        <location filename="../VBoxManageList.cpp" line="682"/>
    80497813        <source>Hold</source>
    80507814        <translation type="unfinished"></translation>
    80517815    </message>
    80527816    <message>
    8053         <location filename="../VBoxManageList.cpp" line="689"/>
     7817        <location filename="../VBoxManageList.cpp" line="687"/>
    80547818        <source>Action:           %s
    80557819</source>
     
    80577821    </message>
    80587822    <message>
     7823        <location filename="../VBoxManageList.cpp" line="691"/>
     7824        <source>Name:             %ls
     7825</source>
     7826        <translation type="unfinished"></translation>
     7827    </message>
     7828    <message>
    80597829        <location filename="../VBoxManageList.cpp" line="693"/>
    8060         <source>Name:             %ls
     7830        <source>VendorId:         %ls
    80617831</source>
    80627832        <translation type="unfinished"></translation>
     
    80647834    <message>
    80657835        <location filename="../VBoxManageList.cpp" line="695"/>
    8066         <source>VendorId:         %ls
     7836        <source>ProductId:        %ls
    80677837</source>
    80687838        <translation type="unfinished"></translation>
     
    80707840    <message>
    80717841        <location filename="../VBoxManageList.cpp" line="697"/>
    8072         <source>ProductId:        %ls
     7842        <source>Revision:         %ls
    80737843</source>
    80747844        <translation type="unfinished"></translation>
     
    80767846    <message>
    80777847        <location filename="../VBoxManageList.cpp" line="699"/>
    8078         <source>Revision:         %ls
     7848        <source>Manufacturer:     %ls
    80797849</source>
    80807850        <translation type="unfinished"></translation>
     
    80827852    <message>
    80837853        <location filename="../VBoxManageList.cpp" line="701"/>
    8084         <source>Manufacturer:     %ls
     7854        <source>Product:          %ls
    80857855</source>
    80867856        <translation type="unfinished"></translation>
     
    80887858    <message>
    80897859        <location filename="../VBoxManageList.cpp" line="703"/>
    8090         <source>Product:          %ls
    8091 </source>
    8092         <translation type="unfinished"></translation>
    8093     </message>
    8094     <message>
    8095         <location filename="../VBoxManageList.cpp" line="705"/>
    80967860        <source>Serial Number:    %ls
    80977861
     
    81007864    </message>
    81017865    <message>
    8102         <location filename="../VBoxManageList.cpp" line="730"/>
     7866        <location filename="../VBoxManageList.cpp" line="728"/>
    81037867        <source>API version:                     %ls
    81047868</source>
     
    81067870    </message>
    81077871    <message numerus="yes">
    8108         <location filename="../VBoxManageList.cpp" line="733"/>
     7872        <location filename="../VBoxManageList.cpp" line="731"/>
    81097873        <source>Minimum guest RAM size:          %u Megabytes
    81107874</source>
     
    81147878    </message>
    81157879    <message numerus="yes">
    8116         <location filename="../VBoxManageList.cpp" line="735"/>
     7880        <location filename="../VBoxManageList.cpp" line="733"/>
    81177881        <source>Maximum guest RAM size:          %u Megabytes
    81187882</source>
     
    81227886    </message>
    81237887    <message numerus="yes">
    8124         <location filename="../VBoxManageList.cpp" line="737"/>
     7888        <location filename="../VBoxManageList.cpp" line="735"/>
    81257889        <source>Minimum video RAM size:          %u Megabytes
    81267890</source>
     
    81307894    </message>
    81317895    <message numerus="yes">
    8132         <location filename="../VBoxManageList.cpp" line="739"/>
     7896        <location filename="../VBoxManageList.cpp" line="737"/>
    81337897        <source>Maximum video RAM size:          %u Megabytes
    81347898</source>
     
    81387902    </message>
    81397903    <message>
     7904        <location filename="../VBoxManageList.cpp" line="739"/>
     7905        <source>Maximum guest monitor count:     %u
     7906</source>
     7907        <translation type="unfinished"></translation>
     7908    </message>
     7909    <message>
    81407910        <location filename="../VBoxManageList.cpp" line="741"/>
    8141         <source>Maximum guest monitor count:     %u
     7911        <source>Minimum guest CPU count:         %u
    81427912</source>
    81437913        <translation type="unfinished"></translation>
     
    81457915    <message>
    81467916        <location filename="../VBoxManageList.cpp" line="743"/>
    8147         <source>Minimum guest CPU count:         %u
    8148 </source>
    8149         <translation type="unfinished"></translation>
    8150     </message>
    8151     <message>
     7917        <source>Maximum guest CPU count:         %u
     7918</source>
     7919        <translation type="unfinished"></translation>
     7920    </message>
     7921    <message numerus="yes">
    81527922        <location filename="../VBoxManageList.cpp" line="745"/>
    8153         <source>Maximum guest CPU count:         %u
    8154 </source>
    8155         <translation type="unfinished"></translation>
    8156     </message>
    8157     <message numerus="yes">
    8158         <location filename="../VBoxManageList.cpp" line="747"/>
    81597923        <source>Virtual disk limit (info):       %lld Bytes
    81607924</source>
     
    81647928    </message>
    81657929    <message>
     7930        <location filename="../VBoxManageList.cpp" line="747"/>
     7931        <source>Maximum Serial Port count:       %u
     7932</source>
     7933        <translation type="unfinished"></translation>
     7934    </message>
     7935    <message>
    81667936        <location filename="../VBoxManageList.cpp" line="749"/>
    8167         <source>Maximum Serial Port count:       %u
     7937        <source>Maximum Parallel Port count:     %u
    81687938</source>
    81697939        <translation type="unfinished"></translation>
     
    81717941    <message>
    81727942        <location filename="../VBoxManageList.cpp" line="751"/>
    8173         <source>Maximum Parallel Port count:     %u
     7943        <source>Maximum Boot Position:           %u
    81747944</source>
    81757945        <translation type="unfinished"></translation>
     
    81777947    <message>
    81787948        <location filename="../VBoxManageList.cpp" line="753"/>
    8179         <source>Maximum Boot Position:           %u
     7949        <source>Maximum PIIX3 Network Adapter count:   %u
    81807950</source>
    81817951        <translation type="unfinished"></translation>
     
    81837953    <message>
    81847954        <location filename="../VBoxManageList.cpp" line="755"/>
    8185         <source>Maximum PIIX3 Network Adapter count:   %u
     7955        <source>Maximum ICH9 Network Adapter count:   %u
    81867956</source>
    81877957        <translation type="unfinished"></translation>
     
    81897959    <message>
    81907960        <location filename="../VBoxManageList.cpp" line="757"/>
    8191         <source>Maximum ICH9 Network Adapter count:   %u
     7961        <source>Maximum PIIX3 IDE Controllers:   %u
    81927962</source>
    81937963        <translation type="unfinished"></translation>
     
    81957965    <message>
    81967966        <location filename="../VBoxManageList.cpp" line="759"/>
    8197         <source>Maximum PIIX3 IDE Controllers:   %u
     7967        <source>Maximum ICH9 IDE Controllers:    %u
    81987968</source>
    81997969        <translation type="unfinished"></translation>
     
    82017971    <message>
    82027972        <location filename="../VBoxManageList.cpp" line="761"/>
    8203         <source>Maximum ICH9 IDE Controllers:    %u
     7973        <source>Maximum IDE Port count:          %u
    82047974</source>
    82057975        <translation type="unfinished"></translation>
     
    82077977    <message>
    82087978        <location filename="../VBoxManageList.cpp" line="763"/>
    8209         <source>Maximum IDE Port count:          %u
     7979        <source>Maximum Devices per IDE Port:    %u
    82107980</source>
    82117981        <translation type="unfinished"></translation>
     
    82137983    <message>
    82147984        <location filename="../VBoxManageList.cpp" line="765"/>
    8215         <source>Maximum Devices per IDE Port:    %u
     7985        <source>Maximum PIIX3 SATA Controllers:  %u
    82167986</source>
    82177987        <translation type="unfinished"></translation>
     
    82197989    <message>
    82207990        <location filename="../VBoxManageList.cpp" line="767"/>
    8221         <source>Maximum PIIX3 SATA Controllers:  %u
     7991        <source>Maximum ICH9 SATA Controllers:   %u
    82227992</source>
    82237993        <translation type="unfinished"></translation>
     
    82257995    <message>
    82267996        <location filename="../VBoxManageList.cpp" line="769"/>
    8227         <source>Maximum ICH9 SATA Controllers:   %u
     7997        <source>Maximum SATA Port count:         %u
    82287998</source>
    82297999        <translation type="unfinished"></translation>
     
    82318001    <message>
    82328002        <location filename="../VBoxManageList.cpp" line="771"/>
    8233         <source>Maximum SATA Port count:         %u
     8003        <source>Maximum Devices per SATA Port:   %u
    82348004</source>
    82358005        <translation type="unfinished"></translation>
     
    82378007    <message>
    82388008        <location filename="../VBoxManageList.cpp" line="773"/>
    8239         <source>Maximum Devices per SATA Port:   %u
     8009        <source>Maximum PIIX3 SCSI Controllers:  %u
    82408010</source>
    82418011        <translation type="unfinished"></translation>
     
    82438013    <message>
    82448014        <location filename="../VBoxManageList.cpp" line="775"/>
    8245         <source>Maximum PIIX3 SCSI Controllers:  %u
     8015        <source>Maximum ICH9 SCSI Controllers:   %u
    82468016</source>
    82478017        <translation type="unfinished"></translation>
     
    82498019    <message>
    82508020        <location filename="../VBoxManageList.cpp" line="777"/>
    8251         <source>Maximum ICH9 SCSI Controllers:   %u
     8021        <source>Maximum SCSI Port count:         %u
    82528022</source>
    82538023        <translation type="unfinished"></translation>
     
    82558025    <message>
    82568026        <location filename="../VBoxManageList.cpp" line="779"/>
    8257         <source>Maximum SCSI Port count:         %u
     8027        <source>Maximum Devices per SCSI Port:   %u
    82588028</source>
    82598029        <translation type="unfinished"></translation>
     
    82618031    <message>
    82628032        <location filename="../VBoxManageList.cpp" line="781"/>
    8263         <source>Maximum Devices per SCSI Port:   %u
     8033        <source>Maximum SAS PIIX3 Controllers:   %u
    82648034</source>
    82658035        <translation type="unfinished"></translation>
     
    82678037    <message>
    82688038        <location filename="../VBoxManageList.cpp" line="783"/>
    8269         <source>Maximum SAS PIIX3 Controllers:   %u
     8039        <source>Maximum SAS ICH9 Controllers:    %u
    82708040</source>
    82718041        <translation type="unfinished"></translation>
     
    82738043    <message>
    82748044        <location filename="../VBoxManageList.cpp" line="785"/>
    8275         <source>Maximum SAS ICH9 Controllers:    %u
     8045        <source>Maximum SAS Port count:          %u
    82768046</source>
    82778047        <translation type="unfinished"></translation>
     
    82798049    <message>
    82808050        <location filename="../VBoxManageList.cpp" line="787"/>
    8281         <source>Maximum SAS Port count:          %u
     8051        <source>Maximum Devices per SAS Port:    %u
    82828052</source>
    82838053        <translation type="unfinished"></translation>
     
    82858055    <message>
    82868056        <location filename="../VBoxManageList.cpp" line="789"/>
    8287         <source>Maximum Devices per SAS Port:    %u
     8057        <source>Maximum NVMe PIIX3 Controllers:  %u
    82888058</source>
    82898059        <translation type="unfinished"></translation>
     
    82918061    <message>
    82928062        <location filename="../VBoxManageList.cpp" line="791"/>
    8293         <source>Maximum NVMe PIIX3 Controllers:  %u
     8063        <source>Maximum NVMe ICH9 Controllers:   %u
    82948064</source>
    82958065        <translation type="unfinished"></translation>
     
    82978067    <message>
    82988068        <location filename="../VBoxManageList.cpp" line="793"/>
    8299         <source>Maximum NVMe ICH9 Controllers:   %u
     8069        <source>Maximum NVMe Port count:         %u
    83008070</source>
    83018071        <translation type="unfinished"></translation>
     
    83038073    <message>
    83048074        <location filename="../VBoxManageList.cpp" line="795"/>
    8305         <source>Maximum NVMe Port count:         %u
     8075        <source>Maximum Devices per NVMe Port:   %u
    83068076</source>
    83078077        <translation type="unfinished"></translation>
     
    83098079    <message>
    83108080        <location filename="../VBoxManageList.cpp" line="797"/>
    8311         <source>Maximum Devices per NVMe Port:   %u
     8081        <source>Maximum virtio-scsi PIIX3 Controllers:  %u
    83128082</source>
    83138083        <translation type="unfinished"></translation>
     
    83158085    <message>
    83168086        <location filename="../VBoxManageList.cpp" line="799"/>
    8317         <source>Maximum virtio-scsi PIIX3 Controllers:  %u
     8087        <source>Maximum virtio-scsi ICH9 Controllers:   %u
    83188088</source>
    83198089        <translation type="unfinished"></translation>
     
    83218091    <message>
    83228092        <location filename="../VBoxManageList.cpp" line="801"/>
    8323         <source>Maximum virtio-scsi ICH9 Controllers:   %u
     8093        <source>Maximum virtio-scsi Port count:         %u
    83248094</source>
    83258095        <translation type="unfinished"></translation>
     
    83278097    <message>
    83288098        <location filename="../VBoxManageList.cpp" line="803"/>
    8329         <source>Maximum virtio-scsi Port count:         %u
     8099        <source>Maximum Devices per virtio-scsi Port:   %u
    83308100</source>
    83318101        <translation type="unfinished"></translation>
     
    83338103    <message>
    83348104        <location filename="../VBoxManageList.cpp" line="805"/>
    8335         <source>Maximum Devices per virtio-scsi Port:   %u
     8105        <source>Maximum PIIX3 Floppy Controllers:%u
    83368106</source>
    83378107        <translation type="unfinished"></translation>
     
    83398109    <message>
    83408110        <location filename="../VBoxManageList.cpp" line="807"/>
    8341         <source>Maximum PIIX3 Floppy Controllers:%u
     8111        <source>Maximum ICH9 Floppy Controllers: %u
    83428112</source>
    83438113        <translation type="unfinished"></translation>
     
    83458115    <message>
    83468116        <location filename="../VBoxManageList.cpp" line="809"/>
    8347         <source>Maximum ICH9 Floppy Controllers: %u
     8117        <source>Maximum Floppy Port count:      %u
    83488118</source>
    83498119        <translation type="unfinished"></translation>
     
    83518121    <message>
    83528122        <location filename="../VBoxManageList.cpp" line="811"/>
    8353         <source>Maximum Floppy Port count:       %u
    8354 </source>
    8355         <translation type="unfinished"></translation>
    8356     </message>
    8357     <message>
    8358         <location filename="../VBoxManageList.cpp" line="813"/>
    83598123        <source>Maximum Devices per Floppy Port: %u
    83608124</source>
     
    83628126    </message>
    83638127    <message numerus="yes">
    8364         <location filename="../VBoxManageList.cpp" line="816"/>
     8128        <location filename="../VBoxManageList.cpp" line="814"/>
    83658129        <source>Free disk space warning at:      %u Bytes
    83668130</source>
     
    83708134    </message>
    83718135    <message>
     8136        <location filename="../VBoxManageList.cpp" line="816"/>
     8137        <source>Free disk space warning at:      %u %%
     8138</source>
     8139        <translation type="unfinished"></translation>
     8140    </message>
     8141    <message numerus="yes">
    83728142        <location filename="../VBoxManageList.cpp" line="818"/>
    8373         <source>Free disk space warning at:      %u %%
    8374 </source>
    8375         <translation type="unfinished"></translation>
    8376     </message>
    8377     <message numerus="yes">
    8378         <location filename="../VBoxManageList.cpp" line="820"/>
    83798143        <source>Free disk space error at:        %u Bytes
    83808144</source>
     
    83848148    </message>
    83858149    <message>
    8386         <location filename="../VBoxManageList.cpp" line="822"/>
     8150        <location filename="../VBoxManageList.cpp" line="820"/>
    83878151        <source>Free disk space error at:        %u %%
    83888152</source>
     
    83908154    </message>
    83918155    <message>
     8156        <location filename="../VBoxManageList.cpp" line="823"/>
     8157        <source>Default machine folder:          %ls
     8158</source>
     8159        <translation type="unfinished"></translation>
     8160    </message>
     8161    <message>
    83928162        <location filename="../VBoxManageList.cpp" line="825"/>
    8393         <source>Default machine folder:          %ls
     8163        <source>Raw-mode Supported:              %s
    83948164</source>
    83958165        <translation type="unfinished"></translation>
     
    83978167    <message>
    83988168        <location filename="../VBoxManageList.cpp" line="827"/>
    8399         <source>Raw-mode Supported:              %s
    8400 </source>
     8169        <source>Exclusive HW virtualization use: %s
     8170</source>
     8171        <translation type="unfinished"></translation>
     8172    </message>
     8173    <message>
     8174        <location filename="../VBoxManageList.cpp" line="827"/>
     8175        <location filename="../VBoxManageList.cpp" line="1867"/>
     8176        <location filename="../VBoxManageList.cpp" line="1871"/>
     8177        <source>on</source>
     8178        <translation type="unfinished"></translation>
     8179    </message>
     8180    <message>
     8181        <location filename="../VBoxManageList.cpp" line="827"/>
     8182        <location filename="../VBoxManageList.cpp" line="1867"/>
     8183        <location filename="../VBoxManageList.cpp" line="1871"/>
     8184        <source>off</source>
    84018185        <translation type="unfinished"></translation>
    84028186    </message>
    84038187    <message>
    84048188        <location filename="../VBoxManageList.cpp" line="829"/>
    8405         <source>Exclusive HW virtualization use: %s
    8406 </source>
    8407         <translation type="unfinished"></translation>
    8408     </message>
    8409     <message>
    8410         <location filename="../VBoxManageList.cpp" line="829"/>
    8411         <location filename="../VBoxManageList.cpp" line="1843"/>
    8412         <location filename="../VBoxManageList.cpp" line="1847"/>
    8413         <source>on</source>
    8414         <translation type="unfinished"></translation>
    8415     </message>
    8416     <message>
    8417         <location filename="../VBoxManageList.cpp" line="829"/>
    8418         <location filename="../VBoxManageList.cpp" line="1843"/>
    8419         <location filename="../VBoxManageList.cpp" line="1847"/>
    8420         <source>off</source>
     8189        <source>Default hard disk format:        %ls
     8190</source>
    84218191        <translation type="unfinished"></translation>
    84228192    </message>
    84238193    <message>
    84248194        <location filename="../VBoxManageList.cpp" line="831"/>
    8425         <source>Default hard disk format:        %ls
     8195        <source>VRDE auth library:               %ls
    84268196</source>
    84278197        <translation type="unfinished"></translation>
     
    84298199    <message>
    84308200        <location filename="../VBoxManageList.cpp" line="833"/>
    8431         <source>VRDE auth library:               %ls
     8201        <source>Webservice auth. library:        %ls
    84328202</source>
    84338203        <translation type="unfinished"></translation>
     
    84358205    <message>
    84368206        <location filename="../VBoxManageList.cpp" line="835"/>
    8437         <source>Webservice auth. library:        %ls
     8207        <source>Remote desktop ExtPack:          %ls
    84388208</source>
    84398209        <translation type="unfinished"></translation>
     
    84418211    <message>
    84428212        <location filename="../VBoxManageList.cpp" line="837"/>
    8443         <source>Remote desktop ExtPack:          %ls
     8213        <source>Log history count:               %u
    84448214</source>
    84458215        <translation type="unfinished"></translation>
     
    84478217    <message>
    84488218        <location filename="../VBoxManageList.cpp" line="839"/>
    8449         <source>Log history count:               %u
    8450 </source>
    8451         <translation type="unfinished"></translation>
    8452     </message>
    8453     <message>
    8454         <location filename="../VBoxManageList.cpp" line="841"/>
    84558219        <source>Default frontend:                %ls
    84568220</source>
     
    84588222    </message>
    84598223    <message>
    8460         <location filename="../VBoxManageList.cpp" line="846"/>
     8224        <location filename="../VBoxManageList.cpp" line="844"/>
    84618225        <source>Null</source>
    84628226        <translation type="unfinished"></translation>
    84638227    </message>
    84648228    <message>
     8229        <location filename="../VBoxManageList.cpp" line="855"/>
     8230        <source>Default audio driver:            %s
     8231</source>
     8232        <translation type="unfinished"></translation>
     8233    </message>
     8234    <message>
    84658235        <location filename="../VBoxManageList.cpp" line="857"/>
    8466         <source>Default audio driver:            %s
     8236        <source>Autostart database path:         %ls
    84678237</source>
    84688238        <translation type="unfinished"></translation>
     
    84708240    <message>
    84718241        <location filename="../VBoxManageList.cpp" line="859"/>
    8472         <source>Autostart database path:         %ls
     8242        <source>Default Guest Additions ISO:     %ls
    84738243</source>
    84748244        <translation type="unfinished"></translation>
     
    84768246    <message>
    84778247        <location filename="../VBoxManageList.cpp" line="861"/>
    8478         <source>Default Guest Additions ISO:     %ls
    8479 </source>
    8480         <translation type="unfinished"></translation>
    8481     </message>
    8482     <message>
    8483         <location filename="../VBoxManageList.cpp" line="863"/>
    84848248        <source>Logging Level:                   %ls
    84858249</source>
     
    84878251    </message>
    84888252    <message>
     8253        <location filename="../VBoxManageList.cpp" line="867"/>
     8254        <source>System</source>
     8255        <translation type="unfinished"></translation>
     8256    </message>
     8257    <message>
     8258        <location filename="../VBoxManageList.cpp" line="868"/>
     8259        <source>NoProxy</source>
     8260        <translation type="unfinished"></translation>
     8261    </message>
     8262    <message>
    84898263        <location filename="../VBoxManageList.cpp" line="869"/>
    8490         <source>System</source>
    8491         <translation type="unfinished"></translation>
    8492     </message>
    8493     <message>
    8494         <location filename="../VBoxManageList.cpp" line="870"/>
    8495         <source>NoProxy</source>
    8496         <translation type="unfinished"></translation>
    8497     </message>
    8498     <message>
    8499         <location filename="../VBoxManageList.cpp" line="871"/>
    85008264        <source>Manual</source>
    85018265        <translation type="unfinished"></translation>
    85028266    </message>
    85038267    <message>
     8268        <location filename="../VBoxManageList.cpp" line="874"/>
     8269        <source>Proxy Mode:                      %s
     8270</source>
     8271        <translation type="unfinished"></translation>
     8272    </message>
     8273    <message>
    85048274        <location filename="../VBoxManageList.cpp" line="876"/>
    8505         <source>Proxy Mode:                      %s
    8506 </source>
    8507         <translation type="unfinished"></translation>
    8508     </message>
    8509     <message>
    8510         <location filename="../VBoxManageList.cpp" line="878"/>
    85118275        <source>Proxy URL:                       %ls
    85128276</source>
     
    85148278    </message>
    85158279    <message>
    8516         <location filename="../VBoxManageList.cpp" line="880"/>
    8517         <source>Update check enabled:            %s
    8518 </source>
    8519         <translation type="unfinished"></translation>
    8520     </message>
    8521     <message>
    8522         <location filename="../VBoxManageList.cpp" line="882"/>
    8523         <source>Update check count:              %u
    8524 </source>
    8525         <translation type="unfinished"></translation>
    8526     </message>
    8527     <message>
    8528         <location filename="../VBoxManageList.cpp" line="885"/>
    8529         <source>Update check frequency:          never
    8530 </source>
    8531         <translation type="unfinished"></translation>
    8532     </message>
    8533     <message>
    8534         <location filename="../VBoxManageList.cpp" line="887"/>
    8535         <source>Update check frequency:          every day
     8280        <location filename="../VBoxManageList.cpp" line="908"/>
     8281        <source>Stable: new minor and maintenance releases</source>
     8282        <translation type="unfinished"></translation>
     8283    </message>
     8284    <message>
     8285        <location filename="../VBoxManageList.cpp" line="911"/>
     8286        <source>All releases: new minor, maintenance, and major releases</source>
     8287        <translation type="unfinished"></translation>
     8288    </message>
     8289    <message>
     8290        <location filename="../VBoxManageList.cpp" line="914"/>
     8291        <source>With Betas: new minor, maintenance, major, and beta releases</source>
     8292        <translation type="unfinished"></translation>
     8293    </message>
     8294    <message>
     8295        <location filename="../VBoxManageList.cpp" line="917"/>
     8296        <source>Unset</source>
     8297        <translation type="unfinished"></translation>
     8298    </message>
     8299    <message>
     8300        <location filename="../VBoxManageList.cpp" line="924"/>
     8301        <source>Last check date:                 %ls
     8302</source>
     8303        <translation type="unfinished"></translation>
     8304    </message>
     8305    <message>
     8306        <location filename="../VBoxManageList.cpp" line="879"/>
     8307        <source>User language:                   %ls
     8308</source>
     8309        <translation type="unfinished"></translation>
     8310    </message>
     8311    <message>
     8312        <location filename="../VBoxManageList.cpp" line="889"/>
     8313        <source>Enabled:                      %s
     8314</source>
     8315        <translation type="unfinished"></translation>
     8316    </message>
     8317    <message>
     8318        <location filename="../VBoxManageList.cpp" line="892"/>
     8319        <source>Check count:                  %u
     8320</source>
     8321        <translation type="unfinished"></translation>
     8322    </message>
     8323    <message>
     8324        <location filename="../VBoxManageList.cpp" line="895"/>
     8325        <source>Check frequency:              never
     8326</source>
     8327        <translation type="unfinished"></translation>
     8328    </message>
     8329    <message>
     8330        <location filename="../VBoxManageList.cpp" line="897"/>
     8331        <source>Check frequency:              every day
    85368332</source>
    85378333        <translation type="unfinished"></translation>
    85388334    </message>
    85398335    <message numerus="yes">
    8540         <location filename="../VBoxManageList.cpp" line="889"/>
    8541         <source>Update check frequency:          every %u days
     8336        <location filename="../VBoxManageList.cpp" line="899"/>
     8337        <source>Check frequency:              every %u days
    85428338</source>
    85438339        <translation type="unfinished">
     
    85468342    </message>
    85478343    <message>
    8548         <location filename="../VBoxManageList.cpp" line="895"/>
    8549         <source>Stable: new minor and maintenance releases</source>
    8550         <translation type="unfinished"></translation>
    8551     </message>
    8552     <message>
    8553         <location filename="../VBoxManageList.cpp" line="898"/>
    8554         <source>All releases: new minor, maintenance, and major releases</source>
    8555         <translation type="unfinished"></translation>
    8556     </message>
    8557     <message>
    8558         <location filename="../VBoxManageList.cpp" line="901"/>
    8559         <source>With Betas: new minor, maintenance, major, and beta releases</source>
    8560         <translation type="unfinished"></translation>
    8561     </message>
    8562     <message>
    8563         <location filename="../VBoxManageList.cpp" line="904"/>
    8564         <source>Unset</source>
    8565         <translation type="unfinished"></translation>
    8566     </message>
    8567     <message>
    8568         <location filename="../VBoxManageList.cpp" line="907"/>
    8569         <source>Update check target:             %s
    8570 </source>
    8571         <translation type="unfinished"></translation>
    8572     </message>
    8573     <message>
    8574         <location filename="../VBoxManageList.cpp" line="909"/>
    8575         <source>Last check date:                 %ls
    8576 </source>
    8577         <translation type="unfinished"></translation>
    8578     </message>
    8579     <message>
    8580         <location filename="../VBoxManageList.cpp" line="912"/>
    8581         <source>User language:                   %ls
    8582 </source>
    8583         <translation type="unfinished"></translation>
    8584     </message>
    8585     <message>
    8586         <location filename="../VBoxManageList.cpp" line="928"/>
     8344        <location filename="../VBoxManageList.cpp" line="920"/>
     8345        <source>Channel:                         %s
     8346</source>
     8347        <translation type="unfinished"></translation>
     8348    </message>
     8349    <message>
     8350        <location filename="../VBoxManageList.cpp" line="922"/>
     8351        <source>Repository:                      %ls
     8352</source>
     8353        <translation type="unfinished"></translation>
     8354    </message>
     8355    <message>
     8356        <location filename="../VBoxManageList.cpp" line="952"/>
    85878357        <source>    minLeaseTime:     default
    85888358</source>
     
    85908360    </message>
    85918361    <message>
    8592         <location filename="../VBoxManageList.cpp" line="930"/>
     8362        <location filename="../VBoxManageList.cpp" line="954"/>
    85938363        <source>    minLeaseTime:     %u sec
    85948364</source>
     
    85968366    </message>
    85978367    <message>
    8598         <location filename="../VBoxManageList.cpp" line="935"/>
     8368        <location filename="../VBoxManageList.cpp" line="959"/>
    85998369        <source>    defaultLeaseTime: default
    86008370</source>
     
    86028372    </message>
    86038373    <message>
    8604         <location filename="../VBoxManageList.cpp" line="937"/>
     8374        <location filename="../VBoxManageList.cpp" line="961"/>
    86058375        <source>    defaultLeaseTime: %u sec
    86068376</source>
     
    86088378    </message>
    86098379    <message>
    8610         <location filename="../VBoxManageList.cpp" line="942"/>
     8380        <location filename="../VBoxManageList.cpp" line="966"/>
    86118381        <source>    maxLeaseTime:     default
    86128382</source>
     
    86148384    </message>
    86158385    <message>
    8616         <location filename="../VBoxManageList.cpp" line="944"/>
     8386        <location filename="../VBoxManageList.cpp" line="968"/>
    86178387        <source>    maxLeaseTime:     %u sec
    86188388</source>
     
    86208390    </message>
    86218391    <message>
    8622         <location filename="../VBoxManageList.cpp" line="950"/>
     8392        <location filename="../VBoxManageList.cpp" line="974"/>
    86238393        <source>    Forced options:   %Rhrc
    86248394</source>
     
    86268396    </message>
    86278397    <message>
    8628         <location filename="../VBoxManageList.cpp" line="952"/>
     8398        <location filename="../VBoxManageList.cpp" line="976"/>
    86298399        <source>    Forced options:   None
    86308400</source>
     
    86328402    </message>
    86338403    <message>
    8634         <location filename="../VBoxManageList.cpp" line="955"/>
     8404        <location filename="../VBoxManageList.cpp" line="979"/>
    86358405        <source>    Forced options:   </source>
    86368406        <translation type="unfinished"></translation>
    86378407    </message>
    86388408    <message>
    8639         <location filename="../VBoxManageList.cpp" line="963"/>
     8409        <location filename="../VBoxManageList.cpp" line="987"/>
    86408410        <source>    Suppressed opt.s: %Rhrc
    86418411</source>
     
    86438413    </message>
    86448414    <message>
    8645         <location filename="../VBoxManageList.cpp" line="965"/>
     8415        <location filename="../VBoxManageList.cpp" line="989"/>
    86468416        <source>    Suppressed opts.: None
    86478417</source>
     
    86498419    </message>
    86508420    <message>
    8651         <location filename="../VBoxManageList.cpp" line="968"/>
     8421        <location filename="../VBoxManageList.cpp" line="992"/>
    86528422        <source>    Suppressed opts.: </source>
    86538423        <translation type="unfinished"></translation>
    86548424    </message>
    86558425    <message>
    8656         <location filename="../VBoxManageList.cpp" line="980"/>
     8426        <location filename="../VBoxManageList.cpp" line="1004"/>
    86578427        <source>    DHCP options:     %Rhrc
    86588428</source>
     
    86608430    </message>
    86618431    <message>
    8662         <location filename="../VBoxManageList.cpp" line="983"/>
     8432        <location filename="../VBoxManageList.cpp" line="1007"/>
    86638433        <source>    DHCP options:     Return count mismatch: %zu, %zu, %zu
    86648434</source>
     
    86668436    </message>
    86678437    <message>
    8668         <location filename="../VBoxManageList.cpp" line="988"/>
     8438        <location filename="../VBoxManageList.cpp" line="1012"/>
    86698439        <source>    DHCP options:     None
    86708440</source>
     
    86728442    </message>
    86738443    <message>
    8674         <location filename="../VBoxManageList.cpp" line="995"/>
     8444        <location filename="../VBoxManageList.cpp" line="1019"/>
    86758445        <source>      %3d/legacy: %ls
    86768446</source>
     
    86788448    </message>
    86798449    <message>
    8680         <location filename="../VBoxManageList.cpp" line="1029"/>
    8681         <location filename="../VBoxManageList.cpp" line="2192"/>
     8450        <location filename="../VBoxManageList.cpp" line="1053"/>
    86828451        <source>NetworkName:    %ls
    86838452</source>
     
    86858454    </message>
    86868455    <message>
    8687         <location filename="../VBoxManageList.cpp" line="1035"/>
     8456        <location filename="../VBoxManageList.cpp" line="1059"/>
    86888457        <source>LowerIPAddress: %ls
    86898458</source>
     
    86918460    </message>
    86928461    <message>
    8693         <location filename="../VBoxManageList.cpp" line="1038"/>
     8462        <location filename="../VBoxManageList.cpp" line="1062"/>
    86948463        <source>UpperIPAddress: %ls
    86958464</source>
     
    86978466    </message>
    86988467    <message>
    8699         <location filename="../VBoxManageList.cpp" line="1041"/>
     8468        <location filename="../VBoxManageList.cpp" line="1065"/>
    87008469        <source>NetworkMask:    %ls
    87018470</source>
     
    87038472    </message>
    87048473    <message>
    8705         <location filename="../VBoxManageList.cpp" line="1045"/>
    8706         <location filename="../VBoxManageList.cpp" line="2208"/>
     8474        <location filename="../VBoxManageList.cpp" line="1069"/>
    87078475        <source>Enabled:        %s
    87088476</source>
     
    87108478    </message>
    87118479    <message>
    8712         <location filename="../VBoxManageList.cpp" line="1048"/>
     8480        <location filename="../VBoxManageList.cpp" line="1072"/>
    87138481        <source>Global Configuration:
    87148482</source>
     
    87168484    </message>
    87178485    <message>
    8718         <location filename="../VBoxManageList.cpp" line="1063"/>
     8486        <location filename="../VBoxManageList.cpp" line="1087"/>
    87198487        <source>Groups:               %Rrc
    87208488</source>
     
    87228490    </message>
    87238491    <message>
    8724         <location filename="../VBoxManageList.cpp" line="1065"/>
     8492        <location filename="../VBoxManageList.cpp" line="1089"/>
    87258493        <source>Groups:               None
    87268494</source>
     
    87288496    </message>
    87298497    <message>
    8730         <location filename="../VBoxManageList.cpp" line="1071"/>
     8498        <location filename="../VBoxManageList.cpp" line="1095"/>
    87318499        <source>Group:                %ls
    87328500</source>
     
    87348502    </message>
    87358503    <message>
    8736         <location filename="../VBoxManageList.cpp" line="1076"/>
     8504        <location filename="../VBoxManageList.cpp" line="1100"/>
    87378505        <source>    Conditions:       %Rhrc
    87388506</source>
     
    87408508    </message>
    87418509    <message>
    8742         <location filename="../VBoxManageList.cpp" line="1078"/>
     8510        <location filename="../VBoxManageList.cpp" line="1102"/>
    87438511        <source>    Conditions:       None
    87448512</source>
     
    87468514    </message>
    87478515    <message>
    8748         <location filename="../VBoxManageList.cpp" line="1088"/>
     8516        <location filename="../VBoxManageList.cpp" line="1112"/>
    87498517        <source>    Conditions:       %s %s %ls
    87508518</source>
     
    87528520    </message>
    87538521    <message>
    8754         <location filename="../VBoxManageList.cpp" line="1089"/>
     8522        <location filename="../VBoxManageList.cpp" line="1113"/>
    87558523        <source>include</source>
    87568524        <translation type="unfinished"></translation>
    87578525    </message>
    87588526    <message>
    8759         <location filename="../VBoxManageList.cpp" line="1089"/>
     8527        <location filename="../VBoxManageList.cpp" line="1113"/>
    87608528        <source>exclude</source>
    87618529        <translation type="unfinished"></translation>
    87628530    </message>
    87638531    <message>
    8764         <location filename="../VBoxManageList.cpp" line="1111"/>
     8532        <location filename="../VBoxManageList.cpp" line="1135"/>
    87658533        <source>Individual Configs:   %Rrc
    87668534</source>
     
    87688536    </message>
    87698537    <message>
    8770         <location filename="../VBoxManageList.cpp" line="1113"/>
     8538        <location filename="../VBoxManageList.cpp" line="1137"/>
    87718539        <source>Individual Configs:   None
    87728540</source>
     
    87748542    </message>
    87758543    <message>
    8776         <location filename="../VBoxManageList.cpp" line="1124"/>
     8544        <location filename="../VBoxManageList.cpp" line="1148"/>
    87778545        <source>Individual Config:    MAC %ls
    87788546</source>
     
    87808548    </message>
    87818549    <message>
    8782         <location filename="../VBoxManageList.cpp" line="1134"/>
     8550        <location filename="../VBoxManageList.cpp" line="1158"/>
    87838551        <source>Individual Config:    VM NIC: %ls slot %u, MAC %ls
    87848552</source>
     
    87868554    </message>
    87878555    <message>
    8788         <location filename="../VBoxManageList.cpp" line="1137"/>
     8556        <location filename="../VBoxManageList.cpp" line="1161"/>
    87898557        <source>Individual Config:    VM NIC: %ls slot %u, MAC %Rhrc
    87908558</source>
     
    87928560    </message>
    87938561    <message>
    8794         <location filename="../VBoxManageList.cpp" line="1142"/>
     8562        <location filename="../VBoxManageList.cpp" line="1166"/>
    87958563        <source>    Fixed Address:    %ls
    87968564</source>
     
    87988566    </message>
    87998567    <message>
    8800         <location filename="../VBoxManageList.cpp" line="1144"/>
     8568        <location filename="../VBoxManageList.cpp" line="1168"/>
    88018569        <source>    Fixed Address:    dynamic
    88028570</source>
     
    88048572    </message>
    88058573    <message>
    8806         <location filename="../VBoxManageList.cpp" line="1170"/>
     8574        <location filename="../VBoxManageList.cpp" line="1194"/>
    88078575        <source>Extension Packs: %u
    88088576</source>
     
    88108578    </message>
    88118579    <message>
    8812         <location filename="../VBoxManageList.cpp" line="1196"/>
     8580        <location filename="../VBoxManageList.cpp" line="1220"/>
    88138581        <source>Pack no.%2zu:   %ls
    88148582Version:      %ls
     
    88238591    </message>
    88248592    <message>
    8825         <location filename="../VBoxManageList.cpp" line="1252"/>
     8593        <location filename="../VBoxManageList.cpp" line="1276"/>
    88268594        <source>Video Input Devices: %u
    88278595</source>
     
    88298597    </message>
    88308598    <message numerus="yes">
    8831         <location filename="../VBoxManageList.cpp" line="1281"/>
     8599        <location filename="../VBoxManageList.cpp" line="1305"/>
    88328600        <source>Supported %d screen shot formats:
    88338601</source>
     
    88378605    </message>
    88388606    <message numerus="yes">
    8839         <location filename="../VBoxManageList.cpp" line="1310"/>
     8607        <location filename="../VBoxManageList.cpp" line="1334"/>
    88408608        <source>Supported %d cloud providers:
    88418609</source>
     
    88458613    </message>
    88468614    <message>
    8847         <location filename="../VBoxManageList.cpp" line="1318"/>
     8615        <location filename="../VBoxManageList.cpp" line="1342"/>
    88488616        <source>Short Name:      %ls
    88498617</source>
     
    88518619    </message>
    88528620    <message>
    8853         <location filename="../VBoxManageList.cpp" line="1354"/>
     8621        <location filename="../VBoxManageList.cpp" line="1378"/>
    88548622        <source>Name:          %ls
    88558623</source>
     
    88578625    </message>
    88588626    <message>
    8859         <location filename="../VBoxManageList.cpp" line="1357"/>
     8627        <location filename="../VBoxManageList.cpp" line="1381"/>
    88608628        <source>Provider GUID: %ls
    88618629</source>
     
    88638631    </message>
    88648632    <message>
    8865         <location filename="../VBoxManageList.cpp" line="1373"/>
     8633        <location filename="../VBoxManageList.cpp" line="1397"/>
    88668634        <source>Property:      </source>
    88678635        <translation type="unfinished"></translation>
    88688636    </message>
    88698637    <message>
    8870         <location filename="../VBoxManageList.cpp" line="1411"/>
     8638        <location filename="../VBoxManageList.cpp" line="1435"/>
    88718639        <source>CPU Profile #%02zu:
    88728640</source>
     
    88748642    </message>
    88758643    <message>
    8876         <location filename="../VBoxManageList.cpp" line="1412"/>
     8644        <location filename="../VBoxManageList.cpp" line="1436"/>
    88778645        <source>  Architecture: %s
    88788646</source>
     
    88808648    </message>
    88818649    <message>
    8882         <location filename="../VBoxManageList.cpp" line="1413"/>
     8650        <location filename="../VBoxManageList.cpp" line="1437"/>
    88838651        <source>  Name:         %ls
    88848652</source>
     
    88868654    </message>
    88878655    <message>
    8888         <location filename="../VBoxManageList.cpp" line="1415"/>
     8656        <location filename="../VBoxManageList.cpp" line="1439"/>
    88898657        <source>  Full Name:    %ls
    88908658</source>
     
    88928660    </message>
    88938661    <message>
    8894         <location filename="../VBoxManageList.cpp" line="1665"/>
     8662        <location filename="../VBoxManageList.cpp" line="1689"/>
    88958663        <source>%sDrive:       %ls
    88968664</source>
     
    88988666    </message>
    88998667    <message>
    8900         <location filename="../VBoxManageList.cpp" line="1667"/>
     8668        <location filename="../VBoxManageList.cpp" line="1691"/>
    89018669        <source>%sDrive:       %Rhrc
    89028670</source>
     
    89048672    </message>
    89058673    <message>
    8906         <location filename="../VBoxManageList.cpp" line="1672"/>
     8674        <location filename="../VBoxManageList.cpp" line="1696"/>
    89078675        <source>Model:       %Rhrc
    89088676</source>
     
    89108678    </message>
    89118679    <message>
    8912         <location filename="../VBoxManageList.cpp" line="1674"/>
     8680        <location filename="../VBoxManageList.cpp" line="1698"/>
    89138681        <source>Model:       &quot;%ls&quot;
    89148682</source>
     
    89168684    </message>
    89178685    <message>
    8918         <location filename="../VBoxManageList.cpp" line="1676"/>
     8686        <location filename="../VBoxManageList.cpp" line="1700"/>
    89198687        <source>Model:       unknown/inaccessible
    89208688</source>
     
    89228690    </message>
    89238691    <message>
    8924         <location filename="../VBoxManageList.cpp" line="1686"/>
     8692        <location filename="../VBoxManageList.cpp" line="1710"/>
    89258693        <source>Further disk and partitioning information is not available for drive &quot;%ls&quot;. (E_ACCESSDENIED)
    89268694</source>
     
    89288696    </message>
    89298697    <message numerus="yes">
    8930         <location filename="../VBoxManageList.cpp" line="1699"/>
     8698        <location filename="../VBoxManageList.cpp" line="1723"/>
    89318699        <source>Size:        %llu bytes (%Rhcb)
    89328700</source>
     
    89368704    </message>
    89378705    <message>
    8938         <location filename="../VBoxManageList.cpp" line="1701"/>
     8706        <location filename="../VBoxManageList.cpp" line="1725"/>
    89398707        <source>Size:        %Rhcb
    89408708</source>
     
    89428710    </message>
    89438711    <message>
    8944         <location filename="../VBoxManageList.cpp" line="1704"/>
     8712        <location filename="../VBoxManageList.cpp" line="1728"/>
    89458713        <source>Size:        %Rhrc
    89468714</source>
     
    89488716    </message>
    89498717    <message numerus="yes">
    8950         <location filename="../VBoxManageList.cpp" line="1711"/>
     8718        <location filename="../VBoxManageList.cpp" line="1735"/>
    89518719        <source>Sector Size: %u bytes
    89528720</source>
     
    89568724    </message>
    89578725    <message>
    8958         <location filename="../VBoxManageList.cpp" line="1714"/>
     8726        <location filename="../VBoxManageList.cpp" line="1738"/>
    89598727        <source>Sector Size: %Rhrc
    89608728</source>
     
    89628730    </message>
    89638731    <message>
    8964         <location filename="../VBoxManageList.cpp" line="1721"/>
     8732        <location filename="../VBoxManageList.cpp" line="1745"/>
    89658733        <source>Scheme:      %s
    89668734</source>
     
    89688736    </message>
    89698737    <message>
    8970         <location filename="../VBoxManageList.cpp" line="1724"/>
     8738        <location filename="../VBoxManageList.cpp" line="1748"/>
    89718739        <source>Scheme:      %Rhrc
    89728740</source>
     
    89748742    </message>
    89758743    <message>
    8976         <location filename="../VBoxManageList.cpp" line="1732"/>
     8744        <location filename="../VBoxManageList.cpp" line="1756"/>
    89778745        <source>Partitions:  %Rhrc
    89788746</source>
     
    89808748    </message>
    89818749    <message>
    8982         <location filename="../VBoxManageList.cpp" line="1736"/>
     8750        <location filename="../VBoxManageList.cpp" line="1760"/>
    89838751        <source>Partitions:  None (or not able to grok them).
    89848752</source>
     
    89868754    </message>
    89878755    <message>
    8988         <location filename="../VBoxManageList.cpp" line="1740"/>
     8756        <location filename="../VBoxManageList.cpp" line="1764"/>
    89898757        <source>Partitions:                              First         Last
    89908758##  Type      Byte Size     Byte Offset  Cyl/Head/Sec  Cyl/Head/Sec Active
     
    89938761    </message>
    89948762    <message>
    8995         <location filename="../VBoxManageList.cpp" line="1743"/>
     8763        <location filename="../VBoxManageList.cpp" line="1767"/>
    89968764        <source>Partitions:                   First         Last
    89978765##  Type  Size      Start     Cyl/Head/Sec  Cyl/Head/Sec Active
     
    90008768    </message>
    90018769    <message>
    9002         <location filename="../VBoxManageList.cpp" line="1802"/>
     8770        <location filename="../VBoxManageList.cpp" line="1826"/>
    90038771        <source>Partitions:
    90048772## %-*s Uuid                                           Byte Size         Byte Offset Active Name
     
    90078775    </message>
    90088776    <message>
    9009         <location filename="../VBoxManageList.cpp" line="1805"/>
    9010         <location filename="../VBoxManageList.cpp" line="1810"/>
     8777        <location filename="../VBoxManageList.cpp" line="1829"/>
     8778        <location filename="../VBoxManageList.cpp" line="1834"/>
    90118779        <source>Type</source>
    90128780        <translation type="unfinished"></translation>
    90138781    </message>
    90148782    <message>
    9015         <location filename="../VBoxManageList.cpp" line="1807"/>
     8783        <location filename="../VBoxManageList.cpp" line="1831"/>
    90168784        <source>Partitions:
    90178785##  %-*s  Uuid                                   Size      Start   Active Name
     
    90208788    </message>
    90218789    <message>
    9022         <location filename="../VBoxManageList.cpp" line="2016"/>
     8790        <location filename="../VBoxManageList.cpp" line="2043"/>
    90238791        <source>Description: %ls
    90248792</source>
     
    90268794    </message>
    90278795    <message>
    9028         <location filename="../VBoxManageList.cpp" line="2019"/>
     8796        <location filename="../VBoxManageList.cpp" line="2046"/>
    90298797        <source>Family ID:   %ls
    90308798</source>
     
    90328800    </message>
    90338801    <message>
    9034         <location filename="../VBoxManageList.cpp" line="2022"/>
     8802        <location filename="../VBoxManageList.cpp" line="2049"/>
    90358803        <source>Family Desc: %ls
    90368804</source>
     
    90388806    </message>
    90398807    <message>
    9040         <location filename="../VBoxManageList.cpp" line="2025"/>
     8808        <location filename="../VBoxManageList.cpp" line="2052"/>
    90418809        <source>64 bit:      %RTbool
    90428810</source>
     
    90448812    </message>
    90458813    <message>
    9046         <location filename="../VBoxManageList.cpp" line="2048"/>
    9047         <location filename="../VBoxManageList.cpp" line="2070"/>
     8814        <location filename="../VBoxManageList.cpp" line="2075"/>
     8815        <location filename="../VBoxManageList.cpp" line="2097"/>
    90488816        <source>Name:         %ls
    90498817
     
    90528820    </message>
    90538821    <message>
    9054         <location filename="../VBoxManageList.cpp" line="2107"/>
     8822        <location filename="../VBoxManageList.cpp" line="2134"/>
    90558823        <source>Host CPUIDs:
    90568824
     
    90608828    </message>
    90618829    <message>
    9062         <location filename="../VBoxManageList.cpp" line="2139"/>
     8830        <location filename="../VBoxManageList.cpp" line="2166"/>
    90638831        <source>base</source>
    90648832        <translation type="unfinished"></translation>
    90658833    </message>
    90668834    <message>
    9067         <location filename="../VBoxManageList.cpp" line="2198"/>
    9068         <source>Network:        %ls
    9069 </source>
    9070         <translation type="unfinished"></translation>
    9071     </message>
    9072     <message>
    9073         <location filename="../VBoxManageList.cpp" line="2201"/>
    9074         <source>IPv6 Enabled:   %s
    9075 </source>
    9076         <translation type="unfinished"></translation>
    9077     </message>
    9078     <message>
    9079         <location filename="../VBoxManageList.cpp" line="2204"/>
    9080         <source>IPv6 Prefix:    %ls
    9081 </source>
    9082         <translation type="unfinished"></translation>
    9083     </message>
    9084     <message>
    9085         <location filename="../VBoxManageList.cpp" line="2206"/>
    9086         <source>DHCP Enabled:   %s
    9087 </source>
    9088         <translation type="unfinished"></translation>
    9089     </message>
    9090     <message>
    9091         <location filename="../VBoxManageList.cpp" line="2222"/>
    9092         <source>Port-forwarding (ipv4)
    9093 </source>
    9094         <translation type="unfinished"></translation>
    9095     </message>
    9096     <message>
    9097         <location filename="../VBoxManageList.cpp" line="2226"/>
    9098         <source>Port-forwarding (ipv6)
    9099 </source>
    9100         <translation type="unfinished"></translation>
    9101     </message>
    9102     <message>
    9103         <location filename="../VBoxManageList.cpp" line="2230"/>
    9104         <source>loopback mappings (ipv4)
    9105 </source>
    9106         <translation type="unfinished"></translation>
    9107     </message>
    9108     <message>
    9109         <location filename="../VBoxManageList.cpp" line="2402"/>
     8835        <location filename="../VBoxManageList.cpp" line="2388"/>
    91108836        <source>Unknown subcommand &quot;%s&quot;.</source>
    91118837        <translation type="unfinished"></translation>
    91128838    </message>
    91138839    <message>
    9114         <location filename="../VBoxManageList.cpp" line="2413"/>
     8840        <location filename="../VBoxManageList.cpp" line="2399"/>
    91158841        <source>Missing subcommand for &quot;list&quot; command.
    91168842</source>
     
    91218847    <name>Metrics</name>
    91228848    <message>
    9123         <location filename="../VBoxManageMetrics.cpp" line="92"/>
     8849        <location filename="../VBoxManageMetrics.cpp" line="90"/>
    91248850        <source>Invalid machine name: &apos;%s&apos;</source>
    91258851        <translation type="unfinished"></translation>
    91268852    </message>
    91278853    <message>
    9128         <location filename="../VBoxManageMetrics.cpp" line="130"/>
     8854        <location filename="../VBoxManageMetrics.cpp" line="128"/>
    91298855        <source>host</source>
    91308856        <translation type="unfinished"></translation>
    91318857    </message>
    91328858    <message>
    9133         <location filename="../VBoxManageMetrics.cpp" line="140"/>
     8859        <location filename="../VBoxManageMetrics.cpp" line="138"/>
    91348860        <source>unknown</source>
    91358861        <translation type="unfinished"></translation>
    91368862    </message>
    91378863    <message>
    9138         <location filename="../VBoxManageMetrics.cpp" line="151"/>
     8864        <location filename="../VBoxManageMetrics.cpp" line="149"/>
    91398865        <source>The following metrics were modified:
    91408866
     
    91458871    </message>
    91468872    <message>
    9147         <location filename="../VBoxManageMetrics.cpp" line="165"/>
     8873        <location filename="../VBoxManageMetrics.cpp" line="163"/>
    91488874        <source>No metrics match the specified filter!</source>
    91498875        <translation type="unfinished"></translation>
     
    91578883    </message>
    91588884    <message>
    9159         <location filename="../VBoxManageMetrics.cpp" line="238"/>
    9160         <location filename="../VBoxManageMetrics.cpp" line="247"/>
    9161         <location filename="../VBoxManageMetrics.cpp" line="405"/>
    9162         <location filename="../VBoxManageMetrics.cpp" line="414"/>
     8885        <location filename="../VBoxManageMetrics.cpp" line="240"/>
     8886        <location filename="../VBoxManageMetrics.cpp" line="249"/>
     8887        <location filename="../VBoxManageMetrics.cpp" line="412"/>
     8888        <location filename="../VBoxManageMetrics.cpp" line="421"/>
    91638889        <source>Missing argument to &apos;%s&apos;</source>
    91648890        <translation type="unfinished"></translation>
    91658891    </message>
    91668892    <message>
    9167         <location filename="../VBoxManageMetrics.cpp" line="241"/>
    9168         <location filename="../VBoxManageMetrics.cpp" line="408"/>
     8893        <location filename="../VBoxManageMetrics.cpp" line="243"/>
     8894        <location filename="../VBoxManageMetrics.cpp" line="415"/>
    91698895        <source>Invalid value for &apos;period&apos; parameter: &apos;%s&apos;</source>
    91708896        <translation type="unfinished"></translation>
    91718897    </message>
    91728898    <message>
    9173         <location filename="../VBoxManageMetrics.cpp" line="250"/>
    9174         <location filename="../VBoxManageMetrics.cpp" line="417"/>
     8899        <location filename="../VBoxManageMetrics.cpp" line="252"/>
     8900        <location filename="../VBoxManageMetrics.cpp" line="424"/>
    91758901        <source>Invalid value for &apos;samples&apos; parameter: &apos;%s&apos;</source>
    91768902        <translation type="unfinished"></translation>
    91778903    </message>
    91788904    <message>
    9179         <location filename="../VBoxManageMetrics.cpp" line="315"/>
     8905        <location filename="../VBoxManageMetrics.cpp" line="319"/>
    91808906        <source>Object          Metric                                   Values
    91818907--------------- ---------------------------------------- --------------------------------------------
     
    91848910    </message>
    91858911    <message>
    9186         <location filename="../VBoxManageMetrics.cpp" line="476"/>
     8912        <location filename="../VBoxManageMetrics.cpp" line="483"/>
    91878913        <source>The background process holding collected metrics will shutdown
    91888914in few seconds, discarding all collected data and parameters.</source>
     
    91908916    </message>
    91918917    <message>
    9192         <location filename="../VBoxManageMetrics.cpp" line="485"/>
     8918        <location filename="../VBoxManageMetrics.cpp" line="492"/>
    91938919        <source>Time stamp   Object     Metric               Value
    91948920</source>
     
    91968922    </message>
    91978923    <message>
    9198         <location filename="../VBoxManageMetrics.cpp" line="628"/>
     8924        <location filename="../VBoxManageMetrics.cpp" line="639"/>
    91998925        <source>Subcommand missing</source>
    92008926        <translation type="unfinished"></translation>
    92018927    </message>
    92028928    <message>
    9203         <location filename="../VBoxManageMetrics.cpp" line="647"/>
     8929        <location filename="../VBoxManageMetrics.cpp" line="658"/>
    92048930        <source>Invalid subcommand &apos;%s&apos;</source>
    92058931        <translation type="unfinished"></translation>
     
    92098935    <name>Misc</name>
    92108936    <message>
    9211         <location filename="../VBoxManageMisc.cpp" line="68"/>
    9212         <location filename="../VBoxManageMisc.cpp" line="763"/>
    9213         <location filename="../VBoxManageMisc.cpp" line="792"/>
    9214         <location filename="../VBoxManageMisc.cpp" line="827"/>
    9215         <location filename="../VBoxManageMisc.cpp" line="953"/>
     8937        <location filename="../VBoxManageMisc.cpp" line="66"/>
     8938        <location filename="../VBoxManageMisc.cpp" line="760"/>
     8939        <location filename="../VBoxManageMisc.cpp" line="789"/>
     8940        <location filename="../VBoxManageMisc.cpp" line="824"/>
     8941        <location filename="../VBoxManageMisc.cpp" line="950"/>
    92168942        <source>Incorrect number of parameters</source>
    92178943        <translation type="unfinished"></translation>
    92188944    </message>
    92198945    <message>
    9220         <location filename="../VBoxManageMisc.cpp" line="81"/>
    9221         <location filename="../VBoxManageMisc.cpp" line="802"/>
     8946        <location filename="../VBoxManageMisc.cpp" line="79"/>
     8947        <location filename="../VBoxManageMisc.cpp" line="799"/>
    92228948        <source>Cannot convert filename &quot;%s&quot; to absolute path: %Rrc</source>
    92238949        <translation type="unfinished"></translation>
    92248950    </message>
    92258951    <message>
    9226         <location filename="../VBoxManageMisc.cpp" line="127"/>
    9227         <location filename="../VBoxManageMisc.cpp" line="356"/>
    9228         <location filename="../VBoxManageMisc.cpp" line="532"/>
    9229         <location filename="../VBoxManageMisc.cpp" line="1078"/>
     8952        <location filename="../VBoxManageMisc.cpp" line="125"/>
     8953        <location filename="../VBoxManageMisc.cpp" line="354"/>
     8954        <location filename="../VBoxManageMisc.cpp" line="530"/>
     8955        <location filename="../VBoxManageMisc.cpp" line="1075"/>
    92308956        <source>Invalid parameter &apos;%s&apos;</source>
    92318957        <translation type="unfinished"></translation>
    92328958    </message>
    92338959    <message>
    9234         <location filename="../VBoxManageMisc.cpp" line="134"/>
    9235         <location filename="../VBoxManageMisc.cpp" line="686"/>
     8960        <location filename="../VBoxManageMisc.cpp" line="132"/>
     8961        <location filename="../VBoxManageMisc.cpp" line="683"/>
    92368962        <source>Invalid option -%c</source>
    92378963        <translation type="unfinished"></translation>
    92388964    </message>
    92398965    <message>
    9240         <location filename="../VBoxManageMisc.cpp" line="135"/>
     8966        <location filename="../VBoxManageMisc.cpp" line="133"/>
     8967        <location filename="../VBoxManageMisc.cpp" line="685"/>
     8968        <source>Invalid option case %i</source>
     8969        <translation type="unfinished"></translation>
     8970    </message>
     8971    <message>
     8972        <location filename="../VBoxManageMisc.cpp" line="136"/>
    92418973        <location filename="../VBoxManageMisc.cpp" line="688"/>
    9242         <source>Invalid option case %i</source>
    9243         <translation type="unfinished"></translation>
    9244     </message>
    9245     <message>
    9246         <location filename="../VBoxManageMisc.cpp" line="138"/>
    9247         <location filename="../VBoxManageMisc.cpp" line="691"/>
    92488974        <source>unknown option: %s
    92498975</source>
     
    92518977    </message>
    92528978    <message>
    9253         <location filename="../VBoxManageMisc.cpp" line="141"/>
    9254         <location filename="../VBoxManageMisc.cpp" line="695"/>
     8979        <location filename="../VBoxManageMisc.cpp" line="139"/>
     8980        <location filename="../VBoxManageMisc.cpp" line="692"/>
    92558981        <source>error: %Rrs</source>
    92568982        <translation type="unfinished"></translation>
    92578983    </message>
    92588984    <message>
    9259         <location filename="../VBoxManageMisc.cpp" line="147"/>
    9260         <location filename="../VBoxManageMisc.cpp" line="372"/>
    9261         <location filename="../VBoxManageMisc.cpp" line="542"/>
     8985        <location filename="../VBoxManageMisc.cpp" line="145"/>
     8986        <location filename="../VBoxManageMisc.cpp" line="370"/>
     8987        <location filename="../VBoxManageMisc.cpp" line="540"/>
    92628988        <source>VM name required</source>
    92638989        <translation type="unfinished"></translation>
    92648990    </message>
    92658991    <message>
    9266         <location filename="../VBoxManageMisc.cpp" line="164"/>
     8992        <location filename="../VBoxManageMisc.cpp" line="162"/>
    92678993        <source>Machine delete failed</source>
    92688994        <translation type="unfinished"></translation>
    92698995    </message>
    92708996    <message>
    9271         <location filename="../VBoxManageMisc.cpp" line="258"/>
     8997        <location filename="../VBoxManageMisc.cpp" line="256"/>
    92728998        <source>Parameter --name is required</source>
    92738999        <translation type="unfinished"></translation>
    92749000    </message>
    92759001    <message>
    9276         <location filename="../VBoxManageMisc.cpp" line="300"/>
     9002        <location filename="../VBoxManageMisc.cpp" line="298"/>
    92779003        <source>Virtual machine &apos;%ls&apos; is created%s.
    92789004UUID: %s
     
    92829008    </message>
    92839009    <message>
    9284         <location filename="../VBoxManageMisc.cpp" line="303"/>
     9010        <location filename="../VBoxManageMisc.cpp" line="301"/>
    92859011        <source> and registered</source>
    92869012        <translation type="unfinished"></translation>
    92879013    </message>
    92889014    <message>
    9289         <location filename="../VBoxManageMisc.cpp" line="345"/>
    9290         <location filename="../VBoxManageMisc.cpp" line="1391"/>
     9015        <location filename="../VBoxManageMisc.cpp" line="343"/>
     9016        <location filename="../VBoxManageMisc.cpp" line="1388"/>
    92919017        <source>RTPathAbs(%s,,) failed with rc=%Rrc</source>
    92929018        <translation type="unfinished"></translation>
    92939019    </message>
    92949020    <message>
    9295         <location filename="../VBoxManageMisc.cpp" line="396"/>
     9021        <location filename="../VBoxManageMisc.cpp" line="394"/>
    92969022        <source>Move VM failed</source>
    92979023        <translation type="unfinished"></translation>
    92989024    </message>
    92999025    <message>
    9300         <location filename="../VBoxManageMisc.cpp" line="401"/>
     9026        <location filename="../VBoxManageMisc.cpp" line="399"/>
    93019027        <source>Machine has been successfully moved into %s
    93029028</source>
     
    93049030    </message>
    93059031    <message>
    9306         <location filename="../VBoxManageMisc.cpp" line="402"/>
     9032        <location filename="../VBoxManageMisc.cpp" line="400"/>
    93079033        <source>the same location</source>
    93089034        <translation type="unfinished"></translation>
    93099035    </message>
    93109036    <message>
    9311         <location filename="../VBoxManageMisc.cpp" line="512"/>
     9037        <location filename="../VBoxManageMisc.cpp" line="510"/>
    93129038        <source>Invalid clone mode &apos;%s&apos;
    93139039</source>
     
    93159041    </message>
    93169042    <message>
    9317         <location filename="../VBoxManageMisc.cpp" line="517"/>
     9043        <location filename="../VBoxManageMisc.cpp" line="515"/>
    93189044        <source>Invalid clone options &apos;%s&apos;
    93199045</source>
     
    93219047    </message>
    93229048    <message>
    9323         <location filename="../VBoxManageMisc.cpp" line="564"/>
     9049        <location filename="../VBoxManageMisc.cpp" line="562"/>
    93249050        <source>%s Clone</source>
    93259051        <translation type="unfinished"></translation>
    93269052    </message>
    93279053    <message>
    9328         <location filename="../VBoxManageMisc.cpp" line="598"/>
     9054        <location filename="../VBoxManageMisc.cpp" line="596"/>
    93299055        <source>Clone VM failed</source>
    93309056        <translation type="unfinished"></translation>
    93319057    </message>
    93329058    <message>
    9333         <location filename="../VBoxManageMisc.cpp" line="605"/>
     9059        <location filename="../VBoxManageMisc.cpp" line="603"/>
    93349060        <source>Machine has been successfully cloned as &quot;%ls&quot;
    93359061</source>
     
    93379063    </message>
    93389064    <message>
    9339         <location filename="../VBoxManageMisc.cpp" line="675"/>
     9065        <location filename="../VBoxManageMisc.cpp" line="672"/>
    93409066        <source>Parameter to option --putenv must not contain any newline character</source>
    93419067        <translation type="unfinished"></translation>
    93429068    </message>
    93439069    <message>
    9344         <location filename="../VBoxManageMisc.cpp" line="701"/>
     9070        <location filename="../VBoxManageMisc.cpp" line="698"/>
    93459071        <source>at least one VM name or uuid required</source>
    93469072        <translation type="unfinished"></translation>
    93479073    </message>
    93489074    <message>
    9349         <location filename="../VBoxManageMisc.cpp" line="719"/>
     9075        <location filename="../VBoxManageMisc.cpp" line="716"/>
    93509076        <source>Waiting for VM &quot;%s&quot; to power on...
    93519077</source>
     
    93539079    </message>
    93549080    <message>
    9355         <location filename="../VBoxManageMisc.cpp" line="734"/>
     9081        <location filename="../VBoxManageMisc.cpp" line="731"/>
    93569082        <source>VM &quot;%s&quot; has been successfully started.
    93579083</source>
     
    93599085    </message>
    93609086    <message>
    9361         <location filename="../VBoxManageMisc.cpp" line="847"/>
    9362         <location filename="../VBoxManageMisc.cpp" line="883"/>
     9087        <location filename="../VBoxManageMisc.cpp" line="844"/>
     9088        <location filename="../VBoxManageMisc.cpp" line="880"/>
    93639089        <source>Key: %ls, Value: %ls
    93649090</source>
     
    93669092    </message>
    93679093    <message>
    9368         <location filename="../VBoxManageMisc.cpp" line="856"/>
    9369         <location filename="../VBoxManageMisc.cpp" line="892"/>
     9094        <location filename="../VBoxManageMisc.cpp" line="853"/>
     9095        <location filename="../VBoxManageMisc.cpp" line="889"/>
    93709096        <source>Value: %ls
    93719097</source>
     
    93739099    </message>
    93749100    <message>
    9375         <location filename="../VBoxManageMisc.cpp" line="858"/>
    9376         <location filename="../VBoxManageMisc.cpp" line="894"/>
     9101        <location filename="../VBoxManageMisc.cpp" line="855"/>
     9102        <location filename="../VBoxManageMisc.cpp" line="891"/>
    93779103        <source>No value set!
    93789104</source>
     
    93809106    </message>
    93819107    <message>
    9382         <location filename="../VBoxManageMisc.cpp" line="906"/>
    9383         <location filename="../VBoxManageMisc.cpp" line="1318"/>
     9108        <location filename="../VBoxManageMisc.cpp" line="903"/>
     9109        <location filename="../VBoxManageMisc.cpp" line="1315"/>
    93849110        <source>Not enough parameters</source>
    93859111        <translation type="unfinished"></translation>
    93869112    </message>
    93879113    <message>
    9388         <location filename="../VBoxManageMisc.cpp" line="919"/>
    9389         <location filename="../VBoxManageMisc.cpp" line="941"/>
     9114        <location filename="../VBoxManageMisc.cpp" line="916"/>
     9115        <location filename="../VBoxManageMisc.cpp" line="938"/>
    93909116        <source>Too many parameters</source>
    93919117        <translation type="unfinished"></translation>
    93929118    </message>
    93939119    <message>
    9394         <location filename="../VBoxManageMisc.cpp" line="975"/>
     9120        <location filename="../VBoxManageMisc.cpp" line="972"/>
    93959121        <source>Invalid hwvirtexclusive argument &apos;%s&apos;</source>
    93969122        <translation type="unfinished"></translation>
    93979123    </message>
    93989124    <message>
    9399         <location filename="../VBoxManageMisc.cpp" line="982"/>
     9125        <location filename="../VBoxManageMisc.cpp" line="979"/>
    94009126        <source>Warning: &apos;vrdpauthlibrary&apos; is deprecated. Use &apos;vrdeauthlibrary&apos;.
    94019127</source>
     
    94039129    </message>
    94049130    <message>
    9405         <location filename="../VBoxManageMisc.cpp" line="1012"/>
     9131        <location filename="../VBoxManageMisc.cpp" line="1009"/>
    94069132        <source>Error parsing Log history count &apos;%s&apos;</source>
    94079133        <translation type="unfinished"></translation>
    94089134    </message>
    94099135    <message>
    9410         <location filename="../VBoxManageMisc.cpp" line="1047"/>
     9136        <location filename="../VBoxManageMisc.cpp" line="1044"/>
    94119137        <source>Unknown proxy mode: &apos;%s&apos;</source>
    94129138        <translation type="unfinished"></translation>
    94139139    </message>
    94149140    <message>
    9415         <location filename="../VBoxManageMisc.cpp" line="1141"/>
    9416         <location filename="../VBoxManageMisc.cpp" line="1253"/>
     9141        <location filename="../VBoxManageMisc.cpp" line="1138"/>
     9142        <location filename="../VBoxManageMisc.cpp" line="1250"/>
    94179143        <source>Machine name is given more than once: first &apos;%s&apos;, then &apos;%s&apos;</source>
    94189144        <translation type="unfinished"></translation>
    94199145    </message>
    94209146    <message>
     9147        <location filename="../VBoxManageMisc.cpp" line="1148"/>
     9148        <location filename="../VBoxManageMisc.cpp" line="1260"/>
     9149        <source>No machine was specified</source>
     9150        <translation type="unfinished"></translation>
     9151    </message>
     9152    <message>
    94219153        <location filename="../VBoxManageMisc.cpp" line="1151"/>
    9422         <location filename="../VBoxManageMisc.cpp" line="1263"/>
    9423         <source>No machine was specified</source>
    9424         <translation type="unfinished"></translation>
    9425     </message>
    9426     <message>
    9427         <location filename="../VBoxManageMisc.cpp" line="1154"/>
    9428         <location filename="../VBoxManageMisc.cpp" line="1265"/>
     9154        <location filename="../VBoxManageMisc.cpp" line="1262"/>
    94299155        <source>No shared folder name (--name) was given</source>
    94309156        <translation type="unfinished"></translation>
    94319157    </message>
    94329158    <message>
    9433         <location filename="../VBoxManageMisc.cpp" line="1156"/>
     9159        <location filename="../VBoxManageMisc.cpp" line="1153"/>
    94349160        <source>Invalid shared folder name &apos;%s&apos;: contains space</source>
    94359161        <translation type="unfinished"></translation>
    94369162    </message>
    94379163    <message>
    9438         <location filename="../VBoxManageMisc.cpp" line="1158"/>
     9164        <location filename="../VBoxManageMisc.cpp" line="1155"/>
    94399165        <source>Invalid shared folder name &apos;%s&apos;: contains tabs</source>
    94409166        <translation type="unfinished"></translation>
    94419167    </message>
    94429168    <message>
     9169        <location filename="../VBoxManageMisc.cpp" line="1157"/>
     9170        <source>Invalid shared folder name &apos;%s&apos;: contains newline</source>
     9171        <translation type="unfinished"></translation>
     9172    </message>
     9173    <message>
    94439174        <location filename="../VBoxManageMisc.cpp" line="1160"/>
    9444         <source>Invalid shared folder name &apos;%s&apos;: contains newline</source>
    9445         <translation type="unfinished"></translation>
    9446     </message>
    9447     <message>
    9448         <location filename="../VBoxManageMisc.cpp" line="1163"/>
    94499175        <source>No host path (--hostpath) was given</source>
    94509176        <translation type="unfinished"></translation>
    94519177    </message>
    94529178    <message>
    9453         <location filename="../VBoxManageMisc.cpp" line="1167"/>
     9179        <location filename="../VBoxManageMisc.cpp" line="1164"/>
    94549180        <source>RTAbsPath failed on &apos;%s&apos;: %Rrc</source>
    94559181        <translation type="unfinished"></translation>
    94569182    </message>
    94579183    <message>
    9458         <location filename="../VBoxManageMisc.cpp" line="1190"/>
     9184        <location filename="../VBoxManageMisc.cpp" line="1187"/>
    94599185        <source>Machine &apos;%s&apos; is not currently running.</source>
    94609186        <translation type="unfinished"></translation>
    94619187    </message>
    94629188    <message>
    9463         <location filename="../VBoxManageMisc.cpp" line="1286"/>
     9189        <location filename="../VBoxManageMisc.cpp" line="1283"/>
    94649190        <source>Machine &apos;%s&apos; is not currently running.
    94659191</source>
     
    94679193    </message>
    94689194    <message>
    9469         <location filename="../VBoxManageMisc.cpp" line="1377"/>
    9470         <location filename="../VBoxManageMisc.cpp" line="1462"/>
     9195        <location filename="../VBoxManageMisc.cpp" line="1374"/>
     9196        <location filename="../VBoxManageMisc.cpp" line="1459"/>
    94719197        <source>Too many extension pack names given to &quot;extpack uninstall&quot;</source>
    94729198        <translation type="unfinished"></translation>
    94739199    </message>
    94749200    <message>
    9475         <location filename="../VBoxManageMisc.cpp" line="1386"/>
     9201        <location filename="../VBoxManageMisc.cpp" line="1383"/>
    94769202        <source>No extension pack name was given to &quot;extpack install&quot;</source>
    94779203        <translation type="unfinished"></translation>
    94789204    </message>
    94799205    <message>
    9480         <location filename="../VBoxManageMisc.cpp" line="1415"/>
     9206        <location filename="../VBoxManageMisc.cpp" line="1412"/>
    94819207        <source>License accepted.
    94829208</source>
     
    94849210    </message>
    94859211    <message>
    9486         <location filename="../VBoxManageMisc.cpp" line="1419"/>
     9212        <location filename="../VBoxManageMisc.cpp" line="1416"/>
    94879213        <source>Do you agree to these license terms and conditions (y/n)? </source>
    94889214        <translation type="unfinished"></translation>
    94899215    </message>
    94909216    <message>
    9491         <location filename="../VBoxManageMisc.cpp" line="1424"/>
     9217        <location filename="../VBoxManageMisc.cpp" line="1421"/>
    94929218        <source>Installation of &quot;%ls&quot; aborted.
    94939219</source>
     
    94959221    </message>
    94969222    <message>
    9497         <location filename="../VBoxManageMisc.cpp" line="1428"/>
     9223        <location filename="../VBoxManageMisc.cpp" line="1425"/>
    94989224        <source>License accepted. For batch installation add
    94999225--accept-license=%s
     
    95049230    </message>
    95059231    <message>
    9506         <location filename="../VBoxManageMisc.cpp" line="1436"/>
     9232        <location filename="../VBoxManageMisc.cpp" line="1433"/>
    95079233        <source>Failed to install &quot;%s&quot;</source>
    95089234        <translation type="unfinished"></translation>
    95099235    </message>
    95109236    <message>
    9511         <location filename="../VBoxManageMisc.cpp" line="1438"/>
     9237        <location filename="../VBoxManageMisc.cpp" line="1435"/>
    95129238        <source>Successfully installed &quot;%ls&quot;.
    95139239</source>
     
    95159241    </message>
    95169242    <message>
    9517         <location filename="../VBoxManageMisc.cpp" line="1471"/>
     9243        <location filename="../VBoxManageMisc.cpp" line="1468"/>
    95189244        <source>No extension pack name was given to &quot;extpack uninstall&quot;</source>
    95199245        <translation type="unfinished"></translation>
    95209246    </message>
    95219247    <message>
    9522         <location filename="../VBoxManageMisc.cpp" line="1477"/>
     9248        <location filename="../VBoxManageMisc.cpp" line="1474"/>
    95239249        <source>Failed to uninstall &quot;%s&quot;</source>
    95249250        <translation type="unfinished"></translation>
    95259251    </message>
    95269252    <message>
    9527         <location filename="../VBoxManageMisc.cpp" line="1479"/>
     9253        <location filename="../VBoxManageMisc.cpp" line="1476"/>
    95289254        <source>Successfully uninstalled &quot;%s&quot;.
    95299255</source>
     
    95319257    </message>
    95329258    <message>
    9533         <location filename="../VBoxManageMisc.cpp" line="1487"/>
     9259        <location filename="../VBoxManageMisc.cpp" line="1484"/>
    95349260        <source>Successfully performed extension pack cleanup
    95359261</source>
     
    95379263    </message>
    95389264    <message>
    9539         <location filename="../VBoxManageMisc.cpp" line="1529"/>
    9540         <location filename="../VBoxManageMisc.cpp" line="1672"/>
    9541         <location filename="../VBoxManageMisc.cpp" line="1711"/>
    9542         <location filename="../VBoxManageMisc.cpp" line="1724"/>
    9543         <location filename="../VBoxManageMisc.cpp" line="1759"/>
    9544         <location filename="../VBoxManageMisc.cpp" line="1770"/>
     9265        <location filename="../VBoxManageMisc.cpp" line="1526"/>
     9266        <location filename="../VBoxManageMisc.cpp" line="1679"/>
     9267        <location filename="../VBoxManageMisc.cpp" line="1718"/>
     9268        <location filename="../VBoxManageMisc.cpp" line="1731"/>
     9269        <location filename="../VBoxManageMisc.cpp" line="1766"/>
    95459270        <location filename="../VBoxManageMisc.cpp" line="1777"/>
     9271        <location filename="../VBoxManageMisc.cpp" line="1784"/>
    95469272        <source>RTPathAbs failed on &apos;%s&apos;: %Rrc</source>
    95479273        <translation type="unfinished"></translation>
    95489274    </message>
    95499275    <message>
    9550         <location filename="../VBoxManageMisc.cpp" line="1545"/>
     9276        <location filename="../VBoxManageMisc.cpp" line="1542"/>
    95519277        <source>No ISO specified</source>
    95529278        <translation type="unfinished"></translation>
    95539279    </message>
    95549280    <message>
    9555         <location filename="../VBoxManageMisc.cpp" line="1582"/>
     9281        <location filename="../VBoxManageMisc.cpp" line="1587"/>
    95569282        <source>Detected &apos;%s&apos; to be:
    95579283</source>
     
    95599285    </message>
    95609286    <message>
    9561         <location filename="../VBoxManageMisc.cpp" line="1583"/>
     9287        <location filename="../VBoxManageMisc.cpp" line="1588"/>
    95629288        <source>    OS TypeId    = %ls
    95639289    OS Version   = %ls
     
    95699295    </message>
    95709296    <message>
    9571         <location filename="../VBoxManageMisc.cpp" line="1664"/>
     9297        <location filename="../VBoxManageMisc.cpp" line="1671"/>
    95729298        <source>VM name/UUID given more than once!</source>
    95739299        <translation type="unfinished"></translation>
    95749300    </message>
    95759301    <message>
    9576         <location filename="../VBoxManageMisc.cpp" line="1806"/>
     9302        <location filename="../VBoxManageMisc.cpp" line="1813"/>
    95779303        <source>Missing VM name/UUID</source>
    95789304        <translation type="unfinished"></translation>
    95799305    </message>
    95809306    <message>
    9581         <location filename="../VBoxManageMisc.cpp" line="1858"/>
     9307        <location filename="../VBoxManageMisc.cpp" line="1865"/>
    95829308        <source>Machine &apos;%ls&apos; is currently running</source>
    95839309        <translation type="unfinished"></translation>
    95849310    </message>
    95859311    <message>
    9586         <location filename="../VBoxManageMisc.cpp" line="1864"/>
     9312        <location filename="../VBoxManageMisc.cpp" line="1871"/>
    95879313        <source>%s unattended installation of %s in machine &apos;%ls&apos; (%ls).
    95889314</source>
     
    95909316    </message>
    95919317    <message>
    9592         <location filename="../VBoxManageMisc.cpp" line="1865"/>
     9318        <location filename="../VBoxManageMisc.cpp" line="1872"/>
    95939319        <source>Preparing</source>
    95949320        <translation type="unfinished"></translation>
    95959321    </message>
    95969322    <message>
    9597         <location filename="../VBoxManageMisc.cpp" line="1865"/>
     9323        <location filename="../VBoxManageMisc.cpp" line="1872"/>
    95989324        <source>Starting</source>
    95999325        <translation type="unfinished"></translation>
    96009326    </message>
    96019327    <message>
    9602         <location filename="../VBoxManageMisc.cpp" line="1878"/>
     9328        <location filename="../VBoxManageMisc.cpp" line="1885"/>
    96039329        <source>Using values:
    96049330</source>
     
    96069332    </message>
    96079333    <message>
    9608         <location filename="../VBoxManageMisc.cpp" line="1885"/>
    9609         <location filename="../VBoxManageMisc.cpp" line="1893"/>
     9334        <location filename="../VBoxManageMisc.cpp" line="1892"/>
     9335        <location filename="../VBoxManageMisc.cpp" line="1900"/>
     9336        <location filename="../VBoxManageMisc.cpp" line="1952"/>
    96109337        <source>  %32s = failed: %Rhrc
    96119338</source>
     
    96139340    </message>
    96149341    <message>
    9615         <location filename="../VBoxManageMisc.cpp" line="1937"/>
     9342        <location filename="../VBoxManageMisc.cpp" line="1955"/>
     9343        <source>  %32 = failed: %Rhrc
     9344</source>
     9345        <translation type="unfinished"></translation>
     9346    </message>
     9347    <message>
     9348        <location filename="../VBoxManageMisc.cpp" line="1971"/>
    96169349        <source>VM &apos;%ls&apos; (%ls) is ready to be started (e.g. VBoxManage startvm).
    96179350</source>
     
    96199352    </message>
    96209353    <message>
    9621         <location filename="../VBoxManageMisc.cpp" line="1956"/>
     9354        <location filename="../VBoxManageMisc.cpp" line="1990"/>
    96229355        <source>Waiting for VM &apos;%ls&apos; to power on...
    96239356</source>
     
    96259358    </message>
    96269359    <message>
    9627         <location filename="../VBoxManageMisc.cpp" line="1971"/>
     9360        <location filename="../VBoxManageMisc.cpp" line="2005"/>
    96289361        <source>VM &apos;%ls&apos; (%ls) has been successfully started.
    96299362</source>
     
    96319364    </message>
    96329365    <message>
    9633         <location filename="../VBoxManageMisc.cpp" line="2103"/>
    9634         <location filename="../VBoxManageMisc.cpp" line="2153"/>
    9635         <location filename="../VBoxManageMisc.cpp" line="2213"/>
    9636         <location filename="../VBoxManageMisc.cpp" line="2311"/>
     9366        <location filename="../VBoxManageMisc.cpp" line="2137"/>
     9367        <location filename="../VBoxManageMisc.cpp" line="2187"/>
     9368        <location filename="../VBoxManageMisc.cpp" line="2247"/>
     9369        <location filename="../VBoxManageMisc.cpp" line="2345"/>
    96379370        <source>Parameter --provider is required</source>
    96389371        <translation type="unfinished"></translation>
    96399372    </message>
    96409373    <message>
    9641         <location filename="../VBoxManageMisc.cpp" line="2105"/>
    9642         <location filename="../VBoxManageMisc.cpp" line="2155"/>
    9643         <location filename="../VBoxManageMisc.cpp" line="2215"/>
    9644         <location filename="../VBoxManageMisc.cpp" line="2313"/>
     9374        <location filename="../VBoxManageMisc.cpp" line="2139"/>
     9375        <location filename="../VBoxManageMisc.cpp" line="2189"/>
     9376        <location filename="../VBoxManageMisc.cpp" line="2249"/>
     9377        <location filename="../VBoxManageMisc.cpp" line="2347"/>
    96459378        <source>Parameter --profile is required</source>
    96469379        <translation type="unfinished"></translation>
    96479380    </message>
    96489381    <message>
    9649         <location filename="../VBoxManageMisc.cpp" line="2134"/>
     9382        <location filename="../VBoxManageMisc.cpp" line="2168"/>
    96509383        <source>Provider %ls: profile &apos;%ls&apos; was updated.
    96519384</source>
     
    96539386    </message>
    96549387    <message>
    9655         <location filename="../VBoxManageMisc.cpp" line="2176"/>
     9388        <location filename="../VBoxManageMisc.cpp" line="2210"/>
    96569389        <source>Provider GUID: %ls
    96579390</source>
     
    96599392    </message>
    96609393    <message>
    9661         <location filename="../VBoxManageMisc.cpp" line="2192"/>
     9394        <location filename="../VBoxManageMisc.cpp" line="2226"/>
    96629395        <source>Property:      </source>
    96639396        <translation type="unfinished"></translation>
    96649397    </message>
    96659398    <message>
    9666         <location filename="../VBoxManageMisc.cpp" line="2297"/>
     9399        <location filename="../VBoxManageMisc.cpp" line="2331"/>
    96679400        <source>Provider %ls: profile &apos;%ls&apos; was added.
    96689401</source>
     
    96709403    </message>
    96719404    <message>
    9672         <location filename="../VBoxManageMisc.cpp" line="2340"/>
     9405        <location filename="../VBoxManageMisc.cpp" line="2374"/>
    96739406        <source>Provider %ls: profile &apos;%ls&apos; was deleted.
    96749407</source>
     
    96799412    <name>ModifyVM</name>
    96809413    <message>
    9681         <location filename="../VBoxManageModifyVM.cpp" line="464"/>
     9414        <location filename="../VBoxManageModifyVM.cpp" line="467"/>
    96829415        <source>Warning: &apos;--vrdp%s&apos; is deprecated. Use &apos;--vrde%s&apos;.
    96839416</source>
     
    96859418    </message>
    96869419    <message>
    9687         <location filename="../VBoxManageModifyVM.cpp" line="563"/>
     9420        <location filename="../VBoxManageModifyVM.cpp" line="578"/>
    96889421        <source>Invalid %s number %u</source>
    96899422        <translation type="unfinished"></translation>
    96909423    </message>
    96919424    <message>
    9692         <location filename="../VBoxManageModifyVM.cpp" line="592"/>
    9693         <location filename="../VBoxManageModifyVM.cpp" line="2026"/>
     9425        <location filename="../VBoxManageModifyVM.cpp" line="607"/>
     9426        <location filename="../VBoxManageModifyVM.cpp" line="2089"/>
    96949427        <source>Not enough parameters</source>
    96959428        <translation type="unfinished"></translation>
    96969429    </message>
    96979430    <message>
    9698         <location filename="../VBoxManageModifyVM.cpp" line="655"/>
     9431        <location filename="../VBoxManageModifyVM.cpp" line="670"/>
    96999432        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    97009433        <translation type="unfinished"></translation>
    97019434    </message>
    97029435    <message>
    9703         <location filename="../VBoxManageModifyVM.cpp" line="663"/>
     9436        <location filename="../VBoxManageModifyVM.cpp" line="678"/>
    97049437        <source>Cannot get size of file &quot;%s&quot;: %Rrc</source>
    97059438        <translation type="unfinished"></translation>
    97069439    </message>
    97079440    <message>
    9708         <location filename="../VBoxManageModifyVM.cpp" line="669"/>
     9441        <location filename="../VBoxManageModifyVM.cpp" line="684"/>
    97099442        <source>File &quot;%s&quot; is bigger than 256KByte</source>
    97109443        <translation type="unfinished"></translation>
    97119444    </message>
    97129445    <message>
    9713         <location filename="../VBoxManageModifyVM.cpp" line="677"/>
     9446        <location filename="../VBoxManageModifyVM.cpp" line="692"/>
    97149447        <source>Cannot read contents of file &quot;%s&quot;: %Rrc</source>
    97159448        <translation type="unfinished"></translation>
    97169449    </message>
    97179450    <message>
    9718         <location filename="../VBoxManageModifyVM.cpp" line="728"/>
     9451        <location filename="../VBoxManageModifyVM.cpp" line="743"/>
    97199452        <source>Invalid --firmware argument &apos;%s&apos;</source>
    97209453        <translation type="unfinished"></translation>
    97219454    </message>
    97229455    <message>
    9723         <location filename="../VBoxManageModifyVM.cpp" line="799"/>
     9456        <location filename="../VBoxManageModifyVM.cpp" line="814"/>
    97249457        <source>Invalid --paravirtprovider argument &apos;%s&apos;</source>
    97259458        <translation type="unfinished"></translation>
    97269459    </message>
    97279460    <message>
    9728         <location filename="../VBoxManageModifyVM.cpp" line="826"/>
    9729         <location filename="../VBoxManageModifyVM.cpp" line="1926"/>
    9730         <location filename="../VBoxManageModifyVM.cpp" line="2319"/>
    9731         <location filename="../VBoxManageModifyVM.cpp" line="2400"/>
    9732         <location filename="../VBoxManageModifyVM.cpp" line="2444"/>
    9733         <location filename="../VBoxManageModifyVM.cpp" line="2881"/>
    9734         <source>Missing or Invalid argument to &apos;%s&apos;</source>
    9735         <translation type="unfinished"></translation>
    9736     </message>
    9737     <message>
    9738         <location filename="../VBoxManageModifyVM.cpp" line="970"/>
     9461        <location filename="../VBoxManageModifyVM.cpp" line="841"/>
     9462        <location filename="../VBoxManageModifyVM.cpp" line="1989"/>
     9463        <location filename="../VBoxManageModifyVM.cpp" line="2381"/>
     9464        <location filename="../VBoxManageModifyVM.cpp" line="2460"/>
     9465        <location filename="../VBoxManageModifyVM.cpp" line="2503"/>
     9466        <location filename="../VBoxManageModifyVM.cpp" line="2939"/>
     9467        <source>Missing or invalid argument to &apos;%s&apos;</source>
     9468        <translation type="unfinished"></translation>
     9469    </message>
     9470    <message>
     9471        <location filename="../VBoxManageModifyVM.cpp" line="985"/>
    97399472        <source>Invalid --graphicscontroller argument &apos;%s&apos;</source>
    97409473        <translation type="unfinished"></translation>
    97419474    </message>
    97429475    <message>
    9743         <location filename="../VBoxManageModifyVM.cpp" line="1036"/>
     9476        <location filename="../VBoxManageModifyVM.cpp" line="1051"/>
    97449477        <source>Invalid --biosbootmenu argument &apos;%s&apos;</source>
    97459478        <translation type="unfinished"></translation>
    97469479    </message>
    97479480    <message>
    9748         <location filename="../VBoxManageModifyVM.cpp" line="1060"/>
     9481        <location filename="../VBoxManageModifyVM.cpp" line="1075"/>
    97499482        <source>Invalid --biosapic argument &apos;%s&apos;</source>
    97509483        <translation type="unfinished"></translation>
    97519484    </message>
    97529485    <message>
    9753         <location filename="../VBoxManageModifyVM.cpp" line="1107"/>
     9486        <location filename="../VBoxManageModifyVM.cpp" line="1122"/>
    97549487        <source>Invalid boot device &apos;%s&apos;</source>
    97559488        <translation type="unfinished"></translation>
    97569489    </message>
    97579490    <message>
    9758         <location filename="../VBoxManageModifyVM.cpp" line="1187"/>
     9491        <location filename="../VBoxManageModifyVM.cpp" line="1202"/>
    97599492        <source>Invalid --idecontroller argument &apos;%s&apos;</source>
    97609493        <translation type="unfinished"></translation>
    97619494    </message>
    97629495    <message>
    9763         <location filename="../VBoxManageModifyVM.cpp" line="1217"/>
     9496        <location filename="../VBoxManageModifyVM.cpp" line="1232"/>
    97649497        <source>Invalid --usb argument &apos;%s&apos;</source>
    97659498        <translation type="unfinished"></translation>
    97669499    </message>
    97679500    <message>
    9768         <location filename="../VBoxManageModifyVM.cpp" line="1292"/>
     9501        <location filename="../VBoxManageModifyVM.cpp" line="1307"/>
    97699502        <source>Invalid --scsitype argument &apos;%s&apos;</source>
    97709503        <translation type="unfinished"></translation>
    97719504    </message>
    97729505    <message>
    9773         <location filename="../VBoxManageModifyVM.cpp" line="1347"/>
    9774         <location filename="../VBoxManageModifyVM.cpp" line="1355"/>
     9506        <location filename="../VBoxManageModifyVM.cpp" line="1362"/>
     9507        <location filename="../VBoxManageModifyVM.cpp" line="1370"/>
    97759508        <source>Invalid host DVD drive name &quot;%s&quot;</source>
    97769509        <translation type="unfinished"></translation>
    97779510    </message>
    97789511    <message>
    9779         <location filename="../VBoxManageModifyVM.cpp" line="1421"/>
     9512        <location filename="../VBoxManageModifyVM.cpp" line="1436"/>
    97809513        <source>Invalid host floppy drive name &quot;%s&quot;</source>
    97819514        <translation type="unfinished"></translation>
    97829515    </message>
    97839516    <message>
    9784         <location filename="../VBoxManageModifyVM.cpp" line="1501"/>
     9517        <location filename="../VBoxManageModifyVM.cpp" line="1516"/>
    97859518        <source>Invalid --nicproperty%d argument &apos;%s&apos;</source>
    97869519        <translation type="unfinished"></translation>
    97879520    </message>
    97889521    <message>
    9789         <location filename="../VBoxManageModifyVM.cpp" line="1508"/>
     9522        <location filename="../VBoxManageModifyVM.cpp" line="1523"/>
    97909523        <source>Error: Failed to allocate memory for --nicproperty%d &apos;%s&apos;
    97919524</source>
     
    97939526    </message>
    97949527    <message>
    9795         <location filename="../VBoxManageModifyVM.cpp" line="1564"/>
     9528        <location filename="../VBoxManageModifyVM.cpp" line="1597"/>
    97969529        <source>Invalid NIC type &apos;%s&apos; specified for NIC %u</source>
    97979530        <translation type="unfinished"></translation>
    97989531    </message>
    97999532    <message>
    9800         <location filename="../VBoxManageModifyVM.cpp" line="1599"/>
     9533        <location filename="../VBoxManageModifyVM.cpp" line="1632"/>
    98019534        <source>Invalid boot priority &apos;%u&apos; specfied for NIC %u</source>
    98029535        <translation type="unfinished"></translation>
    98039536    </message>
    98049537    <message>
    9805         <location filename="../VBoxManageModifyVM.cpp" line="1621"/>
     9538        <location filename="../VBoxManageModifyVM.cpp" line="1654"/>
    98069539        <source>Unknown promiscuous mode policy &apos;%s&apos;</source>
    98079540        <translation type="unfinished"></translation>
    98089541    </message>
    98099542    <message>
    9810         <location filename="../VBoxManageModifyVM.cpp" line="1748"/>
     9543        <location filename="../VBoxManageModifyVM.cpp" line="1789"/>
    98119544        <source>Invalid type &apos;%s&apos; specfied for NIC %u</source>
    98129545        <translation type="unfinished"></translation>
    98139546    </message>
    98149547    <message>
    9815         <location filename="../VBoxManageModifyVM.cpp" line="2010"/>
     9548        <location filename="../VBoxManageModifyVM.cpp" line="2073"/>
    98169549        <source>Invalid proto &apos;%s&apos; specfied for NIC %u</source>
    98179550        <translation type="unfinished"></translation>
    98189551    </message>
    98199552    <message>
    9820         <location filename="../VBoxManageModifyVM.cpp" line="2228"/>
     9553        <location filename="../VBoxManageModifyVM.cpp" line="2291"/>
    98219554        <source>Invalid type &apos;%s&apos; specfied for pointing device</source>
    98229555        <translation type="unfinished"></translation>
    98239556    </message>
    98249557    <message>
    9825         <location filename="../VBoxManageModifyVM.cpp" line="2273"/>
     9558        <location filename="../VBoxManageModifyVM.cpp" line="2336"/>
    98269559        <source>Invalid type &apos;%s&apos; specfied for keyboard</source>
    98279560        <translation type="unfinished"></translation>
    98289561    </message>
    98299562    <message>
    9830         <location filename="../VBoxManageModifyVM.cpp" line="2378"/>
     9563        <location filename="../VBoxManageModifyVM.cpp" line="2439"/>
    98319564        <source>Invalid argument to &apos;%s&apos;</source>
    98329565        <translation type="unfinished"></translation>
    98339566    </message>
    98349567    <message>
    9835         <location filename="../VBoxManageModifyVM.cpp" line="2407"/>
     9568        <location filename="../VBoxManageModifyVM.cpp" line="2467"/>
    98369569        <source>Error parsing UART I/O base &apos;%s&apos;</source>
    98379570        <translation type="unfinished"></translation>
    98389571    </message>
    98399572    <message>
    9840         <location filename="../VBoxManageModifyVM.cpp" line="2451"/>
     9573        <location filename="../VBoxManageModifyVM.cpp" line="2510"/>
    98419574        <source>Error parsing LPT I/O base &apos;%s&apos;</source>
    98429575        <translation type="unfinished"></translation>
    98439576    </message>
    98449577    <message>
    9845         <location filename="../VBoxManageModifyVM.cpp" line="2480"/>
     9578        <location filename="../VBoxManageModifyVM.cpp" line="2539"/>
    98469579        <source>Invalid --audiocontroller argument &apos;%s&apos;</source>
    98479580        <translation type="unfinished"></translation>
    98489581    </message>
    98499582    <message>
    9850         <location filename="../VBoxManageModifyVM.cpp" line="2502"/>
     9583        <location filename="../VBoxManageModifyVM.cpp" line="2561"/>
    98519584        <source>Invalid --audiocodec argument &apos;%s&apos;</source>
    98529585        <translation type="unfinished"></translation>
    98539586    </message>
    98549587    <message>
    9855         <location filename="../VBoxManageModifyVM.cpp" line="2574"/>
     9588        <location filename="../VBoxManageModifyVM.cpp" line="2633"/>
    98569589        <source>Invalid --audio argument &apos;%s&apos;</source>
    98579590        <translation type="unfinished"></translation>
    98589591    </message>
    98599592    <message>
    9860         <location filename="../VBoxManageModifyVM.cpp" line="2614"/>
     9593        <location filename="../VBoxManageModifyVM.cpp" line="2673"/>
    98619594        <source>Invalid --clipboard-mode argument &apos;%s&apos;</source>
    98629595        <translation type="unfinished"></translation>
    98639596    </message>
    98649597    <message>
    9865         <location filename="../VBoxManageModifyVM.cpp" line="2634"/>
     9598        <location filename="../VBoxManageModifyVM.cpp" line="2693"/>
    98669599        <source>Invalid --clipboard-file-transfers argument &apos;%s&apos;</source>
    98679600        <translation type="unfinished"></translation>
    98689601    </message>
    98699602    <message>
    9870         <location filename="../VBoxManageModifyVM.cpp" line="2659"/>
     9603        <location filename="../VBoxManageModifyVM.cpp" line="2718"/>
    98719604        <source>Invalid --draganddrop argument &apos;%s&apos;</source>
    98729605        <translation type="unfinished"></translation>
    98739606    </message>
    98749607    <message>
    9875         <location filename="../VBoxManageModifyVM.cpp" line="2713"/>
     9608        <location filename="../VBoxManageModifyVM.cpp" line="2772"/>
    98769609        <source>Invalid --vrdeproperty argument &apos;%s&apos;</source>
    98779610        <translation type="unfinished"></translation>
    98789611    </message>
    98799612    <message>
    9880         <location filename="../VBoxManageModifyVM.cpp" line="2721"/>
     9613        <location filename="../VBoxManageModifyVM.cpp" line="2780"/>
    98819614        <source>Error: Failed to allocate memory for VRDE property &apos;%s&apos;
    98829615</source>
     
    98849617    </message>
    98859618    <message>
    9886         <location filename="../VBoxManageModifyVM.cpp" line="2783"/>
     9619        <location filename="../VBoxManageModifyVM.cpp" line="2842"/>
    98879620        <source>Invalid --vrdeauthtype argument &apos;%s&apos;</source>
    98889621        <translation type="unfinished"></translation>
    98899622    </message>
    98909623    <message>
    9891         <location filename="../VBoxManageModifyVM.cpp" line="2902"/>
     9624        <location filename="../VBoxManageModifyVM.cpp" line="2960"/>
    98929625        <source>Invalid --usbrename parameters, nothing renamed</source>
    98939626        <translation type="unfinished"></translation>
    98949627    </message>
    98959628    <message>
    9896         <location filename="../VBoxManageModifyVM.cpp" line="3106"/>
     9629        <location filename="../VBoxManageModifyVM.cpp" line="3164"/>
    98979630        <source>*** I/O APIC must be enabled for ICH9, enabling. ***
    98989631</source>
     
    99009633    </message>
    99019634    <message>
    9902         <location filename="../VBoxManageModifyVM.cpp" line="3112"/>
     9635        <location filename="../VBoxManageModifyVM.cpp" line="3170"/>
    99039636        <source>Invalid --chipset argument &apos;%s&apos; (valid: piix3,ich9)</source>
    99049637        <translation type="unfinished"></translation>
    99059638    </message>
    99069639    <message>
    9907         <location filename="../VBoxManageModifyVM.cpp" line="3130"/>
     9640        <location filename="../VBoxManageModifyVM.cpp" line="3188"/>
    99089641        <source>Invalid --iommu argument &apos;%s&apos; (valid: none,amd,automatic)</source>
    99099642        <translation type="unfinished"></translation>
    99109643    </message>
    99119644    <message>
    9912         <location filename="../VBoxManageModifyVM.cpp" line="3139"/>
     9645        <location filename="../VBoxManageModifyVM.cpp" line="3197"/>
    99139646        <source>Warning: On Intel hosts, &apos;automatic&apos; will not enable an IOMMU since the Intel IOMMU device is not supported yet.
    99149647</source>
     
    99169649    </message>
    99179650    <message>
    9918         <location filename="../VBoxManageModifyVM.cpp" line="3144"/>
     9651        <location filename="../VBoxManageModifyVM.cpp" line="3202"/>
    99199652        <source>Invalid --iommu argument &apos;%s&apos;</source>
    99209653        <translation type="unfinished"></translation>
    99219654    </message>
    99229655    <message>
    9923         <location filename="../VBoxManageModifyVM.cpp" line="3169"/>
     9656        <location filename="../VBoxManageModifyVM.cpp" line="3227"/>
    99249657        <source>Invalid --tpm-type argument &apos;%s&apos;</source>
    99259658        <translation type="unfinished"></translation>
    99269659    </message>
    99279660    <message>
    9928         <location filename="../VBoxManageModifyVM.cpp" line="3226"/>
     9661        <location filename="../VBoxManageModifyVM.cpp" line="3284"/>
    99299662        <source>Invalid list of screens specified
    99309663</source>
     
    99329665    </message>
    99339666    <message>
    9934         <location filename="../VBoxManageModifyVM.cpp" line="3248"/>
     9667        <location filename="../VBoxManageModifyVM.cpp" line="3306"/>
    99359668        <source>Cannot convert filename &quot;%s&quot; to absolute path
    99369669</source>
     
    99389671    </message>
    99399672    <message>
    9940         <location filename="../VBoxManageModifyVM.cpp" line="3278"/>
    9941         <location filename="../VBoxManageModifyVM.cpp" line="3287"/>
     9673        <location filename="../VBoxManageModifyVM.cpp" line="3336"/>
     9674        <location filename="../VBoxManageModifyVM.cpp" line="3345"/>
    99429675        <source>Error parsing video resolution &apos;%s&apos; (expected &lt;width&gt;x&lt;height&gt;)</source>
    99439676        <translation type="unfinished"></translation>
    99449677    </message>
    99459678    <message>
    9946         <location filename="../VBoxManageModifyVM.cpp" line="3362"/>
     9679        <location filename="../VBoxManageModifyVM.cpp" line="3420"/>
    99479680        <source>Invalid --autostop-type argument &apos;%s&apos; (valid: disabled, savestate, poweroff, acpishutdown)</source>
    99489681        <translation type="unfinished"></translation>
    99499682    </message>
    99509683    <message>
    9951         <location filename="../VBoxManageModifyVM.cpp" line="3382"/>
     9684        <location filename="../VBoxManageModifyVM.cpp" line="3440"/>
    99529685        <source>Invalid --pciattach argument &apos;%s&apos; (valid: &apos;HB:HD.HF@GB:GD.GF&apos; or just &apos;HB:HD.HF&apos;)</source>
    99539686        <translation type="unfinished"></translation>
    99549687    </message>
    99559688    <message>
    9956         <location filename="../VBoxManageModifyVM.cpp" line="3400"/>
     9689        <location filename="../VBoxManageModifyVM.cpp" line="3458"/>
    99579690        <source>Invalid --pcidetach argument &apos;%s&apos; (valid: &apos;HB:HD.HF&apos;)</source>
    99589691        <translation type="unfinished"></translation>
    99599692    </message>
    99609693    <message>
    9961         <location filename="../VBoxManageModifyVM.cpp" line="3434"/>
     9694        <location filename="../VBoxManageModifyVM.cpp" line="3492"/>
    99629695        <source>Invalid --vm-process-priority &apos;%s&apos;</source>
    99639696        <translation type="unfinished"></translation>
    99649697    </message>
    99659698    <message>
    9966         <location filename="../VBoxManageModifyVM.cpp" line="3463"/>
     9699        <location filename="../VBoxManageModifyVM.cpp" line="3521"/>
    99679700        <source>--testing-cfg-dword index %u is out of range: 0 thru 9</source>
    99689701        <translation type="unfinished"></translation>
     
    99729705    <name>Nat</name>
    99739706    <message>
    9974         <location filename="../VBoxManageNATNetwork.cpp" line="98"/>
     9707        <location filename="../VBoxManageNATNetwork.cpp" line="96"/>
    99759708        <source>Name:         %ls
    99769709</source>
     
    99789711    </message>
    99799712    <message>
    9980         <location filename="../VBoxManageNATNetwork.cpp" line="101"/>
     9713        <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
    99819714        <source>Network:      %ls
    99829715</source>
     
    99849717    </message>
    99859718    <message>
    9986         <location filename="../VBoxManageNATNetwork.cpp" line="104"/>
     9719        <location filename="../VBoxManageNATNetwork.cpp" line="113"/>
    99879720        <source>Gateway:      %ls
    99889721</source>
     
    99909723    </message>
    99919724    <message>
    9992         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    9993         <source>DHCP Sever:   %s
    9994 </source>
    9995         <translation type="unfinished"></translation>
    9996     </message>
    9997     <message>
    9998         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    9999         <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
     9725        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
    100009726        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10001         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
     9727        <location filename="../VBoxManageNATNetwork.cpp" line="119"/>
     9728        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
    100029729        <source>Yes</source>
    100039730        <translation type="unfinished"></translation>
    100049731    </message>
    100059732    <message>
    10006         <location filename="../VBoxManageNATNetwork.cpp" line="107"/>
    10007         <location filename="../VBoxManageNATNetwork.cpp" line="110"/>
     9733        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
    100089734        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10009         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
     9735        <location filename="../VBoxManageNATNetwork.cpp" line="119"/>
     9736        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
    100109737        <source>No</source>
    100119738        <translation type="unfinished"></translation>
    100129739    </message>
    100139740    <message>
    10014         <location filename="../VBoxManageNATNetwork.cpp" line="113"/>
     9741        <location filename="../VBoxManageNATNetwork.cpp" line="122"/>
    100159742        <source>IPv6 Prefix:  %ls
    100169743</source>
     
    100189745    </message>
    100199746    <message>
     9747        <location filename="../VBoxManageNATNetwork.cpp" line="125"/>
     9748        <source>IPv6 Default: %s
     9749</source>
     9750        <translation type="unfinished"></translation>
     9751    </message>
     9752    <message>
     9753        <location filename="../VBoxManageNATNetwork.cpp" line="106"/>
     9754        <source>Enabled:      %s
     9755</source>
     9756        <translation type="unfinished"></translation>
     9757    </message>
     9758    <message>
    100209759        <location filename="../VBoxManageNATNetwork.cpp" line="116"/>
    10021         <source>IPv6 Default: %s
    10022 </source>
    10023         <translation type="unfinished"></translation>
    10024     </message>
    10025     <message>
    10026         <location filename="../VBoxManageNATNetwork.cpp" line="120"/>
    10027         <source>Enabled:      %s
    10028 </source>
    10029         <translation type="unfinished"></translation>
    10030     </message>
    10031     <message>
    10032         <location filename="../VBoxManageNATNetwork.cpp" line="133"/>
     9760        <source>DHCP Server:  %s
     9761</source>
     9762        <translation type="unfinished"></translation>
     9763    </message>
     9764    <message>
     9765        <location filename="../VBoxManageNATNetwork.cpp" line="142"/>
     9766        <source>Port-forwarding (ipv4)
     9767</source>
     9768        <translation type="unfinished"></translation>
     9769    </message>
     9770    <message>
     9771        <location filename="../VBoxManageNATNetwork.cpp" line="146"/>
     9772        <source>Port-forwarding (ipv6)
     9773</source>
     9774        <translation type="unfinished"></translation>
     9775    </message>
     9776    <message>
     9777        <location filename="../VBoxManageNATNetwork.cpp" line="150"/>
     9778        <source>loopback mappings (ipv4)
     9779</source>
     9780        <translation type="unfinished"></translation>
     9781    </message>
     9782    <message>
     9783        <location filename="../VBoxManageNATNetwork.cpp" line="166"/>
    100339784        <source>NAT Networks:
    100349785
     
    100379788    </message>
    100389789    <message>
    10039         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     9790        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    100409791        <source>%zu %s found
    100419792</source>
     
    100439794    </message>
    100449795    <message>
    10045         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     9796        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    100469797        <source>network</source>
    100479798        <translation type="unfinished"></translation>
    100489799    </message>
    100499800    <message numerus="yes">
    10050         <location filename="../VBoxManageNATNetwork.cpp" line="167"/>
     9801        <location filename="../VBoxManageNATNetwork.cpp" line="198"/>
    100519802        <source>networks</source>
    100529803        <translation type="unfinished">
     
    100559806    </message>
    100569807    <message>
    10057         <location filename="../VBoxManageNATNetwork.cpp" line="175"/>
    10058         <location filename="../VBoxManageNATNetwork.cpp" line="549"/>
     9808        <location filename="../VBoxManageNATNetwork.cpp" line="206"/>
     9809        <location filename="../VBoxManageNATNetwork.cpp" line="602"/>
    100599810        <source>Not enough parameters</source>
    100609811        <translation type="unfinished"></translation>
    100619812    </message>
    100629813    <message>
    10063         <location filename="../VBoxManageNATNetwork.cpp" line="222"/>
     9814        <location filename="../VBoxManageNATNetwork.cpp" line="261"/>
    100649815        <source>You can only specify --netname only once.</source>
    100659816        <translation type="unfinished"></translation>
    100669817    </message>
    100679818    <message>
    10068         <location filename="../VBoxManageNATNetwork.cpp" line="228"/>
     9819        <location filename="../VBoxManageNATNetwork.cpp" line="267"/>
    100699820        <source>You can only specify --network only once.</source>
    100709821        <translation type="unfinished"></translation>
    100719822    </message>
    100729823    <message>
    10073         <location filename="../VBoxManageNATNetwork.cpp" line="234"/>
    10074         <location filename="../VBoxManageNATNetwork.cpp" line="240"/>
     9824        <location filename="../VBoxManageNATNetwork.cpp" line="273"/>
     9825        <location filename="../VBoxManageNATNetwork.cpp" line="279"/>
    100759826        <source>You can specify either --enable or --disable once.</source>
    100769827        <translation type="unfinished"></translation>
    100779828    </message>
    100789829    <message>
    10079         <location filename="../VBoxManageNATNetwork.cpp" line="246"/>
     9830        <location filename="../VBoxManageNATNetwork.cpp" line="285"/>
    100809831        <source>You can specify --dhcp only once.</source>
    100819832        <translation type="unfinished"></translation>
    100829833    </message>
    100839834    <message>
    10084         <location filename="../VBoxManageNATNetwork.cpp" line="252"/>
     9835        <location filename="../VBoxManageNATNetwork.cpp" line="291"/>
    100859836        <source>You can specify --ipv6 only once.</source>
    100869837        <translation type="unfinished"></translation>
    100879838    </message>
    100889839    <message>
    10089         <location filename="../VBoxManageNATNetwork.cpp" line="258"/>
     9840        <location filename="../VBoxManageNATNetwork.cpp" line="297"/>
    100909841        <source>You can specify --ipv6-prefix only once.</source>
    100919842        <translation type="unfinished"></translation>
    100929843    </message>
    100939844    <message>
    10094         <location filename="../VBoxManageNATNetwork.cpp" line="269"/>
     9845        <location filename="../VBoxManageNATNetwork.cpp" line="303"/>
     9846        <source>You can specify --ipv6-default only once.</source>
     9847        <translation type="unfinished"></translation>
     9848    </message>
     9849    <message>
     9850        <location filename="../VBoxManageNATNetwork.cpp" line="313"/>
    100959851        <source>loopback couldn&apos;t be deleted on modified
    100969852</source>
     
    100989854    </message>
    100999855    <message>
    10100         <location filename="../VBoxManageNATNetwork.cpp" line="281"/>
    10101         <location filename="../VBoxManageNATNetwork.cpp" line="320"/>
     9856        <location filename="../VBoxManageNATNetwork.cpp" line="324"/>
     9857        <location filename="../VBoxManageNATNetwork.cpp" line="362"/>
    101029858        <source>Not enough parаmeters
    101039859</source>
     
    101059861    </message>
    101069862    <message>
    10107         <location filename="../VBoxManageNATNetwork.cpp" line="306"/>
     9863        <location filename="../VBoxManageNATNetwork.cpp" line="349"/>
    101089864        <source>Invalid port-forward rule %s
    101099865</source>
     
    101119867    </message>
    101129868    <message>
    10113         <location filename="../VBoxManageNATNetwork.cpp" line="315"/>
     9869        <location filename="../VBoxManageNATNetwork.cpp" line="357"/>
    101149870        <source>Port-forward could be deleted on modify
    101159871</source>
     
    101179873    </message>
    101189874    <message>
    10119         <location filename="../VBoxManageNATNetwork.cpp" line="323"/>
     9875        <location filename="../VBoxManageNATNetwork.cpp" line="365"/>
    101209876        <source>Port-forward rule name is too long
    101219877</source>
     
    101239879    </message>
    101249880    <message>
    10125         <location filename="../VBoxManageNATNetwork.cpp" line="340"/>
     9881        <location filename="../VBoxManageNATNetwork.cpp" line="382"/>
    101269882        <source>You need to specify the --netname option</source>
    101279883        <translation type="unfinished"></translation>
    101289884    </message>
    101299885    <message>
    10130         <location filename="../VBoxManageNATNetwork.cpp" line="346"/>
     9886        <location filename="../VBoxManageNATNetwork.cpp" line="388"/>
    101319887        <source>You need to specify the --network option</source>
    101329888        <translation type="unfinished"></translation>
    101339889    </message>
    101349890    <message>
    10135         <location filename="../VBoxManageNATNetwork.cpp" line="354"/>
     9891        <location filename="../VBoxManageNATNetwork.cpp" line="396"/>
    101369892        <source>Unknown operation (:%d)</source>
    101379893        <translation type="unfinished"></translation>
    101389894    </message>
    101399895    <message>
    10140         <location filename="../VBoxManageNATNetwork.cpp" line="366"/>
     9896        <location filename="../VBoxManageNATNetwork.cpp" line="408"/>
    101419897        <source>NATNetwork server already exists</source>
    101429898        <translation type="unfinished"></translation>
    101439899    </message>
    101449900    <message>
    10145         <location filename="../VBoxManageNATNetwork.cpp" line="370"/>
     9901        <location filename="../VBoxManageNATNetwork.cpp" line="412"/>
    101469902        <source>Failed to create the NAT network service</source>
    101479903        <translation type="unfinished"></translation>
    101489904    </message>
    101499905    <message>
    10150         <location filename="../VBoxManageNATNetwork.cpp" line="373"/>
     9906        <location filename="../VBoxManageNATNetwork.cpp" line="415"/>
    101519907        <source>NATNetwork server does not exist</source>
    101529908        <translation type="unfinished"></translation>
    101539909    </message>
    101549910    <message>
    10155         <location filename="../VBoxManageNATNetwork.cpp" line="384"/>
    10156         <location filename="../VBoxManageNATNetwork.cpp" line="390"/>
    10157         <location filename="../VBoxManageNATNetwork.cpp" line="402"/>
    10158         <location filename="../VBoxManageNATNetwork.cpp" line="409"/>
    10159         <location filename="../VBoxManageNATNetwork.cpp" line="420"/>
    10160         <location filename="../VBoxManageNATNetwork.cpp" line="515"/>
     9911        <location filename="../VBoxManageNATNetwork.cpp" line="426"/>
     9912        <location filename="../VBoxManageNATNetwork.cpp" line="432"/>
     9913        <location filename="../VBoxManageNATNetwork.cpp" line="444"/>
     9914        <location filename="../VBoxManageNATNetwork.cpp" line="451"/>
     9915        <location filename="../VBoxManageNATNetwork.cpp" line="462"/>
     9916        <location filename="../VBoxManageNATNetwork.cpp" line="470"/>
     9917        <location filename="../VBoxManageNATNetwork.cpp" line="565"/>
    101619918        <source>Failed to set configuration</source>
    101629919        <translation type="unfinished"></translation>
    101639920    </message>
    101649921    <message>
    10165         <location filename="../VBoxManageNATNetwork.cpp" line="431"/>
     9922        <location filename="../VBoxManageNATNetwork.cpp" line="481"/>
    101669923        <source>Failed to delete pf</source>
    101679924        <translation type="unfinished"></translation>
    101689925    </message>
    101699926    <message>
    10170         <location filename="../VBoxManageNATNetwork.cpp" line="456"/>
     9927        <location filename="../VBoxManageNATNetwork.cpp" line="506"/>
    101719928        <source>Failed to add pf</source>
    101729929        <translation type="unfinished"></translation>
    101739930    </message>
    101749931    <message>
    10175         <location filename="../VBoxManageNATNetwork.cpp" line="482"/>
    10176         <location filename="../VBoxManageNATNetwork.cpp" line="488"/>
     9932        <location filename="../VBoxManageNATNetwork.cpp" line="532"/>
     9933        <location filename="../VBoxManageNATNetwork.cpp" line="538"/>
    101779934        <source>invalid loopback string</source>
    101789935        <translation type="unfinished"></translation>
    101799936    </message>
    101809937    <message>
    10181         <location filename="../VBoxManageNATNetwork.cpp" line="523"/>
     9938        <location filename="../VBoxManageNATNetwork.cpp" line="573"/>
    101829939        <source>Failed to remove nat network</source>
    101839940        <translation type="unfinished"></translation>
    101849941    </message>
    101859942    <message>
    10186         <location filename="../VBoxManageNATNetwork.cpp" line="530"/>
     9943        <location filename="../VBoxManageNATNetwork.cpp" line="580"/>
    101879944        <source>Failed to start network</source>
    101889945        <translation type="unfinished"></translation>
    101899946    </message>
    101909947    <message>
    10191         <location filename="../VBoxManageNATNetwork.cpp" line="537"/>
     9948        <location filename="../VBoxManageNATNetwork.cpp" line="587"/>
    101929949        <source>Failed to stop network</source>
    101939950        <translation type="unfinished"></translation>
    101949951    </message>
    101959952    <message>
    10196         <location filename="../VBoxManageNATNetwork.cpp" line="565"/>
     9953        <location filename="../VBoxManageNATNetwork.cpp" line="636"/>
    101979954        <source>Invalid parameter &apos;%s&apos;</source>
    101989955        <translation type="unfinished"></translation>
     
    102029959    <name>Nvram</name>
    102039960    <message>
     9961        <location filename="../VBoxManageModifyNvram.cpp" line="121"/>
     9962        <source>No platform key file path was given to &quot;enrollpk&quot;</source>
     9963        <translation type="unfinished"></translation>
     9964    </message>
     9965    <message>
    102049966        <location filename="../VBoxManageModifyNvram.cpp" line="123"/>
    10205         <source>No platform key file path was given to &quot;enrollpk&quot;</source>
    10206         <translation type="unfinished"></translation>
    10207     </message>
    10208     <message>
    10209         <location filename="../VBoxManageModifyNvram.cpp" line="125"/>
    102109967        <source>No owner UUID was given to &quot;enrollpk&quot;</source>
    102119968        <translation type="unfinished"></translation>
    102129969    </message>
    102139970    <message>
    10214         <location filename="../VBoxManageModifyNvram.cpp" line="149"/>
     9971        <location filename="../VBoxManageModifyNvram.cpp" line="147"/>
    102159972        <source>Cannot read contents of file &quot;%s&quot;: %Rrc</source>
    102169973        <translation type="unfinished"></translation>
    102179974    </message>
    102189975    <message>
    10219         <location filename="../VBoxManageModifyNvram.cpp" line="152"/>
     9976        <location filename="../VBoxManageModifyNvram.cpp" line="150"/>
    102209977        <source>File &quot;%s&quot; is bigger than 32KByte</source>
    102219978        <translation type="unfinished"></translation>
    102229979    </message>
    102239980    <message>
    10224         <location filename="../VBoxManageModifyNvram.cpp" line="155"/>
     9981        <location filename="../VBoxManageModifyNvram.cpp" line="153"/>
    102259982        <source>Cannot get size of file &quot;%s&quot;: %Rrc</source>
    102269983        <translation type="unfinished"></translation>
    102279984    </message>
    102289985    <message>
    10229         <location filename="../VBoxManageModifyNvram.cpp" line="160"/>
     9986        <location filename="../VBoxManageModifyNvram.cpp" line="158"/>
    102309987        <source>Cannot open file &quot;%s&quot;: %Rrc</source>
    102319988        <translation type="unfinished"></translation>
    102329989    </message>
    102339990    <message>
    10234         <location filename="../VBoxManageModifyNvram.cpp" line="252"/>
     9991        <location filename="../VBoxManageModifyNvram.cpp" line="250"/>
    102359992        <source>No variable name was given to &quot;queryvar&quot;</source>
    102369993        <translation type="unfinished"></translation>
    102379994    </message>
    102389995    <message>
    10239         <location filename="../VBoxManageModifyNvram.cpp" line="279"/>
     9996        <location filename="../VBoxManageModifyNvram.cpp" line="277"/>
    102409997        <source>Error writing to &apos;%s&apos;: %Rrc</source>
    102419998        <translation type="unfinished"></translation>
    102429999    </message>
    1024310000    <message>
    10244         <location filename="../VBoxManageModifyNvram.cpp" line="284"/>
    10245         <location filename="../VBoxManageModifyNvram.cpp" line="413"/>
     10001        <location filename="../VBoxManageModifyNvram.cpp" line="282"/>
     10002        <location filename="../VBoxManageModifyNvram.cpp" line="411"/>
    1024610003        <source>Error opening &apos;%s&apos;: %Rrc</source>
    1024710004        <translation type="unfinished"></translation>
    1024810005    </message>
    1024910006    <message>
     10007        <location filename="../VBoxManageModifyNvram.cpp" line="329"/>
     10008        <source>No variable name was given to &quot;deletevar&quot;</source>
     10009        <translation type="unfinished"></translation>
     10010    </message>
     10011    <message>
    1025010012        <location filename="../VBoxManageModifyNvram.cpp" line="331"/>
    10251         <source>No variable name was given to &quot;deletevar&quot;</source>
    10252         <translation type="unfinished"></translation>
    10253     </message>
    10254     <message>
    10255         <location filename="../VBoxManageModifyNvram.cpp" line="333"/>
    1025610013        <source>No owner UUID was given to &quot;deletevar&quot;</source>
    1025710014        <translation type="unfinished"></translation>
    1025810015    </message>
    1025910016    <message>
     10017        <location filename="../VBoxManageModifyNvram.cpp" line="381"/>
     10018        <source>No variable name was given to &quot;changevar&quot;</source>
     10019        <translation type="unfinished"></translation>
     10020    </message>
     10021    <message>
    1026010022        <location filename="../VBoxManageModifyNvram.cpp" line="383"/>
    10261         <source>No variable name was given to &quot;changevar&quot;</source>
    10262         <translation type="unfinished"></translation>
    10263     </message>
    10264     <message>
    10265         <location filename="../VBoxManageModifyNvram.cpp" line="385"/>
    1026610023        <source>No variable data filename was given to &quot;changevar&quot;</source>
    1026710024        <translation type="unfinished"></translation>
    1026810025    </message>
    1026910026    <message>
    10270         <location filename="../VBoxManageModifyNvram.cpp" line="409"/>
     10027        <location filename="../VBoxManageModifyNvram.cpp" line="407"/>
    1027110028        <source>Error reading from &apos;%s&apos;: %Rrc</source>
    1027210029        <translation type="unfinished"></translation>
     
    1036210119    <name>Storage</name>
    1036310120    <message>
    10364         <location filename="../VBoxManageStorageController.cpp" line="168"/>
    10365         <location filename="../VBoxManageStorageController.cpp" line="1182"/>
     10121        <location filename="../VBoxManageStorageController.cpp" line="166"/>
     10122        <location filename="../VBoxManageStorageController.cpp" line="1180"/>
    1036610123        <source>Invalid --type argument &apos;%s&apos;</source>
    1036710124        <translation type="unfinished"></translation>
    1036810125    </message>
    1036910126    <message>
    10370         <location filename="../VBoxManageStorageController.cpp" line="307"/>
     10127        <location filename="../VBoxManageStorageController.cpp" line="305"/>
    1037110128        <source>Invalid medium type &apos;%s&apos;</source>
    1037210129        <translation type="unfinished"></translation>
    1037310130    </message>
    1037410131    <message>
    10375         <location filename="../VBoxManageStorageController.cpp" line="329"/>
     10132        <location filename="../VBoxManageStorageController.cpp" line="327"/>
    1037610133        <source>Storage controller name not specified</source>
    1037710134        <translation type="unfinished"></translation>
    1037810135    </message>
    1037910136    <message>
     10137        <location filename="../VBoxManageStorageController.cpp" line="347"/>
     10138        <source>Drive passthrough state cannot be changed while the VM is running
     10139</source>
     10140        <translation type="unfinished"></translation>
     10141    </message>
     10142    <message>
    1038010143        <location filename="../VBoxManageStorageController.cpp" line="349"/>
    10381         <source>Drive passthrough state cannot be changed while the VM is running
    10382 </source>
    10383         <translation type="unfinished"></translation>
    10384     </message>
    10385     <message>
    10386         <location filename="../VBoxManageStorageController.cpp" line="351"/>
    1038710144        <source>Bandwidth group cannot be changed while the VM is running
    1038810145</source>
     
    1039010147    </message>
    1039110148    <message>
    10392         <location filename="../VBoxManageStorageController.cpp" line="358"/>
     10149        <location filename="../VBoxManageStorageController.cpp" line="356"/>
    1039310150        <source>Could not find a controller named &apos;%s&apos;
    1039410151</source>
     
    1039610153    </message>
    1039710154    <message>
    10398         <location filename="../VBoxManageStorageController.cpp" line="372"/>
     10155        <location filename="../VBoxManageStorageController.cpp" line="370"/>
    1039910156        <source>Port not specified</source>
    1040010157        <translation type="unfinished"></translation>
    1040110158    </message>
    1040210159    <message>
    10403         <location filename="../VBoxManageStorageController.cpp" line="379"/>
     10160        <location filename="../VBoxManageStorageController.cpp" line="377"/>
    1040410161        <source>Device not specified</source>
    1040510162        <translation type="unfinished"></translation>
    1040610163    </message>
    1040710164    <message>
    10408         <location filename="../VBoxManageStorageController.cpp" line="443"/>
     10165        <location filename="../VBoxManageStorageController.cpp" line="441"/>
    1040910166        <source>No DVD/Floppy Drive attached to the controller &apos;%s&apos;at the port: %u, device: %u</source>
    1041010167        <translation type="unfinished"></translation>
    1041110168    </message>
    1041210169    <message>
    10413         <location filename="../VBoxManageStorageController.cpp" line="463"/>
     10170        <location filename="../VBoxManageStorageController.cpp" line="461"/>
    1041410171        <source>The attachment is not supported by the storage controller &apos;%s&apos;</source>
    1041510172        <translation type="unfinished"></translation>
    1041610173    </message>
    1041710174    <message>
    10418         <location filename="../VBoxManageStorageController.cpp" line="518"/>
     10175        <location filename="../VBoxManageStorageController.cpp" line="516"/>
    1041910176        <source>Cannot find the Guest Additions ISO image
    1042010177</source>
     
    1042210179    </message>
    1042310180    <message>
    10424         <location filename="../VBoxManageStorageController.cpp" line="544"/>
     10181        <location filename="../VBoxManageStorageController.cpp" line="542"/>
    1042510182        <source>Argument --type must be specified
    1042610183</source>
     
    1042810185    </message>
    1042910186    <message>
    10430         <location filename="../VBoxManageStorageController.cpp" line="558"/>
     10187        <location filename="../VBoxManageStorageController.cpp" line="556"/>
    1043110188        <source>The given attachment is not supported by the storage controller &apos;%s&apos;</source>
    1043210189        <translation type="unfinished"></translation>
    1043310190    </message>
    1043410191    <message>
    10435         <location filename="../VBoxManageStorageController.cpp" line="580"/>
    10436         <location filename="../VBoxManageStorageController.cpp" line="584"/>
     10192        <location filename="../VBoxManageStorageController.cpp" line="578"/>
     10193        <location filename="../VBoxManageStorageController.cpp" line="582"/>
    1043710194        <source>Invalid host DVD drive name &quot;%s&quot;</source>
    1043810195        <translation type="unfinished"></translation>
    1043910196    </message>
    1044010197    <message>
    10441         <location filename="../VBoxManageStorageController.cpp" line="593"/>
     10198        <location filename="../VBoxManageStorageController.cpp" line="591"/>
    1044210199        <source>Invalid host floppy drive name &quot;%s&quot;</source>
    1044310200        <translation type="unfinished"></translation>
    1044410201    </message>
    1044510202    <message>
    10446         <location filename="../VBoxManageStorageController.cpp" line="600"/>
     10203        <location filename="../VBoxManageStorageController.cpp" line="598"/>
    1044710204        <source>Parameters --server and --target are required for iSCSI media</source>
    1044810205        <translation type="unfinished"></translation>
    1044910206    </message>
    1045010207    <message>
    10451         <location filename="../VBoxManageStorageController.cpp" line="667"/>
     10208        <location filename="../VBoxManageStorageController.cpp" line="665"/>
    1045210209        <source>iSCSI disk created. UUID: %s
    1045310210</source>
     
    1045510212    </message>
    1045610213    <message>
    10457         <location filename="../VBoxManageStorageController.cpp" line="678"/>
     10214        <location filename="../VBoxManageStorageController.cpp" line="676"/>
    1045810215        <source>Missing --medium argument</source>
    1045910216        <translation type="unfinished"></translation>
    1046010217    </message>
    1046110218    <message>
    10462         <location filename="../VBoxManageStorageController.cpp" line="687"/>
     10219        <location filename="../VBoxManageStorageController.cpp" line="685"/>
    1046310220        <source>Invalid UUID or filename &quot;%s&quot;</source>
    1046410221        <translation type="unfinished"></translation>
    1046510222    </message>
    1046610223    <message>
    10467         <location filename="../VBoxManageStorageController.cpp" line="697"/>
     10224        <location filename="../VBoxManageStorageController.cpp" line="695"/>
    1046810225        <source>Failed to set the medium/parent medium UUID</source>
    1046910226        <translation type="unfinished"></translation>
    1047010227    </message>
    1047110228    <message>
    10472         <location filename="../VBoxManageStorageController.cpp" line="711"/>
     10229        <location filename="../VBoxManageStorageController.cpp" line="709"/>
    1047310230        <source>Failed to set the medium type</source>
    1047410231        <translation type="unfinished"></translation>
    1047510232    </message>
    1047610233    <message>
    10477         <location filename="../VBoxManageStorageController.cpp" line="806"/>
     10234        <location filename="../VBoxManageStorageController.cpp" line="804"/>
    1047810235        <source>Invalid --passthrough argument &apos;%s&apos;</source>
    1047910236        <translation type="unfinished"></translation>
    1048010237    </message>
    1048110238    <message>
    10482         <location filename="../VBoxManageStorageController.cpp" line="809"/>
    10483         <location filename="../VBoxManageStorageController.cpp" line="835"/>
    10484         <location filename="../VBoxManageStorageController.cpp" line="861"/>
    10485         <location filename="../VBoxManageStorageController.cpp" line="887"/>
    10486         <location filename="../VBoxManageStorageController.cpp" line="913"/>
     10239        <location filename="../VBoxManageStorageController.cpp" line="807"/>
     10240        <location filename="../VBoxManageStorageController.cpp" line="833"/>
     10241        <location filename="../VBoxManageStorageController.cpp" line="859"/>
     10242        <location filename="../VBoxManageStorageController.cpp" line="885"/>
     10243        <location filename="../VBoxManageStorageController.cpp" line="911"/>
    1048710244        <source>Couldn&apos;t find the controller attachment for the controller &apos;%s&apos;
    1048810245</source>
     
    1049010247    </message>
    1049110248    <message>
    10492         <location filename="../VBoxManageStorageController.cpp" line="832"/>
     10249        <location filename="../VBoxManageStorageController.cpp" line="830"/>
    1049310250        <source>Invalid --tempeject argument &apos;%s&apos;</source>
    1049410251        <translation type="unfinished"></translation>
    1049510252    </message>
    1049610253    <message>
    10497         <location filename="../VBoxManageStorageController.cpp" line="858"/>
     10254        <location filename="../VBoxManageStorageController.cpp" line="856"/>
    1049810255        <source>Invalid --nonrotational argument &apos;%s&apos;</source>
    1049910256        <translation type="unfinished"></translation>
    1050010257    </message>
    1050110258    <message>
    10502         <location filename="../VBoxManageStorageController.cpp" line="884"/>
     10259        <location filename="../VBoxManageStorageController.cpp" line="882"/>
    1050310260        <source>Invalid --discard argument &apos;%s&apos;</source>
    1050410261        <translation type="unfinished"></translation>
    1050510262    </message>
    1050610263    <message>
    10507         <location filename="../VBoxManageStorageController.cpp" line="910"/>
     10264        <location filename="../VBoxManageStorageController.cpp" line="908"/>
    1050810265        <source>Invalid --hotpluggable argument &apos;%s&apos;</source>
    1050910266        <translation type="unfinished"></translation>
    1051010267    </message>
    1051110268    <message>
    10512         <location filename="../VBoxManageStorageController.cpp" line="992"/>
     10269        <location filename="../VBoxManageStorageController.cpp" line="990"/>
    1051310270        <source>Too few parameters</source>
    1051410271        <translation type="unfinished"></translation>
    1051510272    </message>
    1051610273    <message>
    10517         <location filename="../VBoxManageStorageController.cpp" line="1058"/>
     10274        <location filename="../VBoxManageStorageController.cpp" line="1056"/>
    1051810275        <source>Storage controller name not specified
    1051910276</source>
     
    1052110278    </message>
    1052210279    <message>
    10523         <location filename="../VBoxManageStorageController.cpp" line="1121"/>
     10280        <location filename="../VBoxManageStorageController.cpp" line="1119"/>
    1052410281        <source>Invalid --add argument &apos;%s&apos;</source>
    1052510282        <translation type="unfinished"></translation>
    1052610283    </message>
    1052710284    <message>
    10528         <location filename="../VBoxManageStorageController.cpp" line="1188"/>
    10529         <location filename="../VBoxManageStorageController.cpp" line="1207"/>
    10530         <location filename="../VBoxManageStorageController.cpp" line="1238"/>
    10531         <location filename="../VBoxManageStorageController.cpp" line="1264"/>
    10532         <location filename="../VBoxManageStorageController.cpp" line="1283"/>
     10285        <location filename="../VBoxManageStorageController.cpp" line="1186"/>
     10286        <location filename="../VBoxManageStorageController.cpp" line="1205"/>
     10287        <location filename="../VBoxManageStorageController.cpp" line="1236"/>
     10288        <location filename="../VBoxManageStorageController.cpp" line="1262"/>
     10289        <location filename="../VBoxManageStorageController.cpp" line="1281"/>
    1053310290        <source>Couldn&apos;t find the controller with the name: &apos;%s&apos;
    1053410291</source>
     
    1053610293    </message>
    1053710294    <message>
    10538         <location filename="../VBoxManageStorageController.cpp" line="1232"/>
     10295        <location filename="../VBoxManageStorageController.cpp" line="1230"/>
    1053910296        <source>Invalid --hostiocache argument &apos;%s&apos;</source>
    1054010297        <translation type="unfinished"></translation>
    1054110298    </message>
    1054210299    <message>
    10543         <location filename="../VBoxManageStorageController.cpp" line="1258"/>
     10300        <location filename="../VBoxManageStorageController.cpp" line="1256"/>
    1054410301        <source>Invalid --bootable argument &apos;%s&apos;</source>
    1054510302        <translation type="unfinished"></translation>
     
    1054910306    <name>UpdateCheck</name>
    1055010307    <message>
     10308        <location filename="../VBoxManageUpdateCheck.cpp" line="81"/>
     10309        <source>Enabled:                %s
     10310</source>
     10311        <translation type="unfinished"></translation>
     10312    </message>
     10313    <message>
     10314        <location filename="../VBoxManageUpdateCheck.cpp" line="82"/>
     10315        <source>yes</source>
     10316        <translation type="unfinished"></translation>
     10317    </message>
     10318    <message>
     10319        <location filename="../VBoxManageUpdateCheck.cpp" line="82"/>
     10320        <source>no</source>
     10321        <translation type="unfinished"></translation>
     10322    </message>
     10323    <message>
    1055110324        <location filename="../VBoxManageUpdateCheck.cpp" line="89"/>
    10552         <source>Enabled:                %s
    10553 </source>
    10554         <translation type="unfinished"></translation>
    10555     </message>
    10556     <message>
    10557         <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>
    10558         <source>yes</source>
    10559         <translation type="unfinished"></translation>
    10560     </message>
    10561     <message>
    10562         <location filename="../VBoxManageUpdateCheck.cpp" line="90"/>
    10563         <source>no</source>
    10564         <translation type="unfinished"></translation>
    10565     </message>
    10566     <message>
    10567         <location filename="../VBoxManageUpdateCheck.cpp" line="97"/>
    1056810325        <source>Count:                  %u
    1056910326</source>
     
    1057110328    </message>
    1057210329    <message>
    10573         <location filename="../VBoxManageUpdateCheck.cpp" line="104"/>
     10330        <location filename="../VBoxManageUpdateCheck.cpp" line="99"/>
    1057410331        <source>Frequency:              never
    1057510332</source>
     
    1057710334    </message>
    1057810335    <message>
    10579         <location filename="../VBoxManageUpdateCheck.cpp" line="106"/>
     10336        <location filename="../VBoxManageUpdateCheck.cpp" line="101"/>
    1058010337        <source>Frequency:              every day
    1058110338</source>
     
    1058310340    </message>
    1058410341    <message>
    10585         <location filename="../VBoxManageUpdateCheck.cpp" line="108"/>
     10342        <location filename="../VBoxManageUpdateCheck.cpp" line="103"/>
    1058610343        <source>Frequency:              every %u days
    1058710344</source>
     
    1058910346    </message>
    1059010347    <message>
    10591         <location filename="../VBoxManageUpdateCheck.cpp" line="117"/>
     10348        <location filename="../VBoxManageUpdateCheck.cpp" line="112"/>
    1059210349        <source>Stable - new minor and maintenance releases</source>
    1059310350        <translation type="unfinished"></translation>
    1059410351    </message>
    1059510352    <message>
    10596         <location filename="../VBoxManageUpdateCheck.cpp" line="121"/>
     10353        <location filename="../VBoxManageUpdateCheck.cpp" line="116"/>
    1059710354        <source>All releases - new minor, maintenance, and major releases</source>
    1059810355        <translation type="unfinished"></translation>
    1059910356    </message>
    1060010357    <message>
     10358        <location filename="../VBoxManageUpdateCheck.cpp" line="120"/>
     10359        <source>With Betas - new minor, maintenance, major, and beta releases</source>
     10360        <translation type="unfinished"></translation>
     10361    </message>
     10362    <message>
    1060110363        <location filename="../VBoxManageUpdateCheck.cpp" line="125"/>
    10602         <source>With Betas - new minor, maintenance, major, and beta releases</source>
    10603         <translation type="unfinished"></translation>
    10604     </message>
    10605     <message>
    10606         <location filename="../VBoxManageUpdateCheck.cpp" line="130"/>
    1060710364        <source>Unset</source>
    1060810365        <translation type="unfinished"></translation>
    1060910366    </message>
    1061010367    <message>
    10611         <location filename="../VBoxManageUpdateCheck.cpp" line="137"/>
    10612         <source>Target:                 %s
    10613 </source>
    10614         <translation type="unfinished"></translation>
    10615     </message>
    10616     <message>
    10617         <location filename="../VBoxManageUpdateCheck.cpp" line="145"/>
     10368        <location filename="../VBoxManageUpdateCheck.cpp" line="132"/>
     10369        <source>Channel:                %s
     10370</source>
     10371        <translation type="unfinished"></translation>
     10372    </message>
     10373    <message>
     10374        <location filename="../VBoxManageUpdateCheck.cpp" line="189"/>
     10375        <source>Unknown channel specified: &apos;%s&apos;</source>
     10376        <translation type="unfinished"></translation>
     10377    </message>
     10378    <message>
     10379        <location filename="../VBoxManageUpdateCheck.cpp" line="258"/>
     10380        <source>Checking for a new %ls version...
     10381</source>
     10382        <translation type="unfinished"></translation>
     10383    </message>
     10384    <message>
     10385        <location filename="../VBoxManageUpdateCheck.cpp" line="269"/>
     10386        <source>Failed to create update progress object: %Rhrc
     10387</source>
     10388        <translation type="unfinished"></translation>
     10389    </message>
     10390    <message>
     10391        <location filename="../VBoxManageUpdateCheck.cpp" line="277"/>
     10392        <source>Checking for update failed.</source>
     10393        <translation type="unfinished"></translation>
     10394    </message>
     10395    <message>
     10396        <location filename="../VBoxManageUpdateCheck.cpp" line="296"/>
     10397        <source>A new version of %ls has been released! Version %ls is available at virtualbox.org.
     10398You can download this version here: %ls
     10399</source>
     10400        <translation type="unfinished"></translation>
     10401    </message>
     10402    <message>
     10403        <location filename="../VBoxManageUpdateCheck.cpp" line="312"/>
     10404        <source>You are already running the most recent version of %ls.
     10405</source>
     10406        <translation type="unfinished"></translation>
     10407    </message>
     10408    <message>
     10409        <location filename="../VBoxManageUpdateCheck.cpp" line="324"/>
     10410        <source>Something went wrong while checking for updates!
     10411Please check network connection and try again later.
     10412</source>
     10413        <translation type="unfinished"></translation>
     10414    </message>
     10415    <message>
     10416        <location filename="../VBoxManageUpdateCheck.cpp" line="140"/>
    1061810417        <source>Last Check Date:        %ls
    1061910418</source>
     
    1062110420    </message>
    1062210421    <message>
    10623         <location filename="../VBoxManageUpdateCheck.cpp" line="197"/>
    10624         <source>Unknown target specified: &apos;%s&apos;</source>
    10625         <translation type="unfinished"></translation>
    10626     </message>
    10627     <message>
    10628         <location filename="../VBoxManageUpdateCheck.cpp" line="203"/>
     10422        <location filename="../VBoxManageUpdateCheck.cpp" line="195"/>
    1062910423        <source>The update frequency cannot be zero</source>
    1063010424        <translation type="unfinished"></translation>
    1063110425    </message>
    1063210426    <message>
    10633         <location filename="../VBoxManageUpdateCheck.cpp" line="214"/>
     10427        <location filename="../VBoxManageUpdateCheck.cpp" line="206"/>
    1063410428        <source>No change requested</source>
    10635         <translation type="unfinished"></translation>
    10636     </message>
    10637     <message>
    10638         <location filename="../VBoxManageUpdateCheck.cpp" line="285"/>
    10639         <source>Checking for a new VirtualBox version...
    10640 </source>
    10641         <translation type="unfinished"></translation>
    10642     </message>
    10643     <message>
    10644         <location filename="../VBoxManageUpdateCheck.cpp" line="296"/>
    10645         <source>VirtualBox update checking has been disabled.
    10646 </source>
    10647         <translation type="unfinished"></translation>
    10648     </message>
    10649     <message>
    10650         <location filename="../VBoxManageUpdateCheck.cpp" line="301"/>
    10651         <source>Failed to create ptrProgress object: %Rhrc
    10652 </source>
    10653         <translation type="unfinished"></translation>
    10654     </message>
    10655     <message>
    10656         <location filename="../VBoxManageUpdateCheck.cpp" line="309"/>
    10657         <source>Check for update failed.</source>
    10658         <translation type="unfinished"></translation>
    10659     </message>
    10660     <message>
    10661         <location filename="../VBoxManageUpdateCheck.cpp" line="325"/>
    10662         <source>A new version of VirtualBox has been released! Version %ls is available at virtualbox.org.
    10663 You can download this version here: %ls
    10664 </source>
    10665         <translation type="unfinished"></translation>
    10666     </message>
    10667     <message>
    10668         <location filename="../VBoxManageUpdateCheck.cpp" line="336"/>
    10669         <source>You are already running the most recent version of VirtualBox.
    10670 </source>
    1067110429        <translation type="unfinished"></translation>
    1067210430    </message>
     
    1067610434    <message>
    1067710435        <location filename="../VBoxManageUSB.cpp" line="178"/>
    10678         <location filename="../VBoxManageUSB.cpp" line="202"/>
    10679         <location filename="../VBoxManageUSB.cpp" line="204"/>
    10680         <location filename="../VBoxManageUSB.cpp" line="362"/>
    10681         <location filename="../VBoxManageUSB.cpp" line="560"/>
     10436        <location filename="../VBoxManageUSB.cpp" line="214"/>
     10437        <location filename="../VBoxManageUSB.cpp" line="216"/>
     10438        <location filename="../VBoxManageUSB.cpp" line="373"/>
     10439        <location filename="../VBoxManageUSB.cpp" line="571"/>
    1068210440        <source>Not enough parameters</source>
    1068310441        <translation type="unfinished"></translation>
    1068410442    </message>
    1068510443    <message>
    10686         <location filename="../VBoxManageUSB.cpp" line="187"/>
     10444        <location filename="../VBoxManageUSB.cpp" line="199"/>
    1068710445        <source>Invalid parameter &apos;%s&apos;</source>
    1068810446        <translation type="unfinished"></translation>
    1068910447    </message>
    1069010448    <message>
    10691         <location filename="../VBoxManageUSB.cpp" line="191"/>
     10449        <location filename="../VBoxManageUSB.cpp" line="203"/>
    1069210450        <source>Invalid index &apos;%s&apos;</source>
    1069310451        <translation type="unfinished"></translation>
    1069410452    </message>
    1069510453    <message>
    10696         <location filename="../VBoxManageUSB.cpp" line="219"/>
    10697         <location filename="../VBoxManageUSB.cpp" line="234"/>
    10698         <location filename="../VBoxManageUSB.cpp" line="242"/>
    10699         <location filename="../VBoxManageUSB.cpp" line="255"/>
    10700         <location filename="../VBoxManageUSB.cpp" line="263"/>
    10701         <location filename="../VBoxManageUSB.cpp" line="271"/>
    10702         <location filename="../VBoxManageUSB.cpp" line="279"/>
    10703         <location filename="../VBoxManageUSB.cpp" line="287"/>
    10704         <location filename="../VBoxManageUSB.cpp" line="295"/>
    10705         <location filename="../VBoxManageUSB.cpp" line="303"/>
    10706         <location filename="../VBoxManageUSB.cpp" line="311"/>
    10707         <location filename="../VBoxManageUSB.cpp" line="324"/>
    10708         <location filename="../VBoxManageUSB.cpp" line="370"/>
     10454        <location filename="../VBoxManageUSB.cpp" line="231"/>
     10455        <location filename="../VBoxManageUSB.cpp" line="246"/>
     10456        <location filename="../VBoxManageUSB.cpp" line="254"/>
     10457        <location filename="../VBoxManageUSB.cpp" line="267"/>
     10458        <location filename="../VBoxManageUSB.cpp" line="275"/>
     10459        <location filename="../VBoxManageUSB.cpp" line="283"/>
     10460        <location filename="../VBoxManageUSB.cpp" line="291"/>
     10461        <location filename="../VBoxManageUSB.cpp" line="299"/>
     10462        <location filename="../VBoxManageUSB.cpp" line="307"/>
     10463        <location filename="../VBoxManageUSB.cpp" line="315"/>
     10464        <location filename="../VBoxManageUSB.cpp" line="323"/>
     10465        <location filename="../VBoxManageUSB.cpp" line="336"/>
     10466        <location filename="../VBoxManageUSB.cpp" line="381"/>
    1070910467        <source>Missing argument to &apos;%s&apos;</source>
    1071010468        <translation type="unfinished"></translation>
    1071110469    </message>
    1071210470    <message>
    10713         <location filename="../VBoxManageUSB.cpp" line="249"/>
     10471        <location filename="../VBoxManageUSB.cpp" line="261"/>
    1071410472        <source>Invalid --active argument &apos;%s&apos;</source>
    1071510473        <translation type="unfinished"></translation>
    1071610474    </message>
    1071710475    <message>
    10718         <location filename="../VBoxManageUSB.cpp" line="316"/>
     10476        <location filename="../VBoxManageUSB.cpp" line="328"/>
    1071910477        <source>Failed to convert the --maskedinterfaces value &apos;%s&apos; to a number, vrc=%Rrc</source>
    1072010478        <translation type="unfinished"></translation>
    1072110479    </message>
    1072210480    <message>
    10723         <location filename="../VBoxManageUSB.cpp" line="331"/>
     10481        <location filename="../VBoxManageUSB.cpp" line="343"/>
    1072410482        <source>Invalid USB filter action &apos;%s&apos;</source>
    1072510483        <translation type="unfinished"></translation>
    1072610484    </message>
    1072710485    <message>
    10728         <location filename="../VBoxManageUSB.cpp" line="335"/>
     10486        <location filename="../VBoxManageUSB.cpp" line="346"/>
    1072910487        <source>Unknown option &apos;%s&apos;</source>
    1073010488        <translation type="unfinished"></translation>
    1073110489    </message>
    1073210490    <message>
    10733         <location filename="../VBoxManageUSB.cpp" line="352"/>
    10734         <location filename="../VBoxManageUSB.cpp" line="384"/>
     10491        <location filename="../VBoxManageUSB.cpp" line="363"/>
     10492        <location filename="../VBoxManageUSB.cpp" line="395"/>
    1073510493        <source>Mandatory options not supplied</source>
    1073610494        <translation type="unfinished"></translation>
    1073710495    </message>
    1073810496    <message>
    10739         <location filename="../VBoxManageUSB.cpp" line="568"/>
     10497        <location filename="../VBoxManageUSB.cpp" line="581"/>
    1074010498        <source>Invalid number of parameters</source>
    1074110499        <translation type="unfinished"></translation>
    1074210500    </message>
    1074310501    <message>
    10744         <location filename="../VBoxManageUSB.cpp" line="583"/>
     10502        <location filename="../VBoxManageUSB.cpp" line="596"/>
    1074510503        <source>Parameter &quot;%s&quot; is invalid</source>
    1074610504        <translation type="unfinished"></translation>
     
    1075010508    <name>Utils</name>
    1075110509    <message>
    10752         <location filename="../VBoxManageUtils.cpp" line="103"/>
     10510        <location filename="../VBoxManageUtils.cpp" line="102"/>
    1075310511        <source>type bridged</source>
    1075410512        <translation type="unfinished"></translation>
    1075510513    </message>
    1075610514    <message>
    10757         <location filename="../VBoxManageUtils.cpp" line="107"/>
     10515        <location filename="../VBoxManageUtils.cpp" line="106"/>
    1075810516        <source>type host-only</source>
    1075910517        <translation type="unfinished"></translation>
    1076010518    </message>
    1076110519    <message>
    10762         <location filename="../VBoxManageUtils.cpp" line="112"/>
     10520        <location filename="../VBoxManageUtils.cpp" line="111"/>
    1076310521        <source>unknown type %RU32</source>
    1076410522        <translation type="unfinished"></translation>
    1076510523    </message>
    1076610524    <message>
    10767         <location filename="../VBoxManageUtils.cpp" line="117"/>
     10525        <location filename="../VBoxManageUtils.cpp" line="116"/>
    1076810526        <source>Interface &quot;%s&quot; is of %s</source>
    1076910527        <translation type="unfinished"></translation>
    1077010528    </message>
    1077110529    <message>
    10772         <location filename="../VBoxManageUtils.cpp" line="121"/>
     10530        <location filename="../VBoxManageUtils.cpp" line="120"/>
    1077310531        <source>Interface &quot;%s&quot; doesn&apos;t seem to exist</source>
    1077410532        <translation type="unfinished"></translation>
     
    1077810536    <name>VBoxManage</name>
    1077910537    <message>
    10780         <location filename="../VBoxManage.cpp" line="331"/>
    10781         <location filename="../VBoxManage.cpp" line="499"/>
     10538        <location filename="../VBoxManage.cpp" line="327"/>
     10539        <location filename="../VBoxManage.cpp" line="495"/>
    1078210540        <source>Progress object failure: %Rhrc
    1078310541</source>
     
    1078510543    </message>
    1078610544    <message>
    10787         <location filename="../VBoxManage.cpp" line="348"/>
     10545        <location filename="../VBoxManage.cpp" line="344"/>
    1078810546        <source>Failed to get progress description: %Rhrc
    1078910547</source>
     
    1079110549    </message>
    1079210550    <message>
    10793         <location filename="../VBoxManage.cpp" line="415"/>
     10551        <location filename="../VBoxManage.cpp" line="411"/>
    1079410552        <source>(%u/%u) %ls %02u%% =&gt; %02u%% (%d s remaining)
    1079510553</source>
     
    1079710555    </message>
    1079810556    <message>
     10557        <location filename="../VBoxManage.cpp" line="481"/>
     10558        <source>CANCELED
     10559</source>
     10560        <translation type="unfinished"></translation>
     10561    </message>
     10562    <message>
    1079910563        <location filename="../VBoxManage.cpp" line="485"/>
    10800         <source>CANCELED
    10801 </source>
    10802         <translation type="unfinished"></translation>
    10803     </message>
    10804     <message>
    10805         <location filename="../VBoxManage.cpp" line="489"/>
    1080610564        <source>Progress state: %Rhrc
    1080710565</source>
     
    1080910567    </message>
    1081010568    <message>
    10811         <location filename="../VBoxManage.cpp" line="681"/>
     10569        <location filename="../VBoxManage.cpp" line="672"/>
    1081210570        <source>Password expected</source>
    1081310571        <translation type="unfinished"></translation>
    1081410572    </message>
    1081510573    <message>
    10816         <location filename="../VBoxManage.cpp" line="689"/>
     10574        <location filename="../VBoxManage.cpp" line="680"/>
    1081710575        <source>No password file specified</source>
    1081810576        <translation type="unfinished"></translation>
    1081910577    </message>
    1082010578    <message>
    10821         <location filename="../VBoxManage.cpp" line="697"/>
     10579        <location filename="../VBoxManage.cpp" line="687"/>
    1082210580        <source>Only one response file allowed</source>
    1082310581        <translation type="unfinished"></translation>
    1082410582    </message>
    1082510583    <message>
    10826         <location filename="../VBoxManage.cpp" line="705"/>
     10584        <location filename="../VBoxManage.cpp" line="695"/>
    1082710585        <source>Error reading response file &apos;%s&apos;: %Rrc</source>
    1082810586        <translation type="unfinished"></translation>
    1082910587    </message>
    1083010588    <message>
    10831         <location filename="../VBoxManage.cpp" line="710"/>
     10589        <location filename="../VBoxManage.cpp" line="700"/>
    1083210590        <source>Invalid response file (&apos;%s&apos;) encoding: %Rrc</source>
    1083310591        <translation type="unfinished"></translation>
    1083410592    </message>
    1083510593    <message>
    10836         <location filename="../VBoxManage.cpp" line="718"/>
     10594        <location filename="../VBoxManage.cpp" line="708"/>
    1083710595        <source>Failed to parse response file &apos;%s&apos; (bourne shell style): %Rrc</source>
    1083810596        <translation type="unfinished"></translation>
    1083910597    </message>
    1084010598    <message>
    10841         <location filename="../VBoxManage.cpp" line="724"/>
     10599        <location filename="../VBoxManage.cpp" line="714"/>
    1084210600        <source>out of memory</source>
    1084310601        <translation type="unfinished"></translation>
    1084410602    </message>
    1084510603    <message>
    10846         <location filename="../VBoxManage.cpp" line="768"/>
     10604        <location filename="../VBoxManage.cpp" line="755"/>
    1084710605        <source>commands:
    1084810606</source>
     
    1085010608    </message>
    1085110609    <message>
    10852         <location filename="../VBoxManage.cpp" line="777"/>
     10610        <location filename="../VBoxManage.cpp" line="762"/>
    1085310611        <source>Invalid command &apos;%s&apos;</source>
    1085410612        <translation type="unfinished"></translation>
    1085510613    </message>
    1085610614    <message>
    10857         <location filename="../VBoxManage.cpp" line="796"/>
     10615        <location filename="../VBoxManage.cpp" line="781"/>
    1085810616        <source>Failed to initialize COM because the global settings directory &apos;%s&apos; is not accessible!</source>
    1085910617        <translation type="unfinished"></translation>
    1086010618    </message>
    1086110619    <message>
    10862         <location filename="../VBoxManage.cpp" line="799"/>
     10620        <location filename="../VBoxManage.cpp" line="784"/>
    1086310621        <source>Failed to initialize COM! (hrc=%Rhrc)</source>
    1086410622        <translation type="unfinished"></translation>
    1086510623    </message>
    1086610624    <message>
    10867         <location filename="../VBoxManage.cpp" line="882"/>
     10625        <location filename="../VBoxManage.cpp" line="867"/>
    1086810626        <source>Failed to create a session object!</source>
    1086910627        <translation type="unfinished"></translation>
    1087010628    </message>
    1087110629    <message>
    10872         <location filename="../VBoxManage.cpp" line="892"/>
     10630        <location filename="../VBoxManage.cpp" line="877"/>
    1087310631        <source>Failed to create the VirtualBox object!</source>
    1087410632        <translation type="unfinished"></translation>
    1087510633    </message>
    1087610634    <message>
    10877         <location filename="../VBoxManage.cpp" line="896"/>
     10635        <location filename="../VBoxManage.cpp" line="881"/>
    1087810636        <source>Most likely, the VirtualBox COM server is not running or failed to start.</source>
    1087910637        <translation type="unfinished"></translation>
  • trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk

    r94623 r94643  
    255255        $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE) \
    256256        $(if $(VBOX_WITH_QHELP_VIEWER),VBOX_WITH_QHELP_VIEWER) \
    257         $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,)
     257        $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,) \
     258        $(if $(VBOX_WITH_UPDATE_AGENT),VBOX_WITH_UPDATE_AGENT)
    258259ifdef VBOX_WITH_DEBUGGER_GUI
    259260 UICommon_DEFS        += VBOX_WITH_DEBUGGER_GUI
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp

    r94516 r94643  
    43164316    connect(this, &UINotificationProgress::sigProgressFinished,
    43174317            this, &UINotificationProgressNewVersionChecker::sltHandleProgressFinished);
    4318     CHost comHost = uiCommon().virtualBox().GetHost();
     4318
     4319#ifdef VBOX_WITH_UPDATE_AGENT
     4320    CHost comHost = uiCommon().host();
    43194321    if (!comHost.isNull())
    4320         m_comUpdateChecker = comHost.GetUpdate();
     4322        m_comUpdateHost = comHost.GetUpdateHost();
     4323#endif /* VBOX_WITH_UPDATE_AGENT */
    43214324}
    43224325
    43234326QString UINotificationProgressNewVersionChecker::name() const
    43244327{
    4325     return UINotificationProgress::tr("Check for New Version ...");
     4328#ifdef VBOX_WITH_UPDATE_AGENT
     4329    if (m_comUpdateHost.isOk())
     4330        return UINotificationProgress::tr("Checking for new version of %s ...", m_comUpdateHost.GetName().toLocal8Bit().data());
     4331#endif /* VBOX_WITH_UPDATE_AGENT */
     4332    return UINotificationProgress::tr("Checking for new version ...");
    43264333}
    43274334
     
    43334340CProgress UINotificationProgressNewVersionChecker::createProgress(COMResult &comResult)
    43344341{
    4335     if (!m_comUpdateChecker.isOk())
     4342#ifdef VBOX_WITH_UPDATE_AGENT
     4343    if (!m_comUpdateHost.isOk())
    43364344        return CProgress();
    43374345
    4338     CProgress comProgress = m_comUpdateChecker.UpdateCheck(KUpdateCheckType_VirtualBox);
    4339     comResult = m_comUpdateChecker;
    4340 
    4341     return comProgress;
     4346    CProgress comProgress = m_comUpdateHost.Check();
     4347    comResult = m_comUpdateHost;
     4348
     4349    return comProgress;
     4350#else
     4351    return CProgress();
     4352#endif /* VBOX_WITH_UPDATE_AGENT */
    43424353}
    43434354
    43444355void UINotificationProgressNewVersionChecker::sltHandleProgressFinished()
    43454356{
    4346     if (m_comUpdateChecker.isNull() && !m_comUpdateChecker.isOk())
     4357#ifdef VBOX_WITH_UPDATE_AGENT
     4358    if (m_comUpdateHost.isNull() && !m_comUpdateHost.isOk())
    43474359        return;
    43484360
    4349     bool fUpdateAvailable = m_comUpdateChecker.GetUpdateResponse();
    4350     if (!m_comUpdateChecker.isOk())
     4361    bool const fUpdateAvailable = m_comUpdateHost.GetState() == UpdateState_Available; /** @todo Handle other states. */
     4362    if (!m_comUpdateHost.isOk())
    43514363        return;
    43524364
    43534365    if (fUpdateAvailable)
    43544366    {
    4355         QString strVersion = m_comUpdateChecker.GetUpdateVersion();
    4356         if (!m_comUpdateChecker.isOk())
     4367        QString strVersion = m_comUpdateHost.GetVersion();
     4368        if (!m_comUpdateHost.isOk())
    43574369            return;
    43584370
    4359         QString strURL = m_comUpdateChecker.GetUpdateURL();
    4360         if (!m_comUpdateChecker.isOk())
     4371        QString strURL = m_comUpdateHost.GetDownloadUrl();
     4372        if (!m_comUpdateHost.isOk())
    43614373            return;
    43624374
     
    43684380            UINotificationMessage::showUpdateNotFound();
    43694381    }
     4382#endif /* VBOX_WITH_UPDATE_AGENT */
    43704383}
    43714384
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h

    r94516 r94643  
    4242#include "CGuest.h"
    4343#include "CHost.h"
    44 #include "CHostUpdate.h"
    4544#include "CHostNetworkInterface.h"
    4645#include "CMachine.h"
     
    4948#include "CSnapshot.h"
    5049#include "CStringArray.h"
     50#ifdef VBOX_WITH_UPDATE_AGENT
     51# include "CUpdateAgent.h"
     52#endif
    5153#include "CVFSExplorer.h"
    5254#include "CVirtualSystemDescription.h"
     
    27092711private:
    27102712
    2711     CHostUpdate m_comUpdateChecker;
     2713#ifdef VBOX_WITH_UPDATE_AGENT
     2714    CUpdateAgent m_comUpdateHost;
     2715#endif
    27122716    /** Holds whether this customer has forced privelegies. */
    2713     bool        m_fForcedCall;
     2717    bool         m_fForcedCall;
    27142718};
    27152719
  • trunk/src/VBox/Main/Makefile.kmk

    r94521 r94643  
    146146  VBOX_MAIN_DEFS += VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
    147147 endif
     148endif
     149ifdef VBOX_WITH_UPDATE_AGENT
     150VBOX_MAIN_DEFS += VBOX_WITH_UPDATE_AGENT
    148151endif
    149152ifdef VBOX_WITH_USB_CARDREADER
     
    522525        $(if $(VBOX_USB_WITH_INOTIFY),VBOX_USB_WITH_INOTIFY,) \
    523526        $(if $(VBOX_WITH_NAT_SERVICE),VBOX_WITH_NAT_SERVICE,) \
    524         $(if $(VBOX_WITH_LIBCURL),VBOX_WITH_HOST_UPDATE_CHECK,) \
     527        $(if $(VBOX_WITH_UPDATE_AGENT),VBOX_WITH_UPDATE_AGENT,) \
    525528        $(if $(VBOX_WITH_IOMMU_AMD),VBOX_WITH_IOMMU_AMD,) \
    526529        $(if $(VBOX_WITH_IOMMU_INTEL),VBOX_WITH_IOMMU_INTEL,) \
     
    629632        src-server/HostNetworkInterfaceImpl.cpp \
    630633        src-server/HostPower.cpp \
    631         src-server/HostUpdateImpl.cpp \
     634        $(if $(VBOX_WITH_UPDATE_AGENT),src-server/UpdateAgentImpl.cpp,) \
    632635        src-server/HostVideoInputDeviceImpl.cpp \
    633636        src-server/HostDrivePartitionImpl.cpp \
     
    18621865        $(VBoxAPIWrap_0_OUTDIR)/apiwrappers-sources-odd \
    18631866        $(VBoxAPIWrap_0_OUTDIR)/apiwrappers-sources-even
    1864 
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r94601 r94643  
    1103411034
    1103511035  <enum
    11036     name="UpdateCheckType"
    11037     uuid="ac34bb91-6739-4791-b30f-ce84e57928bb"
    11038     >
    11039     <desc>
    11040       Which type of software to check whether a new version exists.
    11041     </desc>
    11042     <const name="None"              value="0">
    11043       <desc>No flags specified. Do not use this.</desc>
    11044     </const>
    11045     <const name="VirtualBox"        value="1"/>
    11046     <const name="ExtensionPack"     value="2"/>
    11047     <const name="GuestAdditions"    value="3"/>
     11036    name="UpdateChannel"
     11037    uuid="9f1562a5-e47a-496b-a818-66776f06ce40"
     11038    >
     11039    <const name="Invalid"     value="0">
     11040      <desc>No channel specified. Do not use this.</desc>
     11041    </const>
     11042    <const name="Stable"      value="1">
     11043      <desc>All stable releases (maintenance and minor releases within the same major release)</desc>
     11044    </const>
     11045    <const name="All"         value="2">
     11046      <desc>All stable releases, including major versions.</desc>
     11047    </const>
     11048    <const name="WithBetas"   value="3">
     11049      <desc>All stable and major releases, including beta versions.</desc>
     11050    </const>
     11051    <const name="WithTesting" value="4">
     11052      <desc>All stable, major and beta releases, including testing versions.</desc>
     11053    </const>
    1104811054  </enum>
    1104911055
     11056  <enum
     11057    name="UpdateSeverity"
     11058    uuid="359a5fee-8a06-4306-8068-2f2dd5cde06f"
     11059    >
     11060    <const name="Invalid"  value="0">
     11061      <desc>No severity specified. Do not use this.</desc>
     11062    </const>
     11063    <const name="Critical" value="1">
     11064      <desc>Update contains critical patches.</desc>
     11065    </const>
     11066    <const name="Major"    value="2">
     11067      <desc>Update contains a major version.</desc>
     11068    </const>
     11069    <const name="Minor"    value="3">
     11070      <desc>Update contains a minor version.</desc>
     11071    </const>
     11072    <const name="Testing"  value="4">
     11073      <desc>Update contains a testing version. Use with caution!</desc>
     11074    </const>
     11075  </enum>
     11076
     11077  <enum
     11078    name="UpdateState"
     11079    uuid="6623e363-c892-45f8-80cb-4e8ffd9b4e60"
     11080    >
     11081    <const name="Invalid"         value="0">
     11082        <desc>Invalid / not set update state.</desc>
     11083    </const>
     11084    <const name="Available"       value="1">
     11085        <desc>An uppdate is available.</desc>
     11086    </const>
     11087    <const name="NotAvailable"    value="2">
     11088        <desc>No update available.</desc>
     11089    </const>
     11090    <const name="Downloading"     value="3">
     11091        <desc>Update is being downloaded currently.</desc>
     11092    </const>
     11093    <const name="Downloaded"      value="4">
     11094        <desc>Update has been successfully downloaded.</desc>
     11095    </const>
     11096    <const name="Installing"      value="5">
     11097        <desc>Update is being installed currently.</desc>
     11098    </const>
     11099    <const name="Installed"       value="6">
     11100        <desc>Update has been successfully installed.</desc>
     11101    </const>
     11102    <const name="UserInteraction" value="7">
     11103        <desc>Update requires user interaction to continue.</desc>
     11104    </const>
     11105    <const name="Canceled"        value="8">
     11106        <desc>Update has been canceled.</desc>
     11107    </const>
     11108    <const name="Maintenance"     value="9">
     11109        <desc>Update service currently is in maintenance mode.</desc>
     11110    </const>
     11111    <const name="Error"           value="10">
     11112        <desc>An error occurred while updating.</desc>
     11113    </const>
     11114  </enum>
     11115
    1105011116  <interface
    11051     name="IHostUpdate" extends="$unknown"
    11052     uuid="6fa2671b-0547-448e-bc7c-94e9e173bf57"
     11117    name="IUpdateAgent" extends="$unknown"
     11118    uuid="de87048a-036c-4a27-a0f8-73b51e66c2ca"
    1105311119    wsmap="managed"
    1105411120    rest="managed"
     
    1105711123
    1105811124    <desc>
    11059       Represents the state of the update checking logic (a singleton returned
    11060       by <link to="IHost::update" /> attribute).
     11125      Abstract parent interface for handling updateable software components.
    1106111126    </desc>
    1106211127
    11063     <method name="updateCheck">
    11064       <desc>
    11065         Check for a newer version of software based on the 'checkType' value.
    11066       </desc>
    11067       <param name="checkType" type="UpdateCheckType" dir="in">
    11068         <desc>The type of software to check.</desc>
    11069       </param>
     11128    <method name="check">
     11129      <desc>
     11130        Checks for an update.
     11131      </desc>
    1107011132      <param name="progress" type="IProgress" dir="return">
    1107111133        <desc>Progress object to track operation completion.</desc>
     
    1107311135    </method>
    1107411136
    11075     <attribute name="updateResponse" type="boolean" readonly="yes">
    11076       <desc>
    11077         The response from the <link to="IHostUpdate::updateCheck"/> method.
    11078       </desc>
    11079     </attribute>
    11080 
    11081     <attribute name="updateVersion" type="wstring" readonly="yes">
    11082       <desc>
    11083        The newer version of the software returned by calling the update check
    11084        <link to="IHostUpdate::updateCheck"/> method.
    11085       </desc>
    11086     </attribute>
    11087 
    11088     <attribute name="updateURL" type="wstring" readonly="yes">
    11089       <desc>
    11090        The download URL of the newer software version returned by calling the
    11091        update check <link to="IHostUpdate::updateCheck"/> method.
    11092       </desc>
    11093     </attribute>
    11094 
    11095     <attribute name="updateCheckNeeded" type="boolean" readonly="yes">
    11096       <desc>
    11097         Is it time to check for a newer version of software?
     11137    <method name="download">
     11138      <desc>
     11139        Downloads the update.
     11140      </desc>
     11141      <result name="VBOX_E_NOT_SUPPORTED">
     11142        Downloading update not supported.
     11143      </result>
     11144      <param name="progress" type="IProgress" dir="return">
     11145        <desc>Progress object to track operation completion.</desc>
     11146      </param>
     11147    </method>
     11148
     11149    <method name="install">
     11150      <desc>
     11151        Installs the update.
     11152      </desc>
     11153      <result name="VBOX_E_NOT_SUPPORTED">
     11154        Installing update not supported.
     11155      </result>
     11156      <param name="progress" type="IProgress" dir="return">
     11157        <desc>Progress object to track operation completion.</desc>
     11158      </param>
     11159    </method>
     11160
     11161    <method name="rollback">
     11162      <desc>
     11163        Rolls back installing the update.
     11164      </desc>
     11165      <result name="VBOX_E_NOT_SUPPORTED">
     11166        Rolling back update not supported.
     11167      </result>
     11168    </method>
     11169
     11170    <attribute name="name" type="wstring" readonly="yes">
     11171      <desc>
     11172        Name of the update component.
     11173      </desc>
     11174    </attribute>
     11175
     11176    <attribute name="order" type="unsigned long" readonly="yes">
     11177      <desc>
     11178        Order hint the update component needs to run at, in conjunction with other update components.
     11179      </desc>
     11180      <result name="0">
     11181        No order preferred / disabled.
     11182      </result>
     11183      <note>
     11184        Lower numbers mean higher priority. 0 means no order or disabled.
     11185      </note>
     11186    </attribute>
     11187
     11188    <attribute name="dependsOn" type="wstring" readonly="yes" safearray="yes">
     11189      <desc>
     11190        Array of other update component names this component depends on before being able to get installed.
     11191      </desc>
     11192      <note>
     11193        Ordered entries, highest priority first. No dependencies when array is empty.
     11194        Dependency entries also can contain a minimum version number after the update component name, separated by an "@",
     11195        e.g. "Guest [email protected]_BETA2".
     11196      </note>
     11197    </attribute>
     11198
     11199    <attribute name="version" type="wstring" readonly="yes">
     11200      <result name="VBOX_E_INVALID_OBJECT_STATE">
     11201        Result not available yet.
     11202      </result>
     11203      <desc>
     11204        Version the update contains.
     11205      </desc>
     11206    </attribute>
     11207
     11208    <attribute name="downloadUrl" type="wstring" readonly="yes">
     11209      <result name="VBOX_E_INVALID_OBJECT_STATE">
     11210        Result not available yet.
     11211      </result>
     11212      <desc>
     11213        Download URL of the update.
     11214      </desc>
     11215    </attribute>
     11216
     11217    <attribute name="webUrl" type="wstring" readonly="yes">
     11218      <result name="VBOX_E_INVALID_OBJECT_STATE">
     11219        Result not available yet.
     11220      </result>
     11221      <desc>
     11222        Web URL of the update.
     11223      </desc>
     11224    </attribute>
     11225
     11226    <attribute name="releaseNotes" type="wstring" readonly="yes">
     11227      <result name="VBOX_E_INVALID_OBJECT_STATE">
     11228        Result not available yet.
     11229      </result>
     11230      <desc>
     11231        Release notes of the update.
     11232      </desc>
     11233    </attribute>
     11234
     11235    <attribute name="enabled" type="boolean" readonly="no">
     11236      <desc>
     11237        Enables or disables the update component.
     11238      </desc>
     11239    </attribute>
     11240
     11241    <attribute name="hidden" type="boolean" readonly="yes">
     11242      <desc>
     11243        Whether the update component shall be hidden from the user or not.
     11244      </desc>
     11245    </attribute>
     11246
     11247    <attribute name="state" type="UpdateState" readonly="yes">
     11248      <desc>
     11249        Returns the current update state.
     11250      </desc>
     11251    </attribute>
     11252
     11253    <attribute name="checkFrequency" type="unsigned long" readonly="no">
     11254      <desc>
     11255        The update check frequency (in seconds).
     11256      </desc>
     11257    </attribute>
     11258
     11259    <attribute name="channel" type="UpdateChannel" readonly="no">
     11260      <desc>
     11261        Update channel to use for checking for updates.
     11262      </desc>
     11263    </attribute>
     11264
     11265    <attribute name="repositoryURL" type="wstring" readonly="no">
     11266      <desc>
     11267        Update repository URL to use for retrieving the update.
     11268      </desc>
     11269      <note>
     11270        Only repositories with the https:// URL scheme are allowed.
     11271      </note>
     11272    </attribute>
     11273
     11274    <attribute name="proxyMode" type="ProxyMode" readonly="no">
     11275      <desc>
     11276        Proxy mode to use.
     11277      </desc>
     11278    </attribute>
     11279
     11280    <attribute name="proxyURL" type="wstring" readonly="no">
     11281      <desc>
     11282        Proxy URL to use.
     11283      </desc>
     11284    </attribute>
     11285
     11286    <attribute name="lastCheckDate" type="wstring" readonly="yes">
     11287      <desc>
     11288        Date of last update check.
     11289      </desc>
     11290      <note>
     11291        Uses ISO date.
     11292      </note>
     11293    </attribute>
     11294
     11295    <attribute name="checkCount" type="unsigned long" readonly="yes">
     11296      <desc>
     11297        How many times the update check has happened already.
     11298      </desc>
     11299    </attribute>
     11300  </interface>
     11301
     11302  <interface
     11303    name="IHostUpdateAgent" extends="IUpdateAgent"
     11304    uuid="26934cbf-5bb6-4a27-9599-83ca057905d4"
     11305    wsmap="managed"
     11306    reservedMethods="12" reservedAttributes="24"
     11307    >
     11308    <desc>
     11309      Implementation of the <link to="IUpdateAgent" /> object
     11310      for VirtualBox host updates.
     11311    </desc>
     11312    <attribute name="midlDoesNotLikeEmptyInterfaces" readonly="yes" type="boolean"/>
     11313  </interface>
     11314
     11315  <interface
     11316    name="IUpdateAgentEvent" extends="$unknown"
     11317    uuid="aa1987dc-6402-4e3c-a0e9-68e87d301a83"
     11318    wsmap="managed"
     11319    reservedAttributes="4"
     11320    >
     11321    <desc>
     11322      Abstract base interface for update agent events.
     11323    </desc>
     11324
     11325    <attribute name="eventSource" type="IEventSource" readonly="yes">
     11326      <desc>
     11327        Event source for update agent events.
     11328      </desc>
     11329    </attribute>
     11330
     11331  </interface>
     11332
     11333  <interface
     11334    name="IUpdateAgentSettingsChangedEvent" extends="IUpdateAgentEvent"
     11335    uuid="7bfd3718-b2ad-4112-8a86-328ebeb7b091"
     11336    wsmap="managed"
     11337    reservedMethods="4" reservedAttributes="8"
     11338    >
     11339    <desc>
     11340      Notification when update agent settings have been changed.
     11341    </desc>
     11342  </interface>
     11343
     11344  <interface
     11345    name="IUpdateAgentErrorEvent" extends="IUpdateAgentEvent"
     11346    uuid="2dad1ad8-78be-441d-b4fa-9cff25ee16b2"
     11347    wsmap="managed"
     11348    reservedAttributes="4"
     11349    >
     11350    <desc>
     11351    </desc>
     11352
     11353    <attribute name="msg" type="wstring" readonly="yes">
     11354      <desc>
     11355        Error message in human readable format.
     11356      </desc>
     11357    </attribute>
     11358
     11359    <attribute name="rcError" type="long" readonly="yes">
     11360      <desc>
     11361        IPRT-style error code.
     11362      </desc>
     11363    </attribute>
     11364
     11365  </interface>
     11366
     11367  <interface
     11368    name="IUpdateAgentAvailableEvent" extends="IUpdateAgentEvent"
     11369    uuid="7b931bfa-3b2b-4220-87ce-86cb0dee7ed1"
     11370    wsmap="managed"
     11371    reservedAttributes="4"
     11372    >
     11373    <desc>
     11374      Notification when an update is available.
     11375    </desc>
     11376
     11377    <attribute name="version" type="wstring" readonly="yes">
     11378      <desc>
     11379        Version of the update.
     11380      </desc>
     11381    </attribute>
     11382
     11383    <attribute name="channel" type="UpdateChannel" readonly="yes">
     11384      <desc>
     11385        Channel containing the update.
     11386      </desc>
     11387    </attribute>
     11388
     11389    <attribute name="severity" type="UpdateSeverity" readonly="yes">
     11390      <desc>
     11391        Severity of the update.
     11392      </desc>
     11393    </attribute>
     11394
     11395    <attribute name="downloadURL" type="wstring" readonly="yes">
     11396      <desc>
     11397        Download URL of the update.
     11398      </desc>
     11399    </attribute>
     11400
     11401    <attribute name="webURL" type="wstring" readonly="yes">
     11402      <desc>
     11403        Web URL of the update.
     11404      </desc>
     11405    </attribute>
     11406
     11407    <attribute name="releaseNotes" type="wstring" readonly="yes">
     11408      <desc>
     11409        Release notes of the update.
     11410      </desc>
     11411    </attribute>
     11412
     11413  </interface>
     11414
     11415  <interface
     11416    name="IUpdateAgentStateChangedEvent" extends="IUpdateAgentEvent"
     11417    uuid="7da1b997-10ea-4690-99ff-df78bf309164"
     11418    wsmap="managed"
     11419    reservedAttributes="4"
     11420    >
     11421    <desc>
     11422    </desc>
     11423
     11424    <attribute name="state" type="UpdateState" readonly="yes">
     11425      <desc>
    1109811426      </desc>
    1109911427    </attribute>
     
    1178012108    </method>
    1178112109
    11782     <attribute name="update" type="IHostUpdate" readonly="yes">
    11783       <desc>The check for newer software object (singleton).</desc>
     12110    <attribute name="updateHost" type="IUpdateAgent" readonly="yes">
     12111      <desc>Checks for new VirtualBox host versions.</desc>
     12112    </attribute>
     12113
     12114    <attribute name="updateExtPack" type="IUpdateAgent" readonly="yes">
     12115      <desc>Checks for new VirtualBox Extension Pack versions.</desc>
     12116    </attribute>
     12117
     12118    <attribute name="updateGuestAdditions" type="IUpdateAgent" readonly="yes">
     12119        <desc>Checks for new Guest Additions versions.</desc>
    1178412120    </attribute>
    1178512121
     
    1182812164  </enum>
    1182912165
    11830   <enum name="VBoxUpdateTarget" uuid="900d4a76-7b08-4af8-a453-f331e783eaee">
    11831     <desc> The preferred release type used for determining whether a newer version of VirtualBox is available. <link to="ISystemProperties::VBoxUpdateTarget"/></desc>
    11832     <const name="Stable" value="0">
    11833       <desc>Stable releases: new maintenance and minor releases within the same major release version.  This is the default.</desc>
    11834     </const>
    11835     <const name="AllReleases" value="1">
    11836       <desc>All releases: new maintenance, minor, and major releases.</desc>
    11837     </const>
    11838     <const name="WithBetas" value="2">
    11839       <desc>With betas: new maintenance, minor, and major releases as well as beta releases.</desc>
    11840     </const>
    11841   </enum>
    11842 
    1184312166  <interface
    1184412167    name="ISystemProperties"
    1184512168    extends="$unknown"
    11846     uuid="31cdb11d-9bb0-455a-b2ca-a1a5b1177912"
     12169    uuid="e6bf9165-6685-4ebe-96cd-9c1b7ab7f776"
    1184712170    wsmap="managed"
    1184812171    rest="managed"
     
    1237112694        Returns an array of officially supported values for enum <link to="ChipsetType"/>,
    1237212695        in the sense of what is e.g. worth offering in the VirtualBox GUI.
    12373       </desc>
    12374     </attribute>
    12375 
    12376     <attribute name="VBoxUpdateEnabled" type="boolean">
    12377       <desc> Is the VirtualBox update check enabled?</desc>
    12378     </attribute>
    12379 
    12380     <attribute name="VBoxUpdateFrequency" type="unsigned long">
    12381       <desc> How often should a check for a newer version of VirtualBox be made? (in days)</desc>
    12382     </attribute>
    12383 
    12384     <attribute name="VBoxUpdateLastCheckDate" type="wstring">
    12385       <desc>
    12386         When was the update check last performed? If updating this attribute the
    12387         string must be in ISO 8601 format (e.g. 2020-05-11T21:13:39.348416000Z).
    12388       </desc>
    12389     </attribute>
    12390 
    12391     <attribute name="VBoxUpdateTarget" type="VBoxUpdateTarget">
    12392       <desc> The preferred release type used for determining whether a newer version of VirtualBox is available.</desc>
    12393     </attribute>
    12394 
    12395     <attribute name="VBoxUpdateCount" type="unsigned long">
    12396       <desc> The count of update check attempts.</desc>
    12397     </attribute>
    12398 
    12399     <attribute name="supportedVBoxUpdateTargetTypes" type="VBoxUpdateTarget" safearray="yes" readonly="yes">
    12400       <desc>
    12401         Returns an array of officially supported values for enum <link to="VBoxUpdateTarget"/>.
    1240212696      </desc>
    1240312697    </attribute>
  • trunk/src/VBox/Main/include/HostImpl.h

    r93115 r94643  
    119119    HRESULT getAcceleration3DAvailable(BOOL *aAcceleration3DAvailable);
    120120    HRESULT getVideoInputDevices(std::vector<ComPtr<IHostVideoInputDevice> > &aVideoInputDevices);
    121     HRESULT getUpdate(ComPtr<IHostUpdate> &aUpdate);
     121    HRESULT getUpdateHost(ComPtr<IUpdateAgent> &aUpdate);
     122    HRESULT getUpdateExtPack(ComPtr<IUpdateAgent> &aUpdate);
     123    HRESULT getUpdateGuestAdditions(ComPtr<IUpdateAgent> &aUpdate);
    122124    HRESULT getUpdateResponse(BOOL *aUpdateNeeded);
    123125    HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion);
     
    168170
    169171    HRESULT removeUSBDeviceSource(const com::Utf8Str &aId);
    170     HRESULT UpdateCheck(UpdateCheckType_T aCheckType,
    171                         ComPtr<IProgress> &aProgress);
    172172
    173173    // Internal Methods.
  • trunk/src/VBox/Main/include/SystemPropertiesImpl.h

    r93115 r94643  
    143143    HRESULT getSupportedChipsetTypes(std::vector<ChipsetType_T> &aSupportedChipsetTypes) RT_OVERRIDE;
    144144    HRESULT getSupportedIommuTypes(std::vector<IommuType_T> &aSupportedIommuTypes) RT_OVERRIDE;
    145     HRESULT getSupportedVBoxUpdateTargetTypes(std::vector<VBoxUpdateTarget_T> &aSupportedVBoxUpdateTargetTypes) RT_OVERRIDE;
    146     HRESULT getVBoxUpdateEnabled(BOOL *aVBoxUpdateEnabled) RT_OVERRIDE;
    147     HRESULT setVBoxUpdateEnabled(BOOL aVBoxUpdateEnabled) RT_OVERRIDE;
    148     HRESULT getVBoxUpdateFrequency(ULONG *aVBoxUpdateFrequency) RT_OVERRIDE;
    149     HRESULT setVBoxUpdateFrequency(ULONG aVBoxUpdateFrequency) RT_OVERRIDE;
    150     HRESULT getVBoxUpdateLastCheckDate(com::Utf8Str &aVBoxUpdateLastCheckDate) RT_OVERRIDE;
    151     HRESULT setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate) RT_OVERRIDE;
    152     HRESULT getVBoxUpdateTarget(VBoxUpdateTarget_T *aVBoxUpdateTarget) RT_OVERRIDE;
    153     HRESULT setVBoxUpdateTarget(VBoxUpdateTarget_T aVBoxUpdateTarget) RT_OVERRIDE;
    154     HRESULT getVBoxUpdateCount(ULONG *aVBoxUpdateCount) RT_OVERRIDE;
    155     HRESULT setVBoxUpdateCount(ULONG aVBoxUpdateCount) RT_OVERRIDE;
    156145    HRESULT getLanguageId(com::Utf8Str &aLanguageId) RT_OVERRIDE;
    157146    HRESULT setLanguageId(const com::Utf8Str &aLanguageId) RT_OVERRIDE;
     
    199188    HRESULT i_setDefaultAdditionsISO(const com::Utf8Str &aPath);
    200189    HRESULT i_setDefaultFrontend(const com::Utf8Str &aDefaultFrontend);
    201     HRESULT i_setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate);
    202190
    203191    VirtualBox * const  mParent;
  • trunk/src/VBox/Main/include/UpdateAgentImpl.h

    r94642 r94643  
    11/* $Id$ */
    22/** @file
    3  * VirtualBox COM class implementation
     3 * Update agent COM class implementation - Header
    44 */
    55
     
    1616 */
    1717
    18 #ifndef MAIN_INCLUDED_HostUpdateImpl_h
    19 #define MAIN_INCLUDED_HostUpdateImpl_h
     18#ifndef MAIN_INCLUDED_UpdateAgentImpl_h
     19#define MAIN_INCLUDED_UpdateAgentImpl_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
    2222#endif
    2323
    24 #include "HostUpdateWrap.h"
    25 #include <iprt/http.h> /* RTHTTP */
     24#include <iprt/http.h>
    2625
     26#include <VBox/settings.h>
    2727
    28 class ATL_NO_VTABLE HostUpdate
    29     : public HostUpdateWrap
     28#include "UpdateAgentWrap.h"
     29#include "HostUpdateAgentWrap.h"
     30
     31class  UpdateAgentTask;
     32struct UpdateAgentTaskParms;
     33
     34struct UpdateAgentTaskResult
     35{
     36    Utf8Str          strVer;
     37    Utf8Str          strWebUrl;
     38    Utf8Str          strDownloadUrl;
     39    UpdateSeverity_T enmSeverity;
     40    Utf8Str          strReleaseNotes;
     41};
     42
     43class ATL_NO_VTABLE UpdateAgent
     44    : public UpdateAgentWrap
    3045{
    3146public:
    32     DECLARE_COMMON_CLASS_METHODS(HostUpdate)
     47    DECLARE_COMMON_CLASS_METHODS(UpdateAgent)
    3348
     49    /** @name COM and internal init/term/mapping cruft.
     50     * @{ */
    3451    HRESULT FinalConstruct();
    3552    void FinalRelease();
    3653
    37     // public initializer/uninitializer for internal purposes only
    3854    HRESULT init(VirtualBox *aVirtualBox);
    39     void uninit();
     55    void uninit(void);
     56    /** @}  */
    4057
    41 private:
    42     /** @name wrapped IHostUpdate attributes and methods
     58    /** @name Public methods for internal purposes only
     59     *        (ensure there is a caller and a read lock before calling them!) */
     60    HRESULT i_loadSettings(const settings::UpdateAgent &data);
     61    HRESULT i_saveSettings(settings::UpdateAgent &data);
     62
     63    virtual HRESULT i_setCheckCount(ULONG aCount);
     64    virtual HRESULT i_setLastCheckDate(const com::Utf8Str &aDate);
     65    /** @}  */
     66
     67protected:
     68    /** @name Wrapped IUpdateAgent attributes and methods
    4369     * @{ */
    44     HRESULT updateCheck(UpdateCheckType_T aCheckType, ComPtr<IProgress> &aProgress) RT_OVERRIDE;
    45     HRESULT getUpdateResponse(BOOL *aUpdateNeeded) RT_OVERRIDE;
    46     HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion) RT_OVERRIDE;
    47     HRESULT getUpdateURL(com::Utf8Str &aUpdateURL) RT_OVERRIDE;
    48     HRESULT getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded) RT_OVERRIDE;
     70    virtual HRESULT check(ComPtr<IProgress> &aProgress) RT_OVERRIDE = 0;
     71    virtual HRESULT download(ComPtr<IProgress> &aProgress) RT_OVERRIDE;
     72    virtual HRESULT install(ComPtr<IProgress> &aProgress) RT_OVERRIDE;
     73    virtual HRESULT rollback(void) RT_OVERRIDE;
     74
     75    virtual HRESULT getName(com::Utf8Str &aName);
     76    virtual HRESULT getOrder(ULONG *aOrder);
     77    virtual HRESULT getDependsOn(std::vector<com::Utf8Str> &aDeps);
     78    virtual HRESULT getVersion(com::Utf8Str &aVer);
     79    virtual HRESULT getDownloadUrl(com::Utf8Str &aUrl);
     80    virtual HRESULT getWebUrl(com::Utf8Str &aUrl);
     81    virtual HRESULT getReleaseNotes(com::Utf8Str &aRelNotes);
     82    virtual HRESULT getEnabled(BOOL *aEnabled);
     83    virtual HRESULT setEnabled(BOOL aEnabled);
     84    virtual HRESULT getHidden(BOOL *aHidden);
     85    virtual HRESULT getState(UpdateState_T *aState);
     86    virtual HRESULT getCheckCount(ULONG *aCount);
     87    virtual HRESULT getCheckFrequency(ULONG  *aFreqSeconds);
     88    virtual HRESULT setCheckFrequency(ULONG aFreqSeconds);
     89    virtual HRESULT getChannel(UpdateChannel_T *aChannel);
     90    virtual HRESULT setChannel(UpdateChannel_T aChannel);
     91    virtual HRESULT getRepositoryURL(com::Utf8Str &aRepo);
     92    virtual HRESULT setRepositoryURL(const com::Utf8Str &aRepo);
     93    virtual HRESULT getProxyMode(ProxyMode_T *aMode);
     94    virtual HRESULT setProxyMode(ProxyMode_T aMode);
     95    virtual HRESULT getProxyURL(com::Utf8Str &aAddress);
     96    virtual HRESULT setProxyURL(const com::Utf8Str &aAddress);
     97    virtual HRESULT getLastCheckDate(com::Utf8Str &aData);
    4998    /** @} */
    5099
    51 #ifdef VBOX_WITH_HOST_UPDATE_CHECK
    52     Utf8Str i_platformInfo();
    53     class UpdateCheckTask;
    54     HRESULT i_updateCheckTask(UpdateCheckTask *pTask);
    55     HRESULT i_checkForVBoxUpdate();
    56     HRESULT i_checkForVBoxUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent,
    57                                       ComPtr<ISystemProperties> const &ptrSystemProperties);
    58 #endif
     100    /** @name Internal task callbacks.
     101     * @{ */
     102    friend UpdateAgentTask;
     103    virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask) = 0;
     104    /** @} */
     105
     106    /** @name Static helper methods.
     107     * @{ */
     108    static Utf8Str i_getPlatformInfo(void);
     109    /** @} */
     110
     111protected:
     112    VirtualBox * const m_VirtualBox;
    59113
    60114    /** @name Data members.
    61115     * @{ */
    62     VirtualBox * const mVirtualBox;
    63     BOOL     m_updateNeeded;
    64     Utf8Str  m_updateVersion;
    65     Utf8Str  m_updateURL;
     116    settings::UpdateAgent *m;
     117
     118    struct Data
     119    {
     120        UpdateAgentTaskResult m_lastResult;
     121
     122        Utf8Str               m_strName;
     123        bool                  m_fHidden;
     124        UpdateState_T         m_enmState;
     125        uint32_t              m_uOrder;
     126
     127        Data(void)
     128        {
     129            m_fHidden  = true;
     130            m_enmState = UpdateState_Invalid;
     131            m_uOrder   = UINT32_MAX;
     132        }
     133    } mData;
    66134    /** @} */
    67135};
    68136
    69 #endif /* !MAIN_INCLUDED_HostUpdateImpl_h */
     137/** @todo Put this into an own module, e.g. HostUpdateAgentImpl.[cpp|h]. */
    70138
    71 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
     139class ATL_NO_VTABLE HostUpdateAgent :
     140    public UpdateAgent
     141{
     142public:
     143    /** @name COM and internal init/term/mapping cruft.
     144     * @{ */
     145    DECLARE_COMMON_CLASS_METHODS(HostUpdateAgent)
     146
     147    HRESULT init(VirtualBox *aVirtualBox);
     148    void    uninit(void);
     149
     150    HRESULT FinalConstruct(void);
     151    void    FinalRelease(void);
     152    /** @}  */
     153
     154    virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask);
     155
     156private:
     157    /** @name Implemented (pure) virtual methods from UpdateAgent.
     158     * @{ */
     159    HRESULT check(ComPtr<IProgress> &aProgress);
     160    /** @}  */
     161
     162#ifdef VBOX_WITH_UPDATE_AGENT
     163    HRESULT i_updateAgentTask(UpdateAgentTask *pTask);
     164    HRESULT i_checkForUpdate(void);
     165    HRESULT i_checkForUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent);
     166#endif
     167};
     168
     169#endif /* !MAIN_INCLUDED_UpdateAgentImpl_h */
     170
  • trunk/src/VBox/Main/src-server/HostImpl.cpp

    r94597 r94643  
    4545#include "LoggingNew.h"
    4646#include "Performance.h"
    47 #include "HostUpdateImpl.h"
     47#ifdef VBOX_WITH_UPDATE_AGENT
     48# include "UpdateAgentImpl.h"
     49#endif
    4850
    4951#include "MediumImpl.h"
     
    250252    bool                    fPersistentConfigUpToDate;
    251253
    252     /** The reference to the update check handler singleton. */
    253     const ComObjPtr<HostUpdate> pHostUpdate;
     254#ifdef VBOX_WITH_UPDATE_AGENT
     255    /** Reference to the host update agent. */
     256    const ComObjPtr<HostUpdateAgent> pUpdateHost;
     257#endif
    254258};
    255259
     
    308312    m->hostDnsMonitorProxy.init(m->pParent);
    309313
    310     hrc = unconst(m->pHostUpdate).createObject();
     314#ifdef VBOX_WITH_UPDATE_AGENT
     315    hrc = unconst(m->pUpdateHost).createObject();
    311316    if (SUCCEEDED(hrc))
    312         hrc = m->pHostUpdate->init(m->pParent);
     317        hrc = m->pUpdateHost->init(m->pParent);
    313318    AssertComRCReturn(hrc, hrc);
     319#endif
    314320
    315321#if defined(RT_OS_WINDOWS)
     
    502508    m->hostDnsMonitorProxy.uninit();
    503509
    504     if (m->pHostUpdate)
    505     {
    506         m->pHostUpdate->uninit();
    507         unconst(m->pHostUpdate).setNull();
    508     }
     510#ifdef VBOX_WITH_UPDATE_AGENT
     511    if (m->pUpdateHost)
     512    {
     513        m->pUpdateHost->uninit();
     514        unconst(m->pUpdateHost).setNull();
     515    }
     516#endif
    509517
    510518#ifdef VBOX_WITH_USB
     
    19922000}
    19932001
    1994 
    1995 HRESULT Host::getUpdate(ComPtr<IHostUpdate> &aUpdate)
    1996 {
    1997     HRESULT hrc = m->pHostUpdate.queryInterfaceTo(aUpdate.asOutParam());
     2002HRESULT Host::getUpdateHost(ComPtr<IUpdateAgent> &aUpdate)
     2003{
     2004#ifdef VBOX_WITH_UPDATE_AGENT
     2005    HRESULT hrc = m->pUpdateHost.queryInterfaceTo(aUpdate.asOutParam());
    19982006    return hrc;
    1999 }
    2000 
     2007#else
     2008    RT_NOREF(aUpdate);
     2009    ReturnComNotImplemented();
     2010#endif
     2011}
     2012
     2013HRESULT Host::getUpdateExtPack(ComPtr<IUpdateAgent> &aUpdate)
     2014{
     2015    RT_NOREF(aUpdate);
     2016    ReturnComNotImplemented();
     2017}
     2018
     2019HRESULT Host::getUpdateGuestAdditions(ComPtr<IUpdateAgent> &aUpdate)
     2020{
     2021    RT_NOREF(aUpdate);
     2022    ReturnComNotImplemented();
     2023}
    20012024
    20022025HRESULT  Host::getHostDrives(std::vector<ComPtr<IHostDrive> > &aHostDrives)
     
    20672090HRESULT Host::i_saveSettings(settings::Host &data)
    20682091{
    2069 #ifdef VBOX_WITH_USB
    20702092    AutoCaller autoCaller(this);
    20712093    if (FAILED(autoCaller.rc()))
     
    20742096    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    20752097
     2098    HRESULT rc;
     2099
     2100#ifdef VBOX_WITH_USB
    20762101    data.llUSBDeviceFilters.clear();
    20772102    data.llUSBDeviceSources.clear();
     
    20872112    }
    20882113
    2089     return m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources);
     2114    rc = m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources);
     2115    ComAssertComRCRet(rc, rc);
    20902116#else
    20912117    RT_NOREF(data);
     2118#endif /* VBOX_WITH_USB */
     2119
     2120#ifdef VBOX_WITH_UPDATE_AGENT
     2121    rc = m->pUpdateHost->i_saveSettings(data.updateHost);
     2122    ComAssertComRCRet(rc, rc);
     2123    /** @todo Add handling for ExtPack and Guest Additions updates here later. See @bugref{7983}. */
     2124#endif
     2125
    20922126    return S_OK;
    2093 #endif /* VBOX_WITH_USB */
    2094 
    20952127}
    20962128
  • trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp

    r94578 r94643  
    117117    m->fExclusiveHwVirt = true;
    118118#endif
    119 
    120     m->fVBoxUpdateEnabled = true;
    121     m->uVBoxUpdateCount = 0;
    122     m->uVBoxUpdateFrequency = 1; // daily is the default
    123     m->uVBoxUpdateTarget = VBoxUpdateTarget_Stable;
    124119
    125120    HRESULT rc = S_OK;
     
    18291824}
    18301825
    1831 HRESULT SystemProperties::getSupportedVBoxUpdateTargetTypes(std::vector<VBoxUpdateTarget_T> &aSupportedVBoxUpdateTargetTypes)
    1832 {
    1833     static const VBoxUpdateTarget_T aVBoxUpdateTargetTypes[] =
    1834     {
    1835         VBoxUpdateTarget_Stable,
    1836         VBoxUpdateTarget_AllReleases,
    1837         VBoxUpdateTarget_WithBetas
    1838     };
    1839     aSupportedVBoxUpdateTargetTypes.assign(aVBoxUpdateTargetTypes,
    1840                                            aVBoxUpdateTargetTypes + RT_ELEMENTS(aVBoxUpdateTargetTypes));
    1841     return S_OK;
    1842 }
    1843 
    18441826
    18451827// public methods only for internal purposes
     
    18771859
    18781860    m->strLanguageId     = data.strLanguageId;
    1879 
    1880     m->fVBoxUpdateEnabled               = data.fVBoxUpdateEnabled;
    1881     m->uVBoxUpdateFrequency             = data.uVBoxUpdateFrequency;
    1882     m->strVBoxUpdateLastCheckDate       = data.strVBoxUpdateLastCheckDate;
    1883     m->uVBoxUpdateTarget                = data.uVBoxUpdateTarget;
    1884     m->uVBoxUpdateCount                 = data.uVBoxUpdateCount;
    18851861
    18861862    rc = i_setAutostartDatabasePath(data.strAutostartDatabasePath);
     
    22282204}
    22292205
    2230 HRESULT SystemProperties::i_setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate)
    2231 {
    2232     m->strVBoxUpdateLastCheckDate = aVBoxUpdateLastCheckDate;
    2233 
    2234     return S_OK;
    2235 }
    2236 
    2237 HRESULT SystemProperties::getVBoxUpdateEnabled(BOOL *aVBoxUpdateEnabled)
    2238 {
    2239     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    2240 
    2241     *aVBoxUpdateEnabled = m->fVBoxUpdateEnabled;
    2242 
    2243     return S_OK;
    2244 }
    2245 
    2246 HRESULT SystemProperties::setVBoxUpdateEnabled(BOOL aVBoxUpdateEnabled)
    2247 {
    2248     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2249     m->fVBoxUpdateEnabled = !!aVBoxUpdateEnabled;
    2250     alock.release();
    2251 
    2252     // VirtualBox::i_saveSettings() needs vbox write lock
    2253     AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);
    2254     HRESULT rc = mParent->i_saveSettings();
    2255 
    2256     return rc;
    2257 }
    2258 
    2259 HRESULT SystemProperties::getVBoxUpdateCount(ULONG *aVBoxUpdateCount)
    2260 {
    2261     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    2262 
    2263     *aVBoxUpdateCount = m->uVBoxUpdateCount;
    2264 
    2265     return S_OK;
    2266 }
    2267 
    2268 HRESULT SystemProperties::setVBoxUpdateCount(ULONG aVBoxUpdateCount)
    2269 {
    2270     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2271     m->uVBoxUpdateCount = aVBoxUpdateCount;
    2272     alock.release();
    2273 
    2274     // VirtualBox::i_saveSettings() needs vbox write lock
    2275     AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);
    2276     HRESULT rc = mParent->i_saveSettings();
    2277 
    2278     return rc;
    2279 }
    2280 
    22812206HRESULT SystemProperties::getLanguageId(com::Utf8Str &aLanguageId)
    22822207{
     
    23382263}
    23392264
    2340 HRESULT SystemProperties::getVBoxUpdateFrequency(ULONG *aVBoxUpdateFrequency)
    2341 {
    2342     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    2343 
    2344     *aVBoxUpdateFrequency = m->uVBoxUpdateFrequency;
    2345 
    2346     return S_OK;
    2347 }
    2348 
    2349 HRESULT SystemProperties::setVBoxUpdateFrequency(ULONG aVBoxUpdateFrequency)
    2350 {
    2351     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2352     m->uVBoxUpdateFrequency = aVBoxUpdateFrequency;
    2353     alock.release();
    2354 
    2355     // VirtualBox::i_saveSettings() needs vbox write lock
    2356     AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);
    2357     HRESULT rc = mParent->i_saveSettings();
    2358 
    2359     return rc;
    2360 }
    2361 
    2362 HRESULT SystemProperties::getVBoxUpdateTarget(VBoxUpdateTarget_T *aVBoxUpdateTarget)
    2363 {
    2364     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    2365     VBoxUpdateTarget_T enmTarget = *aVBoxUpdateTarget = (VBoxUpdateTarget_T)m->uVBoxUpdateTarget;
    2366     AssertMsgReturn(enmTarget == VBoxUpdateTarget_Stable ||
    2367                     enmTarget == VBoxUpdateTarget_AllReleases ||
    2368                     enmTarget == VBoxUpdateTarget_WithBetas,
    2369                     ("enmTarget=%d\n", enmTarget), E_UNEXPECTED);
    2370     return S_OK;
    2371 }
    2372 
    2373 HRESULT SystemProperties::setVBoxUpdateTarget(VBoxUpdateTarget_T aVBoxUpdateTarget)
    2374 {
    2375     /* Validate input. */
    2376     switch (aVBoxUpdateTarget)
    2377     {
    2378         case VBoxUpdateTarget_Stable:
    2379         case VBoxUpdateTarget_AllReleases:
    2380         case VBoxUpdateTarget_WithBetas:
    2381             break;
    2382         default:
    2383             return setError(E_INVALIDARG, tr("Invalid Target value: %d"), (int)aVBoxUpdateTarget);
    2384     }
    2385 
    2386     /* Set and write out settings. */
    2387     {
    2388         AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2389         m->uVBoxUpdateTarget = aVBoxUpdateTarget;
    2390     }
    2391     AutoWriteLock alock(mParent COMMA_LOCKVAL_SRC_POS); /* required for saving. */
    2392     return mParent->i_saveSettings();
    2393 }
    2394 
    2395 HRESULT SystemProperties::getVBoxUpdateLastCheckDate(com::Utf8Str &aVBoxUpdateLastCheckDate)
    2396 {
    2397     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    2398     aVBoxUpdateLastCheckDate = m->strVBoxUpdateLastCheckDate;
    2399     return S_OK;
    2400 }
    2401 
    2402 HRESULT SystemProperties::setVBoxUpdateLastCheckDate(const com::Utf8Str &aVBoxUpdateLastCheckDate)
    2403 {
    2404     /*
    2405      * Validate input.
    2406      */
    2407     Utf8Str const *pLastCheckDate = &aVBoxUpdateLastCheckDate;
    2408     RTTIMESPEC TimeSpec;
    2409 
    2410     if (pLastCheckDate->isEmpty() || !RTTimeSpecFromString(&TimeSpec, pLastCheckDate->c_str()))
    2411         return setErrorBoth(E_INVALIDARG, VERR_INVALID_PARAMETER,
    2412                             tr("Invalid LastCheckDate value: '%s'. "
    2413                                "Must be in ISO 8601 format (e.g. 2020-05-11T21:13:39.348416000Z)"), pLastCheckDate->c_str());
    2414 
    2415     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    2416     HRESULT rc = i_setVBoxUpdateLastCheckDate(aVBoxUpdateLastCheckDate);
    2417     alock.release();
    2418     if (SUCCEEDED(rc))
    2419     {
    2420         // VirtualBox::i_saveSettings() needs vbox write lock
    2421         AutoWriteLock vboxLock(mParent COMMA_LOCKVAL_SRC_POS);
    2422         rc = mParent->i_saveSettings();
    2423     }
    2424 
    2425     return rc;
    2426 }
  • trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp

    r94550 r94643  
    11/* $Id$ */
    22/** @file
    3  * IHostUpdate COM class implementations.
     3 * IUpdateAgent COM class implementations.
    44 */
    55
     
    1717
    1818
    19 #define LOG_GROUP LOG_GROUP_MAIN_HOSTUPDATE
     19#define LOG_GROUP LOG_GROUP_MAIN_UPDATEAGENT
    2020
    2121#include <iprt/cpp/utils.h>
     
    3636
    3737#include "HostImpl.h"
    38 #include "HostUpdateImpl.h"
     38#include "UpdateAgentImpl.h"
    3939#include "ProgressImpl.h"
    4040#include "AutoCaller.h"
     
    4848////////////////////////////////////////////////////////////////////////////////
    4949//
    50 // HostUpdate private data definition
     50// UpdateAgent private data definition
    5151//
    5252////////////////////////////////////////////////////////////////////////////////
    5353
    54 #ifdef VBOX_WITH_HOST_UPDATE_CHECK
    55 
    56 class HostUpdate::UpdateCheckTask : public ThreadTask
     54class UpdateAgentTask : public ThreadTask
    5755{
    5856public:
    59     UpdateCheckTask(UpdateCheckType_T aCheckType, HostUpdate *aThat, Progress *aProgress)
    60         : m_checkType(aCheckType)
    61         , m_pHostUpdate(aThat)
    62         , m_ptrProgress(aProgress)
    63     {
    64         m_strTaskName = "UpdateCheckTask";
    65     }
    66     ~UpdateCheckTask() { }
     57    UpdateAgentTask(UpdateAgent *aThat, Progress *aProgress)
     58        : m_pParent(aThat)
     59        , m_pProgress(aProgress)
     60    {
     61        m_strTaskName = "UpdateAgentTask";
     62    }
     63    virtual ~UpdateAgentTask(void) { }
    6764
    6865private:
    69     void handler();
    70 
    71     UpdateCheckType_T m_checkType;
    72     HostUpdate *m_pHostUpdate;
    73 
     66    void handler(void);
     67
     68    /** Weak pointer to parent (update agent). */
     69    UpdateAgent         *m_pParent;
    7470    /** Smart pointer to the progress object for this job. */
    75     ComObjPtr<Progress> m_ptrProgress;
    76 
    77     friend class HostUpdate;  // allow member functions access to private data
     71    ComObjPtr<Progress>  m_pProgress;
     72
     73    friend class UpdateAgent;  // allow member functions access to private data
    7874};
    7975
    80 void HostUpdate::UpdateCheckTask::handler()
    81 {
    82     HostUpdate *pHostUpdate = this->m_pHostUpdate;
    83 
    84     LogFlowFuncEnter();
    85     LogFlowFunc(("HostUpdate %p\n", pHostUpdate));
    86 
    87     HRESULT rc = pHostUpdate->i_updateCheckTask(this);
    88 
    89     LogFlowFunc(("rc=%Rhrc\n", rc)); NOREF(rc);
    90     LogFlowFuncLeave();
    91 }
    92 
    93 Utf8Str HostUpdate::i_platformInfo()
     76void UpdateAgentTask::handler(void)
     77{
     78    UpdateAgent *pUpdateAgent = this->m_pParent;
     79    AssertPtr(pUpdateAgent);
     80
     81    HRESULT rc = pUpdateAgent->i_updateTask(this);
     82
     83    if (!m_pProgress.isNull())
     84        m_pProgress->i_notifyComplete(rc);
     85
     86    LogFlowFunc(("rc=%Rhrc\n", rc)); RT_NOREF(rc);
     87}
     88
     89
     90/*********************************************************************************************************************************
     91*   Update agent base class implementation                                                                                       *
     92*********************************************************************************************************************************/
     93UpdateAgent::UpdateAgent()
     94    : m_VirtualBox(NULL)
     95    , m(new settings::UpdateAgent)
     96{
     97}
     98
     99UpdateAgent::~UpdateAgent()
     100{
     101    delete m;
     102}
     103
     104HRESULT UpdateAgent::FinalConstruct()
     105{
     106    return BaseFinalConstruct();
     107}
     108
     109void UpdateAgent::FinalRelease()
     110{
     111    uninit();
     112
     113    BaseFinalRelease();
     114}
     115
     116HRESULT UpdateAgent::init(VirtualBox *aVirtualBox)
     117{
     118    // Enclose the state transition NotReady->InInit->Ready.
     119    AutoInitSpan autoInitSpan(this);
     120    AssertReturn(autoInitSpan.isOk(), E_FAIL);
     121
     122    /* Weak reference to a VirtualBox object */
     123    unconst(m_VirtualBox) = aVirtualBox;
     124
     125    autoInitSpan.setSucceeded();
     126    return S_OK;
     127}
     128
     129void UpdateAgent::uninit()
     130{
     131    // Enclose the state transition Ready->InUninit->NotReady.
     132    AutoUninitSpan autoUninitSpan(this);
     133    if (autoUninitSpan.uninitDone())
     134        return;
     135}
     136
     137HRESULT UpdateAgent::download(ComPtr<IProgress> &aProgress)
     138{
     139    RT_NOREF(aProgress);
     140
     141    return VBOX_E_NOT_SUPPORTED;
     142}
     143
     144HRESULT UpdateAgent::install(ComPtr<IProgress> &aProgress)
     145{
     146    RT_NOREF(aProgress);
     147
     148    return VBOX_E_NOT_SUPPORTED;
     149}
     150
     151HRESULT UpdateAgent::rollback(void)
     152{
     153    return S_OK; /* No-op by default. */
     154}
     155
     156HRESULT UpdateAgent::getName(com::Utf8Str &aName)
     157{
     158    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     159
     160    aName = mData.m_strName;
     161
     162    return S_OK;
     163}
     164
     165HRESULT UpdateAgent::getOrder(ULONG *aOrder)
     166{
     167    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     168
     169    *aOrder = 0; /* 0 means no order / disabled. */
     170
     171    return S_OK;
     172}
     173
     174HRESULT UpdateAgent::getDependsOn(std::vector<com::Utf8Str> &aDeps)
     175{
     176    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     177
     178    aDeps.resize(0); /* No dependencies by default. */
     179
     180    return S_OK;
     181}
     182
     183HRESULT UpdateAgent::getVersion(com::Utf8Str &aVer)
     184{
     185    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     186
     187    aVer = mData.m_lastResult.strVer;
     188
     189    return S_OK;
     190}
     191
     192HRESULT UpdateAgent::getDownloadUrl(com::Utf8Str &aUrl)
     193{
     194    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     195
     196    aUrl = mData.m_lastResult.strDownloadUrl;
     197
     198    return S_OK;
     199}
     200
     201
     202HRESULT UpdateAgent::getWebUrl(com::Utf8Str &aUrl)
     203{
     204    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     205
     206    aUrl = mData.m_lastResult.strWebUrl;
     207
     208    return S_OK;
     209}
     210
     211HRESULT UpdateAgent::getReleaseNotes(com::Utf8Str &aRelNotes)
     212{
     213    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     214
     215    aRelNotes = mData.m_lastResult.strReleaseNotes;
     216
     217    return S_OK;
     218}
     219
     220HRESULT UpdateAgent::getEnabled(BOOL *aEnabled)
     221{
     222    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     223
     224    *aEnabled = m->fEnabled;
     225
     226    return S_OK;
     227}
     228
     229HRESULT UpdateAgent::setEnabled(const BOOL aEnabled)
     230{
     231    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     232
     233    m->fEnabled = aEnabled;
     234
     235    return S_OK;
     236}
     237
     238
     239HRESULT UpdateAgent::getHidden(BOOL *aHidden)
     240{
     241    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     242
     243    *aHidden = mData.m_fHidden;
     244
     245    return S_OK;
     246}
     247
     248HRESULT UpdateAgent::getState(UpdateState_T *aState)
     249{
     250    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     251
     252    *aState = mData.m_enmState;
     253
     254    return S_OK;
     255}
     256
     257HRESULT UpdateAgent::getCheckFrequency(ULONG *aFreqSeconds)
     258{
     259    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     260
     261    *aFreqSeconds = m->uCheckFreqSeconds;
     262
     263    return S_OK;
     264}
     265
     266HRESULT UpdateAgent::setCheckFrequency(ULONG aFreqSeconds)
     267{
     268    if (aFreqSeconds < RT_SEC_1DAY) /* Don't allow more frequent checks for now. */
     269        return setError(E_INVALIDARG, tr("Frequency too small; one day is the minimum"));
     270
     271    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     272
     273    m->uCheckFreqSeconds = aFreqSeconds;
     274
     275    return S_OK;
     276}
     277
     278HRESULT UpdateAgent::getChannel(UpdateChannel_T *aChannel)
     279{
     280    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     281
     282    *aChannel = m->enmChannel;
     283
     284    return S_OK;
     285}
     286
     287HRESULT UpdateAgent::setChannel(UpdateChannel_T aChannel)
     288{
     289    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     290
     291    m->enmChannel = aChannel;
     292
     293    return S_OK;
     294}
     295
     296HRESULT UpdateAgent::getCheckCount(ULONG *aCount)
     297{
     298    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     299
     300    *aCount = m->uCheckCount;
     301
     302    return S_OK;
     303}
     304
     305HRESULT UpdateAgent::getRepositoryURL(com::Utf8Str &aRepo)
     306{
     307    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     308
     309    aRepo = m->strRepoUrl;
     310
     311    return S_OK;
     312}
     313
     314HRESULT UpdateAgent::setRepositoryURL(const com::Utf8Str &aRepo)
     315{
     316    if (!aRepo.startsWith("https://", com::Utf8Str::CaseInsensitive))
     317        return setError(E_INVALIDARG, tr("Invalid URL scheme specified; only https:// is supported."));
     318
     319    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     320
     321    m->strRepoUrl = aRepo;
     322
     323    return S_OK;
     324}
     325
     326HRESULT UpdateAgent::getProxyMode(ProxyMode_T *aMode)
     327{
     328    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     329
     330    *aMode = m->enmProxyMode;
     331
     332    return S_OK;
     333}
     334
     335HRESULT UpdateAgent::setProxyMode(ProxyMode_T aMode)
     336{
     337    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     338
     339    m->enmProxyMode = aMode;
     340
     341    return S_OK;
     342}
     343
     344HRESULT UpdateAgent::getProxyURL(com::Utf8Str &aAddress)
     345{
     346    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     347
     348    aAddress = m->strProxyUrl;
     349
     350    return S_OK;
     351}
     352
     353HRESULT UpdateAgent::setProxyURL(const com::Utf8Str &aAddress)
     354{
     355    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     356
     357    m->strProxyUrl = aAddress;
     358
     359    return S_OK;
     360}
     361
     362HRESULT UpdateAgent::getLastCheckDate(com::Utf8Str &aDate)
     363{
     364    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     365
     366    aDate = m->strLastCheckDate;
     367
     368    return S_OK;
     369}
     370
     371/* static */
     372Utf8Str UpdateAgent::i_getPlatformInfo(void)
    94373{
    95374    /* Prepare platform report: */
     
    255534}
    256535
    257 HRESULT HostUpdate::i_checkForVBoxUpdate()
    258 {
    259     // Default to no update required
    260     m_updateNeeded = FALSE;
     536HRESULT UpdateAgent::i_loadSettings(const settings::UpdateAgent &data)
     537{
     538    AutoCaller autoCaller(this);
     539    if (FAILED(autoCaller.rc())) return autoCaller.rc();
     540
     541    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     542
     543    m->fEnabled          = data.fEnabled;
     544    m->enmChannel        = data.enmChannel;
     545    m->uCheckFreqSeconds = data.uCheckFreqSeconds;
     546    m->strRepoUrl        = data.strRepoUrl;
     547    m->enmProxyMode      = data.enmProxyMode;
     548    m->strProxyUrl       = data.strProxyUrl;
     549    m->strLastCheckDate  = data.strLastCheckDate;
     550    m->uCheckCount       = data.uCheckCount;
     551
     552    return S_OK;
     553}
     554
     555HRESULT UpdateAgent::i_saveSettings(settings::UpdateAgent &data)
     556{
     557    AutoCaller autoCaller(this);
     558    if (FAILED(autoCaller.rc())) return autoCaller.rc();
     559
     560    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     561
     562    data = *m;
     563
     564    return S_OK;
     565}
     566
     567HRESULT UpdateAgent::i_setCheckCount(ULONG aCount)
     568{
     569    AutoCaller autoCaller(this);
     570    if (FAILED(autoCaller.rc())) return autoCaller.rc();
     571
     572    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     573
     574    m->uCheckCount = aCount;
     575
     576    return S_OK;
     577}
     578
     579HRESULT UpdateAgent::i_setLastCheckDate(const com::Utf8Str &aDate)
     580{
     581    AutoCaller autoCaller(this);
     582    if (FAILED(autoCaller.rc())) return autoCaller.rc();
     583
     584    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     585
     586    m->strLastCheckDate = aDate;
     587
     588    return S_OK;
     589}
     590
     591#if 0
     592HRESULT UpdateAgent::getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded)
     593{
     594    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     595
     596    HRESULT rc;
     597    ComPtr<ISystemProperties> pSystemProperties;
     598    rc = m_VirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
     599    if (FAILED(rc))
     600        return rc;
     601
     602    /*
     603     * Is update checking enabled?
     604     */
     605    BOOL fVBoxUpdateEnabled;
     606    rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled);
     607    if (FAILED(rc))
     608        return rc;
     609
     610    if (!fVBoxUpdateEnabled)
     611    {
     612        *aUpdateCheckNeeded = false;
     613        return S_OK;
     614    }
     615
     616    /*
     617     * When was the last update?
     618     */
     619    Bstr strVBoxUpdateLastCheckDate;
     620    rc = pSystemProperties->COMGETTER(VBoxUpdateLastCheckDate)(strVBoxUpdateLastCheckDate.asOutParam());
     621    if (FAILED(rc))
     622        return rc;
     623
     624    // No prior update check performed so do so now
     625    if (strVBoxUpdateLastCheckDate.isEmpty())
     626    {
     627        *aUpdateCheckNeeded = true;
     628        return S_OK;
     629    }
     630
     631    // convert stored timestamp to time spec
     632    RTTIMESPEC LastCheckTime;
     633    if (!RTTimeSpecFromString(&LastCheckTime, Utf8Str(strVBoxUpdateLastCheckDate).c_str()))
     634    {
     635        *aUpdateCheckNeeded = true;
     636        return S_OK;
     637    }
     638
     639    /*
     640     * Compare last update with how often we are supposed to check for updates.
     641     */
     642    ULONG uVBoxUpdateFrequency = 0;  // value in days
     643    rc = pSystemProperties->COMGETTER(VBoxUpdateFrequency)(&uVBoxUpdateFrequency);
     644    if (FAILED(rc))
     645        return rc;
     646
     647    if (!uVBoxUpdateFrequency)
     648    {
     649        /* Consider config (enable, 0 day interval) as checking once but never again.
     650           We've already check since we've got a date. */
     651        *aUpdateCheckNeeded = false;
     652        return S_OK;
     653    }
     654    uint64_t const cSecsInXDays = uVBoxUpdateFrequency * RT_SEC_1DAY_64;
     655
     656    RTTIMESPEC TimeDiff;
     657    RTTimeSpecSub(RTTimeNow(&TimeDiff), &LastCheckTime);
     658
     659    LogRelFunc(("Checking if seconds since last check (%lld) >= Number of seconds in %lu day%s (%lld)\n",
     660                RTTimeSpecGetSeconds(&TimeDiff), uVBoxUpdateFrequency, uVBoxUpdateFrequency > 1 ? "s" : "", cSecsInXDays));
     661
     662    if (RTTimeSpecGetSeconds(&TimeDiff) >= (int64_t)cSecsInXDays)
     663        *aUpdateCheckNeeded = true;
     664
     665    return S_OK;
     666}
     667#endif
     668
     669
     670/*********************************************************************************************************************************
     671*   Host update implementation                                                                                                   *
     672*********************************************************************************************************************************/
     673
     674HostUpdateAgent::HostUpdateAgent(void)
     675{
     676}
     677
     678HostUpdateAgent::~HostUpdateAgent(void)
     679{
     680}
     681
     682
     683HRESULT HostUpdateAgent::FinalConstruct(void)
     684{
     685    return BaseFinalConstruct();
     686}
     687
     688void HostUpdateAgent::FinalRelease(void)
     689{
     690    uninit();
     691
     692    BaseFinalRelease();
     693}
     694
     695HRESULT HostUpdateAgent::init(VirtualBox *aVirtualBox)
     696{
     697    // Enclose the state transition NotReady->InInit->Ready.
     698    AutoInitSpan autoInitSpan(this);
     699    AssertReturn(autoInitSpan.isOk(), E_FAIL);
     700
     701    /* Weak reference to a VirtualBox object */
     702    unconst(m_VirtualBox) = aVirtualBox;
     703
     704    /* Initialize the bare minimum to get things going.
     705     ** @todo Add more stuff later here. */
     706    mData.m_strName = "VirtualBox";
     707    mData.m_fHidden = false;
     708
     709    /* Set default repository. */
     710    m->strRepoUrl = "https://update.virtualbox.org";
     711
     712    autoInitSpan.setSucceeded();
     713    return S_OK;
     714}
     715
     716void HostUpdateAgent::uninit()
     717{
     718    // Enclose the state transition Ready->InUninit->NotReady.
     719    AutoUninitSpan autoUninitSpan(this);
     720    if (autoUninitSpan.uninitDone())
     721        return;
     722}
     723
     724HRESULT HostUpdateAgent::check(ComPtr<IProgress> &aProgress)
     725{
     726    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
     727
     728    ComObjPtr<Progress> pProgress;
     729    HRESULT rc = pProgress.createObject();
     730    if (FAILED(rc))
     731        return rc;
     732
     733    rc = pProgress->init(m_VirtualBox,
     734                         static_cast<IUpdateAgent*>(this),
     735                         tr("Checking for update for %s ...", this->mData.m_strName.c_str()),
     736                         TRUE /* aCancelable */);
     737    if (FAILED(rc))
     738        return rc;
     739
     740    /* initialize the worker task */
     741    UpdateAgentTask *pTask = new UpdateAgentTask(this, pProgress);
     742    rc = pTask->createThread();
     743    pTask = NULL;
     744    if (FAILED(rc))
     745        return rc;
     746
     747    return pProgress.queryInterfaceTo(aProgress.asOutParam());
     748}
     749
     750
     751/*********************************************************************************************************************************
     752*   Host update internal functions                                                                                               *
     753*********************************************************************************************************************************/
     754
     755DECLCALLBACK(HRESULT) HostUpdateAgent::i_updateTask(UpdateAgentTask *pTask)
     756{
     757    RT_NOREF(pTask);
    261758
    262759    // Following the sequence of steps in UIUpdateStepVirtualBox::sltStartStep()
    263     // Build up our query URL starting with the URL basename
    264     Utf8Str strUrl("https://update.virtualbox.org/query.php/?");
     760    // Build up our query URL starting with the configured repository.
     761    Utf8Str strUrl;
     762    strUrl.appendPrintf("%s/query.php/?", m->strRepoUrl.c_str());
     763
     764    // Add platform ID.
    265765    Bstr platform;
    266     HRESULT rc = mVirtualBox->COMGETTER(PackageType)(platform.asOutParam());
     766    HRESULT rc = m_VirtualBox->COMGETTER(PackageType)(platform.asOutParam());
    267767    AssertComRCReturn(rc, rc);
    268768    strUrl.appendPrintf("platform=%ls", platform.raw()); // e.g. SOLARIS_64BITS_GENERIC
     
    270770    // Get the complete current version string for the query URL
    271771    Bstr versionNormalized;
    272     rc = mVirtualBox->COMGETTER(VersionNormalized)(versionNormalized.asOutParam());
     772    rc = m_VirtualBox->COMGETTER(VersionNormalized)(versionNormalized.asOutParam());
    273773    AssertComRCReturn(rc, rc);
    274774    strUrl.appendPrintf("&version=%ls", versionNormalized.raw()); // e.g. 6.1.1
    275     // strUrl.appendPrintf("&version=6.0.12"); // comment out previous line and uncomment this one for testing
     775#ifdef DEBUG // Comment out previous line and uncomment this one for testing.
     776//  strUrl.appendPrintf("&version=6.0.12");
     777#endif
    276778
    277779    ULONG revision = 0;
    278     rc = mVirtualBox->COMGETTER(Revision)(&revision);
     780    rc = m_VirtualBox->COMGETTER(Revision)(&revision);
    279781    AssertComRCReturn(rc, rc);
    280782    strUrl.appendPrintf("_%u", revision); // e.g. 135618
    281783
    282     // acquire the System Properties interface
    283     ComPtr<ISystemProperties> ptrSystemProperties;
    284     rc = mVirtualBox->COMGETTER(SystemProperties)(ptrSystemProperties.asOutParam());
    285     AssertComRCReturn(rc, rc);
    286 
    287     // Update the VBoxUpdate setting 'VBoxUpdateLastCheckDate'
     784    // Update the last update check timestamp.
    288785    RTTIME Time;
    289786    RTTIMESPEC TimeNow;
    290787    char szTimeStr[RTTIME_STR_LEN];
    291788    RTTimeToString(RTTimeExplode(&Time, RTTimeNow(&TimeNow)), szTimeStr, sizeof(szTimeStr));
    292     LogRelFunc(("VBox updating UpdateDate with TimeString = %s\n", szTimeStr));
    293     rc = ptrSystemProperties->COMSETTER(VBoxUpdateLastCheckDate)(Bstr(szTimeStr).raw());
    294     AssertComRCReturn(rc, rc);
    295 
    296     // Update the queryURL and the VBoxUpdate setting 'VBoxUpdateCount'
    297     ULONG cVBoxUpdateCount = 0;
    298     rc = ptrSystemProperties->COMGETTER(VBoxUpdateCount)(&cVBoxUpdateCount);
    299     AssertComRCReturn(rc, rc);
    300 
    301     cVBoxUpdateCount++;
    302 
    303     rc = ptrSystemProperties->COMSETTER(VBoxUpdateCount)(cVBoxUpdateCount);
    304     AssertComRCReturn(rc, rc);
    305     strUrl.appendPrintf("&count=%u", cVBoxUpdateCount);
    306 
    307     // Update the query URL and the VBoxUpdate settings (if necessary) with the 'Target' information.
    308     VBoxUpdateTarget_T enmTarget = VBoxUpdateTarget_Stable; // default branch is 'stable'
    309     rc = ptrSystemProperties->COMGETTER(VBoxUpdateTarget)(&enmTarget);
    310     AssertComRCReturn(rc, rc);
    311 
    312     switch (enmTarget)
    313     {
    314         case VBoxUpdateTarget_AllReleases:
     789    LogRel2(("Update agent (%s): Setting last update check timestamp to '%s'\n", mData.m_strName.c_str(), szTimeStr));
     790
     791    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     792
     793    m->strLastCheckDate = szTimeStr;
     794    m->uCheckCount++;
     795
     796    strUrl.appendPrintf("&count=%RU32", m->uCheckCount);
     797
     798    alock.release();
     799
     800    // Update the query URL (if necessary) with the 'channel' information.
     801    switch (m->enmChannel)
     802    {
     803        case UpdateChannel_All:
    315804            strUrl.appendPrintf("&branch=allrelease"); // query.php expects 'allrelease' and not 'allreleases'
    316805            break;
    317         case VBoxUpdateTarget_WithBetas:
     806        case UpdateChannel_WithBetas:
    318807            strUrl.appendPrintf("&branch=withbetas");
    319808            break;
    320         case VBoxUpdateTarget_Stable:
     809        /** @todo Handle UpdateChannel_WithTesting once implemented on the backend. */
     810        case UpdateChannel_Stable:
     811            RT_FALL_THROUGH();
    321812        default:
    322813            strUrl.appendPrintf("&branch=stable");
     
    324815    }
    325816
    326     rc = ptrSystemProperties->COMSETTER(VBoxUpdateTarget)(enmTarget);
    327     AssertComRCReturn(rc, rc);
    328 
    329     LogRelFunc(("VBox update URL = %s\n", strUrl.c_str()));
     817    LogRel2(("Update agent (%s): Using URL '%s'\n", mData.m_strName.c_str(), strUrl.c_str()));
    330818
    331819    /*
     
    333821     */
    334822    Bstr version;
    335     rc = mVirtualBox->COMGETTER(Version)(version.asOutParam()); // e.g. 6.1.0_RC1
     823    rc = m_VirtualBox->COMGETTER(Version)(version.asOutParam()); // e.g. 6.1.0_RC1
    336824    AssertComRCReturn(rc, rc);
    337825
    338     Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), HostUpdate::i_platformInfo().c_str());
    339     LogRelFunc(("userAgent = %s\n", strUserAgent.c_str()));
     826    Utf8StrFmt const strUserAgent("VirtualBox %ls <%s>", version.raw(), UpdateAgent::i_getPlatformInfo().c_str());
     827    LogRel2(("Update agent (%s): Using user agent '%s'\n",  mData.m_strName.c_str(), strUserAgent.c_str()));
    340828
    341829    /*
     
    349837        try
    350838        {
    351             rc = i_checkForVBoxUpdateInner(hHttp, strUrl, strUserAgent, ptrSystemProperties);
     839            rc = i_checkForUpdateInner(hHttp, strUrl, strUserAgent);
    352840        }
    353841        catch (...)
     
    359847    }
    360848    else
    361         rc = setErrorVrc(vrc, tr("%s: RTHttpCreate() failed: %Rrc"), __FUNCTION__, vrc);
    362     return S_OK;
    363 }
    364 
    365 HRESULT HostUpdate::i_checkForVBoxUpdateInner(RTHTTP hHttp, Utf8Str const &strUrl, Utf8Str const &strUserAgent,
    366                                               ComPtr<ISystemProperties> const &ptrSystemProperties)
    367 {
    368     /// @todo Are there any other headers needed to be added first via RTHttpSetHeaders()?
     849        rc = setErrorVrc(vrc, tr("Update agent (%s): RTHttpCreate() failed: %Rrc"), mData.m_strName.c_str(), vrc);
     850
     851    return rc;
     852}
     853
     854HRESULT HostUpdateAgent::i_checkForUpdateInner(RTHTTP hHttp, Utf8Str const &strUrl, Utf8Str const &strUserAgent)
     855{
     856    /** @todo Are there any other headers needed to be added first via RTHttpSetHeaders()? */
    369857    int vrc = RTHttpAddHeader(hHttp, "User-Agent", strUserAgent.c_str(), strUserAgent.length(), RTHTTPADDHDR_F_BACK);
    370858    if (RT_FAILURE(vrc))
    371         return setErrorVrc(vrc, tr("%s: RTHttpAddHeader() failed: %Rrc (on User-Agent)"), __FUNCTION__, vrc);
     859        return setErrorVrc(vrc, tr("Update agent (%s): RTHttpAddHeader() failed: %Rrc (on User-Agent)"),
     860                                   mData.m_strName.c_str(), vrc);
    372861
    373862    /*
    374863     * Configure proxying.
    375864     */
    376     ProxyMode_T enmProxyMode;
    377     HRESULT rc = ptrSystemProperties->COMGETTER(ProxyMode)(&enmProxyMode);
    378     if (FAILED(rc))
    379         return setError(rc, tr("%s: ISystemProperties::proxyMode() failed: %Rrc"), __FUNCTION__, rc);
    380 
    381     if (enmProxyMode == ProxyMode_Manual)
    382     {
    383         Bstr strProxyURL;
    384         rc = ptrSystemProperties->COMGETTER(ProxyURL)(strProxyURL.asOutParam());
    385         if (FAILED(rc))
    386             return setError(rc, tr("%s: ISystemProperties::proxyURL() failed: %Rrc"), __FUNCTION__, rc);
    387         vrc = RTHttpSetProxyByUrl(hHttp, Utf8Str(strProxyURL).c_str());
     865    if (m->enmProxyMode == ProxyMode_Manual)
     866    {
     867        vrc = RTHttpSetProxyByUrl(hHttp, m->strProxyUrl.c_str());
    388868        if (RT_FAILURE(vrc))
    389             return setErrorVrc(vrc, tr("%s: RTHttpSetProxyByUrl() failed: %Rrc"), __FUNCTION__, vrc);
    390     }
    391     else if (enmProxyMode == ProxyMode_System)
     869            return setErrorVrc(vrc, tr("Update agent (%s): RTHttpSetProxyByUrl() failed: %Rrc"), mData.m_strName.c_str(), vrc);
     870    }
     871    else if (m->enmProxyMode == ProxyMode_System)
    392872    {
    393873        vrc = RTHttpUseSystemProxySettings(hHttp);
    394874        if (RT_FAILURE(vrc))
    395             return setErrorVrc(vrc, tr("%s: RTHttpUseSystemProxySettings() failed: %Rrc"), __FUNCTION__, vrc);
     875            return setErrorVrc(vrc, tr("Update agent (%s): RTHttpUseSystemProxySettings() failed: %Rrc"),
     876                                       mData.m_strName.c_str(), vrc);
    396877    }
    397878    else
    398         Assert(enmProxyMode == ProxyMode_NoProxy);
     879        Assert(m->enmProxyMode == ProxyMode_NoProxy);
    399880
    400881    /*
     
    405886    vrc = RTHttpGetBinary(hHttp, strUrl.c_str(), &pvResponse, &cbResponse);
    406887    if (RT_FAILURE(vrc))
    407         return setErrorVrc(vrc, tr("%s: RTHttpGetBinary() failed: %Rrc"), __FUNCTION__, vrc);
     888        return setErrorVrc(vrc, tr("Update agent (%s): RTHttpGetBinary() failed: %Rrc"), mData.m_strName.c_str(), vrc);
    408889
    409890    /* Note! We can do nothing that might throw exceptions till we call RTHttpFreeResponse! */
     
    432913    size_t const cchWord1 = (size_t)(pchResponse - pchWord1);
    433914
     915    HRESULT rc;
     916
     917    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     918
    434919    /* Decode the two word: */
    435920    static char const s_szUpToDate[] = "UPTODATE";
     
    437922        && memcmp(pchWord0, s_szUpToDate, sizeof(s_szUpToDate) - 1) == 0)
    438923    {
    439         m_updateNeeded = FALSE;
     924        mData.m_enmState = UpdateState_NotAvailable;
    440925        rc = S_OK;
    441926    }
    442927    else
    443928    {
     929        mData.m_enmState = UpdateState_Error; /* Play safe by default. */
     930
    444931        vrc = RTStrValidateEncodingEx(pchWord0, cchWord0, 0 /*fFlags*/);
    445932        if (RT_SUCCESS(vrc))
     
    448935        {
    449936            /** @todo Any additional sanity checks we could perform here? */
    450             rc = m_updateVersion.assignEx(pchWord0, cchWord0);
     937            rc = mData.m_lastResult.strVer.assignEx(pchWord0, cchWord0);
    451938            if (SUCCEEDED(rc))
     939                rc = mData.m_lastResult.strDownloadUrl.assignEx(pchWord1, cchWord1);
     940
     941            if (RT_SUCCESS(vrc))
    452942            {
    453                 rc = m_updateURL.assignEx(pchWord1, cchWord1);
    454                 if (SUCCEEDED(rc))
    455                     m_updateNeeded = TRUE;
     943                /** @todo Implement this on the backend first.
     944                 *        We also could do some guessing based on the installed version vs. reported update version? */
     945                mData.m_lastResult.enmSeverity = UpdateSeverity_Invalid;
     946                mData.m_enmState               = UpdateState_Available;
    456947            }
    457             LogRelFunc(("HTTP server reply = %.*s %.*s\n", cchWord0, pchWord0, cchWord1, pchWord1));
     948
     949            LogRel(("Update agent (%s): HTTP server replied: %.*s %.*s\n",
     950                    mData.m_strName.c_str(), cchWord0, pchWord0, cchWord1, pchWord1));
    458951        }
    459952        else
    460             rc = setErrorVrc(vrc, tr("Invalid server response: %Rrc (%.*Rhxs -- %.*Rhxs)"),
    461                              vrc, cchWord0, pchWord0, cchWord1, pchWord1);
     953            rc = setErrorVrc(vrc, tr("Update agent (%s): Invalid server response: %Rrc (%.*Rhxs -- %.*Rhxs)"),
     954                             mData.m_strName.c_str(), vrc, cchWord0, pchWord0, cchWord1, pchWord1);
    462955    }
    463956
     
    467960}
    468961
    469 HRESULT HostUpdate::i_updateCheckTask(UpdateCheckTask *pTask)
    470 {
    471     LogFlowFuncEnter();
    472     AutoCaller autoCaller(this);
    473     HRESULT hrc = autoCaller.rc();
    474     if (SUCCEEDED(hrc))
    475     {
    476         try
    477         {
    478             switch (pTask->m_checkType)
    479             {
    480                 case UpdateCheckType_VirtualBox:
    481                     hrc = i_checkForVBoxUpdate();
    482                     break;
    483 # if 0
    484                 case UpdateCheckType_ExtensionPack:
    485                     hrc = i_checkForExtPackUpdate();
    486                     break;
    487 
    488                 case UpdateCheckType_GuestAdditions:
    489                     hrc = i_checkForGuestAdditionsUpdate();
    490                     break;
    491 # endif
    492                 default:
    493                     hrc = setError(E_FAIL, tr("Update check type %d is not implemented"), pTask->m_checkType);
    494                     break;
    495             }
    496         }
    497         catch (...)
    498         {
    499             AssertFailed();
    500             hrc = E_UNEXPECTED;
    501         }
    502     }
    503 
    504     if (!pTask->m_ptrProgress.isNull())
    505         pTask->m_ptrProgress->i_notifyComplete(hrc);
    506 
    507     LogFlowFunc(("rc=%Rhrc\n", hrc));
    508     LogFlowFuncLeave();
    509     return hrc;
    510 }
    511 
    512 #endif /* VBOX_WITH_HOST_UPDATE_CHECK */
    513 
    514 
    515 ////////////////////////////////////////////////////////////////////////////////
    516 //
    517 // HostUpdate constructor / destructor
    518 //
    519 // ////////////////////////////////////////////////////////////////////////////////
    520 HostUpdate::HostUpdate()
    521     : mVirtualBox(NULL)
    522 {
    523 }
    524 
    525 HostUpdate::~HostUpdate()
    526 {
    527 }
    528 
    529 
    530 HRESULT HostUpdate::FinalConstruct()
    531 {
    532     return BaseFinalConstruct();
    533 }
    534 
    535 void HostUpdate::FinalRelease()
    536 {
    537     uninit();
    538 
    539     BaseFinalRelease();
    540 }
    541 
    542 HRESULT HostUpdate::init(VirtualBox *aVirtualBox)
    543 {
    544     // Enclose the state transition NotReady->InInit->Ready.
    545     AutoInitSpan autoInitSpan(this);
    546     AssertReturn(autoInitSpan.isOk(), E_FAIL);
    547 
    548     /* Weak reference to a VirtualBox object */
    549     unconst(mVirtualBox) = aVirtualBox;
    550 
    551     autoInitSpan.setSucceeded();
    552     return S_OK;
    553 }
    554 
    555 void HostUpdate::uninit()
    556 {
    557     // Enclose the state transition Ready->InUninit->NotReady.
    558     AutoUninitSpan autoUninitSpan(this);
    559     if (autoUninitSpan.uninitDone())
    560         return;
    561 }
    562 
    563 HRESULT HostUpdate::updateCheck(UpdateCheckType_T aCheckType,
    564                                 ComPtr<IProgress> &aProgress)
    565 {
    566 #ifdef VBOX_WITH_HOST_UPDATE_CHECK
    567     /* Validate input */
    568     switch (aCheckType)
    569     {
    570         case UpdateCheckType_VirtualBox:
    571             break;
    572         case UpdateCheckType_ExtensionPack:
    573             return setError(E_NOTIMPL, tr("UpdateCheckType::ExtensionPack is not implemented"));
    574         case UpdateCheckType_GuestAdditions:
    575             return setError(E_NOTIMPL, tr("UpdateCheckType::GuestAdditions is not implemented"));
    576         default:
    577             return setError(E_INVALIDARG, tr("Invalid aCheckType value %d"), aCheckType);
    578     }
    579 
    580     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    581 
    582     // Check whether VirtualBox updates have been disabled before spawning the task thread.
    583     ComPtr<ISystemProperties> pSystemProperties;
    584     HRESULT rc = mVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
    585     AssertComRCReturn(rc, rc);
    586 
    587     BOOL fVBoxUpdateEnabled = true;
    588     rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled);
    589     AssertComRCReturn(rc, rc);
    590 
    591     /** @todo r=bird: Not sure if this makes sense, it should at least have a
    592      * better status code and a proper error message.  Also, isn't this really
    593      * something the caller should check?  Presumably the caller already check
    594      * whther this was a good time to perform an update check (i.e. the configured
    595      * time has elapsed since last check) ...
    596      *
    597      * It would make sense to allow performing a one-off update check even if the
    598      * automatic update checking is disabled, wouldn't it? */
    599     if (!fVBoxUpdateEnabled)
    600         return E_NOTIMPL;
    601 
    602     ComObjPtr<Progress> pProgress;
    603     rc = pProgress.createObject();
    604     if (FAILED(rc))
    605         return rc;
    606 
    607     rc = pProgress->init(mVirtualBox,
    608                          static_cast<IHostUpdate*>(this),
    609                          tr("Checking for software update..."),
    610                          TRUE /* aCancelable */);
    611     if (FAILED(rc))
    612         return rc;
    613 
    614     /* initialize the worker task */
    615     UpdateCheckTask *pTask = new UpdateCheckTask(aCheckType, this, pProgress);
    616     rc = pTask->createThread();
    617     pTask = NULL;
    618     if (FAILED(rc))
    619         return rc;
    620 
    621     rc = pProgress.queryInterfaceTo(aProgress.asOutParam());
    622 
    623     return rc;
    624 #else  /* !VBOX_WITH_HOST_UPDATE_CHECK */
    625     RT_NOREF(aCheckType, aProgress);
    626     return setError(E_NOTIMPL, tr("Update checking support was not compiled into this VirtualBox build"));
    627 #endif /* !VBOX_WITH_HOST_UPDATE_CHECK */
    628 }
    629 
    630 HRESULT HostUpdate::getUpdateVersion(com::Utf8Str &aUpdateVersion)
    631 {
    632     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    633 
    634     aUpdateVersion = m_updateVersion;
    635 
    636     return S_OK;
    637 }
    638 
    639 HRESULT HostUpdate::getUpdateURL(com::Utf8Str &aUpdateURL)
    640 {
    641     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    642 
    643     aUpdateURL = m_updateURL;
    644 
    645     return S_OK;
    646 }
    647 
    648 HRESULT HostUpdate::getUpdateResponse(BOOL *aUpdateNeeded)
    649 {
    650     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    651 
    652     *aUpdateNeeded = m_updateNeeded;
    653 
    654     return S_OK;
    655 }
    656 
    657 HRESULT HostUpdate::getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded)
    658 {
    659     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    660 
    661     HRESULT rc;
    662     ComPtr<ISystemProperties> pSystemProperties;
    663     rc = mVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
    664     if (FAILED(rc))
    665         return rc;
    666 
    667     /*
    668      * Is update checking enabled?
    669      */
    670     BOOL fVBoxUpdateEnabled;
    671     rc = pSystemProperties->COMGETTER(VBoxUpdateEnabled)(&fVBoxUpdateEnabled);
    672     if (FAILED(rc))
    673         return rc;
    674 
    675     if (!fVBoxUpdateEnabled)
    676     {
    677         *aUpdateCheckNeeded = false;
    678         return S_OK;
    679     }
    680 
    681     /*
    682      * When was the last update?
    683      */
    684     Bstr strVBoxUpdateLastCheckDate;
    685     rc = pSystemProperties->COMGETTER(VBoxUpdateLastCheckDate)(strVBoxUpdateLastCheckDate.asOutParam());
    686     if (FAILED(rc))
    687         return rc;
    688 
    689     // No prior update check performed so do so now
    690     if (strVBoxUpdateLastCheckDate.isEmpty())
    691     {
    692         *aUpdateCheckNeeded = true;
    693         return S_OK;
    694     }
    695 
    696     // convert stored timestamp to time spec
    697     RTTIMESPEC LastCheckTime;
    698     if (!RTTimeSpecFromString(&LastCheckTime, Utf8Str(strVBoxUpdateLastCheckDate).c_str()))
    699     {
    700         *aUpdateCheckNeeded = true;
    701         return S_OK;
    702     }
    703 
    704     /*
    705      * Compare last update with how often we are supposed to check for updates.
    706      */
    707     ULONG uVBoxUpdateFrequency = 0;  // value in days
    708     rc = pSystemProperties->COMGETTER(VBoxUpdateFrequency)(&uVBoxUpdateFrequency);
    709     if (FAILED(rc))
    710         return rc;
    711 
    712     if (!uVBoxUpdateFrequency)
    713     {
    714         /* Consider config (enable, 0 day interval) as checking once but never again.
    715            We've already check since we've got a date. */
    716         *aUpdateCheckNeeded = false;
    717         return S_OK;
    718     }
    719     uint64_t const cSecsInXDays = uVBoxUpdateFrequency * RT_SEC_1DAY_64;
    720 
    721     RTTIMESPEC TimeDiff;
    722     RTTimeSpecSub(RTTimeNow(&TimeDiff), &LastCheckTime);
    723 
    724     LogRelFunc(("Checking if seconds since last check (%lld) >= Number of seconds in %lu day%s (%lld)\n",
    725                 RTTimeSpecGetSeconds(&TimeDiff), uVBoxUpdateFrequency, uVBoxUpdateFrequency > 1 ? "s" : "", cSecsInXDays));
    726 
    727     if (RTTimeSpecGetSeconds(&TimeDiff) >= (int64_t)cSecsInXDays)
    728         *aUpdateCheckNeeded = true;
    729 
    730     return S_OK;
    731 }
    732 
    733 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r94598 r94643  
    8080# include "PerformanceImpl.h"
    8181#endif /* VBOX_WITH_RESOURCE_USAGE_API */
     82#ifdef VBOX_WITH_UPDATE_AGENT
     83# include "UpdateAgentImpl.h"
     84#endif
    8285#include "EventImpl.h"
    8386#ifdef VBOX_WITH_EXTPACK
  • trunk/src/VBox/Main/xml/Settings.cpp

    r94598 r94643  
    16381638    , uLogHistoryCount(3)
    16391639    , fExclusiveHwVirt(true)
    1640     , fVBoxUpdateEnabled(true)
    1641     , uVBoxUpdateCount(0)
    1642     , uVBoxUpdateFrequency(1)
    1643     , uVBoxUpdateTarget(VBoxUpdateTarget_Stable)
    16441640{
    16451641#if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS)
     
    16471643#endif
    16481644}
     1645
     1646#ifdef VBOX_WITH_UPDATE_AGENT
     1647UpdateAgent::UpdateAgent()
     1648   : fEnabled(false)
     1649   , enmChannel(UpdateChannel_Stable)
     1650   , uCheckFreqSeconds(RT_SEC_1DAY)
     1651   , enmProxyMode(ProxyMode_NoProxy)
     1652   , uCheckCount(0)
     1653{
     1654}
     1655#endif /* VBOX_WITH_UPDATE_AGENT */
    16491656
    16501657/**
     
    23322339                            fCopyProxySettingsFromExtraData = true;
    23332340                        pelmGlobalChild->getAttributeValue("proxyUrl", systemProperties.strProxyUrl);
    2334                         pelmGlobalChild->getAttributeValue("updateEnabled", systemProperties.fVBoxUpdateEnabled);
    2335                         pelmGlobalChild->getAttributeValue("updateCount", systemProperties.uVBoxUpdateCount);
    2336                         pelmGlobalChild->getAttributeValue("updateFrequency", systemProperties.uVBoxUpdateFrequency);
    2337                         pelmGlobalChild->getAttributeValue("updateTarget", systemProperties.uVBoxUpdateTarget);
    2338                         pelmGlobalChild->getAttributeValue("updateLastCheckDate",
    2339                             systemProperties.strVBoxUpdateLastCheckDate);
    23402341                        pelmGlobalChild->getAttributeValue("LanguageId", systemProperties.strLanguageId);
    23412342                    }
     2343#ifdef VBOX_WITH_UPDATE_AGENT
     2344                    else if (pelmGlobalChild->nameEquals("Updates"))
     2345                    {
     2346                        /* We keep the updates configuration as part of the host for now, as the API exposes the IHost::updateHost attribute,
     2347                         * but use an own "Updates" branch in the XML for better structurizing stuff in the future. */
     2348                        UpdateAgent &updateHost = host.updateHost;
     2349
     2350                        xml::NodesLoop nlLevel4(*pelmGlobalChild);
     2351                        const xml::ElementNode *pelmLevel4Child;
     2352                        while ((pelmLevel4Child = nlLevel4.forAllNodes()))
     2353                        {
     2354                            if (pelmLevel4Child->nameEquals("Host"))
     2355                            {
     2356                                pelmLevel4Child->getAttributeValue("enabled", updateHost.fEnabled);
     2357                                pelmLevel4Child->getAttributeValue("channel", (uint32_t&)updateHost.enmChannel);
     2358                                pelmLevel4Child->getAttributeValue("checkFrequency", updateHost.uCheckFreqSeconds);
     2359                                pelmLevel4Child->getAttributeValue("repoUrl", updateHost.strRepoUrl);
     2360                                pelmLevel4Child->getAttributeValue("proxyMode", (uint32_t&)updateHost.enmProxyMode);
     2361                                pelmLevel4Child->getAttributeValue("proxyUrl", (uint32_t&)updateHost.enmProxyMode);
     2362                                pelmLevel4Child->getAttributeValue("lastCheckDate", updateHost.strLastCheckDate);
     2363                                pelmLevel4Child->getAttributeValue("checkCount", updateHost.uCheckCount);
     2364                            }
     2365                            /** @todo Add update settings for ExtPack and Guest Additions here later. See @bugref{7983}. */
     2366                        }
     2367
     2368                        /* Global enabled switch for updates. Currently bound to host updates, as this is the only update we have so far. */
     2369                        pelmGlobalChild->getAttributeValue("enabled", updateHost.fEnabled);
     2370                    }
     2371#endif
    23422372                    else if (pelmGlobalChild->nameEquals("ExtraData"))
    23432373                        readExtraData(*pelmGlobalChild, mapExtraDataItems);
     
    25612591#endif /* VBOX_WITH_CLOUD_NET */
    25622592
     2593#ifdef VBOX_WITH_UPDATE_AGENT
     2594    /* We keep the updates configuration as part of the host for now, as the API exposes the IHost::updateHost attribute,
     2595     * but use an own "Updates" branch in the XML for better structurizing stuff in the future. */
     2596    UpdateAgent &updateHost = host.updateHost;
     2597
     2598    xml::ElementNode *pelmUpdates = pelmGlobal->createChild("Updates");
     2599    /* Global enabled switch for updates. Currently bound to host updates, as this is the only update we have so far. */
     2600    pelmUpdates->setAttribute("enabled", updateHost.fEnabled);
     2601
     2602    xml::ElementNode *pelmUpdateHost = pelmUpdates->createChild("Host");
     2603    pelmUpdateHost->setAttribute("enabled", updateHost.fEnabled);
     2604    pelmUpdateHost->setAttribute("channel", (int32_t)updateHost.enmChannel);
     2605    pelmUpdateHost->setAttribute("checkFrequency", updateHost.uCheckFreqSeconds);
     2606    if (updateHost.strRepoUrl.length())
     2607        pelmUpdateHost->setAttribute("repoUrl", updateHost.strRepoUrl);
     2608    pelmUpdateHost->setAttribute("proxyMode", (int32_t)updateHost.enmProxyMode);
     2609    if (updateHost.strProxyUrl.length())
     2610        pelmUpdateHost->setAttribute("proxyUrl", updateHost.strProxyUrl);
     2611    if (updateHost.strLastCheckDate.length())
     2612        pelmUpdateHost->setAttribute("lastCheckDate", updateHost.strLastCheckDate);
     2613    pelmUpdateHost->setAttribute("checkCount", updateHost.uCheckCount);
     2614    /** @todo Add update settings for ExtPack and Guest Additions here later. See @bugref{7983}. */
     2615#endif
    25632616
    25642617    xml::ElementNode *pelmSysProps = pelmGlobal->createChild("SystemProperties");
     
    25842637    pelmSysProps->setAttribute("proxyMode", systemProperties.uProxyMode);
    25852638    pelmSysProps->setAttribute("exclusiveHwVirt", systemProperties.fExclusiveHwVirt);
    2586     pelmSysProps->setAttribute("updateEnabled", systemProperties.fVBoxUpdateEnabled);
    2587     pelmSysProps->setAttribute("updateCount", systemProperties.uVBoxUpdateCount);
    2588     pelmSysProps->setAttribute("updateFrequency", systemProperties.uVBoxUpdateFrequency);
    2589     pelmSysProps->setAttribute("updateTarget", systemProperties.uVBoxUpdateTarget);
    2590     if (systemProperties.strVBoxUpdateLastCheckDate.length())
    2591         pelmSysProps->setAttribute("updateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate);
    25922639    if (systemProperties.strLanguageId.isNotEmpty())
    25932640        pelmSysProps->setAttribute("LanguageId", systemProperties.strLanguageId);
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