~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to rtl/objpas/sysutils/strg.inc

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2004-08-12 16:29:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040812162937-moo8ulvysp1ln771
Tags: 1.9.4-5
fp-compiler: needs ld, adding dependency on binutils.  (Closes: #265265)

Show diffs side-by-side

added added

removed removed

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