passwords.php 775 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Password Reset Language Lines
  5. |--------------------------------------------------------------------------
  6. |
  7. | The following language lines are the default lines which match reasons
  8. | that are given by the password broker for a password update attempt
  9. | has failed, such as for an invalid token or invalid new password.
  10. |
  11. */
  12. return [
  13. 'reset' => 'La password è stata reimpostata!',
  14. 'sent' => 'Ti abbiamo inviato una email con il link per il reset della password!',
  15. 'throttled' => 'Per favore, attendi prima di riprovare.',
  16. 'token' => 'Questo token di reset della password non è valido.',
  17. 'user' => 'Non riusciamo a trovare un utente con questo indirizzo email.',
  18. ];