2017-01-02 04:02:16 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* auth.php
|
2017-12-11 12:42:57 -06:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
2017-01-02 04:02:16 -06:00
|
|
|
*
|
2017-12-11 12:42:57 -06:00
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2017-01-02 04:02:16 -06:00
|
|
|
*
|
2017-12-11 12:42:57 -06:00
|
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2017-12-18 22:24:14 -06:00
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2017-01-02 04:02:16 -06:00
|
|
|
*/
|
2017-12-11 12:42:57 -06:00
|
|
|
declare(strict_types=1);
|
2017-12-19 12:35:54 -06:00
|
|
|
|
2017-01-02 04:02:16 -06:00
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Authentication Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
|
|
| messages that we need to display to the user. You are free to modify
|
|
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-01-02 16:12:00 -06:00
|
|
|
'failed' => 'Te poświadczenia nie zgadzają się z naszymi danymi.',
|
2017-01-02 12:02:01 -06:00
|
|
|
'throttle' => 'Zbyt wiele prób logowania. Spróbuj ponownie za :seconds sekund.',
|
2017-09-03 03:41:38 -05:00
|
|
|
];
|