From 1d83c857ac217f471d1e72f0fc4250d66b387d6f Mon Sep 17 00:00:00 2001 From: timmyRS Date: Sat, 26 May 2018 22:18:47 +0200 Subject: [PATCH] Add German Translation --- resources/lang/de/auth.php | 19 +++++ resources/lang/de/pagination.php | 19 +++++ resources/lang/de/passwords.php | 22 ++++++ resources/lang/de/validation.php | 122 +++++++++++++++++++++++++++++++ 4 files changed, 182 insertions(+) create mode 100644 resources/lang/de/auth.php create mode 100644 resources/lang/de/pagination.php create mode 100644 resources/lang/de/passwords.php create mode 100644 resources/lang/de/validation.php diff --git a/resources/lang/de/auth.php b/resources/lang/de/auth.php new file mode 100644 index 000000000..c0a62f918 --- /dev/null +++ b/resources/lang/de/auth.php @@ -0,0 +1,19 @@ + 'Diese Daten stimmen nicht mit unserem Register überein.', + 'throttle' => 'Zu viele Login-Versuche. Versuche es in :seconds Sekunden erneut.', + +]; diff --git a/resources/lang/de/pagination.php b/resources/lang/de/pagination.php new file mode 100644 index 000000000..9120d892c --- /dev/null +++ b/resources/lang/de/pagination.php @@ -0,0 +1,19 @@ + '« Vorherige', + 'next' => 'Nächste »', + +]; diff --git a/resources/lang/de/passwords.php b/resources/lang/de/passwords.php new file mode 100644 index 000000000..343e79d28 --- /dev/null +++ b/resources/lang/de/passwords.php @@ -0,0 +1,22 @@ + 'Passwörter müssen mindestens 6 Zeichen sein und die Bestätigung muss übereinstimmen.', + 'reset' => 'Dein Passwort wurde zurückgesetzt!', + 'sent' => 'Wir haben die eine Password-Rücksetzungs-E-Mail gesendet!', + 'token' => 'Dieser Passwort-Rücksetzungs-Code ist nicht gültig.', + 'user' => "Wir konnten keinen Nutzer mit dieser E-Mail-Adresse finden.", + +]; diff --git a/resources/lang/de/validation.php b/resources/lang/de/validation.php new file mode 100644 index 000000000..1f7584ecf --- /dev/null +++ b/resources/lang/de/validation.php @@ -0,0 +1,122 @@ + ':attribute muss akzeptiert sein .', + 'active_url' => ':attribute ist keine gültige URL.', + 'after' => ':attribute muss ein Datum nach dem :date sein.', + 'after_or_equal' => ':attribute muss auf den :date oder danach fallen.', + 'alpha' => ':attribute darf nur Buchstaben beinhalten.', + 'alpha_dash' => ':attribute darf nur Buchstaben, Zahlen, und Bindestriche beinhalten.', + 'alpha_num' => ':attribute darf nur Buchstaben und Zahlen beinhalten.', + 'array' => ':attribute muss ein Array sein.', + 'before' => ':attribute muss vor dem :date fallen.', + 'before_or_equal' => ':attribute muss auf den :date oder davor fallen.', + 'between' => [ + 'numeric' => ':attribute muss eine Zahl zwischen :min bis :max sein.', + 'file' => ':attribute muss zwischen :min bis :max Kilobytes haben.', + 'string' => ':attribute muss zwischen :min bis :max Zeichen lang sein.', + 'array' => ':attribute muss zwischen :min bis :max Objekte beinhalten.', + ], + 'boolean' => ':attribute muss "true" oder "false" sein.', + 'confirmed' => ':attribute-Bestätigung stimmt nicht überein.', + 'date' => ':attribute ist kein gültiges Datum.', + 'date_format' => ':attribute passt nicht in das :format Format.', + 'different' => ':attribute und :other dürfen nicht gleich sein.', + 'digits' => ':attribute muss genau :digits Ziffern haben.', + 'digits_between' => ':attribute muss :min bis :max Ziffern haben.', + 'dimensions' => ':attribute hat ungültige Bildmaße.', + 'distinct' => ':attribute-Feld hat einen doppelten Wert.', + 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', + 'exists' => 'Gewählter :attribute-Wert ist ungültig.', + 'file' => ':attribute muss eine Datei sein.', + 'filled' => ':attribute muss ausgefüllt sein.', + 'image' => ':attribute muss ein Bild sein.', + 'in' => 'Gewählter :attribute-Wert ist ungültig.', + 'in_array' => ':attribute-Feld existiert nicht in :other.', + 'integer' => ':attribute muss eine Zahl 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ültige JSON-Zeichenfolge sein.', + 'max' => [ + 'numeric' => ':attribute darf nicht gr&omul;ßer als :max sein.', + 'file' => ':attribute darf nicht gr&omul;ßer als :max Kilobytes sein.', + 'string' => ':attribute darf nicht mehr als :max Zeichen haben.', + 'array' => ':attribute darf nicht mehr als :max Objekte beinhalten.', + ], + 'mimes' => ':attribute muss eine Datei einer dieser Typen sein: :values.', + 'mimetypes' => ':attribute muss eine Datei einer dieser Typen sein: :values.', + 'min' => [ + 'numeric' => ':attribute muss gr&omul;ßer als oder gleich :min sein.', + 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', + 'string' => ':attribute muss mindestens :min Zeichen haben.', + 'array' => ':attribute muss mindestens :min Objekte beinhalten.', + ], + 'not_in' => 'Gewählter :attribute-Wert ist ungültig.', + 'not_regex' => ':attribute-Format ist ungültig.', + 'numeric' => ':attribute muss eine Zahl sein.', + 'present' => ':attribute muss vorhanden sein.', + 'regex' => ':attribute-Format ist ungültig.', + 'required' => 'Das :attribute-Feld ist benötigt.', + 'required_if' => 'Das :attribute-Feld ist benötigt wenn :other :value ist.', + 'required_unless' => 'Das :attribute-Feld ist benötigt es sei denn :other ist in :values.', + 'required_with' => 'Das :attribute-Feld ist benötigt wenn :values vorhanden ist.', + 'required_with_all' => 'Das :attribute-Feld ist benötigt wenn :values vorhanden ist.', + 'required_without' => 'Das :attribute-Feld ist benötigt wenn :values nicht vorhanden ist.', + 'required_without_all' => 'Das :attribute-Feld ist benötigt wenn keiner von :values vorhanden ist.', + 'same' => ':attribute und :other müssen gleich sein.', + 'size' => [ + 'numeric' => ':attribute muss :size sein.', + 'file' => ':attribute muss :size Kilobytes groß sein.', + 'string' => ':attribute muss :size Zeichen lang sein.', + 'array' => ':attribute muss :size Objekte beinhalten.', + ], + 'string' => ':attribute muss eine Zeichenkette sein.', + 'timezone' => ':attribute muss eine g¨ltige Zeitzone sein.', + 'unique' => ':attribute ist bereits in Verwendung.', + 'uploaded' => ':attribute hochladen ist fehlgeschlagen.', + 'url' => ':attribute-Format ist ung¨lig.', + + /* + |-------------------------------------------------------------------------- + | 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' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | 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' => [], + +];