home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / packery / xpk_source / xpkmaster / xpk_strings.c < prev    next >
C/C++ Source or Header  |  1996-10-19  |  2KB  |  69 lines

  1. #ifndef XPKMASTER_XPK_STRINGS_C
  2. #define XPKMASTER_XPK_STRINGS_C
  3.  
  4. /* Routinesheader
  5.  
  6.     Name:        xpk_strings.c
  7.     Main:        xpkmaster
  8.     Versionstring:    $VER: xpk_strings.c 1.0 (07.10.96)
  9.     Author:        SDI
  10.     Distribution:    PD
  11.     Description:    all library texts
  12.  
  13.  1.0   07.10.96 : first real version
  14. */
  15.  
  16. STRPTR strings[] = {
  17. "Unknown error",
  18. "Error %s %.20s: %.50s",
  19. "packing",
  20. "Packing",
  21. "Packed",
  22. "unpacking",
  23. "Unpacking",
  24. "Unpacked",
  25. "Reading",
  26. "Read",
  27. "Cannot open %s",
  28. "Aborted",
  29. };
  30.  
  31. STRPTR XpkErrs[] =
  32. {
  33.   "OK",
  34.   "Feature not implemented in selected library",
  35.   "Function may not be used with files",
  36.   "Error reading input",
  37.   "Error writing output",
  38.   "Check sum failure",        /* 5 */
  39.   "Library too old for this file",
  40.   "Out of memory",
  41.   "Library already in use",
  42.   "Can't find decompressor for this format",
  43.   "Output buffer too small",    /* 10 */
  44.   "Input buffer too large",
  45.   "This packing mode not supported",
  46.   "Password required",
  47.   "Input file is corrupt",
  48.   "Can't find required XPK library",    /* 15 */
  49.   "Bad internal parameters",
  50.   "Data cannot be compressed",
  51.   "Requested compression method not found",
  52.   "Operation aborted by user",
  53.   "Input file truncated",    /* 20 */
  54.   "MC68020 or better required",
  55.   "Data already compressed",
  56.   "Data not compressed",
  57.   "Output file already exists",
  58.   "Master library too old",    /* 25 */
  59.   "Sub library too old",
  60.   "This library cannot encrypt",
  61.   "Can't get info",
  62.   "This compression method is lossy",
  63.   "Compression hardware required",    /* 30 */
  64.   "Compression hardware failed",
  65.   "Password incorrect"
  66. };
  67.  
  68. #endif /* XPKMASTER_XPK_STRING_C */
  69.