Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

German localisation #1039

Merged
merged 2 commits into from
Oct 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/sprinkles/admin/locale/de_DE/messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* @author X-Anonymous-Y
* @author kevinrombach
* @author splitt3r
* @author Le-Morri
*/
return [
'ACTIVITY' => [
Expand Down Expand Up @@ -128,7 +129,7 @@
'DELETE' => 'Benutzer löschen',
'DELETE_CONFIRM' => 'Sind Sie sicher, dass Sie den Benutzer <strong>{{name}}</strong> löschen möchten?',
'DELETE_YES' => 'Ja, Benutzer löschen',
// 'DELETED' => 'User deleted',
'DELETED' => 'Benutzer gelöscht',
'DISABLE' => 'Benutzer deaktivieren',
'EDIT' => 'Benutzer bearbeiten',
'ENABLE' => 'Benutzer aktivieren',
Expand Down
7 changes: 4 additions & 3 deletions app/sprinkles/core/locale/de_DE/validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* @author X-Anonymous-Y
* @author kevinrombach
* @author splitt3r
* @author Le-Morri
*/
return [
'VALIDATE' => [
Expand All @@ -22,11 +23,11 @@
'INTEGER' => 'Der Wert für <strong>{{label}}</strong> muss eine ganze Zahl sein.',
'INVALID_EMAIL' => 'Ungültige E-Mail-Adresse.',
'LENGTH_RANGE' => '{{label}} muss zwischen {{min}} und {{max}} Zeichen lang sein.',
// 'MAX_LENGTH' => '{{label}} must be maximum {{max}} characters in length.',
// 'MIN_LENGTH' => '{{label}} must be minimum {{min}} characters in length.',
'MAX_LENGTH' => '{{label}} darf maximal {{max}} Zeichen lang sein.',
'MIN_LENGTH' => '{{label}} muss mindestens {{min}} Zeichen lang sein.',
'NO_LEAD_WS' => 'Der Wert für <strong>{{label}}</strong> kann nicht mit Leerzeichen, Tabulatoren oder anderen Leerzeichen beginnen.',
'NO_TRAIL_WS' => 'Der Wert für <strong>{{label}}</strong> kann nicht mit Leerzeichen, Tabulatoren oder anderen Leerzeichen enden.',
// 'RANGE' => 'The value for <strong>{{label}}</strong> must be between {{min}} and {{max}}.',
'RANGE' => 'Der Wert für <strong>{{label}}</strong> muss zwischen {{min}} und {{max}} sein.',
'REQUIRED' => 'Bitte geben Sie einen Wert für <strong>{{label}}</strong> an.',
'SPRUNJE' => [
'BAD_FILTER' => '<strong>{{name}}</strong> ist kein gültiger Filter für dieses Sprunje.',
Expand Down