-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #1
- Loading branch information
Holger Lösken
committed
Sep 17, 2020
1 parent
b11d3c6
commit 0253247
Showing
2 changed files
with
29 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,24 @@ | ||
<?php | ||
<?php declare(strict_types=1); | ||
|
||
return [ | ||
'settings' => [ | ||
'headline' => 'Einstellungen', | ||
'headline' => 'MagicLink', | ||
'configure_your_needs' => 'Passe MagicLink nach deinen Wünschen an', | ||
'ml_enabled' => 'MagicLink aktivieren?', | ||
'ml_enabled_instructions' => 'Aktiviere oder deaktiviere die Nutzung von MagicLinks', | ||
'ml_expire_time' => 'Ablaufzeit', | ||
'ml_expire_time_instructions' => 'Laufzeit des Links, nachdem er verfällt. Standart sind 30 Minuten.', | ||
'updated_successfully' => 'Einstellungen erfolgreich aktualisiert.', | ||
], | ||
'permissions' => [ | ||
'settings' => 'MagicLink Einstellung', | ||
'view_settings' => 'Einstellungen ansehen', | ||
'view_settings_description' => 'Zugriff, um Einstellungen anzusehen.', | ||
], | ||
'email' => [ | ||
'new_link_subject' => 'Ihr Login-Link', | ||
], | ||
|
||
'unable_to_save' => 'Einstellungen nicht gespeichert. Bitte passe die fehlerhaften Felder an und speichere erneut.', | ||
|
||
]; |
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,10 @@ | ||
<?php declare(strict_types=1); | ||
|
||
return [ | ||
'address_exists_then_email' => 'Wenn die E-Mail-Adresse bei uns registriert ist, solltest du eine E-Mail bekommen haben.', | ||
'back_to_classic_login' => 'Zurück zum klassischen Login?', | ||
'email_address' => 'E-Mail-Adresse', | ||
'login_magic_link' => 'Magic Link senden', | ||
'magic_link_signature_invalid' => 'Der Magic Link ist ungültig. Bitte fordere einen neuen Link an.', | ||
'unable_to_send' => 'Senden des Links nicht möglich.' | ||
]; |