mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
23 lines
870 B
PHP
23 lines
870 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reminder Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are the default lines which match reasons
|
|
| that are given by the password broker for a password update attempt
|
|
| has failed, such as for an invalid token or invalid new password.
|
|
|
|
|
*/
|
|
|
|
'password' => 'Les mots de passe doivent faire au moins 6 caractères et correspondre à la confirmation.',
|
|
'user' => "Nous n'avons pas trouvé d'utilisateur avec cette adresse.",
|
|
'token' => 'Le jeton de réinitialisation est invalide.',
|
|
'sent' => 'Nous vous avons envoyé un lien de réinitialisation de mot de passe !',
|
|
'reset' => 'Votre mot de passe a été réinitialisé !',
|
|
|
|
];
|