Stand: SMTP-Test, Admin-Mail-Tab, Notifiable-Fix, Lazy-Quill
- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
130
lang/de/validation.php
Executable file
130
lang/de/validation.php
Executable file
@@ -0,0 +1,130 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'accepted' => ':attribute muss akzeptiert werden.',
|
||||
'active_url' => ':attribute ist keine gültige URL.',
|
||||
'after' => ':attribute muss ein Datum nach :date sein.',
|
||||
'after_or_equal' => ':attribute muss ein Datum nach oder gleich :date sein.',
|
||||
'alpha' => ':attribute darf nur Buchstaben enthalten.',
|
||||
'alpha_dash' => ':attribute darf nur Buchstaben, Zahlen, Bindestriche und Unterstriche enthalten.',
|
||||
'alpha_num' => ':attribute darf nur Buchstaben und Zahlen enthalten.',
|
||||
'array' => ':attribute muss ein Array sein.',
|
||||
'before' => ':attribute muss ein Datum vor :date sein.',
|
||||
'before_or_equal' => ':attribute muss ein Datum vor oder gleich :date sein.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||
'file' => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
|
||||
'string' => ':attribute muss zwischen :min und :max Zeichen lang sein.',
|
||||
'array' => ':attribute muss zwischen :min und :max Elemente haben.',
|
||||
],
|
||||
'boolean' => ':attribute muss wahr oder falsch sein.',
|
||||
'confirmed' => ':attribute Bestätigung stimmt nicht überein.',
|
||||
'date' => ':attribute ist kein gültiges Datum.',
|
||||
'date_equals' => ':attribute muss ein Datum gleich :date sein.',
|
||||
'date_format' => ':attribute entspricht nicht dem Format :format.',
|
||||
'different' => ':attribute und :other müssen sich unterscheiden.',
|
||||
'digits' => ':attribute muss :digits Stellen haben.',
|
||||
'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.',
|
||||
'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
|
||||
'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
|
||||
'file' => ':attribute muss eine Datei sein.',
|
||||
'filled' => ':attribute muss einen Wert haben.',
|
||||
'gt' => [
|
||||
'numeric' => ':attribute muss größer als :value sein.',
|
||||
'file' => ':attribute muss größer als :value Kilobytes sein.',
|
||||
'string' => ':attribute muss mehr als :value Zeichen haben.',
|
||||
'array' => ':attribute muss mehr als :value Elemente haben.',
|
||||
],
|
||||
'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 haben.',
|
||||
'array' => ':attribute muss mindestens :value Elemente haben.',
|
||||
],
|
||||
'image' => ':attribute muss ein Bild sein.',
|
||||
'in' => 'Der gewählte Wert für :attribute ist ungültig.',
|
||||
'in_array' => ':attribute kommt nicht in :other vor.',
|
||||
'integer' => ':attribute muss eine ganze Zahl sein.',
|
||||
'ip' => ':attribute muss eine gültige IP-Adresse sein.',
|
||||
'json' => ':attribute muss ein gültiger JSON-String sein.',
|
||||
'lt' => [
|
||||
'numeric' => ':attribute muss kleiner als :value sein.',
|
||||
'file' => ':attribute muss kleiner als :value Kilobytes sein.',
|
||||
'string' => ':attribute muss weniger als :value Zeichen haben.',
|
||||
'array' => ':attribute muss weniger als :value Elemente haben.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
|
||||
'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
|
||||
'string' => ':attribute darf höchstens :value Zeichen haben.',
|
||||
'array' => ':attribute darf höchstens :value Elemente haben.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => ':attribute darf nicht größer als :max sein.',
|
||||
'file' => ':attribute darf nicht größer als :max Kilobytes sein.',
|
||||
'string' => ':attribute darf nicht mehr als :max Zeichen haben.',
|
||||
'array' => ':attribute darf nicht mehr als :max Elemente haben.',
|
||||
],
|
||||
'min' => [
|
||||
'numeric' => ':attribute muss mindestens :min sein.',
|
||||
'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
|
||||
'string' => ':attribute muss mindestens :min Zeichen haben.',
|
||||
'array' => ':attribute muss mindestens :min Elemente haben.',
|
||||
],
|
||||
'not_in' => 'Der gewählte Wert für :attribute ist ungültig.',
|
||||
'numeric' => ':attribute muss eine Zahl sein.',
|
||||
'present' => ':attribute muss vorhanden sein.',
|
||||
'regex' => ':attribute hat ein ungültiges Format.',
|
||||
'required' => ':attribute ist erforderlich.',
|
||||
'required_if' => ':attribute ist erforderlich, wenn :other :value ist.',
|
||||
'required_unless' => ':attribute ist erforderlich, es sei denn :other ist :values.',
|
||||
'required_with' => ':attribute ist erforderlich, wenn :values vorhanden ist.',
|
||||
'required_with_all' => ':attribute ist erforderlich, wenn :values vorhanden sind.',
|
||||
'required_without' => ':attribute ist erforderlich, wenn :values nicht vorhanden ist.',
|
||||
'required_without_all' => ':attribute ist erforderlich, wenn keiner der Werte :values vorhanden ist.',
|
||||
'same' => ':attribute und :other müssen übereinstimmen.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute muss :size sein.',
|
||||
'file' => ':attribute muss :size Kilobytes groß sein.',
|
||||
'string' => ':attribute muss :size Zeichen lang sein.',
|
||||
'array' => ':attribute muss :size Elemente enthalten.',
|
||||
],
|
||||
'string' => ':attribute muss ein String sein.',
|
||||
'timezone' => ':attribute muss eine gültige Zeitzone sein.',
|
||||
'unique' => ':attribute ist bereits vergeben.',
|
||||
'url' => ':attribute muss eine gültige URL sein.',
|
||||
|
||||
'password' => [
|
||||
'letters' => ':attribute muss mindestens einen Buchstaben enthalten.',
|
||||
'mixed' => ':attribute muss mindestens einen Groß- und einen Kleinbuchstaben enthalten.',
|
||||
'numbers' => ':attribute muss mindestens eine Zahl enthalten.',
|
||||
'symbols' => ':attribute muss mindestens ein Sonderzeichen enthalten.',
|
||||
'uncompromised' => ':attribute wurde in einem Datenleck gefunden. Bitte ein anderes Passwort wählen.',
|
||||
],
|
||||
|
||||
'attributes' => [
|
||||
'name' => 'Name',
|
||||
'email' => 'E-Mail',
|
||||
'password' => 'Passwort',
|
||||
'password_confirmation' => 'Passwort-Bestätigung',
|
||||
'title' => 'Titel',
|
||||
'body' => 'Nachricht',
|
||||
'type' => 'Typ',
|
||||
'status' => 'Status',
|
||||
'team_id' => 'Team',
|
||||
'start_date' => 'Datum',
|
||||
'start_time' => 'Uhrzeit',
|
||||
'location_name' => 'Ort',
|
||||
'address_text' => 'Adresse',
|
||||
'description_html' => 'Beschreibung',
|
||||
'first_name' => 'Vorname',
|
||||
'last_name' => 'Nachname',
|
||||
'birth_year' => 'Geburtsjahr',
|
||||
'jersey_number' => 'Trikotnummer',
|
||||
'note' => 'Notiz',
|
||||
'season' => 'Saison',
|
||||
'player_id' => 'Spieler',
|
||||
'parent_id' => 'Elternteil',
|
||||
'relationship_label' => 'Beziehung',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user