mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-01 20:54:03 +01:00
27 lines
933 B
PHP
27 lines
933 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.
|
|
|
|
|
*/
|
|
|
|
// Laravel
|
|
'reset' => 'Sua senha foi redefinida!',
|
|
'sent' => 'Enviamos o link de redefinição de senha por e-mail!',
|
|
'throttled' => 'Por favor aguarde antes de tentar novamente.',
|
|
'token' => 'Este token de redefinição de senha é inválido.',
|
|
'user' => "Não foi encontrado nenhum usuário com este endereço de e-mail.",
|
|
|
|
// 2FAuth
|
|
'password' => 'A senha deve conter pelo menos oito caracteres e ser igual à confirmação.',
|
|
|
|
];
|