|
9 | 9 |
|
10 | 10 | // Standard laravel validation lines |
11 | 11 | 'accepted' => ':attribute muss akzeptiert werden.', |
12 | | - 'active_url' => ':attribute ist keine valide URL.', |
| 12 | + 'active_url' => ':attribute ist keine gültige URL.', |
13 | 13 | 'after' => ':attribute muss ein Datum nach :date sein.', |
14 | 14 | 'alpha' => ':attribute kann nur Buchstaben enthalten.', |
15 | 15 | 'alpha_dash' => ':attribute kann nur Buchstaben, Zahlen und Bindestriche enthalten.', |
|
25 | 25 | ], |
26 | 26 | 'boolean' => ':attribute Feld muss wahr oder falsch sein.', |
27 | 27 | 'confirmed' => ':attribute stimmt nicht überein.', |
28 | | - 'date' => ':attribute ist kein valides Datum.', |
| 28 | + 'date' => ':attribute ist kein gültiges Datum.', |
29 | 29 | 'date_format' => ':attribute entspricht nicht dem Format :format.', |
30 | 30 | 'different' => ':attribute und :other müssen unterschiedlich sein.', |
31 | 31 | 'digits' => ':attribute muss :digits Stellen haben.', |
32 | 32 | 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', |
33 | | - 'email' => ':attribute muss eine valide E-Mail-Adresse sein.', |
| 33 | + 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', |
34 | 34 | 'ends_with' => ':attribute muss mit einem der folgenden Werte: :values enden', |
35 | 35 | 'file' => ':attribute muss als gültige Datei angegeben werden.', |
36 | 36 | 'filled' => ':attribute ist erforderlich.', |
|
51 | 51 | 'image_extension' => ':attribute muss eine gültige und unterstützte Bild-Dateiendung haben.', |
52 | 52 | 'in' => ':attribute ist ungültig.', |
53 | 53 | 'integer' => ':attribute muss eine Zahl sein.', |
54 | | - 'ip' => ':attribute muss eine valide IP-Adresse sein.', |
55 | | - 'ipv4' => ':attribute muss eine gültige IPv4 Adresse sein.', |
| 54 | + 'ip' => ':attribute muss eine gültige IP-Adresse sein.', |
| 55 | + 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', |
56 | 56 | 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', |
57 | 57 | 'json' => 'Das Attribut muss eine gültige JSON-Zeichenfolge sein.', |
58 | 58 | 'lt' => [ |
|
80 | 80 | 'string' => ':attribute muss mindestens :min Zeichen lang sein.', |
81 | 81 | 'array' => ':attribute muss mindesten :min Elemente enthalten.', |
82 | 82 | ], |
83 | | - 'not_in' => ':attribute ist ungültig.', |
84 | | - 'not_regex' => ':attribute ist kein valides Format.', |
| 83 | + 'not_in' => 'Das ausgewählte :attribute ist ungültig.', |
| 84 | + 'not_regex' => ':attribute ist kein gültiges Format.', |
85 | 85 | 'numeric' => ':attribute muss eine Zahl sein.', |
86 | 86 | 'regex' => ':attribute ist in einem ungültigen Format.', |
87 | 87 | 'required' => ':attribute ist erforderlich.', |
|
99 | 99 | 'array' => ':attribute muss :size Elemente enthalten.', |
100 | 100 | ], |
101 | 101 | 'string' => ':attribute muss eine Zeichenkette sein.', |
102 | | - 'timezone' => ':attribute muss eine valide zeitzone sein.', |
| 102 | + 'timezone' => ':attribute muss eine gültige Zeitzone sein.', |
103 | 103 | 'totp' => 'Der angegebene Code ist ungültig oder abgelaufen.', |
104 | 104 | 'unique' => ':attribute wird bereits verwendet.', |
105 | | - 'url' => ':attribute ist kein valides Format.', |
| 105 | + 'url' => ':attribute ist kein gültiges Format.', |
106 | 106 | 'uploaded' => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.', |
107 | 107 |
|
108 | 108 | 'zip_file' => ':attribute muss eine Datei innerhalb des ZIP referenzieren.', |
|
0 commit comments