stre.inc 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 date/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. SInvalidGUID = '"%s" is not a valid GUID value';
  46. SInvalidInput = 'Invalid input';
  47. SInvalidInteger = '"%s" is an invalid integer';
  48. SInvalidOp = 'Invalid floating point operation';
  49. SInvalidPointer = 'Invalid pointer operation';
  50. SInvalidVarCast = 'Invalid variant type case';
  51. SInvalidVarOp = 'Invalid variant operation';
  52. SOutOfMemory = 'Out of memory';
  53. SOverflow = 'Floating point overflow';
  54. SRangeError = 'Range check error';
  55. STooManyOpenFiles = 'Too many open files';
  56. SUnKnownRunTimeError = 'Unknown Run-Time error : %3.3d';
  57. SUnderflow = 'Floating point underflow';
  58. SUnknownErrorCode = 'Unknown error code: %d';
  59. SVarArrayBounds = 'Variant array bounds error';
  60. SVarArrayCreate = 'Variant array cannot be created';
  61. SVarNotArray = 'Variant doesn''t contain an array';
  62. {
  63. $Log$
  64. Revision 1.6 2002-01-25 17:42:03 peter
  65. * interface helpers
  66. Revision 1.5 2001/08/19 21:02:02 florian
  67. * fixed and added a lot of stuff to get the Jedi DX( headers
  68. compiled
  69. Revision 1.4 2000/08/30 06:50:49 michael
  70. + Merged changes from fixes
  71. Revision 1.3 2000/08/13 17:55:38 michael
  72. + Added some missing functions needed for variant support
  73. Revision 1.2 2000/07/13 11:33:51 michael
  74. + removed logs
  75. Revision 1.1.2.1 2000/08/22 19:21:48 michael
  76. + Implemented syserrormessage. Made dummies for go32v2 and OS/2
  77. * Changed linux/errors.pp so it uses pchars for storage.
  78. }