forked from brutusin/json-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request brutusin#132 from felix-last/german-translation
Create German translation
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
if ("undefined" === typeof brutusin || "undefined" === typeof brutusin["json-forms"]) { | ||
throw new Error("brutusin-json-forms-bootstrap.js requires brutusin-json-forms.js"); | ||
} | ||
(function () { | ||
var BrutusinForms = brutusin["json-forms"]; | ||
|
||
BrutusinForms.messages = { | ||
"validationError": "Validierungsfehler", | ||
"required": "Pflichtfeld", | ||
"invalidValue": "Ungültiger Wert", | ||
"addpropNameExistent": "Dieses Attribut existiert bereits", | ||
"addpropNameRequired": "Ein Name ist erforderlich", | ||
"minItems": "Mindestens {0} Elemente werden benötigt", | ||
"maxItems": "Maximal {0} Elemente sind zugelassen", | ||
"pattern": "Dieser Wert stimmt nicht mit dem vorgegebenen Muster überein: {0}", | ||
"minLength": "Mindestlänge: {0} Zeichen", | ||
"maxLength": "Maximale Länge: {0} Zeichen", | ||
"multipleOf": "Der Wert muss ein Vielfaches von {0} sein", | ||
"minimum": "Der Wert muss ≤ {0} sein", | ||
"exclusiveMinimum": "Der Wert muss < {0} sein", | ||
"maximum": "Der Wert muss ≥ {0} sein", | ||
"exclusiveMaximum": "Der Wert muss > {0} sein", | ||
"minProperties": "Mindestens {0} Attribute werden benötigt", | ||
"maxProperties": "Höchstens {0} Attribute sind zugelassen", | ||
"uniqueItems": "Jedes Element darf höchstens einmal vorkommen", | ||
"addItem": "Element hinzufügen", | ||
"true": "Ja", | ||
"false": "Nein" | ||
}; | ||
}()); |