strg.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1998 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. German 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. SAccessDenied = 'Zugriff verweigert';
  19. SDiskFull = 'Plattenspeichermedium voll';
  20. SEndOfFile = 'Lesezugriff hinter Dateiende';
  21. SInValidFileName = 'Ung�ltiger Dateiname';
  22. SInvalidInput = 'Ung�ltige Eingabe';
  23. SInvalidPointer = 'Ung�ltiger Zeigeroperation';
  24. SOutOfMemory = 'Speicher voll';
  25. STooManyOpenFiles = 'Zu viele offene Dateien';
  26. SUnKnownRunTimeError = 'Unbekannter Laufzeitfehler : %3.3d';
  27. SFileNotFound = 'Datei nicht gefunden';
  28. {
  29. $Log$
  30. Revision 1.3 1999-08-28 14:53:27 florian
  31. * bug 471 fixed: run time error 2 is now converted into a file not
  32. found exception
  33. Revision 1.2 1999/07/02 17:03:23 florian
  34. + added some runtime->excpetin wrappers: eintoverflow, eoverflow, eunderflow, einvalidop
  35. Revision 1.1 1998/10/01 16:26:06 florian
  36. * Initial revision
  37. }