home *** CD-ROM | disk | FTP | other *** search
- unit CakStrings;
- interface
- const
- FUNCNOTAVIL = 'Function not avaliable';
- ACEINTERR = 'Ace Internal Error : File already Exists';
- NOERR = 'Operation OK';
- PRODUCT = 'Quick Zip ';
-
- ABOUTSTR = 'Common Archiver Kit Experiment Ver 1.0.26' + #13#10 +
- ' >Use CAKE to create your own archiver with least amount of coding' + #13#10 +
- '(c) Joseph Leung 2001 - http://qzip.cjb.net' + #13#10 +
- 'OpenSource under GNU Library License' + #13#10#13#10 +
- 'Basic Operation (More information check Demo)' + #13#10#13#10 +
- '-Opening archive' + #13#10+
- ' >CakDir1.Archivename := ''C:\test.zip'';' + #13#10#13#10 +
- '-Extracting archive' + #13#10+
- ' >CakDir1.ExtractTo := ''C:\Temp'';' + #13#10 +
- ' >CakDir1.Extract;' + #13#10#13#10 +
- '-Adding files' + #13#10 +
- ' >CakDir1.Addfiles.add(''c:\temp\*.*'');' + #13#10 +
- ' >CakDir1.Add;';
-
- ERR_NODISKSPACE = 'Out of Disk space';
- ERR_READONLY = 'Read Only';
- ERR_USERSKIP = 'User Skip';
- ERR_CRC = 'CRC Error';
- ERR_UNKTYPE = 'Unknown File type';
- ERR_NOSUPPORT = 'Method not support';
- ERR_PASSWORD = 'Wrong password';
- ERR_LONGFN = 'This archive type dont support long filename';
- ERR_WRONGVER = 'Wrong Version';
- ERR_OPENED = 'File Opened';
- ERR_NEWER = 'Current file are newer';
- ERR_NOTEXIST = 'File not exist';
- ERR_EXIST = 'File already exist';
- ERR_TOOMANYFILE = 'Too Many files';
- ERR_MAKEDIR = 'Require make directory';
- ERR_WRITE = 'Cannot write';
- ERR_HUFFAN = 'Huffan code';
- ERR_HEADER = 'Problem reading comment header';
- ERR_CRCHEADER = 'Problem reading CRC header';
- ERR_HEADERBROKE = 'Header broken';
- ERR_NOTARC = 'Not an archive';
- ERR_CANTREAD = 'Can`t Read';
- ERR_WRONGTYPE = 'Wrong file style';
- ERR_WRONGCMD = 'Wrong command name';
- ERR_MOREHEAP = 'More heap memory';
- ERR_NOMEMORY = 'Not enough memory';
- ERR_RUNNING = 'Already Running';
- ERR_HARC = 'HARC havent opened';
- ERR_SEARCH = 'Not in search mode';
- ERR_ARCREADONLY = 'Archive read only';
- ERR_TMPOPEN = 'Unknown error ERROR_TMP_OPEN';
- ERR_SAMENAME = 'File with same name';
- ERR_NOTFOUNDARC = 'Cant find Archive file';
- ERR_NORESPONSE = 'Unknown error ERROR_RESPONSE_READ';
- ERR_NOTVALID = 'Not valid filename';
- ERR_COPYTEMP = 'Unable to copy to temp';
- ERR_EOF = 'End of file';
-
- MSG_PWD = 'Password';
- MSG_PLZENTERPWD4 = 'Please Enter password for ';
- MSG_SHOWAGAIN = 'Show this dialog again next time';
- MSG_BEGINLOG = 'Begin Log';
-
- METHODNOTSUPPORT = 'Ace Compress Method not support ';
- ARCHIVE = 'Archives';
- SPACE = ' ';
-
- WINEXT_ZIP = 'ZIP';
- WINEXT_CAB = 'CAB';
- WINEXT_LHA = 'LZH';
- WINEXT_ARJ = 'ARJ';
- WINEXT_ACE = 'ACE';
- WINEXT_RAR = 'RAR';
- WINEXT_TAR = 'TGZ';
- WINEXT_BZ2 = 'BZI';
- BZADLL = 'BGA32.DLL';
- BZ2DLL = 'BZ2LIB.DLL';
- //CABDLL = 'CAB32.DLL'; Dont need it anymore!!
- BELDLL = 'UNBEL32.DLL';
- GCADLL = 'UNGCA32.DLL';
- LHADLL = 'UNLHA32.DLL';
- UNARJDLL = 'UNARJ32J.DLL';
- ZIPDLL = 'ZIPDLL.DLL';
- UNZIPDLL = 'UNZDLL.DLL';
- UNACEDLL = 'UNACE.DLL';
- UNRARDLL = 'UNRAR.DLL';
- TARDLL = 'TAR32.DLL';
- YZ1DLL = 'YZ1.DLL';
- implementation
-
- end.
-