Skip to content

Commit

Permalink
Merge pull request brutusin#132 from felix-last/german-translation
Browse files Browse the repository at this point in the history
Create German translation
  • Loading branch information
idelvall authored Nov 5, 2018
2 parents f37276e + 81a607a commit 44f27b2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/js/addon/brutusin-json-forms-lan-de_DE.js
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"
};
}());

0 comments on commit 44f27b2

Please sign in to comment.