mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
30 lines
1002 B
PHP
30 lines
1002 B
PHP
<?php
|
|
/**
|
|
* passwords.php
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
*/
|
|
|
|
'password' => 'Wachtwoorden moeten zes karakters lang zijn, en natuurlijk 2x hetzelfde invoeren.',
|
|
'user' => 'Geen gebruiker met dat e-mailadres.',
|
|
'token' => 'Ongeldig token! Sorry.',
|
|
'sent' => 'Je krijgt een mailtje met een linkje om je wachtwoord te herstellen!',
|
|
'reset' => 'Je wachtwoord is hersteld!',
|
|
'blocked' => 'Leuk geprobeerd wel.',
|
|
|
|
];
|