home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / zkuste / delphi / kompon / d5 / CAKDIR.ZIP / CakStrings.pas < prev    next >
Pascal/Delphi Source File  |  2001-10-28  |  4KB  |  94 lines

  1. unit CakStrings;
  2. interface
  3. const
  4.         FUNCNOTAVIL = 'Function not avaliable';
  5.         ACEINTERR = 'Ace Internal Error : File already Exists';
  6.         NOERR = 'Operation OK';
  7.         PRODUCT = 'Quick Zip ';
  8.  
  9.         ABOUTSTR = 'Common Archiver Kit Experiment Ver 1.0.26' + #13#10 +
  10.                    ' >Use CAKE to create your own archiver with least amount of coding' + #13#10 +
  11.                    '(c) Joseph Leung 2001 - http://qzip.cjb.net' + #13#10 +
  12.                    'OpenSource under GNU Library License' + #13#10#13#10 +
  13.                    'Basic Operation (More information check Demo)' + #13#10#13#10 +
  14.                    '-Opening archive' + #13#10+
  15.                    ' >CakDir1.Archivename := ''C:\test.zip'';' + #13#10#13#10 +
  16.                    '-Extracting archive' + #13#10+
  17.                    ' >CakDir1.ExtractTo := ''C:\Temp'';' + #13#10 +
  18.                    ' >CakDir1.Extract;' + #13#10#13#10 +
  19.                    '-Adding files' + #13#10 +
  20.                    ' >CakDir1.Addfiles.add(''c:\temp\*.*'');' + #13#10 +
  21.                    ' >CakDir1.Add;';
  22.  
  23.         ERR_NODISKSPACE = 'Out of Disk space';
  24.         ERR_READONLY    = 'Read Only';
  25.         ERR_USERSKIP    = 'User Skip';
  26.         ERR_CRC         = 'CRC Error';
  27.         ERR_UNKTYPE     = 'Unknown File type';
  28.         ERR_NOSUPPORT   = 'Method not support';
  29.         ERR_PASSWORD    = 'Wrong password';
  30.         ERR_LONGFN      = 'This archive type dont support long filename';
  31.         ERR_WRONGVER    = 'Wrong Version';
  32.         ERR_OPENED      = 'File Opened';
  33.         ERR_NEWER       = 'Current file are newer';
  34.         ERR_NOTEXIST    = 'File not exist';
  35.         ERR_EXIST       = 'File already exist';
  36.         ERR_TOOMANYFILE = 'Too Many files';
  37.         ERR_MAKEDIR     = 'Require make directory';
  38.         ERR_WRITE       = 'Cannot write';
  39.         ERR_HUFFAN      = 'Huffan code';
  40.         ERR_HEADER      = 'Problem reading comment header';
  41.         ERR_CRCHEADER   = 'Problem reading CRC header';
  42.         ERR_HEADERBROKE = 'Header broken';
  43.         ERR_NOTARC      = 'Not an archive';
  44.         ERR_CANTREAD    = 'Can`t Read';
  45.         ERR_WRONGTYPE   = 'Wrong file style';
  46.         ERR_WRONGCMD    = 'Wrong command name';
  47.         ERR_MOREHEAP    = 'More heap memory';
  48.         ERR_NOMEMORY    = 'Not enough memory';
  49.         ERR_RUNNING     = 'Already Running';
  50.         ERR_HARC        = 'HARC havent opened';
  51.         ERR_SEARCH      = 'Not in search mode';
  52.         ERR_ARCREADONLY = 'Archive read only';
  53.         ERR_TMPOPEN     = 'Unknown error ERROR_TMP_OPEN';
  54.         ERR_SAMENAME    = 'File with same name';
  55.         ERR_NOTFOUNDARC = 'Cant find Archive file';
  56.         ERR_NORESPONSE  = 'Unknown error ERROR_RESPONSE_READ';
  57.         ERR_NOTVALID    = 'Not valid filename';
  58.         ERR_COPYTEMP    = 'Unable to copy to temp';
  59.         ERR_EOF         = 'End of file';
  60.  
  61.         MSG_PWD             = 'Password';
  62.         MSG_PLZENTERPWD4    = 'Please Enter password for ';
  63.         MSG_SHOWAGAIN       = 'Show this dialog again next time';
  64.         MSG_BEGINLOG        = 'Begin Log';
  65.  
  66.         METHODNOTSUPPORT = 'Ace Compress Method not support ';
  67.         ARCHIVE = 'Archives';
  68.         SPACE = ' ';
  69.  
  70.         WINEXT_ZIP = 'ZIP';
  71.         WINEXT_CAB = 'CAB';
  72.         WINEXT_LHA = 'LZH';
  73.         WINEXT_ARJ = 'ARJ';
  74.         WINEXT_ACE = 'ACE';
  75.         WINEXT_RAR = 'RAR';
  76.         WINEXT_TAR = 'TGZ';
  77.         WINEXT_BZ2 = 'BZI';
  78.         BZADLL = 'BGA32.DLL';
  79.         BZ2DLL = 'BZ2LIB.DLL';
  80.         //CABDLL = 'CAB32.DLL';  Dont need it anymore!!
  81.         BELDLL = 'UNBEL32.DLL';
  82.         GCADLL = 'UNGCA32.DLL';
  83.         LHADLL = 'UNLHA32.DLL';
  84.         UNARJDLL = 'UNARJ32J.DLL';
  85.         ZIPDLL = 'ZIPDLL.DLL';
  86.         UNZIPDLL = 'UNZDLL.DLL';
  87.         UNACEDLL = 'UNACE.DLL';
  88.         UNRARDLL = 'UNRAR.DLL';
  89.         TARDLL = 'TAR32.DLL';
  90.         YZ1DLL = 'YZ1.DLL';
  91. implementation
  92.  
  93. end.
  94.