[NET][MC] Move remaining generic strings from net.exe to netmsg.dll.

Translators, please check the translations!
This commit is contained in:
Eric Kohl 2019-04-09 21:44:03 +02:00
parent ae80eb824e
commit 29bf209767
25 changed files with 108 additions and 137 deletions

View file

@ -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;
}