1{
2    This file is part of the Free Pascal run time library.
3    Copyright (c) 1999-2000 by the Free Pascal development team
4
5    This file implements english error message strings
6
7    See the file COPYING.FPC, included in this distribution,
8    for details about the copyright.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 **********************************************************************}
15
16{
17  German string constants for any messages issued by the sysutils unit.
18  Please have them ordered by constant name.
19}
20
21Const
22
23   { Error messages for exceptions }
24
25   SAccessDenied = 'Zugriff verweigert';
26   SDiskFull = 'Plattenspeichermedium voll';
27   SEndOfFile = 'Lesezugriff hinter Dateiende';
28   SInValidFileName = 'Ung�ltiger Dateiname';
29   SInvalidInput = 'Ung�ltige Eingabe';
30   SInvalidPointer = 'Ung�ltiger Zeigeroperation';
31   SOutOfMemory = 'Speicher voll';
32   STooManyOpenFiles = 'Zu viele offene Dateien';
33   SUnKnownRunTimeError = 'Unbekannter Laufzeitfehler : %3.3d';
34   SFileNotFound = 'Datei nicht gefunden';
35
36