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,68 @@
<?php
return [
'label' => 'Profilo',
'form' => [
'email' => [
'label' => 'Email',
],
'name' => [
'label' => 'Nome',
],
'password' => [
'label' => 'Nuova password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Conferma nuova password',
'validation_attribute' => 'password confirmation',
],
'current_password' => [
'label' => 'Password attuale',
'below_content' => 'Per motivi di sicurezza, conferma la tua password per continuare.',
'validation_attribute' => 'current password',
],
'actions' => [
'save' => [
'label' => 'Salva modifiche',
],
],
],
'multi_factor_authentication' => [
'label' => 'Autenticazione a due fattori (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => 'La richiesta di modifica dell\'email è stata inviata',
'body' => 'È stata inviata una richiesta per modificare il tuo indirizzo email a :email. Controlla la tua email per verificare la modifica.',
],
'saved' => [
'title' => 'Salvato',
],
],
'actions' => [
'cancel' => [
'label' => 'Indietro',
],
],
];
@@ -0,0 +1,35 @@
<?php
return [
'title' => 'Verifica il tuo indirizzo email',
'heading' => 'Verifica il tuo indirizzo email',
'actions' => [
'resend_notification' => [
'label' => 'Invia nuovamente',
],
],
'messages' => [
'notification_not_received' => 'Non hai ricevuto la mail?',
'notification_sent' => 'Abbiamo inviato una mail a :email contenente le istruzioni su come verificare il tuo indirizzo email.',
],
'notifications' => [
'notification_resent' => [
'title' => 'Abbiamo inviato nuovamente la mail.',
],
'notification_resend_throttled' => [
'title' => 'Troppi tentativi di invio',
'body' => 'Riprova tra :seconds secondi.',
],
],
];
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'title' => 'Accesso',
'heading' => 'Accedi',
'actions' => [
'register' => [
'before' => 'o',
'label' => 'crea un account',
],
'request_password_reset' => [
'label' => 'Hai smarrito la password?',
],
],
'form' => [
'email' => [
'label' => 'Email',
],
'password' => [
'label' => 'Password',
],
'remember' => [
'label' => 'Ricordami',
],
'actions' => [
'authenticate' => [
'label' => 'Accedi',
],
],
],
'multi_factor' => [
'heading' => 'Verifica la tua identità',
'subheading' => 'Per accedere è necessario verificare la tua identità.',
'form' => [
'provider' => [
'label' => 'Come desideri verificare?',
],
'actions' => [
'authenticate' => [
'label' => 'Conferma l\'accesso',
],
],
],
],
'messages' => [
'failed' => 'I dati di accesso non sono corretti.',
],
'notifications' => [
'throttled' => [
'title' => 'Troppi tentativi di accesso',
'body' => 'Riprova tra :seconds secondi.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Reimposta la tua password',
'heading' => 'Hai smarrito la password?',
'actions' => [
'login' => [
'label' => 'torna al login',
],
],
'form' => [
'email' => [
'label' => 'Email',
],
'actions' => [
'request' => [
'label' => 'Invia email',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Se il tuo account non esiste, non riceverai l\'email.',
],
'throttled' => [
'title' => 'Troppe richieste',
'body' => 'Riprova tra :seconds secondi.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Reimposta la tua password',
'heading' => 'Reimposta la tua password',
'form' => [
'email' => [
'label' => 'Email',
],
'password' => [
'label' => 'Password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Conferma password',
],
'actions' => [
'reset' => [
'label' => 'Reimposta password',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Troppi tentativi di reimpostazione',
'body' => 'Riprova tra :seconds secondi.',
],
],
];
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Registrazione',
'heading' => 'Registrati',
'actions' => [
'login' => [
'before' => 'o',
'label' => 'accedi al tuo account',
],
],
'form' => [
'email' => [
'label' => 'Email',
],
'name' => [
'label' => 'Nome',
],
'password' => [
'label' => 'Password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Conferma password',
],
'actions' => [
'register' => [
'label' => 'Registrati',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Troppi tentativi di registrazione',
'body' => 'Riprova tra :seconds secondi.',
],
],
];