summaryrefslogtreecommitdiff
path: root/rtl/objpas/sysutils/strg.inc
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/objpas/sysutils/strg.inc')
-rw-r--r--rtl/objpas/sysutils/strg.inc42
1 files changed, 42 insertions, 0 deletions
diff --git a/rtl/objpas/sysutils/strg.inc b/rtl/objpas/sysutils/strg.inc
new file mode 100644
index 0000000000..3888dd256e
--- /dev/null
+++ b/rtl/objpas/sysutils/strg.inc
@@ -0,0 +1,42 @@
+{
+ $Id: strg.inc,v 1.2 2005/02/14 17:13:31 peter Exp $
+ This file is part of the Free Pascal run time library.
+ Copyright (c) 1999-2000 by the Free Pascal development team
+
+ This file implements english error message strings
+
+ See the file COPYING.FPC, included in this distribution,
+ for details about the copyright.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
+{
+ German string constants for any messages issued by the sysutils unit.
+ Please have them ordered by constant name.
+}
+
+Const
+
+ { Error messages for exceptions }
+
+ SAccessDenied = 'Zugriff verweigert';
+ SDiskFull = 'Plattenspeichermedium voll';
+ SEndOfFile = 'Lesezugriff hinter Dateiende';
+ SInValidFileName = 'Ungltiger Dateiname';
+ SInvalidInput = 'Ungltige Eingabe';
+ SInvalidPointer = 'Ungltiger Zeigeroperation';
+ SOutOfMemory = 'Speicher voll';
+ STooManyOpenFiles = 'Zu viele offene Dateien';
+ SUnKnownRunTimeError = 'Unbekannter Laufzeitfehler : %3.3d';
+ SFileNotFound = 'Datei nicht gefunden';
+
+{
+ $Log: strg.inc,v $
+ Revision 1.2 2005/02/14 17:13:31 peter
+ * truncate log
+
+}