Fix some bugs and inconsistencies in the German validation translation.
This commit is contained in:
parent
9296d08ec5
commit
ed4a6973f8
|
@ -19,48 +19,48 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
"accepted" => ":attribute muss akzeptiert werden.",
|
"accepted" => ":attribute muss akzeptiert werden.",
|
||||||
"active_url" => ":attribute ist keine korrekte URL.",
|
"active_url" => ":attribute ist keine gültige URL.",
|
||||||
"after" => ":attribute muss ein Datum nach :date sein.",
|
"after" => ":attribute muss ein Datum nach dem :date sein.",
|
||||||
"alpha" => ":attribute darf nur Buchstaben beinhalten.",
|
"alpha" => ":attribute darf nur Buchstaben beinhalten.",
|
||||||
"alpha_dash" => ":attribute sollte nur aus Buchstaben, Nummern und Bindestriche bestehen.",
|
"alpha_dash" => ":attribute sollte nur aus Buchstaben, Nummern und Bindestrichen bestehen.",
|
||||||
"alpha_num" => ":attribute sollte nur aus Buchstaben und Nummern bestehen.",
|
"alpha_num" => ":attribute sollte nur aus Buchstaben und Nummern bestehen.",
|
||||||
"before" => ":attribute muss ein Datum vor :date sein.",
|
"before" => ":attribute muss ein Datum vor dem :date sein.",
|
||||||
"between" => array(
|
"between" => array(
|
||||||
"numeric" => ":attribute muss zwischen :min und :max sein.",
|
"numeric" => ":attribute muss zwischen :min und :max liegen.",
|
||||||
"file" => ":attribute muss zwischen :min und :max Kilobytes sein.",
|
"file" => ":attribute muss zwischen :min und :max Kilobytes groß sein.",
|
||||||
"string" => ":attribute muss zwischen :min und :max Zeichen sein.",
|
"string" => ":attribute muss zwischen :min und :max Zeichen lang sein.",
|
||||||
),
|
),
|
||||||
"confirmed" => "Die Bestätigung für :attribute stimmt nicht überein.",
|
"confirmed" => ":attribute stimmt nicht mit der Bestätigung überein.",
|
||||||
"different" => ":attribute und :other müssen verschieden sein.",
|
"different" => ":attribute und :other müssen verschieden sein.",
|
||||||
"email" => "Das Format fü :attribute ist ungültig.",
|
"email" => ":attribute ist keine gültige Email-Adresse.",
|
||||||
"exists" => "Die selektierte :attribute ist ungültig.",
|
"exists" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||||
"image" => ":attribute muss ein Bild sein.",
|
"image" => ":attribute muss ein Bild sein.",
|
||||||
"in" => "Die selektierte :attribute ist ungültig.",
|
"in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||||
"integer" => ":attribute muss eine Ganzzahl sein.",
|
"integer" => ":attribute muss eine ganze Zahl sein.",
|
||||||
"ip" => ":attribute muss eine gültige IP sein.",
|
"ip" => ":attribute muss eine gültige IP-Adresse sein.",
|
||||||
"match" => ":attribute hat ein ungültiges format.",
|
"match" => ":attribute hat ein ungültiges Format.",
|
||||||
"max" => array(
|
"max" => array(
|
||||||
"numeric" => ":attribute muss kleiner sein als :max.",
|
"numeric" => ":attribute muss kleiner als :max sein.",
|
||||||
"file" => ":attribute muss kleiner sein :max Kilobytes.",
|
"file" => ":attribute muss kleiner als :max Kilobytes groß sein.",
|
||||||
"string" => ":attribute muss kürzer sein als :max Zeichen.",
|
"string" => ":attribute muss kürzer als :max Zeichen sein.",
|
||||||
),
|
),
|
||||||
"mimes" => ":attribute muss eine Datei sein des Formats: :values.",
|
"mimes" => ":attribute muss den Dateityp :values haben.",
|
||||||
"min" => array(
|
"min" => array(
|
||||||
"numeric" => ":attribute muss größer sein als :min.",
|
"numeric" => ":attribute muss größer als :min sein.",
|
||||||
"file" => ":attribute muss größer sein als :min Kilobytes.",
|
"file" => ":attribute muss größer als :min Kilobytes groß sein.",
|
||||||
"string" => ":attribute muss länger sein als :min Zeichen.",
|
"string" => ":attribute muss länger als :min Zeichen sein.",
|
||||||
),
|
),
|
||||||
"not_in" => "Die selektierte :attribute ist ungültig.",
|
"not_in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||||
"numeric" => ":attribute muss eine Nummer sein.",
|
"numeric" => ":attribute muss eine Zahl sein.",
|
||||||
"required" => "Das :attribute Feld muss aufgefüllt sein.",
|
"required" => ":attribute muss aufgefüllt sein.",
|
||||||
"same" => ":attribute und :other müssen übereinstimmen.",
|
"same" => ":attribute und :other müssen übereinstimmen.",
|
||||||
"size" => array(
|
"size" => array(
|
||||||
"numeric" => ":attribute muss :size sein.",
|
"numeric" => ":attribute muss gleich :size sein.",
|
||||||
"file" => ":attribute muss :size Kilobyte sein.",
|
"file" => ":attribute muss :size Kilobyte groß sein.",
|
||||||
"string" => ":attribute muss :size Zeichen sein.",
|
"string" => ":attribute muss :size Zeichen lang sein.",
|
||||||
),
|
),
|
||||||
"unique" => ":attribute ist schon vergeben.",
|
"unique" => ":attribute ist schon vergeben.",
|
||||||
"url" => "Das Format fü :attribute ist ungültig.",
|
"url" => "Das Format von :attribute ist ungültig.",
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue