mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 15:46:52 +00:00
[NET][MC] Move remaining generic strings from net.exe to netmsg.dll.
Translators, please check the translations!
This commit is contained in:
parent
ae80eb824e
commit
29bf209767
25 changed files with 108 additions and 137 deletions
|
@ -23,7 +23,8 @@ INT cmdHelpMsg(INT argc, WCHAR **argv)
|
|||
|
||||
if (argc < 3)
|
||||
{
|
||||
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
|
||||
PrintMessageString(4381);
|
||||
ConPuts(StdOut, L"\n");
|
||||
PrintNetMessage(MSG_HELPMSG_SYNTAX);
|
||||
return 1;
|
||||
}
|
||||
|
@ -32,7 +33,8 @@ INT cmdHelpMsg(INT argc, WCHAR **argv)
|
|||
{
|
||||
if (_wcsicmp(argv[i], L"/help") == 0)
|
||||
{
|
||||
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
|
||||
PrintMessageString(4381);
|
||||
ConPuts(StdOut, L"\n");
|
||||
PrintNetMessage(MSG_HELPMSG_SYNTAX);
|
||||
PrintNetMessage(MSG_HELPMSG_HELP);
|
||||
return 1;
|
||||
|
@ -42,7 +44,8 @@ INT cmdHelpMsg(INT argc, WCHAR **argv)
|
|||
errNum = wcstol(argv[2], &endptr, 10);
|
||||
if (*endptr != 0)
|
||||
{
|
||||
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
|
||||
PrintMessageString(4381);
|
||||
ConPuts(StdOut, L"\n");
|
||||
PrintNetMessage(MSG_HELPMSG_SYNTAX);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue