-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating the auth forms and translations
- Loading branch information
1 parent
a154a27
commit 4577791
Showing
12 changed files
with
170 additions
and
57 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
return [ | ||
'heading' => 'Welcome Back!', | ||
'remember' => 'Remember Me', | ||
'submit' => 'Sign in', | ||
'links' => [ | ||
'register' => 'Don\'t have an account ? Sign up', | ||
'reset' => 'Have you forgotten your password?', | ||
], | ||
]; |
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,9 @@ | ||
<?php | ||
|
||
return [ | ||
'heading' => 'Welcome!', | ||
'submit' => 'Sign up', | ||
'links' => [ | ||
'login' => 'Already have an account ? Sign in', | ||
], | ||
]; |
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 | ||
|
||
return [ | ||
'heading' => 'Have you forgotten your password?', | ||
'submit' => 'Send Password Reset Link', | ||
'links' => [ | ||
'login' => 'You\'ve remembered your password ? Sign in', | ||
'register' => 'Don\'t have an account ? Sign up', | ||
], | ||
]; |
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,5 +1,20 @@ | ||
<?php | ||
|
||
return [ | ||
/* ------------------------------------------------------------------------------------------------ | ||
| Attributes | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
'email' => 'Email address', | ||
'username' => 'Username', | ||
'password' => 'Password', | ||
'password_confirmation' => 'Password Confirmation', | ||
'first_name' => 'First Name', | ||
'last_name' => 'Last Name', | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
| Messages | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
'since' => 'Member since :date', | ||
]; |
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,11 @@ | ||
<?php | ||
|
||
return [ | ||
'heading' => 'Bienvenu!', | ||
'remember' => 'Se souvenir de moi', | ||
'submit' => 'Se connecter', | ||
'links' => [ | ||
'register' => 'Vous n\'avez pas un compte? Inscrivez-vous', | ||
'reset' => 'Avez-vous oublié votre mot de passe?', | ||
], | ||
]; |
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,9 @@ | ||
<?php | ||
|
||
return [ | ||
'heading' => 'Bienvenu!', | ||
'submit' => 'S\'inscrire', | ||
'links' => [ | ||
'login' => 'Avez-vous déjà un compte ? Connectez-vous', | ||
], | ||
]; |
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 | ||
|
||
return [ | ||
'heading' => 'Avez-vous oublié votre mot de passe?', | ||
'submit' => 'Envoyer le lien de réinitialisation d\'un mot de passe', | ||
'links' => [ | ||
'login' => 'Avez-vous souvenu de votre mot de passe? Connectez-vous', | ||
'register' => 'Vous n\'avez pas un compte? Inscrivez-vous', | ||
], | ||
]; |
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,5 +1,20 @@ | ||
<?php | ||
|
||
return [ | ||
/* ------------------------------------------------------------------------------------------------ | ||
| Attributes | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
'email' => 'Email', | ||
'username' => 'Nom d\'utilisateur', | ||
'password' => 'Mot de passe', | ||
'password_confirmation' => 'Confirmation mot de passe', | ||
'first_name' => 'Prénom', | ||
'last_name' => 'Nom', | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
| Messages | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
'since' => 'Membre depuis :date', | ||
]; |
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
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
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
Oops, something went wrong.