23 lines
795 B
PHP
23 lines
795 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
|
|
| outcome such as failure due to an invalid password / reset token.
|
|
|
|
|
*/
|
|
|
|
'reset' => 'La tua password e stata reimpostata.',
|
|
'sent' => 'Ti abbiamo inviato via email il link per reimpostare la password.',
|
|
'throttled' => 'Attendi prima di riprovare.',
|
|
'token' => 'Questo token di reimpostazione password non e valido.',
|
|
'user' => 'Non troviamo un utente con questo indirizzo email.',
|
|
|
|
];
|