VirtualBox

Ignore:
Timestamp:
Nov 11, 2021 2:45:18 PM (3 years ago)
Author:
vboxsync
Message:

Main: bugref:1909: Added translation marks around messages of VBoxManage output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp

    r82968 r92372  
    5151#endif /* !VBOX_ONLY_DOCS */
    5252
     53DECLARE_TRANSLATION_CONTEXT(GuestProp);
     54
     55
    5356void usageGuestProperty(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2)
    5457{
    55     RTStrmPrintf(pStrm,
    56                        "%s guestproperty %s   get <uuid|vmname>\n"
    57                  "                            <property> [--verbose]\n"
    58                  "\n", pcszSep1, pcszSep2);
    59     RTStrmPrintf(pStrm,
    60                        "%s guestproperty %s   set <uuid|vmname>\n"
    61                  "                            <property> [<value> [--flags <flags>]]\n"
    62                  "\n", pcszSep1, pcszSep2);
    63     RTStrmPrintf(pStrm,
    64                        "%s guestproperty %s   delete|unset <uuid|vmname>\n"
    65                  "                            <property>\n"
    66                  "\n", pcszSep1, pcszSep2);
    67     RTStrmPrintf(pStrm,
    68                        "%s guestproperty %s   enumerate <uuid|vmname>\n"
    69                  "                            [--patterns <patterns>]\n"
    70                  "\n", pcszSep1, pcszSep2);
    71     RTStrmPrintf(pStrm,
    72                        "%s guestproperty %s   wait <uuid|vmname> <patterns>\n"
    73                  "                            [--timeout <msec>] [--fail-on-timeout]\n"
    74                  "\n", pcszSep1, pcszSep2);
     58    RTStrmPrintf(pStrm, GuestProp::tr("%s guestproperty %s   get <uuid|vmname>\n"
     59                                "                            <property> [--verbose]\n"
     60                                "\n"), pcszSep1, pcszSep2);
     61    RTStrmPrintf(pStrm, GuestProp::tr("%s guestproperty %s   set <uuid|vmname>\n"
     62                                "                            <property> [<value> [--flags <flags>]]\n"
     63                                "\n"), pcszSep1, pcszSep2);
     64    RTStrmPrintf(pStrm, GuestProp::tr("%s guestproperty %s   delete|unset <uuid|vmname>\n"
     65                                "                            <property>\n"
     66                                "\n"), pcszSep1, pcszSep2);
     67    RTStrmPrintf(pStrm, GuestProp::tr("%s guestproperty %s   enumerate <uuid|vmname>\n"
     68                                "                            [--patterns <patterns>]\n"
     69                                "\n"), pcszSep1, pcszSep2);
     70    RTStrmPrintf(pStrm, GuestProp::tr("%s guestproperty %s   wait <uuid|vmname> <patterns>\n"
     71                                "                            [--timeout <msec>] [--fail-on-timeout]\n"
     72                                "\n"), pcszSep1, pcszSep2);
    7573}
    7674
     
    8785        verbose = true;
    8886    else if (a->argc != 2)
    89         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     87        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    9088
    9189    ComPtr<IMachine> machine;
     
    107105                                              &i64Timestamp, flags.asOutParam()));
    108106        if (value.isEmpty())
    109             RTPrintf("No value set!\n");
     107            RTPrintf(GuestProp::tr("No value set!\n"));
    110108        else
    111             RTPrintf("Value: %ls\n", value.raw());
     109            RTPrintf(GuestProp::tr("Value: %ls\n"), value.raw());
    112110        if (!value.isEmpty() && verbose)
    113111        {
    114             RTPrintf("Timestamp: %lld\n", i64Timestamp);
    115             RTPrintf("Flags: %ls\n", flags.raw());
     112            RTPrintf(GuestProp::tr("Timestamp: %lld\n"), i64Timestamp);
     113            RTPrintf(GuestProp::tr("Flags: %ls\n"), flags.raw());
    116114        }
    117115    }
     
    146144        usageOK = false;
    147145    if (!usageOK)
    148         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     146        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    149147    /* This is always needed. */
    150148    pszName = a->argv[1];
     
    190188        usageOK = false;
    191189    if (!usageOK)
    192         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     190        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    193191    /* This is always needed. */
    194192    pszName = a->argv[1];
     
    232230             && strcmp(a->argv[1], "--patterns")
    233231             && strcmp(a->argv[1], "-patterns")))
    234         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     232        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    235233
    236234    /*
     
    268266        {
    269267            if (names.size() == 0)
    270                 RTPrintf("No properties found.\n");
     268                RTPrintf(GuestProp::tr("No properties found.\n"));
    271269            for (unsigned i = 0; i < names.size(); ++i)
    272                 RTPrintf("Name: %ls, value: %ls, timestamp: %lld, flags: %ls\n",
     270                RTPrintf(GuestProp::tr("Name: %ls, value: %ls, timestamp: %lld, flags: %ls\n"),
    273271                         names[i], values[i], timestamps[i], flags[i]);
    274272        }
     
    319317    }
    320318    if (!usageOK)
    321         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     319        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    322320
    323321    /*
     
    374372                        gpcev->COMGETTER(Value)(aNextValue.asOutParam());
    375373                        gpcev->COMGETTER(Flags)(aNextFlags.asOutParam());
    376                         RTPrintf("Name: %ls, value: %ls, flags: %ls\n",
     374                        RTPrintf(GuestProp::tr("Name: %ls, value: %ls, flags: %ls\n"),
    377375                                 aNextName.raw(), aNextValue.raw(), aNextFlags.raw());
    378376                        fSignalled = true;
     
    391389    if (!fSignalled)
    392390    {
    393         RTMsgError("Time out or interruption while waiting for a notification.");
     391        RTMsgError(GuestProp::tr("Time out or interruption while waiting for a notification."));
    394392        if (fFailOnTimeout)
    395393            /* Hysterical rasins: We always returned 2 here, which now translates to syntax error... Which is bad. */
     
    417415
    418416    if (a->argc == 0)
    419         return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     417        return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    420418
    421419    /* switch (cmd) */
     
    432430
    433431    /* default: */
    434     return errorSyntax(USAGE_GUESTPROPERTY, "Incorrect parameters");
     432    return errorSyntax(USAGE_GUESTPROPERTY, GuestProp::tr("Incorrect parameters"));
    435433}
    436434
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