mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
24 lines
926 B
PHP
24 lines
926 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.
|
|
|
|
|
*/
|
|
|
|
'reset' => 'La tua password è stata reimpostata!',
|
|
'sent' => 'Ti abbiamo inviato via email il link per reimpostare la password!',
|
|
'password' => 'La password e la conferma devono corrispondere e contenere almeno sei caratteri.',
|
|
'throttled' => 'Per favore attendi prima di riprovare.',
|
|
'token' => 'Questo token di reimpostazione della password non è valido.',
|
|
'user' => "Non riusciamo a trovare un utente con quell'indirizzo email.",
|
|
|
|
];
|