home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / Chip_2002-07_cd1.bin / zkuste / delphi / kolekce / d56 / DIMPAS.ZIP / DimConst.pas < prev   
Pascal/Delphi Source File  |  2001-11-12  |  3KB  |  74 lines

  1. unit DimConst;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SShellLinkReadError = 'Shortcut read error';
  7.   SShellLinkWriteError = 'Shortsut write error';
  8.   SShellLinkLoadError = 'Cannot load shortcut %s';
  9.   SShellLinkSaveError = 'Cannot save shortcut %s';
  10.   SShellLinkCreateError = 'Cannot initialize shortcut interface';
  11.   SDynArrayIndexError = 'Array %s item index is out of bounds (%d)';
  12.   SDynArrayCountError = 'Array items count is out of bounds (%d)';
  13.   SSharedMemoryError = 'Cannot create file mapping object';
  14.   SCannotInitTimer = 'Cannot initialize timer';
  15.   SPrinterIndexError = 'Printer index is out of bounds (%d)';
  16.   SIndicesOutOfRange = 'Matrix item indices is out of bounds [%d: %d]';
  17.   SRowIndexOutOfRange = 'Matrix row index is out of bounds (%d)';
  18.   SColIndexOutOfRange = 'Matrix col index is out of bounds (%d)';
  19.   SNoAdminRights = 'No admin rights to continue the program';
  20.  
  21.   SFileError = 'Error %s file %s%s';
  22.   SFileReading = 'reading';
  23.   SFileWriting = 'writing';
  24.   SFileError002 = ' - file not found';
  25.   SFileError003 = ' - path not found';
  26.   SFileError004 = ' - cannot open file';
  27.   SFileError005 = ' - access denied';
  28.   SFileError014 = ' - no enough memory';
  29.   SFileError015 = ' - cannot find specified drive';
  30.   SFileError017 = ' - cannot move file to another drive';
  31.   SFileError019 = ' - write protected media';
  32.   SFileError020 = ' - cannot find specified device';
  33.   SFileError021 = ' - device is not ready';
  34.   SFileError022 = ' - device cannot recognize command';
  35.   SFileError025 = ' - specified area not found';
  36.   SFileError026 = ' - drive access denied';
  37.   SFileError027 = ' - sector not found';
  38.   SFileError029 = ' - device write error';
  39.   SFileError030 = ' - device read error';
  40.   SFileError032 = ' - file is used by another application';
  41.   SFileError036 = ' - too many open files';
  42.   SFileError038 = ' - end of file reached';
  43.   SFileError039 = ' - disk full';
  44.   SFileError050 = ' - network request not supported';
  45.   SFileError051 = ' - remote computer is inaccessible';
  46.   SFileError052 = ' - indentical names found on network';
  47.   SFileError053 = ' - network path not found';
  48.   SFileError054 = ' - network busy';
  49.   SFileError055 = ' - network resource or device is inaccessible';
  50.   SFileError057 = ' - network card hardware error';
  51.   SFileError058 = ' - server unable to perform operation';
  52.   SFileError059 = ' - network error';
  53.   SFileError064 = ' - inaccessible network name';
  54.   SFileError065 = ' - network access denied';
  55.   SFileError066 = ' - network resource type incorrectly specified';
  56.   SFileError067 = ' - network name not found';
  57.   SFileError070 = ' - network server shut down';
  58.   SFileError082 = ' - cannot create file or folder';
  59.   SFileError112 = ' - no enough disk free space';
  60.   SFileError123 = ' - file name syntax error';
  61.   SFileError161 = ' - path incorrectly specified';
  62.   SFileError183 = ' - file already exists';
  63.  
  64.   SCannotSetSize = 'Unable to change the size of a file';
  65.  
  66.   SUnableToCompress = 'Cannot compress data';
  67.   SUnableToDecompress = 'Cannot decompress data';
  68.  
  69.   SCannotFindNetwork = 'Cannot find network neiborhood';
  70.  
  71. implementation
  72.  
  73. end.
  74.