home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0689.ZIP / CCE_0689 / LHA3_SRC.LZH / SOURCE / USAGEENG.H < prev    next >
Text File  |  1994-03-22  |  6KB  |  106 lines

  1. uchar title[] =
  2. "\r\n LHarc "LZHVERSION" - dedicated to "PERSON"\r\n"
  3. " Copyright (c) Yoshizaki, 1988-89, Grunenberg, Mandel, 1994\n";
  4.  
  5. #ifndef __SHELL__
  6.  
  7. uchar title_x[] =
  8. "   LHarc Version "LZHVERSION" (Atari) - dedicated to "PERSON"\r\n"
  9. "   (c) Haruyasu Yoshizaki, 1988-1989, Grunenberg, Mandel, 1994";
  10.  
  11. uchar use_1[] =
  12. " ================================================================ "__DATE__" =\r\n"
  13. " Syntax: LHarc [<command>] [{{-|/}{<switchs>[-|+|0-3|<options>]}}...] <archive>\r\n"
  14. "         [{<Drive>:[\\]}|{<Base-Directory>\\}] {[&|&-|~] <Paths/Files> ...}\r\n"
  15. " ------------------------------------------------------------------------------\r\n"
  16. "  <Command>\r\n"
  17. "      a: Add files to archive           u: Update newer files to archive\r\n"
  18. "    f,r: Freshen/Re-construct archive   m: Move files to archive (means 'a -d')\r\n"
  19. "      d: Delete files from archive    e,x: Extract files from archive\r\n"
  20. "      p: DisPlay files on screen      l,v: List/Verbose list of archive\r\n"
  21. "      t: Test integrity of archive      c: Compress files in AFX-format\r\n"
  22. " ------------------------------------------------------------------------------\r\n"
  23. "  <Switchs> (WARNING: The meaning of the d-switch has been completely changed)\r\n"
  24. "      r: Recursive expansion of dirs    w: Specify work-directory\r\n"
  25. "      x: Extend filenames               m: No Message at query\r\n"
  26. "      p: Distinguish pathnames          f: Include folders in archive\r\n"
  27. "      c: Skip time-comparison           i: Ignore attributes\r\n"
  28. "      a: Any attribute                  v: Display with external tool\r\n"
  29. "      n: Set process-indicator          h: Hold screen after finishing\r\n"
  30. "      t: Time-stamp of archive          y: Only files with 'changed' attribute\r\n"
  31. "      b: Clear 'Changed'-attribute      l: Use Larc compatible method\r\n"
  32. "      q: Suppress all messages (quiet)  o: Use LHarc 1.13 compatible method\r\n"
  33. "      u: Store - don't compress files   k: Header-level (0-2)";
  34.  
  35. uchar use_2[] =
  36. "\r      e: Include file-comments          z: Include archive-comment\r\n"
  37. "      d: Delete files after command     C: No crc-check during extraction\r\n"
  38. "      g: Extract archive in folder      j: Exclude empty files\r\n"
  39. "      5: Force LHarc 2.0x archive (lh5) 4: Store in Larc compatible method\r\n"
  40. "      s: Convert backslashs to slashs   P: Process-Indicator-Character\r\n"
  41. "      L: Limit memory-allocations       S: Case-Sensitive filenames\r\n"
  42. "      M: Maximum file-size              N: Only files newer than date ddmmyy\r\n"
  43. "      U: Store files uncompressed       R: Rename Unix-Files\r\n"
  44. "      I: Compress files to directory    B: Retain backup copy of archive\r\n"
  45. "      A: Add if file is not in archive  D: Delete if file is not specified\r\n"
  46. "      W: No wildcard-matching           X: Make relativ pathnames\r\n"
  47. "      Y: Encryption                     K: Acoustic signal after finishing\r\n"
  48. "      ?: Display helpscreen\r\n"
  49. "  path;\ Make relativ pathnames        ~,! Exclude files\r\n"
  50. "     &,@ Get file-list from file     &-,@- Get file-list from standard input\r\n"
  51. " ==============================================================================\r\n"
  52. "  (You'll find a more detailed description in the documentation 'MANUAL.ENG')\r\n\n"
  53. "  Yoshizaki  : Nifty-Serve  PFF00253\r\n"
  54. "               oASCII-pcs   pcs02846\r\n"
  55. "  Grunenberg : Christian Grunenberg @ S2 (Mausnet)\r\n"
  56. "               Christian_Grunenberg@S2.maus.de (Inter-/Usenet)\n";
  57.  
  58. uchar use_3[] =
  59. "\r LHarc is a freeware-program. Freeware means that you can freely copy, test\r\n"
  60. " and use this programm. If you are using LHarc regularly, you should support\r\n"
  61. " the further development by sending me a suitable donation (about $15). Thanks.\r\n\r\n"
  62. "  Address:\r\n"
  63. " ----------\r\n"
  64. "  Christian Grunenberg\r\n"
  65. "  Traminerweg 5\r\n"
  66. "  D-71717 Beilstein\r\n"
  67. "  Germany\r\n\n"
  68. "  Important:\r\n"
  69. " ------------\r\n"
  70. "  Use this program at your own RISK! I do not provide any warranty about it!\n";
  71.  
  72. #endif
  73.  
  74. uchar M_UNKNOWNERR[] =   "Unknown error";
  75. uchar M_INVCMDERR[]  =   "Unknown command";
  76. uchar M_MANYPATERR[] =   "";
  77. uchar M_NOARCNMERR[] =   "No arcname";
  78. uchar M_NOFNERR[]    =   "No filename";
  79. uchar M_NOARCERR[]   =   "Archive doesn't exist";
  80. uchar M_RENAMEERR[]  =   "Unable to rename archive";
  81. uchar M_MKTMPERR[]   =   "Unable to create temporary file";
  82. uchar M_DUPFNERR[]   =   "";
  83. uchar M_TOOMANYERR[] =   "";
  84. uchar M_TOOLONGERR[] =   "Pathname is to long";
  85. uchar M_NOFILEERR[]  =   "No files found";
  86. uchar M_MKFILEERR[]  =   "Unable to create archive";
  87. uchar M_RDERR[]      =   "Unable to read file";
  88. uchar M_WTERR[]      =   "Unable to write file";
  89. uchar M_MEMOVRERR[]  =   "Not enough memory available";
  90. uchar M_INVSWERR[]   =   "";
  91. uchar M_CTRLBRK[]    =   "";
  92. uchar M_NOMATCHERR[] =   "Unable to find file";
  93. uchar M_COPYERR[]    =   "\r\nUnable to copy temporary file to archive";
  94. uchar M_NOTLZH[]     =   "Extension of archive (%s) is not 'LZH'.\r\nContinue ? [Y/N]";
  95. uchar M_OVERWT[]     =   "File exists,Overwrite [Y/N/All] or Rename?";
  96. uchar M_ENTERNEW[]   =   "New name :";
  97. uchar M_MKDIR[]      =   "Create folder ? [Y/N/All]";
  98. uchar M_MKDIRERR[]   =   "Unable to create folder";
  99. uchar M_CRCERR[]     =   "";
  100. uchar M_RDONLY[]     =   "File is read-only !";
  101. uchar M_PRESSKEY[]   =   "-- Press key to continue --";
  102. uchar M_COMMENT[]    =   "Comment :";
  103. uchar M_PATH[]         =     "Paths/Files (wildcards possible (*?@[^-|],)) :";
  104. uchar M_FILETAB[]     =     "File table overflow. Ignore";
  105. uchar M_BADTAB[]     =     "\r Bad table/encrypted file ";
  106.