mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 17:54:57 +01:00
27 lines
897 B
PHP
27 lines
897 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.
|
|
|
|
|
*/
|
|
|
|
// Laravel
|
|
'reset' => 'Je wachtwoord is gereset!',
|
|
'sent' => 'We hebben uw wachtwoord reset link gemaild!',
|
|
'throttled' => 'Gelieve even te wachten voor u het opnieuw probeert.',
|
|
'token' => 'Dit wachtwoord reset token is ongeldig.',
|
|
'user' => "We kunnen geen gebruiker vinden met dat e-mailadres.",
|
|
|
|
// 2FAuth
|
|
'password' => 'Wachtwoorden moeten minstens acht tekens bevatten en overeenkomen.',
|
|
|
|
];
|