22 lines
940 B
PHP
22 lines
940 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' => 'Le password devono essere lunghe almeno sei caratteri ed essere identiche al campo di conferma password.',
|
|
'reset' => 'La tua password è stata resettata!',
|
|
'sent' => 'Ti abbiamo inviato via email il link per resettare la password!',
|
|
'token' => 'Questo token per resettare la password non è valido.',
|
|
'user' => 'Non ci è stato possibile trovare un utente con questo indirizzo email.',
|
|
'confirm' => 'Conferma Password',
|
|
];
|