mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
18 lines
648 B
PHP
18 lines
648 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' => 'A senha precisa ter no mínimo seis caracteres e tem que ser igual à confirmação de senha.',
|
|
'user' => 'Não foi possível encontrar o usuário com este 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.',
|
|
];
|