mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-25 16:31:15 -06:00
22 lines
753 B
PHP
22 lines
753 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* passwords.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'password' => 'Hasło musi zawierać przynajmniej 6 znaków i musi się zgadzać z potwierdzeniem.',
|
|
'user' => 'Nie możemy znaleźć użytkownika o podanym adresie email.',
|
|
'token' => 'Ten token do resetowania hasła jest nieprawidłowy.',
|
|
'sent' => 'Wysłaliśmy link do resetowania hasła na twój adres email!',
|
|
'reset' => 'Twoje hasło zostało zresetowane!',
|
|
'blocked' => 'Przynajmniej próbowałeś.',
|
|
];
|