feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Perfil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Nom',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Nova contrasenya',
|
||||
'validation_attribute' => 'contrasenya',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirma la nova contrasenya',
|
||||
'validation_attribute' => 'confirmació de contrasenya',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Contrasenya actual',
|
||||
'below_content' => 'Per seguretat, si us plau, confirma la teva contrasenya per continuar.',
|
||||
'validation_attribute' => 'contrasenya actual',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Desar canvis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Autenticació de doble factor (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Sol·licitud de canvi d\'adreça de correu electrònica enviada',
|
||||
'body' => 'S\'ha enviat una sol·licitud per canviar la seva adreça de correu electrònic a :email. Si us plau, revisa el correu per confirmar el canvi.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Canvis desats',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Massa intents. Si us plau, prova-ho de nou en :seconds segons.',
|
||||
'body' => 'Si us plau, prova-ho de nou en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancel·lar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Verifica la teva adreça de correu electrònic',
|
||||
|
||||
'heading' => 'Verifica la teva adreça de correu electrònic',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Reenvia la notificació',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'No has rebut el correu electrònic?',
|
||||
'notification_sent' => 'Hem enviat un correu electrònic a :email amb instruccions sobre com verificar la teva adreça de correu electrònic.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Hem reenviat el correu electrònic.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Massa intents de reenviament',
|
||||
'body' => 'Si us plau, torna a intentar-ho en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Inici de sessió',
|
||||
|
||||
'heading' => 'Accediu al vostre compte',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'o',
|
||||
'label' => 'obrir un compte',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Heu oblidat la vostra contrasenya?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Contrasenya',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Recorda\'m',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Entrar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Verifica la teva identitat',
|
||||
|
||||
'subheading' => 'Per continuar amb l\'inici de sessió, has de verificar la teva identitat.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Com vols verificar-te?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Confirmar inici de sessió',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Aquestes credencials no coincideixen amb els nostres registres',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Massa intents de connexió',
|
||||
'body' => 'Si us plau, torneu-ho a provar en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Restableix la teva contrasenya',
|
||||
|
||||
'heading' => 'Has oblidat la teva contrasenya?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'Tornar a l\'inici de sessió',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Enviar email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Si el teu compte no existeix, no rebràs l\'email.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Massa sol·licituds',
|
||||
'body' => 'Si us plau, torna a provar-ho en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Restableix la teva contrasenya',
|
||||
|
||||
'heading' => 'Restableix la teva contrasenya',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Contrasenya',
|
||||
'validation_attribute' => 'contrasenya',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirma la contrasenya',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Restableix la contrasenya',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Massa intents de restabliment',
|
||||
'body' => 'Si us plau, torna-ho a provar en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Enregistrar-se',
|
||||
|
||||
'heading' => 'Obriu un nou compte',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'o',
|
||||
'label' => 'inicia la sessió amb el vostre compte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Nom',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Contrasenya',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirma la contrasenya',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Enregistrar-se',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Massa intents de registre',
|
||||
'body' => 'Si us plau, torneu-ho a provar en :seconds segons.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user