mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 22:43:20 -06:00
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* passwords.php
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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' => 'As senhas devem ter pelo menos seis caracteres e devem ser iguais.',
|
|
'user' => 'Não podemos encontrar um usuário com esse endereço de e-mail.',
|
|
'token' => 'Este token de redefinição de senha é inválido.',
|
|
'sent' => 'Nós te enviamos um email com um link para trocar a senha!',
|
|
'reset' => 'Sua senha foi redefinida!',
|
|
'blocked' => 'Boa tentativa.',
|
|
|
|
];
|