mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-18 17:38:20 +02:00
27 lines
935 B
PHP
27 lines
935 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' => 'La contrasenya s\'ha restablert!',
|
|
'sent' => 'Hem enviat per mail l\'enllaç per restablir la contrasenya!',
|
|
'throttled' => 'Si us plau, espera abans de reintentar-ho.',
|
|
'token' => 'El testimoni de reinici de contrasenya no és correcte.',
|
|
'user' => "No existeix cap usuari amb aquest email.",
|
|
|
|
// 2FAuth
|
|
'password' => 'Les contrasenyes han de tenir almenys vuit caràcters i coincidir amb la confirmació.',
|
|
|
|
];
|