123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- return array(
-
- "accepted" => ":attribute muss akzeptiert werden.",
- "active_url" => ":attribute ist keine gültige URL.",
- "after" => ":attribute muss ein Datum nach dem :date sein.",
- "alpha" => ":attribute darf nur Buchstaben beinhalten.",
- "alpha_dash" => ":attribute darf nur aus Buchstaben, Nummern und Bindestrichen bestehen.",
- "alpha_num" => ":attribute darf nur aus Buchstaben und Nummern bestehen.",
- "array" => ":attribute muss ausgewählte Elemente haben.",
- "before" => ":attribute muss ein Datum vor dem :date sein.",
- "between" => array(
- "numeric" => ":attribute muss zwischen :min und :max liegen.",
- "file" => ":attribute muss zwischen :min und :max Kilobytes groß sein.",
- "string" => ":attribute muss zwischen :min und :max Zeichen lang sein.",
- ),
- "confirmed" => ":attribute stimmt nicht mit der Bestätigung überein.",
- "count" => ":attribute muss genau :count ausgewählte Elemente haben.",
- "countbetween" => ":attribute muss zwischen :min und :max ausgewählte Elemente haben.",
- "countmax" => ":attribute muss weniger als :max ausgewählte Elemente haben.",
- "countmin" => ":attribute muss mindestens :min ausgewählte Elemente haben.",
- "different" => ":attribute und :other müssen verschieden sein.",
- "email" => ":attribute ist keine gültige Email-Adresse.",
- "exists" => "Der gewählte Wert für :attribute ist ungültig.",
- "image" => ":attribute muss ein Bild sein.",
- "in" => "Der gewählte Wert für :attribute ist ungültig.",
- "integer" => ":attribute muss eine ganze Zahl sein.",
- "ip" => ":attribute muss eine gültige IP-Adresse sein.",
- "match" => ":attribute hat ein ungültiges Format.",
- "max" => array(
- "numeric" => ":attribute muss kleiner als :max sein.",
- "file" => ":attribute muss kleiner als :max Kilobytes groß sein.",
- "string" => ":attribute muss kürzer als :max Zeichen sein.",
- ),
- "mimes" => ":attribute muss den Dateityp :values haben.",
- "min" => array(
- "numeric" => ":attribute muss größer als :min sein.",
- "file" => ":attribute muss größer als :min Kilobytes groß sein.",
- "string" => ":attribute muss länger als :min Zeichen sein.",
- ),
- "not_in" => "Der gewählte Wert für :attribute ist ungültig.",
- "numeric" => ":attribute muss eine Zahl sein.",
- "required" => ":attribute muss ausgefüllt sein.",
- "same" => ":attribute und :other müssen übereinstimmen.",
- "size" => array(
- "numeric" => ":attribute muss gleich :size sein.",
- "file" => ":attribute muss :size Kilobyte groß sein.",
- "string" => ":attribute muss :size Zeichen lang sein.",
- ),
- "unique" => ":attribute ist schon vergeben.",
- "url" => "Das Format von :attribute ist ungültig.",
-
- 'custom' => array(),
-
- 'attributes' => array(),
- );
|