[NET] Reorganize and improve the help texts (1/X)

- Move common texts into separate string resources.
- Add missing help texts for ACCOUNTS, COMPUTER, CONFIG and CONTINUE commands.
This commit is contained in:
Eric Kohl 2018-04-01 12:23:15 +02:00
parent dd311081be
commit 480cd1e60c
16 changed files with 843 additions and 251 deletions

View file

@ -19,6 +19,7 @@ INT cmdContinue(INT argc, WCHAR **argv)
if (argc != 3)
{
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
return 1;
}
@ -27,7 +28,11 @@ INT cmdContinue(INT argc, WCHAR **argv)
{
if (_wcsicmp(argv[i], L"/help") == 0)
{
ConResPuts(StdOut, IDS_CONTINUE_HELP);
ConResPuts(StdOut, IDS_GENERIC_SYNTAX);
ConResPuts(StdOut, IDS_CONTINUE_SYNTAX);
ConResPuts(StdOut, IDS_CONTINUE_HELP_1);
ConResPuts(StdOut, IDS_CONTINUE_HELP_2);
ConResPuts(StdOut, IDS_GENERIC_PAGE);
return 1;
}
}