2017-09-19 13:25:13 +02:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Validation Language Lines
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
|
|
|
| the validator class. Some of these rules have multiple versions such
|
|
|
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'accepted' => ':attribute muss akzeptiert werden.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'accepted_if' => ':attribute muss akzeptiert werden, wenn :other :value ist.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'active_url' => ':attribute ist keine valide URL.',
|
|
|
|
|
'after' => ':attribute muss ein Datum nach dem :date sein.',
|
|
|
|
|
'after_or_equal' => ':attribute muss ein Datum nach oder gleich dem :date sein.',
|
|
|
|
|
'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
|
|
|
|
|
'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen und Gedankenstrichen bestehen.',
|
|
|
|
|
'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.',
|
|
|
|
|
'array' => ':attribute muss ein Array sein.',
|
|
|
|
|
'before' => ':attribute muss ein Datum vor dem :date sein.',
|
|
|
|
|
'before_or_equal' => ':attribute muss ein Datum vor oder gleich dem :date sein.',
|
|
|
|
|
'between' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute soll mindestens :min und darf maximal :max Stellen haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute darf nur zwischen :min und :max kilobytes groß sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss mindestens :min und darf maximal :max Zeichen enthalten.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'boolean' => ':attribute muss Wahr oder Falsch sein.',
|
|
|
|
|
'confirmed' => ':attribute Bestätigung stimmt nicht überein.',
|
|
|
|
|
'current_password' => 'Das Passwort ist falsch.',
|
|
|
|
|
'date' => ':attribute ist kein gültiges Datum.',
|
|
|
|
|
'date_equals' => ':attribute muss ein Datum gleich :date sein.',
|
|
|
|
|
'date_format' => ':attribute passt nicht zur :format Formatierung.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'declined' => ':attribute muss abgelehnt werden.',
|
|
|
|
|
'declined_if' => ':attribute muss abgelehnt werden, wenn :other :value ist.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'different' => ':attribute und :other müssen sich <strong>unterscheiden</strong>.',
|
|
|
|
|
'digits' => ':attribute muss :digits Stellen haben.',
|
|
|
|
|
'digits_between' => ':attribute soll mindestens :min und darf maximal :max Stellen haben.',
|
|
|
|
|
'dimensions' => ':attribute hat ungültige Bildabmessungen.',
|
|
|
|
|
'distinct' => ':attribute hat einen doppelten Wert.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'doesnt_start_with' => ':attribute darf nicht mit einem der folgenden Werte beginnen: :values',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'email' => ':attribute Attribut muss eine gültige <strong>E-Mail-Adresse</strong> sein.',
|
|
|
|
|
'ends_with' => ':attribute muss mit einem der folgenden Zeichen enden: :values',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'enum' => 'Das ausgewählte :attribute ist ungültig.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'exists' => 'Das ausgewählte :attribute ist ungültig.',
|
|
|
|
|
'file' => ':attribute muss eine <strong>Datei</strong> sein.',
|
|
|
|
|
'filled' => ':attribute Feld muss einen <strong>Wert</strong> haben.',
|
|
|
|
|
'gt' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute muss mehr als :value Elemente haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss größer als :value Kilobytes sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss größer als :value sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss länger als :value Zeichen sein.',
|
|
|
|
|
],
|
|
|
|
|
'gte' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute muss mindestens :value Elemente haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss größer oder gleich :value sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss mindestens :value Zeichen lang sein.',
|
|
|
|
|
],
|
|
|
|
|
'image' => ':attribute muss ein <strong>Bild</strong> sein.',
|
|
|
|
|
'in' => 'Das ausgewählte :attribute ist ungültig.',
|
|
|
|
|
'in_array' => ':attribute Feld existiert nicht in :other.',
|
|
|
|
|
'integer' => ':attribute muss eine <strong>Ganzzahl</strong> sein.',
|
|
|
|
|
'ip' => ':attribute muss eine gültige IP Adresse sein.',
|
|
|
|
|
'ipv4' => ':attribute muss eine gültige IPv4 Adresse sein.',
|
|
|
|
|
'ipv6' => ':attribute muss eine gültige IPv6 Adresse sein.',
|
|
|
|
|
'json' => ':attribute muss eine gültiger JSON-String sein.',
|
|
|
|
|
'lt' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute muss weniger als :value Elemente haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss kleiner als :value Kilobytes sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss kleiner als :value sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss kürzer als :value Zeichen sein.',
|
|
|
|
|
],
|
|
|
|
|
'lte' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute darf nicht mehr als :value-Elemente haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss kleiner oder gleich :value Zeichen sein.
|
|
|
|
|
',
|
|
|
|
|
],
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'mac_address' => ':attribute muss eine gültige MAC-Adresse sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'max' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute darf nicht mehr als :max Werte haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute darf nicht größer als :max Kilobyte sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute darf nicht größer als :max sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute darf nicht größer als :max Zeichen sein.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'mimes' => ':attribute muss eine Datei des Typs :values sein.',
|
|
|
|
|
'mimetypes' => ':attribute muss eine Datei des Typs :values sein.',
|
|
|
|
|
'min' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute muss mindestens :min Artikel haben.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss mindestens :min sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'multiple_of' => ':attribute muss ein Vielfaches von :value sein.',
|
|
|
|
|
'not_in' => 'Das ausgewählte :attribute ist ungültig.',
|
|
|
|
|
'not_regex' => ':attribute Format ist ungültig.',
|
|
|
|
|
'numeric' => ':attribute muss eine Zahl sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'password' => [
|
|
|
|
|
'letters' => 'Das :attribute muss mindestens einen Buchstaben enthalten.',
|
|
|
|
|
'mixed' => 'Das :attribute muss mindestens einen Großbuchstaben und einen Kleinbuchstaben enthalten.',
|
|
|
|
|
'numbers' => 'Das :attribute muss mindestens eine Ziffer enthalten.',
|
|
|
|
|
'symbols' => 'Das :attribute muss mindestens ein Sonderzeichen enthalten.',
|
|
|
|
|
'uncompromised' => 'Das eingegebene :attribute wurde in einem Datenleck gefunden. Bitte wählen Sie ein anderes :attribute.',
|
|
|
|
|
],
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'present' => ':attribute Feld muss <strong>vorhanden sein</strong>.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'prohibited' => 'Das Feld :attribute ist nicht erlaubt.',
|
|
|
|
|
'prohibited_if' => 'Das Feld :attribute ist verboten, wenn :other :value ist.',
|
|
|
|
|
'prohibited_unless' => 'Das Feld :attribute ist verboten, es sei denn, :other ist in :values enthalten.',
|
|
|
|
|
'prohibits' => 'Das Feld :attribute verbietet das Vorhandensein von :other.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'regex' => ':attribute Format ist <strong>ungültig</strong>.',
|
|
|
|
|
'required' => ':attribute Feld ist <strong>erforderlich</strong>.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'required_array_keys' => ':attribute muss folgende Einträge enthalten: :values',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'required_if' => ':attribute wird benötigt wenn :other :value entspricht.',
|
|
|
|
|
'required_unless' => ':attribute wird benötigt es sei denn :other ist in :values.',
|
|
|
|
|
'required_with' => ':attribute wird benötigt wenn :values vorhanden ist.',
|
|
|
|
|
'required_with_all' => ':attribute wird benötigt wenn :values vorhanden ist.',
|
|
|
|
|
'required_without' => ':attribute wird benötigt wenn :values nicht vorhanden ist.',
|
2018-05-03 12:16:18 +03:00
|
|
|
|
'required_without_all' => ':attribute wird benötigt wenn keine :values vorhanden sind.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'same' => ':attribute und :other müssen übereinstimmen.',
|
|
|
|
|
'size' => [
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'array' => ':attribute muss :size Artikel enthalten.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'file' => ':attribute muss :size Kilobyte groß sein.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'numeric' => ':attribute muss :size groß sein.',
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'string' => ':attribute muss <strong>:size Zeichen</strong> haben.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'starts_with' => ':attribute muss mit einem der folgenden Werte beginnen: :values.',
|
|
|
|
|
'string' => ':attribute muss ein <strong>String</strong> sein.',
|
|
|
|
|
'timezone' => ':attribute muss eine valide Zeitzone sein.',
|
|
|
|
|
'unique' => ':attribute wurde bereits <strong>vergeben</strong>.',
|
|
|
|
|
'uploaded' => 'Das :attribute konnte <strong>nicht hochgeladen</strong> werden.',
|
|
|
|
|
'url' => ':attribute Format ist <strong>ungültig</strong>.',
|
|
|
|
|
'uuid' => ':attribute muss ein UUID sein.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Custom Validation Language Lines
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
|
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
|
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'custom' => [
|
|
|
|
|
'attribute-name' => [
|
2022-06-04 00:26:44 +00:00
|
|
|
|
'rule-name' => 'eigene Nachricht',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
2020-03-17 16:39:03 +03:00
|
|
|
|
'invalid_currency' => 'Das :attribute Kürzel ist ungültig.',
|
|
|
|
|
'invalid_amount' => 'Die Menge von :attribute ist ungültig.',
|
|
|
|
|
'invalid_extension' => 'Die Dateiendung ist ungültig.',
|
2022-11-28 14:31:01 +00:00
|
|
|
|
'invalid_dimension' => ':attribute Dimensionen dürfen maximal :width x :height px sein.',
|
2017-09-19 13:25:13 +02:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Custom Validation Attributes
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2022-06-04 00:26:44 +00:00
|
|
|
|
| The following language lines are used to swap our attribute placeholder
|
|
|
|
|
| with something more reader friendly such as "E-Mail Address" instead
|
|
|
|
|
| of "email". This simply helps us make our message more expressive.
|
2017-09-19 13:25:13 +02:00
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'attributes' => [],
|
|
|
|
|
|
|
|
|
|
];
|