mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-21 14:03:06 -06:00
18 lines
728 B
PHP
18 lines
728 B
PHP
<?php
|
|
/**
|
|
* passwords.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'password' => 'Les mots de passe doivent contenir au moins six caractères et correspondre à la confirmation.',
|
|
'user' => 'Nous ne pouvons pas trouver un utilisateur avec cette adresse e-mail.',
|
|
'token' => 'Le jeton de réinitialisation de mot de passe est invalide.',
|
|
'sent' => 'Nous vous avons envoyé par e-mail un lien de réinitialisation de votre mot de passe !',
|
|
'reset' => 'Votre mot de passe a été réinitialisé !',
|
|
'blocked' => 'Bien essayé cependant.',
|
|
];
|