22 lines
861 B
PHP
22 lines
861 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reminder 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' => 'Le Passwords devono essere almeno di sei caratteri e combaciare.',
|
|
'user' => "Non esiste un utente con questo indirizzo e-mail.",
|
|
'token' => 'Il token per il reset della password non è valido.',
|
|
'sent' => 'Una email con il link al reset della passowrd ti è stato inviato!',
|
|
'reset' => 'La tua password è stata resettata!',
|
|
];
|