new crowdin translations
This commit is contained in:
@ -14,6 +14,7 @@ return [
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute muss akzeptiert werden.',
|
||||
'accepted_if' => ':attribute muss akzeptiert werden, wenn :other :value ist.',
|
||||
'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.',
|
||||
@ -24,10 +25,10 @@ return [
|
||||
'before' => ':attribute muss ein Datum vor dem :date sein.',
|
||||
'before_or_equal' => ':attribute muss ein Datum vor oder gleich dem :date sein.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||
'file' => ':attribute darf nur zwischen :min und :max kilobytes groß sein.',
|
||||
'string' => ':attribute muss mindestens :min und darf maximal :max Zeichen enthalten.',
|
||||
'array' => ':attribute soll mindestens :min und darf maximal :max Stellen haben.',
|
||||
'file' => ':attribute darf nur zwischen :min und :max kilobytes groß sein.',
|
||||
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||
'string' => ':attribute muss mindestens :min und darf maximal :max Zeichen enthalten.',
|
||||
],
|
||||
'boolean' => ':attribute muss Wahr oder Falsch sein.',
|
||||
'confirmed' => ':attribute Bestätigung stimmt nicht überein.',
|
||||
@ -35,27 +36,31 @@ return [
|
||||
'date' => ':attribute ist kein gültiges Datum.',
|
||||
'date_equals' => ':attribute muss ein Datum gleich :date sein.',
|
||||
'date_format' => ':attribute passt nicht zur :format Formatierung.',
|
||||
'declined' => ':attribute muss abgelehnt werden.',
|
||||
'declined_if' => ':attribute muss abgelehnt werden, wenn :other :value ist.',
|
||||
'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.',
|
||||
'doesnt_start_with' => ':attribute darf nicht mit einem der folgenden Werte beginnen: :values',
|
||||
'email' => ':attribute Attribut muss eine gültige <strong>E-Mail-Adresse</strong> sein.',
|
||||
'ends_with' => ':attribute muss mit einem der folgenden Zeichen enden: :values',
|
||||
'enum' => 'Das ausgewählte :attribute ist ungültig.',
|
||||
'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' => [
|
||||
'numeric' => ':attribute muss größer als :value sein.',
|
||||
'file' => ':attribute muss größer als :value Kilobytes sein.',
|
||||
'string' => ':attribute muss länger als :value Zeichen sein.',
|
||||
'array' => ':attribute muss mehr als :value Elemente haben.',
|
||||
'file' => ':attribute muss größer als :value Kilobytes sein.',
|
||||
'numeric' => ':attribute muss größer als :value sein.',
|
||||
'string' => ':attribute muss länger als :value Zeichen sein.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => ':attribute muss größer oder gleich :value sein.',
|
||||
'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
|
||||
'string' => ':attribute muss mindestens :value Zeichen lang sein.',
|
||||
'array' => ':attribute muss mindestens :value Elemente haben.',
|
||||
'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':attribute muss größer oder gleich :value sein.',
|
||||
'string' => ':attribute muss mindestens :value Zeichen lang sein.',
|
||||
],
|
||||
'image' => ':attribute muss ein <strong>Bild</strong> sein.',
|
||||
'in' => 'Das ausgewählte :attribute ist ungültig.',
|
||||
@ -66,55 +71,64 @@ return [
|
||||
'ipv6' => ':attribute muss eine gültige IPv6 Adresse sein.',
|
||||
'json' => ':attribute muss eine gültiger JSON-String sein.',
|
||||
'lt' => [
|
||||
'numeric' => ':attribute muss kleiner als :value sein.',
|
||||
'file' => ':attribute muss kleiner als :value Kilobytes sein.',
|
||||
'string' => ':attribute muss kürzer als :value Zeichen sein.',
|
||||
'array' => ':attribute muss weniger als :value Elemente haben.',
|
||||
'file' => ':attribute muss kleiner als :value Kilobytes sein.',
|
||||
'numeric' => ':attribute muss kleiner als :value sein.',
|
||||
'string' => ':attribute muss kürzer als :value Zeichen sein.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
|
||||
'array' => ':attribute darf nicht mehr als :value-Elemente haben.',
|
||||
'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
|
||||
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
|
||||
'string' => ':attribute muss kleiner oder gleich :value Zeichen sein.
|
||||
',
|
||||
'array' => ':attribute darf nicht mehr als :value-Elemente haben.',
|
||||
],
|
||||
'mac_address' => ':attribute muss eine gültige MAC-Adresse sein.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute darf nicht größer als :max sein.',
|
||||
'file' => ':attribute darf nicht größer als :max Kilobyte sein.',
|
||||
'string' => ':attribute darf nicht größer als :max Zeichen sein.',
|
||||
'array' => ':attribute darf nicht mehr als :max Werte haben.',
|
||||
'file' => ':attribute darf nicht größer als :max Kilobyte sein.',
|
||||
'numeric' => ':attribute darf nicht größer als :max sein.',
|
||||
'string' => ':attribute darf nicht größer als :max Zeichen sein.',
|
||||
],
|
||||
'mimes' => ':attribute muss eine Datei des Typs :values sein.',
|
||||
'mimetypes' => ':attribute muss eine Datei des Typs :values sein.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute muss mindestens :min sein.',
|
||||
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
||||
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
||||
'array' => ':attribute muss mindestens :min Artikel haben.',
|
||||
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
||||
'numeric' => ':attribute muss mindestens :min sein.',
|
||||
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
||||
],
|
||||
'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.',
|
||||
'password' => 'Das Passwort ist falsch.',
|
||||
'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.',
|
||||
],
|
||||
'present' => ':attribute Feld muss <strong>vorhanden sein</strong>.',
|
||||
'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.',
|
||||
'regex' => ':attribute Format ist <strong>ungültig</strong>.',
|
||||
'required' => ':attribute Feld ist <strong>erforderlich</strong>.',
|
||||
'required_array_keys' => ':attribute muss folgende Einträge enthalten: :values',
|
||||
'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.',
|
||||
'required_without_all' => ':attribute wird benötigt wenn keine :values vorhanden sind.',
|
||||
'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.',
|
||||
'same' => ':attribute und :other müssen übereinstimmen.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute muss :size groß sein.',
|
||||
'file' => ':attribute muss :size Kilobyte groß sein.',
|
||||
'string' => ':attribute muss <strong>:size Zeichen</strong> haben.',
|
||||
'array' => ':attribute muss :size Artikel enthalten.',
|
||||
'file' => ':attribute muss :size Kilobyte groß sein.',
|
||||
'numeric' => ':attribute muss :size groß sein.',
|
||||
'string' => ':attribute muss <strong>:size Zeichen</strong> haben.',
|
||||
],
|
||||
'starts_with' => ':attribute muss mit einem der folgenden Werte beginnen: :values.',
|
||||
'string' => ':attribute muss ein <strong>String</strong> sein.',
|
||||
@ -142,6 +156,7 @@ return [
|
||||
'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.',
|
||||
'invalid_dimension' => ':attribute Dimensionen dürfen maximal :width x :height px sein.',
|
||||
],
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user