strg.inc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 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.5 2000-02-09 16:59:32 peter
  31. * truncated log
  32. Revision 1.4 2000/01/07 16:41:44 daniel
  33. * copyright 2000
  34. Revision 1.3 1999/08/28 14:53:27 florian
  35. * bug 471 fixed: run time error 2 is now converted into a file not
  36. found exception
  37. }