Added First Implementations of German
This commit is contained in:
parent
7345385442
commit
f6405a2a13
7 changed files with 279 additions and 0 deletions
25
resources/lang/de/auth.php
Normal file
25
resources/lang/de/auth.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?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' => 'Falsches Passwort!', /* "Incorrect Password!" */
|
||||
'throttle' => 'Zu viele Login-Versuche! Versuchen Sie, in :seconds Sekunde.', /* "Too many login attempts! Try in (number) Seconds" */
|
||||
'errorencountered' => 'Ein Fehler ist aufgetreten!', /* An error occurred! */
|
||||
'resetpassword' => 'Passwort zurücksetzen.', /* Reset Password */
|
||||
'confirmpassword' => 'Bestätige das Passwort.', /* Confirm your password */
|
||||
'sendlink' => 'Senden Sie Passwort-Reset Link.', /* Send password reset link */
|
||||
'emailsent' => 'E-Mail gesendet.', /* Email Sent */
|
||||
'remeberme' => 'Login merken.', /* Remember my Login*/
|
||||
];
|
||||
|
||||
/*
|
||||
German Translation by Jboy
|
||||
*/
|
Reference in a new issue