24 lines
920 B
PHP
24 lines
920 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reset 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' => 'A password necessita conter, pelo menos, 6 caracteres e corresponder à sua confirmacao.',
|
|
'reset' => 'A sua password foi redefinida!',
|
|
'sent' => 'Enviámos um e-mail com o link para redefinir a sua password!',
|
|
'token' => 'Token para recuperação da password inválido.',
|
|
'user' => "Não encontramos nenhum utilizador com esse endereço de e-mail.",
|
|
'throttle' => 'Por favor, aguarde antes de tentar novamente.',
|
|
|
|
];
|