mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e691b401c8
This translation is based on the current english language files. It is a transaltion into German (formal) language. A language selector on the Settings page would be a nice addition.
27 lines
1.4 KiB
PHP
27 lines
1.4 KiB
PHP
<?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' => 'Dies sind keine gültigen Anmeldedaten.',
|
|
'throttle' => 'Zu viele Anmeldeversuche. Bitte versuchen sie es in :seconds Sekunden erneut.',
|
|
|
|
/**
|
|
* Email Confirmation Text
|
|
*/
|
|
'email_confirm_subject' => 'Bestätigen sie ihre E-Mail Adresse bei :appName',
|
|
'email_confirm_greeting' => 'Danke, dass sie :appName beigetreten sind!',
|
|
'email_confirm_text' => 'Bitte bestätigen sie ihre E-Mail Adresse, indem sie auf den Button klicken:',
|
|
'email_confirm_action' => 'E-Mail Adresse bestätigen',
|
|
'email_confirm_send_error' => 'Bestätigungs-E-Mail benötigt, aber das System konnte die E-Mail nicht versenden. Kontaktieren sie den Administrator, um sicherzustellen, dass das Sytsem korrekt eingerichtet ist.',
|
|
'email_confirm_success' => 'Ihre E-Mail Adresse wurde bestätigt!',
|
|
'email_confirm_resent' => 'Bestätigungs-E-Mail wurde erneut versendet, bitte überprüfen sie ihren Posteingang.',
|
|
];
|