home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sosutl12.zip / src / msg_english.inc < prev    next >
Text File  |  1993-10-20  |  1KB  |  38 lines

  1. /* ---------------
  2.  * msg_english.inc
  3.  * ---------------
  4.  * English messages for SOS Tree utility.
  5.  *
  6.  * 16.9.1993    File created (TN).
  7.  */
  8.  
  9.   /* Error messages */
  10. const char *errormsg[] = {
  11.     "Path not found \"%s\"",
  12.     "Unknown switch \"-%c\"",
  13.     "Invalid command line syntax (use \"-?\" to get help)",
  14.     "Program internal error"
  15. };
  16.  
  17. const char *header_line = "Directory tree of \"%s\"\n";
  18.  
  19.   /* Number of lines in help screen; ie. number of message strings
  20.    * in helpmsg[] table.
  21.    */
  22. #define HELP_SCREEN_HEIGHT      11
  23.  
  24.   /* Help screen */
  25. const char *helpmsg[HELP_SCREEN_HEIGHT] = {
  26.     "Display directory tree with or without graphics. Usage:",
  27.     "\n    [D:\\] sostree [ -adfhnqz | -? ] [ DIR ]\n",
  28.     "The meanings of the switches are the following:",
  29.     "    -a  Show file attributes too.",
  30.     "    -d  Show file dates and times too.",
  31.     "    -f  Show files also (as leaves).",
  32.     "    -h  Show hidden and system files too.",
  33.     "    -n  Show full path names without graphics.",
  34.     "    -q  Do not show \"Directory tree of ...\" header.",
  35.     "    -z  Show file sizes too.\n",
  36.     "    -?  Show this help screen."
  37. };
  38.