home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Source / Vcl / SYSCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-01-26  |  4.5 KB  |  119 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Runtime Library                  }
  5. {                                                       }
  6. {       Copyright (C) 1995,98 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit SysConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SInvalidInteger = '''%s'' is not a valid integer value';
  16.   SInvalidFloat = '''%s'' is not a valid floating point value';
  17.   SInvalidDate = '''%s'' is not a valid date';
  18.   SInvalidTime = '''%s'' is not a valid time';
  19.   SInvalidDateTime = '''%s'' is not a valid date and time';
  20.   STimeEncodeError = 'Invalid argument to time encode';
  21.   SDateEncodeError = 'Invalid argument to date encode';
  22.   SOutOfMemory = 'Out of memory';
  23.   SInOutError = 'I/O error %d';
  24.   SFileNotFound = 'File not found';
  25.   SInvalidFilename = 'Invalid filename';
  26.   STooManyOpenFiles = 'Too many open files';
  27.   SAccessDenied = 'File access denied';
  28.   SEndOfFile = 'Read beyond end of file';
  29.   SDiskFull = 'Disk full';
  30.   SInvalidInput = 'Invalid numeric input';
  31.   SDivByZero = 'Division by zero';
  32.   SRangeError = 'Range check error';
  33.   SIntOverflow = 'Integer overflow';
  34.   SInvalidOp = 'Invalid floating point operation';
  35.   SZeroDivide = 'Floating point division by zero';
  36.   SOverflow = 'Floating point overflow';
  37.   SUnderflow = 'Floating point underflow';
  38.   SInvalidPointer = 'Invalid pointer operation';
  39.   SInvalidCast = 'Invalid class typecast';
  40.   SAccessViolation = 'Access violation at address %p. %s of address %p';
  41.   SStackOverflow = 'Stack overflow';
  42.   SControlC = 'Control-C hit';
  43.   SPrivilege = 'Privileged instruction';
  44.   SOperationAborted = 'Operation aborted';
  45.   SException = 'Exception %s in module %s at %p.'#$0A'%s%s';
  46.   SExceptTitle = 'Application Error';
  47.   SInvalidFormat = 'Format ''%s'' invalid or incompatible with argument';
  48.   SArgumentMissing = 'No argument for format ''%s''';
  49.   SInvalidVarCast = 'Invalid variant type conversion';
  50.   SInvalidVarOp = 'Invalid variant operation';
  51.   SDispatchError = 'Variant method calls not supported';
  52.   SReadAccess = 'Read';
  53.   SWriteAccess = 'Write';
  54.   SResultTooLong = 'Format result longer than 4096 characters';
  55.   SFormatTooLong = 'Format string too long';
  56.   SVarArrayCreate = 'Error creating variant array';
  57.   SVarNotArray = 'Variant is not an array';
  58.   SVarArrayBounds = 'Variant array index out of bounds';
  59.   SExternalException = 'External exception %x';
  60.   SAssertionFailed = 'Assertion failed';
  61.   SIntfCastError = 'Interface not supported';
  62.   SAssertError = '%s (%s, line %d)';
  63.   SAbstractError = 'Abstract Error';
  64.   SModuleAccessViolation = 'Access violation at address %p in module ''%s''. %s of address %p';
  65.   SCannotReadPackageInfo = 'Cannot access package information for package ''%s''';
  66.   sErrorLoadingPackage = 'Can''t load package %s.'#13#10'%s';
  67.   SInvalidPackageFile = 'Invalid package file ''%s''';
  68.   SInvalidPackageHandle = 'Invalid package handle';
  69.   SDuplicatePackageUnit = 'Cannot load package ''%s.''  It contains unit ''%s,''' +
  70.     ';which is also contained in package ''%s''';
  71.   SWin32Error = 'Win32 Error.  Code: %d.'#10'%s';
  72.   SUnkWin32Error = 'A Win32 API function failed';
  73.   SNL = 'Application is not licensed to use this feature';
  74.  
  75.   SShortMonthNameJan = 'Jan';
  76.   SShortMonthNameFeb = 'Feb';
  77.   SShortMonthNameMar = 'Mar';
  78.   SShortMonthNameApr = 'Apr';
  79.   SShortMonthNameMay = 'May';
  80.   SShortMonthNameJun = 'Jun';
  81.   SShortMonthNameJul = 'Jul';
  82.   SShortMonthNameAug = 'Aug';
  83.   SShortMonthNameSep = 'Sep';
  84.   SShortMonthNameOct = 'Oct';
  85.   SShortMonthNameNov = 'Nov';
  86.   SShortMonthNameDec = 'Dec';
  87.  
  88.   SLongMonthNameJan = 'January';
  89.   SLongMonthNameFeb = 'February';
  90.   SLongMonthNameMar = 'March';
  91.   SLongMonthNameApr = 'April';
  92.   SLongMonthNameMay = 'May';
  93.   SLongMonthNameJun = 'June';
  94.   SLongMonthNameJul = 'July';
  95.   SLongMonthNameAug = 'August';
  96.   SLongMonthNameSep = 'September';
  97.   SLongMonthNameOct = 'October';
  98.   SLongMonthNameNov = 'November';
  99.   SLongMonthNameDec = 'December';
  100.  
  101.   SShortDayNameSun = 'Sun';
  102.   SShortDayNameMon = 'Mon';
  103.   SShortDayNameTue = 'Tue';
  104.   SShortDayNameWed = 'Wed';
  105.   SShortDayNameThu = 'Thu';
  106.   SShortDayNameFri = 'Fri';
  107.   SShortDayNameSat = 'Sat';
  108.  
  109.   SLongDayNameSun = 'Sunday';
  110.   SLongDayNameMon = 'Monday';
  111.   SLongDayNameTue = 'Tuesday';
  112.   SLongDayNameWed = 'Wednesday';
  113.   SLongDayNameThu = 'Thursday';
  114.   SLongDayNameFri = 'Friday';
  115.   SLongDayNameSat = 'Saturday';
  116.  
  117. implementation
  118.  
  119. end.