23 lines
817 B
PHP
23 lines
817 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 è stata reimpostata.',
|
|
'sent' => 'Ti abbiamo inviato via email il link per reimpostare la password.',
|
|
'throttled' => 'Per favore, attendi prima di riprovare.',
|
|
'token' => 'Il codice di reimpostazione password non è valido.',
|
|
'user' => "Non riusciamo a trovare un utente con questo indirizzo email.",
|
|
|
|
];
|