2022-08-08 15:29:28 -07: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
| such as the size rules . Feel free to tweak each of these messages .
|
*/
2024-07-23 10:14:19 -07:00
'accepted' => 'Das Feld :attribute muss akzeptiert werden.' ,
'accepted_if' => 'Das Feld :attribute muss akzeptiert werden, wenn :other :value ist.' ,
'active_url' => 'Das Feld :attribute muss eine gültige URL sein.' ,
'after' => 'Das Feld :attribute muss ein Datum nach dem :date sein.' ,
'after_or_equal' => 'Das Feld :attribute muss ein Datum sein, das nach dem :date liegt oder diesem entspricht.' ,
'alpha' => 'Das Feld :attribute darf nur Buchstaben enthalten.' ,
'alpha_dash' => 'Das Feld :attribute darf nur Buchstaben, Zahlen, Bindestriche und Unterstriche enthalten.' ,
'alpha_num' => 'Das Feld :attribute darf nur Buchstaben und Zahlen enthalten.' ,
'array' => 'Das Feld :attribute muss ein Array sein.' ,
'ascii' => 'Das Feld :attribute darf nur alphanumerische Zeichen und Symbole enthalten.' ,
'before' => 'Das Feld :attribute muss ein Datum vor dem :date sein.' ,
'before_or_equal' => 'Das Feld :attribute muss ein Datum sein, das vor dem :date liegt oder diesem entspricht.' ,
2024-07-19 09:47:22 -07:00
'between' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss zwischen :min und :max Elemente haben.' ,
'file' => 'Das Feld :attribute muss zwischen :min und :max Kilobytes groß sein.' ,
'numeric' => 'Das Feld :attribute muss zwischen :min und :max liegen.' ,
'string' => 'Das Feld :attribute muss zwischen :min und :max Zeichen lang sein.' ,
2022-08-08 15:29:28 -07:00
],
2024-07-23 10:14:19 -07:00
'boolean' => 'Das Feld :attribute muss wahr oder falsch sein.' ,
'can' => 'Das Feld :attribute enthält einen nicht autorisierten Wert.' ,
'confirmed' => 'Die Bestätigung für das Feld :attribute stimmt nicht überein.' ,
'contains' => 'Im Feld :attribute fehlt ein erforderlicher Wert.' ,
'current_password' => 'Das Passwort ist falsch.' ,
'date' => 'Das Feld :attribute muss ein gültiges Datum sein.' ,
'date_equals' => 'Das Feld :attribute muss ein Datum sein, das dem :date entspricht.' ,
'date_format' => 'Das Feld :attribute muss dem Format :format entsprechen.' ,
'decimal' => 'Das Feld :attribute muss :decimal Dezimalstellen haben.' ,
'declined' => 'Das Feld :attribute muss abgelehnt werden.' ,
'declined_if' => 'Das Feld :attribute muss abgelehnt werden, wenn :other den Wert :value hat.' ,
'different' => 'Das Feld :attribute und :other müssen sich unterscheiden.' ,
'digits' => 'Das Feld :attribute muss :digits Ziffern enthalten.' ,
'digits_between' => 'Das Feld :attribute muss zwischen :min und :max Ziffern haben.' ,
'dimensions' => 'Das Feld :attribute hat ungültige Bildabmessungen.' ,
2024-07-19 09:47:22 -07:00
'distinct' => ':attribute hat einen doppelten Wert.' ,
2024-07-23 10:14:19 -07:00
'doesnt_end_with' => 'Das Feld :attribute darf nicht mit einem der folgenden Werte enden: :values.' ,
'doesnt_start_with' => 'Das Feld :attribute darf nicht mit einem der folgenden Werte beginnen: :values.' ,
'email' => 'Das Feld :attribute muss eine gültige E-Mail-Adresse sein.' ,
'ends_with' => 'Das Feld :attribute muss mit einem der folgenden Werte enden: :values.' ,
2024-07-19 09:47:22 -07:00
'enum' => 'Auswahl :attribute ist ungültig.' ,
'exists' => 'Auswahl :attribute ist ungültig.' ,
2024-07-23 10:14:19 -07:00
'extensions' => 'Das Feld :attribute muss eine der folgenden Erweiterungen haben: :values.' ,
'file' => 'Das Feld :attribute muss eine Datei sein.' ,
2024-07-19 09:47:22 -07:00
'filled' => ':attribute muss einen Wert haben.' ,
'gt' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss mehr als :value Elemente haben.' ,
'file' => 'Das Feld :attribute muss größer als :value Kilobytes sein.' ,
'numeric' => 'Das Feld :attribute muss größer als :value sein.' ,
'string' => 'Das Feld :attribute muss mehr als :value Zeichen enthalten.' ,
2024-07-19 09:47:22 -07:00
],
'gte' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss :value Elemente oder mehr haben.' ,
'file' => 'Das Feld :attribute muss größer oder gleich :value Kilobytes sein.' ,
'numeric' => 'Das Feld :attribute muss größer oder gleich :value sein.' ,
'string' => 'Das Feld :attribute muss größer oder gleich :value Zeichen sein.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'hex_color' => 'Das Feld :attribute muss eine gültige hexadezimale Farbe sein.' ,
'image' => 'Das Feld :attribute muss ein Bild sein.' ,
2023-02-21 03:54:55 -08:00
'import_field_empty' => ':fieldname darf nicht leer sein.' ,
2024-07-19 09:47:22 -07:00
'in' => 'Auswahl :attribute ist ungültig.' ,
2024-07-23 10:14:19 -07:00
'in_array' => 'Das Feld :attribute muss in :other existieren.' ,
'integer' => 'Das Feld :attribute muss eine Ganzzahl sein.' ,
'ip' => 'Das Feld :attribute muss eine gültige IP-Adresse sein.' ,
'ipv4' => 'Das Feld :attribute muss eine gültige IPv4-Adresse sein.' ,
'ipv6' => 'Das Feld :attribute muss eine gültige IPv6-Adresse sein.' ,
'json' => 'Das Feld :attribute muss eine gültige JSON-Zeichenkette sein.' ,
'list' => 'Das Feld :attribute muss eine Liste sein.' ,
'lowercase' => 'Das Feld :attribute muss in Kleinbuchstaben sein.' ,
2024-07-19 09:47:22 -07:00
'lt' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss weniger als :value Elemente haben.' ,
'file' => 'Das Feld :attribute muss kleiner als :value Kilobytes sein.' ,
'numeric' => 'Das Feld :attribute muss kleiner als :value sein.' ,
'string' => 'Das Feld :attribute muss weniger als :value Zeichen haben.' ,
2022-08-08 15:29:28 -07:00
],
2024-07-19 09:47:22 -07:00
'lte' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute darf nicht mehr als :value Elemente haben.' ,
'file' => 'Das Feld :attribute muss kleiner oder gleich :value Kilobytes sein.' ,
'numeric' => 'Das Feld :attribute muss kleiner oder gleich :value sein.' ,
'string' => 'Das Feld :attribute muss weniger oder gleich :value Zeichen haben.' ,
2022-08-08 15:29:28 -07:00
],
2024-07-23 10:14:19 -07:00
'mac_address' => 'Das Feld :attribute muss eine gültige MAC-Adresse sein.' ,
2024-07-19 09:47:22 -07:00
'max' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute darf nicht mehr als :max Elemente haben.' ,
'file' => 'Das Feld :attribute darf nicht größer als :max Kilobytes sein.' ,
'numeric' => 'Das Feld :attribute darf nicht größer als :max sein.' ,
'string' => 'Das Feld :attribute darf nicht mehr als :max Zeichen haben.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'max_digits' => 'Das Feld :attribute darf nicht mehr als :max Ziffern haben.' ,
'mimes' => 'Das Feld :attribute muss eine Datei vom Typ :values sein.' ,
'mimetypes' => 'Das Feld :attribute muss eine Datei vom Typ :values sein.' ,
2024-07-19 09:47:22 -07:00
'min' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss mindestens :min Elemente haben.' ,
'file' => 'Das Feld :attribute muss mindestens :min Kilobytes groß sein.' ,
'numeric' => 'Das Feld :attribute muss mindestens :min sein.' ,
'string' => 'Das Feld :attribute muss mindestens :min Zeichen haben.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'min_digits' => 'Das Feld :attribute muss mindestens :min Ziffern haben.' ,
'missing' => 'Das Feld :attribute muss fehlen.' ,
'missing_if' => 'Das Feld :attribute muss fehlen, wenn :other :value ist.' ,
'missing_unless' => 'Das Feld :attribute muss fehlen, es sei denn :other ist :value.' ,
'missing_with' => 'Das Feld :attribute muss fehlen, wenn :values vorhanden ist.' ,
'missing_with_all' => 'Das Feld :attribute muss fehlen, wenn :values vorhanden sind.' ,
'multiple_of' => 'Das Feld :attribute muss ein Vielfaches von :value sein.' ,
2024-07-19 09:47:22 -07:00
'not_in' => 'Auswahl :attribute ist ungültig.' ,
2024-07-23 10:14:19 -07:00
'not_regex' => 'Das Format des Feldes :attribute ist ungültig.' ,
'numeric' => 'Das Feld :attribute muss eine Zahl sein.' ,
2024-07-19 09:47:22 -07:00
'password' => [
2024-07-23 10:14:19 -07:00
'letters' => 'Das Feld :attribute muss mindestens einen Buchstaben enthalten.' ,
'mixed' => 'Das Feld :attribute muss mindestens einen Groß- und einen Kleinbuchstaben enthalten.' ,
'numbers' => 'Das Feld :attribute muss mindestens eine Zahl enthalten.' ,
'symbols' => 'Das Feld :attribute muss mindestens ein Symbol enthalten.' ,
'uncompromised' => 'Das angegebene :attribute ist in einem Datenleck aufgetaucht. Bitte wählen Sie ein anderes :attribute.' ,
2024-07-19 09:47:22 -07:00
],
2024-08-15 04:21:06 -07:00
'percent' => 'Bei einer prozentualen Abschreibung muss der Mindestabschreibungswert zwischen 0 und 100 liegen.' ,
2024-07-19 09:47:22 -07:00
'present' => ':attribute muss vorhanden sein.' ,
2024-07-23 10:14:19 -07:00
'present_if' => 'Das Feld :attribute muss vorhanden sein, wenn :other :value ist.' ,
'present_unless' => 'Das Feld :attribute muss vorhanden sein, es sei denn, :other ist :value.' ,
'present_with' => 'Das Feld :attribute muss vorhanden sein, wenn :values vorhanden ist.' ,
'present_with_all' => 'Das Feld :attribute muss vorhanden sein, wenn :values vorhanden sind.' ,
'prohibited' => 'Das Feld :attribute ist verboten.' ,
'prohibited_if' => 'Das Feld :attribute ist verboten, wenn :other :value ist.' ,
'prohibited_unless' => 'Das Feld :attribute ist verboten, es sei denn, :other befindet sich in :values.' ,
'prohibits' => 'Das Feld :attribute verhindert, dass :other vorhanden ist.' ,
'regex' => 'Das Format des Feldes :attribute ist ungültig.' ,
2024-07-19 09:47:22 -07:00
'required' => ':attribute Feld muss ausgefüllt sein.' ,
2024-07-23 10:14:19 -07:00
'required_array_keys' => 'Das Feld :attribute muss Einträge für folgende Werte enthalten: :values.' ,
2024-07-19 09:47:22 -07:00
'required_if' => ':attribute wird benötigt, wenn :other :value entspricht.' ,
2024-07-23 10:14:19 -07:00
'required_if_accepted' => 'Das Feld :attribute ist erforderlich, wenn :other akzeptiert wird.' ,
'required_if_declined' => 'Das Feld :attribute ist erforderlich, wenn :other abgelehnt wird.' ,
2024-07-19 09:47:22 -07:00
'required_unless' => ':attribute ist erforderlich, es sei denn :other ist in :values.' ,
'required_with' => ':attribute wird benötigt wenn :value ausgewählt ist.' ,
2024-07-23 10:14:19 -07:00
'required_with_all' => 'Das Feld :attribute ist erforderlich, wenn :values vorhanden sind.' ,
2024-07-19 09:47:22 -07:00
'required_without' => ':attribute wird benötigt wenn :value nicht ausgewählt ist.' ,
2022-10-04 17:48:43 -07:00
'required_without_all' => 'Das: Attributfeld ist erforderlich, wenn keine der folgenden Werte vorhanden sind.' ,
2024-07-23 10:14:19 -07:00
'same' => 'Das Feld :attribute muss mit :other übereinstimmen.' ,
2024-07-19 09:47:22 -07:00
'size' => [
2024-07-23 10:14:19 -07:00
'array' => 'Das Feld :attribute muss :size Elemente enthalten.' ,
'file' => 'Das Feld :attribute muss :size Kilobytes groß sein.' ,
'numeric' => 'Das Feld :attribute muss :size sein.' ,
'string' => 'Das Feld :attribute muss :size Zeichen enthalten.' ,
2022-08-08 15:29:28 -07:00
],
2024-07-23 10:14:19 -07:00
'starts_with' => 'Das Feld :attribute muss mit einem der folgenden Werte beginnen: :values.' ,
2022-08-08 15:29:28 -07:00
'string' => 'Das Attribut muss eine Zeichenfolge sein.' ,
2023-12-19 09:23:16 -08:00
'two_column_unique_undeleted' => ':attribute muss in :table1 und :table2 einzigartig sein. ' ,
2022-08-08 15:29:28 -07:00
'unique_undeleted' => 'Die Variable :attribute muss eindeutig sein.' ,
'non_circular' => 'Das :attribute darf keinen Zirkelbezug ergeben.' ,
2024-01-24 07:29:39 -08:00
'not_array' => ':attribute darf kein Array sein.' ,
2022-08-08 15:29:28 -07:00
'disallow_same_pwd_as_user_fields' => 'Das Passwort muss sich vom Nutzernamen unterscheiden.' ,
'letters' => 'Das Passwort muss mindestens einen Buchstaben beinhalten.' ,
'numbers' => 'Das Passwort muss mindestens eine Zahl beinhalten.' ,
'case_diff' => 'Das Passwort muss Groß- und Kleinschreibung beinhalten.' ,
'symbols' => 'Das Passwort muss Sonderzeichen beinhalten.' ,
2024-07-23 10:14:19 -07:00
'timezone' => 'Das Feld :attribute muss eine gültige Zeitzone sein.' ,
2024-07-19 09:47:22 -07:00
'unique' => ':attribute ist bereits vergeben.' ,
'uploaded' => ':attribute konnte nicht hochgeladen werden.' ,
2024-07-23 10:14:19 -07:00
'uppercase' => 'Das Feld :attribute muss in Großbuchstaben sein.' ,
'url' => 'Das Feld :attribute muss eine gültige URL sein.' ,
'ulid' => 'Das Feld :attribute muss eine gültige ULID sein.' ,
'uuid' => 'Das Feld :attribute muss eine gültige UUID sein.' ,
2022-08-08 15:29:28 -07:00
2024-10-28 15:04:35 -07:00
2022-08-08 15:29:28 -07: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' => [
'alpha_space' => 'Das :attribute Feld enthält ein nicht erlaubtes Zeichen.' ,
'email_array' => 'Eine oder mehrere Email Adressen sind ungültig.' ,
'hashed_pass' => 'Ihr derzeitiges Passwort ist nicht korrekt' ,
'dumbpwd' => 'Das Passwort ist zu gebräuchlich.' ,
2022-10-04 17:48:43 -07:00
'statuslabel_type' => 'Du musst einen gültigen Statuslabel-Typ auswählen' ,
2024-08-15 04:21:06 -07:00
'custom_field_not_found' => 'Dieses Feld scheint nicht zu existieren. Bitte überprüfe deine benutzerdefinierten Feldnamen noch einmal.' ,
'custom_field_not_found_on_model' => 'Dieses Feld scheint vorhanden zu sein, ist aber im Feldsatz dieses Asset-Modells nicht verfügbar.' ,
2023-02-21 03:54:55 -08:00
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
2024-10-28 15:04:35 -07:00
// We use this because the default error message for date_format reflects php Y-m-d, which non-PHP
2024-07-19 09:47:22 -07:00
// people won't know how to format.
2023-04-06 19:19:24 -07:00
'purchase_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
'last_audit_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT hh:mm:ss sein' ,
'expiration_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
'termination_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
'expected_checkin.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
'start_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
'end_date.date_format' => ':attribute muss ein gültiges Datum im Format JJJJ-MM-TT sein' ,
2024-07-19 09:47:22 -07:00
'checkboxes' => ':attribute enthält ungültige Optionen.' ,
'radio_buttons' => ':attribute ist ungültig.' ,
'invalid_value_in_field' => 'Ungültiger Wert in diesem Feld enthalten' ,
2024-10-28 15:04:35 -07:00
'ldap_username_field' => [
'not_in' => '<code>sAMAccountName</code> (Groß- und Kleinschreibung) funktioniert wahrscheinlich nicht. Du solltest stattdessen <code>samaccountname</code> (Kleinschreibung) verwenden.'
],
'ldap_auth_filter_query' => [ 'not_in' => '<code>uid=samaccountname</code> ist wahrscheinlich kein gültiger Authentifizierungsfilter. Du möchtest wahrscheinlich <code>uid=</code> ' ],
'ldap_filter' => [ 'regex' => 'Dieser Wert sollte wahrscheinlich nicht in Klammern gesetzt werden.' ],
2024-07-19 09:47:22 -07:00
],
2022-08-08 15:29:28 -07:00
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place - holders
| with something more reader friendly such as E - Mail Address instead
| of " email " . This simply helps us make messages a little cleaner .
|
*/
'attributes' => [],
2024-03-27 11:59:28 -07:00
/*
|--------------------------------------------------------------------------
2024-07-19 09:47:22 -07:00
| Generic Validation Messages - we use these in the jquery validation where we don ' t have
| access to the : attribute
2024-03-27 11:59:28 -07:00
|--------------------------------------------------------------------------
*/
2024-07-19 09:47:22 -07:00
'generic' => [
'invalid_value_in_field' => 'Ungültiger Wert in diesem Feld enthalten' ,
2024-07-23 10:14:19 -07:00
'required' => 'Dieses Feld ist erforderlich' ,
'email' => 'Bitte geben Sie eine gültige E-Mail-Adresse ein' ,
2024-07-19 09:47:22 -07:00
],
2022-08-08 15:29:28 -07:00
];