L10N: Localized 'help' command output

This commit is contained in:
Paul Beckingham 2015-10-17 23:08:04 -04:00
parent 30accb83b5
commit b8810c4cab
2 changed files with 4 additions and 2 deletions

View file

@ -33,8 +33,7 @@
////////////////////////////////////////////////////////////////////////////////
int cmdHelp ()
{
std::cout << "Run 'man tasksh' for help.\n";
std::cout << "Run '! man tasksh' from inside tasksh.\n";
std::cout << "\n" << STRING_COMMAND_HELP << "\n";
return 0;
}

View file

@ -134,5 +134,8 @@
tasksh> !ls -al Any shell command. May also use 'exec'\n\
tasksh> quit End of session. May also use 'exit'\n"
// Help
#define STRING_COMMAND_HELP "Run 'man tasksh' from your shell prompt.\nRun '! man tasksh' from inside tasksh.\n"
#endif