feat: locale
This commit is contained in:
@@ -18,6 +18,7 @@ return [
|
||||
'id' => 'ID',
|
||||
'name' => 'Name',
|
||||
'email' => 'Email address',
|
||||
'locale' => 'Language',
|
||||
'email_verified_at' => 'Email verified at',
|
||||
'account_verified_at' => 'Account verified at',
|
||||
'avatar' => 'Avatar',
|
||||
@@ -38,6 +39,10 @@ return [
|
||||
'created_at' => 'Created at',
|
||||
'updated_at' => 'Updated at',
|
||||
],
|
||||
'locales' => [
|
||||
'en' => 'English',
|
||||
'fr' => 'French',
|
||||
],
|
||||
'filters' => [
|
||||
'email_verified' => 'Email verified',
|
||||
'account_verified' => 'Account verified',
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'verify_account' => [
|
||||
'subject' => 'Verify your Bowli account',
|
||||
'title' => 'Verify your account',
|
||||
'greeting' => 'Hi :name,',
|
||||
'default_name' => 'there',
|
||||
'intro' => 'Confirm your email address to activate your account and access Bowli.',
|
||||
'action' => 'Verify my account',
|
||||
'expires' => 'This link expires in :minutes minutes.',
|
||||
'ignore' => 'If you did not create a Bowli account, you can ignore this email.',
|
||||
],
|
||||
'reset_password' => [
|
||||
'subject' => 'Reset your Bowli password',
|
||||
'title' => 'Reset your password',
|
||||
'greeting' => 'Hi :name,',
|
||||
'default_name' => 'there',
|
||||
'intro' => 'Click the button below to create a new password. The link opens a secure Bowli API page.',
|
||||
'action' => 'Choose a new password',
|
||||
'expires' => 'This link expires in :minutes minutes.',
|
||||
'copy_link' => 'If the button does not work, copy this link into your browser:',
|
||||
'ignore' => 'If you did not request a password reset, you can ignore this email.',
|
||||
],
|
||||
'reset_password_form' => [
|
||||
'page_title' => 'New password',
|
||||
'success_title' => 'Password updated',
|
||||
'title' => 'New password',
|
||||
'intro' => 'Choose a new password to secure your account.',
|
||||
'success' => 'Your password has been reset. You can return to the app and sign in.',
|
||||
'email' => 'Email',
|
||||
'password' => 'New password',
|
||||
'password_confirmation' => 'Confirm password',
|
||||
'submit' => 'Update password',
|
||||
],
|
||||
];
|
||||
@@ -18,6 +18,7 @@ return [
|
||||
'id' => 'ID',
|
||||
'name' => 'Nom',
|
||||
'email' => 'Adresse email',
|
||||
'locale' => 'Langue',
|
||||
'email_verified_at' => 'Email vérifié le',
|
||||
'account_verified_at' => 'Compte vérifié le',
|
||||
'avatar' => 'Avatar',
|
||||
@@ -38,6 +39,10 @@ return [
|
||||
'created_at' => 'Créé le',
|
||||
'updated_at' => 'Mis à jour le',
|
||||
],
|
||||
'locales' => [
|
||||
'en' => 'Anglais',
|
||||
'fr' => 'Français',
|
||||
],
|
||||
'filters' => [
|
||||
'email_verified' => 'Email vérifié',
|
||||
'account_verified' => 'Compte vérifié',
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'verify_account' => [
|
||||
'subject' => 'Vérifie ton compte Bowli',
|
||||
'title' => 'Vérifie ton compte',
|
||||
'greeting' => 'Bonjour :name,',
|
||||
'default_name' => 'à toi',
|
||||
'intro' => 'Confirme ton adresse email pour activer ton compte et accéder à Bowli.',
|
||||
'action' => 'Vérifier mon compte',
|
||||
'expires' => 'Ce lien expire dans :minutes minutes.',
|
||||
'ignore' => 'Si tu n’as pas créé de compte Bowli, tu peux ignorer cet email.',
|
||||
],
|
||||
'reset_password' => [
|
||||
'subject' => 'Réinitialise ton mot de passe Bowli',
|
||||
'title' => 'Réinitialise ton mot de passe',
|
||||
'greeting' => 'Bonjour :name,',
|
||||
'default_name' => 'à toi',
|
||||
'intro' => 'Clique sur le bouton ci-dessous pour créer un nouveau mot de passe. Le lien ouvre une page sécurisée de l’API Bowli.',
|
||||
'action' => 'Choisir un nouveau mot de passe',
|
||||
'expires' => 'Ce lien expire dans :minutes minutes.',
|
||||
'copy_link' => 'Si le bouton ne fonctionne pas, copie ce lien dans ton navigateur :',
|
||||
'ignore' => 'Si tu n’as pas demandé de réinitialisation, tu peux ignorer cet email.',
|
||||
],
|
||||
'reset_password_form' => [
|
||||
'page_title' => 'Nouveau mot de passe',
|
||||
'success_title' => 'Mot de passe modifié',
|
||||
'title' => 'Nouveau mot de passe',
|
||||
'intro' => 'Choisis un nouveau mot de passe pour sécuriser ton compte.',
|
||||
'success' => 'Ton mot de passe a bien été réinitialisé. Tu peux retourner dans l’application et te connecter.',
|
||||
'email' => 'Email',
|
||||
'password' => 'Nouveau mot de passe',
|
||||
'password_confirmation' => 'Confirmer le mot de passe',
|
||||
'submit' => 'Modifier le mot de passe',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user