feat: Translate validation language lines

branch: de-translation
This commit is contained in:
Tade Strehk 2024-01-11 01:30:00 +01:00
parent 4dbf92e518
commit 018d09503a

View file

@ -13,143 +13,143 @@ return [
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => 'Das Feld :attribute muss akzeptiert werden.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'Das Feld :attribute muss akzeptiert werden, wenn :other gleich :value ist.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => 'Das Feld :attribute muss eine gültige URL sein.',
'after' => 'The :attribute field must be a date after :date.', 'after' => 'Das Feld :attribute muss ein Datum nach dem :date sein.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => 'Das Feld :attribute muss ein Datum nach oder gleich dem :date sein.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => 'Das Feld :attribute darf nur Buchstaben enthalten.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => 'Das Feld :attribute darf nur Buchstaben, Zahlen, Striche und Unterstriche enthalten.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => 'Das Feld :attribute darf nur Buchstaben und Zahlen enthalten.',
'array' => 'The :attribute field must be an array.', 'array' => 'Das Feld :attribute muss ein Array sein.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'Das Feld :attribute darf nur einbyte alphanumerische Zeichen und Symbole enthalten.',
'before' => 'The :attribute field must be a date before :date.', 'before' => 'Das Feld :attribute muss ein Datum vor dem :date sein.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => 'Das Feld :attribute muss ein Datum vor oder gleich dem :date sein.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => 'Das Feld :attribute muss zwischen :min und :max Elemente haben.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => 'Das Feld :attribute muss zwischen :min und :max Kilobytes groß sein.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => 'Das Feld :attribute muss zwischen :min und :max liegen.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => 'Das Feld :attribute muss zwischen :min und :max Zeichen lang sein.',
], ],
'boolean' => 'The :attribute field must be true or false.', 'boolean' => 'Das Feld :attribute muss wahr oder falsch sein.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => 'Die Bestätigung für das Feld :attribute stimmt nicht überein.',
'current_password' => 'The password is incorrect.', 'current_password' => 'Das Passwort ist falsch.',
'date' => 'The :attribute field must be a valid date.', 'date' => 'Das Feld :attribute muss ein gültiges Datum sein.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => 'Das Feld :attribute muss ein Datum gleich dem :date sein.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => 'Das Feld :attribute muss dem Format :format entsprechen.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'Das Feld :attribute muss :decimal Dezimalstellen haben.',
'declined' => 'The :attribute field must be declined.', 'declined' => 'Das Feld :attribute muss abgelehnt werden.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'Das Feld :attribute muss abgelehnt werden, wenn :other gleich :value ist.',
'different' => 'The :attribute field and :other must be different.', 'different' => 'Das Feld :attribute und :other müssen unterschiedlich sein.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => 'Das Feld :attribute muss :digits Ziffern haben.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => 'Das Feld :attribute muss zwischen :min und :max Ziffern haben.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => 'Das Feld :attribute hat ungültige Bildabmessungen.',
'distinct' => 'The :attribute field has a duplicate value.', 'distinct' => 'Das Feld :attribute hat einen doppelten Wert.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => 'Das Feld :attribute darf nicht mit einem der folgenden enden: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => 'Das Feld :attribute darf nicht mit einem der folgenden beginnen: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => 'Das Feld :attribute muss eine gültige E-Mail-Adresse sein.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => 'Das Feld :attribute muss mit einem der folgenden enden: :values.',
'enum' => 'The selected :attribute is invalid.', 'enum' => 'Das ausgewählte :attribute ist ungültig.',
'exists' => 'The selected :attribute is invalid.', 'exists' => 'Das ausgewählte :attribute ist ungültig.',
'file' => 'The :attribute field must be a file.', 'file' => 'Das Feld :attribute muss eine Datei sein.',
'filled' => 'The :attribute field must have a value.', 'filled' => 'Das Feld :attribute muss einen Wert haben.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => 'Das Feld :attribute muss mehr als :value Elemente haben.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => 'Das Feld :attribute muss größer als :value Kilobytes sein.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => 'Das Feld :attribute muss größer als :value sein.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => 'Das Feld :attribute muss mehr als :value Zeichen haben.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => 'Das Feld :attribute muss :value oder mehr Elemente haben.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => 'Das Feld :attribute muss gleich oder größer als :value Kilobytes sein.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => 'Das Feld :attribute muss gleich oder größer als :value sein.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => 'Das Feld :attribute muss gleich oder mehr als :value Zeichen haben.',
], ],
'image' => 'The :attribute field must be an image.', 'image' => 'Das Feld :attribute muss ein Bild sein.',
'in' => 'The selected :attribute is invalid.', 'in' => 'Das ausgewählte :attribute ist ungültig.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'Das Feld :attribute muss in :other vorhanden sein.',
'integer' => 'The :attribute field must be an integer.', 'integer' => 'Das Feld :attribute muss eine Ganzzahl sein.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => 'Das Feld :attribute muss eine gültige IP-Adresse sein.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => 'Das Feld :attribute muss eine gültige IPv4-Adresse sein.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => 'Das Feld :attribute muss eine gültige IPv6-Adresse sein.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => 'Das Feld :attribute muss ein gültiger JSON-String sein.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'Das Feld :attribute muss in Kleinbuchstaben sein.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => 'Das Feld :attribute muss weniger als :value Elemente haben.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => 'Das Feld :attribute muss kleiner als :value Kilobytes sein.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => 'Das Feld :attribute muss kleiner als :value sein.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => 'Das Feld :attribute muss weniger als :value Zeichen haben.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => 'Das Feld :attribute darf nicht mehr als :value Elemente haben.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => 'Das Feld :attribute muss kleiner oder gleich :value Kilobyte sein.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => 'Das Feld :attribute muss kleiner oder gleich :value sein.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => 'Das Feld :attribute muss kleiner oder gleich :value Zeichen sein.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => 'Das Feld :attribute muss eine gültige MAC-Adresse sein.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => 'Das Feld :attribute darf nicht mehr als :max Elemente haben.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => 'Das Feld :attribute darf nicht größer als :max Kilobyte sein.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => 'Das Feld :attribute darf nicht größer als :max sein.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => 'Das Feld :attribute darf nicht mehr als :max Zeichen haben.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => 'Das Feld :attribute darf nicht mehr als :max Ziffern haben.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => 'Das Feld :attribute muss eine Datei vom Typ: :values sein.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => 'Das Feld :attribute muss eine Datei vom Typ: :values sein.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => 'Das Feld :attribute muss mindestens :min Elemente haben.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => 'Das Feld :attribute muss mindestens :min Kilobyte sein.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => 'Das Feld :attribute muss mindestens :min sein.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => 'Das Feld :attribute muss mindestens :min Zeichen haben.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => 'Das Feld :attribute muss mindestens :min Ziffern haben.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'Das Feld :attribute muss fehlen.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'Das Feld :attribute muss fehlen, wenn :other :value ist.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'Das Feld :attribute muss fehlen, es sei denn, :other ist :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'Das Feld :attribute muss fehlen, wenn :values vorhanden ist.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'Das Feld :attribute muss fehlen, wenn :values vorhanden sind.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => 'Das Feld :attribute muss ein Vielfaches von :value sein.',
'not_in' => 'The selected :attribute is invalid.', 'not_in' => 'Das ausgewählte :attribute ist ungültig.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => 'Das Format des Feldes :attribute ist ungültig.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => 'Das Feld :attribute muss eine Zahl sein.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => 'Das Feld :attribute muss mindestens einen Buchstaben enthalten.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => 'Das Feld :attribute muss mindestens einen Groß- und einen Kleinbuchstaben enthalten.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => 'Das Feld :attribute muss mindestens eine Zahl enthalten.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => 'Das Feld :attribute muss mindestens ein Symbol enthalten.',
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', 'uncompromised' => 'Das angegebene :attribute ist in einem Datenleck aufgetaucht. Bitte wählen Sie ein anderes :attribute.',
], ],
'present' => 'The :attribute field must be present.', 'present' => 'Das Feld :attribute muss vorhanden sein.',
'prohibited' => 'The :attribute field is prohibited.', 'prohibited' => 'Das Feld :attribute ist verboten.',
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 'prohibited_if' => 'Das Feld :attribute ist verboten, wenn :other :value ist.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'prohibited_unless' => 'Das Feld :attribute ist verboten, es sei denn :other befindet sich in :values.',
'prohibits' => 'The :attribute field prohibits :other from being present.', 'prohibits' => 'Das Feld :attribute verbietet das Vorhandensein von :other.',
'regex' => 'The :attribute field format is invalid.', 'regex' => 'Das Format des Feldes :attribute ist ungültig.',
'required' => 'The :attribute field is required.', 'required' => 'Das Feld :attribute ist erforderlich.',
'required_array_keys' => 'The :attribute field must contain entries for: :values.', 'required_array_keys' => 'Das Feld :attribute muss Einträge für: :values enthalten.',
'required_if' => 'The :attribute field is required when :other is :value.', 'required_if' => 'Das Feld :attribute ist erforderlich, wenn :other :value ist.',
'required_if_accepted' => 'The :attribute field is required when :other is accepted.', 'required_if_accepted' => 'Das Feld :attribute ist erforderlich, wenn :other akzeptiert ist.',
'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_unless' => 'Das Feld :attribute ist erforderlich, es sei denn :other befindet sich in :values.',
'required_with' => 'The :attribute field is required when :values is present.', 'required_with' => 'Das Feld :attribute ist erforderlich, wenn :values vorhanden ist.',
'required_with_all' => 'The :attribute field is required when :values are present.', 'required_with_all' => 'Das Feld :attribute ist erforderlich, wenn :values vorhanden sind.',
'required_without' => 'The :attribute field is required when :values is not present.', 'required_without' => 'Das Feld :attribute ist erforderlich, wenn :values nicht vorhanden ist.',
'required_without_all' => 'The :attribute field is required when none of :values are present.', 'required_without_all' => 'Das Feld :attribute ist erforderlich, wenn keines von :values vorhanden ist.',
'same' => 'The :attribute field must match :other.', 'same' => 'Das Feld :attribute muss mit :other übereinstimmen.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => 'Das Feld :attribute muss :size Elemente enthalten.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => 'Das Feld :attribute muss :size Kilobyte sein.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => 'Das Feld :attribute muss :size sein.',
'string' => 'The :attribute field must be :size characters.', 'string' => 'Das Feld :attribute muss :size Zeichen sein.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => 'Das Feld :attribute muss mit einem der folgenden beginnen: :values.',
'string' => 'The :attribute field must be a string.', 'string' => 'Das Feld :attribute muss ein String sein.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => 'Das Feld :attribute muss eine gültige Zeitzone sein.',
'unique' => 'The :attribute has already been taken.', 'unique' => 'Das :attribute wurde bereits vergeben.',
'uploaded' => 'The :attribute failed to upload.', 'uploaded' => 'Das Hochladen von :attribute ist fehlgeschlagen.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'Das Feld :attribute muss in Großbuchstaben sein.',
'url' => 'The :attribute field must be a valid URL.', 'url' => 'Das Feld :attribute muss eine gültige URL sein.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'Das Feld :attribute muss eine gültige ULID sein.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => 'Das Feld :attribute muss eine gültige UUID sein.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------