1$ $ 2$ SPDX-License-Identifier: BSD-2-Clause 3$ $ 4$ Copyright (c) 2018-2021 Gavin D. Howard and contributors. 5$ $ 6$ Redistribution and use in source and binary forms, with or without 7$ modification, are permitted provided that the following conditions are met: 8$ $ 9$ * Redistributions of source code must retain the above copyright notice, this 10$ list of conditions and the following disclaimer. 11$ $ 12$ * Redistributions in binary form must reproduce the above copyright notice, 13$ this list of conditions and the following disclaimer in the documentation 14$ and/or other materials provided with the distribution. 15$ $ 16$ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17$ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18$ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19$ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 20$ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21$ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22$ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23$ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24$ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25$ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26$ POSSIBILITY OF SUCH DAMAGE. 27$ $ 28 29$quote " 30 31$ Headers for printing errors/warnings. 32$set 1 33 341 "Funktion:" 35 36$ Error types. 37$set 2 38 391 "Rechenfehler:" 402 "Analysefehler:" 413 "Laufzeitfehler:" 424 "Fataler Fehler:" 435 "Warnung:" 44 45$ Math errors. 46$set 3 47 481 "negative Zahl" 492 "Nicht-Ganzzahl-Wert" 503 "Überlauf: Zahl passt nicht in Register" 514 "Division durch 0" 52 53$ Parse errors. 54$set 4 55 561 "Ende der Datei" 572 "ungültiges Zeichen: '%c'" 583 "Zeichenketten-Ende konnte nicht gefunden werden" 594 "Kommentar-Ende konnte nicht gefunden werden" 605 "ungültiges Token" 616 "ungültiger Ausdruck" 627 "leerer Ausdruck" 638 "Ungültige Druckanweisung" 649 "Ungültige Funktionsdefinition" 6510 "Ungültige Zuweisung: Die linke Seite muss \"scale\", \"ibase\", \"obase\", \"seed\", \"last\", \"var\" oder \"array element\" sein" 6611 "keine automatische Variable gefunden" 6712 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 6813 "Blockende konnte nicht gefunden werden" 6914 "eine \"void-Funktion\" kann keinen Wert zurückgeben: %s()" 7015 "Variable kann keine Referenz sein: %s" 7116 "POSIX erlaubt keine Namen mit mehr als 1 Zeichen Länge: %s" 7217 "POSIX erlaubt keine '#'-Skriptkommentare" 7318 "POSIX erlaubt das Schlüsselwort \"%s\" nicht" 7419 "POSIX erlaubt keinen Punkt ('.') als Abkürzung für das letzte Ergebnis" 7520 "POSIX benötigt Klammern um Rückgabeausdrücke" 7621 "POSIX erlaubt den Operator \"%s\" nicht" 7722 "POSIX erlaubt keine Vergleichsoperatoren außerhalb von if-Anweisungen oder Schleifen" 7823 "POSIX benötigt 0 oder 1 Vergleichsoperatoren pro Bedingung" 7924 "POSIX erlaubt keinen leeren Ausdruck in einer for-Schleife" 8025 "POSIX erlaubt keine exponentielle Notation" 8126 "POSIX erlaubt keine Feld-Referenzen als Funktionsparameter" 8227 "POSIX erfordert, dass die linke Klammer auf der gleichen Linie wie der Funktionskopf steht" 83 84$ Runtime errors. 85$set 5 86 871 "ungültige \"ibase\": muss im Intervall [%lu, %lu] liegen" 882 "ungültige \"obase\": muss im Intervall [%lu, %lu] liegen" 893 "ungültige \"scale\"; muss im Intervall [%lu, %lu] liegen" 904 "ungültiger read()-Ausdruck" 915 "rekursiver read()-Aufruf" 926 "Variable oder Feld-Element hat den falschen Typ" 937 "Stapel hat zu wenig Elemente" 948 "falsche Anzahl der Parameter: benötigt %zu, hat %zu" 959 "undefinierte Funktion: %s()" 9610 "kann keinen ungültigen Wert in einem Ausdruck verwenden" 97 98$ Fatal errors. 99$set 6 100 1011 "Speicherzuweisung fehlgeschlagen" 1022 "Ein-Ausgabe-Fehler" 1033 "konnte die Datei nicht öffnen: %s" 1044 "Datei ist nicht ASCII: %s" 1055 "Pfad ist ein Verzeichnis: %s" 1066 "ungültige Befehlszeilenoption: \"%s\"" 1077 "Option erfordert ein Argument: '%c' (\"%s\")" 1088 "Option benutzt keine Argumente: '%c' (\"%s\")" 109