-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from SolidCharity/TP-20200504-fixlocale
add translations for auth pages
- Loading branch information
Showing
12 changed files
with
632 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"A fresh verification link has been sent to your email address.": "Ein neuer Verifikationslink wurde verschickt.", | ||
"All rights reserved.": "Alle Rechte vorbehalten.", | ||
"Before proceeding, please check your email for a verification link.": "Bestätigen Sie bitte zuerst Ihre E-Mail.", | ||
"click here to request another": "klicken Sie hier, um eine neue anzufordern.", | ||
"Confirm Password": "Passwort bestätigen", | ||
"E-Mail Address": "E-Mail-Adresse", | ||
"Error": "Fehler", | ||
"Forbidden": "Unzulässig", | ||
"Forgot Your Password?": "Passwort vergessen?", | ||
"Go Home": "Nach Hause", | ||
"Hello!": "Hallo!", | ||
"hi": "hallo", | ||
"If you did not create an account, no further action is required.": "Wenn Sie keinen Account beantragt haben, ist keine weitere Handlung nötig.", | ||
"If you did not receive the email": "Wenn Sie keine E-Mail erhalten haben", | ||
"If you did not request a password reset, no further action is required.": "Wenn Sie keine Zurücksetzung des Passworts beantragt haben, ist keine weitere Handlung nötig.", | ||
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser: [:displayableActionUrl](:actionURL)": "Wenn Sie Schwierigkeiten haben, den \":actionText\" Button zu drücken, fügen Sie bitte folgende Adresse in Ihren Browser ein: [:displayableActionUrl](:actionURL)", | ||
"Invalid signature.": "Ungültige Signatur.", | ||
"Login": "Anmelden", | ||
"Logout": "Abmelden", | ||
"Name": "Name", | ||
"Not Found": "Nicht gefunden", | ||
"Oh no": "Oh nein", | ||
"Page Expired": "Seite abgelaufen", | ||
"Page Not Found": "Seite konnte nicht gefunden werden", | ||
"Password": "Passwort", | ||
"Please click the button below to verify your email address.": "Bitte klicken Sie den Button, um Ihre E-Mail-Adresse zu bestätigen.", | ||
"Please confirm your password before continuing.": "Bitte bestätigen Sie Ihr Passwort, bevor Sie fortfahren.", | ||
"Regards": "Mit freundlichen Grüßen", | ||
"Register": "Registrieren", | ||
"Remember Me": "Angemeldet bleiben", | ||
"Reset Password": "Passwort zurücksetzen", | ||
"Reset Password Notification": "Benachrichtigung zum Zurücksetzen des Passworts", | ||
"Send Password Reset Link": "Link zum Zurücksetzen des Passworts senden", | ||
"Server Error": "Interner Fehler", | ||
"Service Unavailable": "Service nicht verfügbar", | ||
"This action is unauthorized.": "Diese Aktion wurde nicht authorisiert.", | ||
"Sorry, the page you are looking for could not be found.": "Tut uns leid, die Seite konnte nicht gefunden werden.", | ||
"Sorry, you are forbidden from accessing this page.": "Tut uns leid, Sie haben keine Rechte, diese Seite zu besuchen.", | ||
"Sorry, you are making too many requests to our servers.": "Tut uns leid, Sie machen derzeit zu viele Anfragen an unseren Server.", | ||
"Sorry, you are not authorized to access this page.": "Tut uns leid, Sie haben keine Rechte, diese Seite zu besuchen.", | ||
"Sorry, your session has expired. Please refresh and try again.": "Tut uns leid, Ihre Sitzung ist abgelaufen. Bitte laden Sie die Seite neu und probieren Sie es erneut.", | ||
"Sorry, we are doing some maintenance. Please check back soon.": "Tut uns leid, wir arbeiten gerade an unserer Webseite. Bitte versuchen Sie es später erneut.", | ||
"This password reset link will expire in :count minutes.": "Dieser Link zum Zurücksetzen des Passworts läuft in :count Minuten ab.", | ||
"Toggle navigation": "Navigation umschalten", | ||
"Too Many Attempts.": "Zu viele Versuche.", | ||
"Too Many Requests": "Zu viele Anfragen", | ||
"Unauthorized": "Nicht autorisiert", | ||
"Verify Email Address": "E-Mail-Adresse bestätigen", | ||
"Verify Your Email Address": "Bestätigen Sie Ihre E-Mail-Adresse", | ||
"We won't ask for your password again for a few hours.": "Wir werden Sie für die nächsten paar Stunden nicht mehr nach dem Passwort fragen.", | ||
"You are receiving this email because we received a password reset request for your account.": "Sie erhalten diese E-Mail, weil wir einen Antrag auf eine Zurücksetzung Ihres Passworts bekommen haben.", | ||
"Your email address is not verified.": "Ihre E-Mail Adresse wurde noch nicht bestätigt.", | ||
"Whoops!": "Ups!", | ||
"Whoops, something went wrong on our servers.": "Ups, etwas ist schief gelaufen.", | ||
"Church Name": "Name der Gemeinde", | ||
"Admin Name": "Name des Administrators" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Authentication Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used during authentication for various | ||
| messages that we need to display to the user. You are free to modify | ||
| these language lines according to your application's requirements. | ||
| | ||
*/ | ||
|
||
'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', | ||
'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Pagination Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used by the paginator library to build | ||
| the simple pagination links. You are free to change them to anything | ||
| you want to customize your views to better match your application. | ||
| | ||
*/ | ||
|
||
'previous' => '« Zurück', | ||
'next' => 'Weiter »', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Password Reminder Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are the default lines which match reasons | ||
| that are given by the password broker for a password update attempt | ||
| has failed, such as for an invalid token or invalid new password. | ||
| | ||
*/ | ||
|
||
'reset' => 'Das Passwort wurde zurückgesetzt!', | ||
'sent' => 'Passworterinnerung wurde gesendet!', | ||
'throttled' => 'Please wait before retrying.', | ||
'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', | ||
'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
<?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 | ||
| as the size rules. Feel free to tweak each of these messages. | ||
| | ||
*/ | ||
|
||
'accepted' => ':attribute muss akzeptiert werden.', | ||
'active_url' => ':attribute ist keine gültige Internet-Adresse.', | ||
'after' => ':attribute muss ein Datum nach dem :date sein.', | ||
'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', | ||
'alpha' => ':attribute darf nur aus Buchstaben bestehen.', | ||
'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', | ||
'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', | ||
'array' => ':attribute muss ein Array sein.', | ||
'before' => ':attribute muss ein Datum vor dem :date sein.', | ||
'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', | ||
'between' => [ | ||
'numeric' => ':attribute muss zwischen :min & :max liegen.', | ||
'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.', | ||
'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', | ||
'array' => ':attribute muss zwischen :min & :max Elemente haben.', | ||
], | ||
'boolean' => ":attribute muss entweder 'true' oder 'false' sein.", | ||
'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', | ||
'date' => ':attribute muss ein gültiges Datum sein.', | ||
'date_equals' => ':attribute muss ein Datum gleich :date sein.', | ||
'date_format' => ':attribute entspricht nicht dem gültigen Format für :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.', | ||
'dimensions' => ':attribute hat ungültige Bildabmessungen.', | ||
'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', | ||
'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', | ||
'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values', | ||
'exists' => 'Der gewählte Wert für :attribute ist ungültig.', | ||
'file' => ':attribute muss eine Datei sein.', | ||
'filled' => ':attribute muss ausgefüllt sein.', | ||
'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.', | ||
], | ||
'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.', | ||
], | ||
'image' => ':attribute muss ein Bild sein.', | ||
'in' => 'Der gewählte Wert für :attribute ist ungültig.', | ||
'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', | ||
'integer' => ':attribute muss eine ganze 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 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 kürzer als :value Zeichen sein.', | ||
'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 maximal :value Zeichen lang sein.', | ||
'array' => ':attribute darf maximal :value Elemente haben.', | ||
], | ||
'max' => [ | ||
'numeric' => ':attribute darf maximal :max sein.', | ||
'file' => ':attribute darf maximal :max Kilobytes groß sein.', | ||
'string' => ':attribute darf maximal :max Zeichen haben.', | ||
'array' => ':attribute darf maximal :max Elemente haben.', | ||
], | ||
'mimes' => ':attribute muss den Dateityp :values haben.', | ||
'mimetypes' => ':attribute muss den Dateityp :values haben.', | ||
'min' => [ | ||
'numeric' => ':attribute muss mindestens :min sein.', | ||
'file' => ':attribute muss mindestens :min Kilobytes groß sein.', | ||
'string' => ':attribute muss mindestens :min Zeichen lang sein.', | ||
'array' => ':attribute muss mindestens :min Elemente haben.', | ||
], | ||
'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', | ||
'not_regex' => ':attribute hat ein ungültiges Format.', | ||
'numeric' => ':attribute muss eine Zahl sein.', | ||
'password' => 'Das Passwort ist falsch.', | ||
'present' => ':attribute muss vorhanden sein.', | ||
'regex' => ':attribute Format ist ungültig.', | ||
'required' => ':attribute muss ausgefüllt werden.', | ||
'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', | ||
'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', | ||
'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', | ||
'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', | ||
'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', | ||
'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', | ||
'same' => ':attribute und :other müssen übereinstimmen.', | ||
'size' => [ | ||
'numeric' => ':attribute muss gleich :size sein.', | ||
'file' => ':attribute muss :size Kilobyte groß sein.', | ||
'string' => ':attribute muss :size Zeichen lang sein.', | ||
'array' => ':attribute muss genau :size Elemente haben.', | ||
], | ||
'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values', | ||
'string' => ':attribute muss ein String sein.', | ||
'timezone' => ':attribute muss eine gültige Zeitzone sein.', | ||
'unique' => ':attribute ist bereits vergeben.', | ||
'uploaded' => ':attribute konnte nicht hochgeladen werden.', | ||
'url' => ':attribute muss eine URL sein.', | ||
'uuid' => ':attribute muss ein UUID sein.', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| 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' => [ | ||
'name' => 'Name', | ||
'username' => 'Benutzername', | ||
'email' => 'E-Mail Adresse', | ||
'first_name' => 'Vorname', | ||
'last_name' => 'Nachname', | ||
'password' => 'Passwort', | ||
'password_confirmation' => 'Passwort Bestätigung', | ||
'city' => 'Stadt', | ||
'country' => 'Land', | ||
'address' => 'Adresse', | ||
'phone' => 'Telefonnummer', | ||
'mobile' => 'Handynummer', | ||
'age' => 'Alter', | ||
'sex' => 'Geschlecht', | ||
'gender' => 'Geschlecht', | ||
'day' => 'Tag', | ||
'month' => 'Monat', | ||
'year' => 'Jahr', | ||
'hour' => 'Stunde', | ||
'minute' => 'Minute', | ||
'second' => 'Sekunde', | ||
'title' => 'Titel', | ||
'content' => 'Inhalt', | ||
'description' => 'Beschreibung', | ||
'excerpt' => 'Auszug', | ||
'date' => 'Datum', | ||
'time' => 'Uhrzeit', | ||
'available' => 'verfügbar', | ||
'size' => 'Größe', | ||
], | ||
]; |
Oops, something went wrong.