mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-23 23:13:18 -06:00
20 lines
707 B
PHP
20 lines
707 B
PHP
<?php
|
|
/**
|
|
* passwords.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International 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.',
|
|
];
|