stre.inc 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. This file implements english error message strings
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {
  13. English string constants for any messages issued by the sysutils unit.
  14. Please have them ordered by constant name.
  15. }
  16. Const
  17. { Error messages for exceptions }
  18. SAbortError = 'Operation aborted';
  19. SAbstractError = 'Abstract method called';
  20. SAccessDenied = 'Access denied';
  21. SAccessViolation = 'Access violation';
  22. SArgumentMissing = 'Missing argument in format "%s"';
  23. SAssertError = '%s (%s, line %d)';
  24. SAssertionFailed = 'Assertion failed';
  25. SDiskFull = 'Disk Full';
  26. SDispatchError = 'No variant method call dispatch';
  27. SDivByZero = 'Division by zero';
  28. SEndOfFile = 'Read past end of file';
  29. SExceptionErrorMessage = 'exception at %p';
  30. SFileNotAssigned = 'File not assigned';
  31. SFileNotFound = 'File not found';
  32. SFileNotOpen = 'File not open';
  33. SFileNotOpenForInput = 'File not open for input';
  34. SFileNotOpenForOutput = 'File not open for output';
  35. SInValidFileName = 'Invalid filename';
  36. SIntOverflow = 'Arithmetic overflow';
  37. SInvalidArgIndex = 'Invalid argument index in format "%s"';
  38. SInvalidBoolean = '"%s" is not a valid boolean.';
  39. SInvalidCast = 'Invalid type cast';
  40. SInvalidDateTime = '%f is not a valid datee/time value.';
  41. SInvalidDrive = 'Invalid drive specified';
  42. SInvalidFileHandle = 'Invalid file handle';
  43. SInvalidFloat = '"%s" is an invalid float';
  44. SInvalidFormat = 'Invalid format specifier : "%s"';
  45. SInvalidInput = 'Invalid input';
  46. SInvalidInteger = '"%s" is an invalid integer';
  47. SInvalidOp = 'Invalid floating point operation';
  48. SInvalidPointer = 'Invalid pointer operation';
  49. SInvalidVarCast = 'Invalid variant type case';
  50. SInvalidVarOp = 'Invalid variant operation';
  51. SOutOfMemory = 'Out of memory';
  52. SOverflow = 'Floating point overflow';
  53. SRangeError = 'Range check error';
  54. STooManyOpenFiles = 'Too many open files';
  55. SUnKnownRunTimeError = 'Unknown Run-Time error : %3.3d';
  56. SUnderflow = 'Floating point underflow';
  57. SUnknownErrorCode = 'Unknown error code: %d';
  58. SVarArrayBounds = 'Variant array bounds error';
  59. SVarArrayCreate = 'Variant array cannot be created';
  60. SVarNotArray = 'Variant doesn''t contain an array';
  61. {
  62. $Log$
  63. Revision 1.5 2001-08-19 21:02:02 florian
  64. * fixed and added a lot of stuff to get the Jedi DX( headers
  65. compiled
  66. Revision 1.4 2000/08/30 06:50:49 michael
  67. + Merged changes from fixes
  68. Revision 1.3 2000/08/13 17:55:38 michael
  69. + Added some missing functions needed for variant support
  70. Revision 1.2 2000/07/13 11:33:51 michael
  71. + removed logs
  72. Revision 1.1.2.1 2000/08/22 19:21:48 michael
  73. + Implemented syserrormessage. Made dummies for go32v2 and OS/2
  74. * Changed linux/errors.pp so it uses pchars for storage.
  75. }