feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Profil',
'form' => [
'email' => [
'label' => 'E-Mail-Adresse',
],
'name' => [
'label' => 'Name',
],
'password' => [
'label' => 'Neues Passwort',
'validation_attribute' => 'Passwort',
],
'password_confirmation' => [
'label' => 'Passwort bestätigen',
'validation_attribute' => 'Passwortbestätigung',
],
'current_password' => [
'label' => 'Aktuelles Passwort',
'below_content' => 'Aus Sicherheitsgründen bestätigen Sie bitte Ihr Passwort, um fortzufahren.',
'validation_attribute' => 'aktuelles Passwort',
],
'actions' => [
'save' => [
'label' => 'Änderung speichern',
],
],
],
'multi_factor_authentication' => [
'label' => 'Zwei-Faktor-Authentifizierung (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => 'Anfrage zur Änderung der E-Mail-Adresse gesendet',
'body' => 'Eine Anfrage zur Änderung Ihrer E-Mail-Adresse wurde an :email gesendet. Bitte überprüfen Sie Ihre E-Mails, um die Änderung zu bestätigen.',
],
'saved' => [
'title' => 'Gespeichert',
],
],
'actions' => [
'cancel' => [
'label' => 'Abbrechen',
],
],
];
@@ -0,0 +1,35 @@
<?php
return [
'title' => 'E-Mail-Adresse bestätigen',
'heading' => 'E-Mail-Adresse bestätigen',
'actions' => [
'resend_notification' => [
'label' => 'Erneut senden',
],
],
'messages' => [
'notification_not_received' => 'Keine E-Mail erhalten?',
'notification_sent' => 'Wir haben eine E-Mail mit Anweisungen zur Bestätigung des Kontos an :email gesendet.',
],
'notifications' => [
'notification_resent' => [
'title' => 'E-Mail erneut gesendet.',
],
'notification_resend_throttled' => [
'title' => 'Zu viele Versuche.',
'body' => 'Versuchen Sie es bitte in :seconds Sekunden nochmal.',
],
],
];
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'title' => 'Anmelden',
'heading' => 'Melden Sie sich an.',
'actions' => [
'register' => [
'before' => 'oder',
'label' => 'erstellen Sie ein Konto',
],
'request_password_reset' => [
'label' => 'Passwort vergessen?',
],
],
'form' => [
'email' => [
'label' => 'E-Mail-Adresse',
],
'password' => [
'label' => 'Passwort',
],
'remember' => [
'label' => 'Angemeldet bleiben',
],
'actions' => [
'authenticate' => [
'label' => 'Anmelden',
],
],
],
'multi_factor' => [
'heading' => 'Verifizieren Sie Ihre Identität',
'subheading' => 'Um mit der Anmeldung fortzufahren, müssen Sie Ihre Identität verifizieren.',
'form' => [
'provider' => [
'label' => 'Wie möchten Sie sich verifizieren?',
],
'actions' => [
'authenticate' => [
'label' => 'Anmeldung bestätigen',
],
],
],
],
'messages' => [
'failed' => 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.',
],
'notifications' => [
'throttled' => [
'title' => 'Zu viele Loginversuche.',
'body' => ' Bitte in :seconds Sekunden nochmal versuchen.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Passwort zurücksetzen',
'heading' => 'Passwort vergessen?',
'actions' => [
'login' => [
'label' => 'zurück zum Login',
],
],
'form' => [
'email' => [
'label' => 'E-Mail-Adresse',
],
'actions' => [
'request' => [
'label' => 'E-Mail zusenden',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Wenn Ihr Konto nicht existiert, erhalten Sie keine E-Mail.',
],
'throttled' => [
'title' => 'Zu viele Versuche.',
'body' => 'Versuchen Sie es bitte in :seconds Sekunden nochmal.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Passwort zurücksetzen',
'heading' => 'Passwort zurücksetzen',
'form' => [
'email' => [
'label' => 'E-Mail-Adresse',
],
'password' => [
'label' => 'Passwort',
'validation_attribute' => 'Passwort',
],
'password_confirmation' => [
'label' => 'Passwort bestätigen',
],
'actions' => [
'reset' => [
'label' => 'Passwort zurücksetzen',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Zu viele Versuche.',
'body' => 'Bitte in :seconds Sekunden nochmal versuchen.',
],
],
];
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Registrieren',
'heading' => 'Registrieren',
'actions' => [
'login' => [
'before' => 'oder',
'label' => 'mit Konto anmelden',
],
],
'form' => [
'email' => [
'label' => 'E-Mail-Adresse',
],
'name' => [
'label' => 'Name',
],
'password' => [
'label' => 'Passwort',
'validation_attribute' => 'Passwort',
],
'password_confirmation' => [
'label' => 'Passwort bestätigen',
],
'actions' => [
'register' => [
'label' => 'Registrieren',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Zu viele Anmeldeversuche.',
'body' => 'Bitte in :seconds Sekunden nochmal versuchen.',
],
],
];