Files
firefly-iii/resources/lang/de_DE/auth.php

40 lines
1.4 KiB
PHP
Raw Normal View History

2016-10-14 17:14:04 +02:00
<?php
/**
* auth.php
2017-12-11 19:42:57 +01:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
2016-10-14 17:14:04 +02:00
*
2017-12-11 19:42:57 +01: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.
2016-10-14 17:14:04 +02:00
*
2017-12-11 19:42:57 +01: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-19 05:24:14 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2016-10-14 17:14:04 +02:00
*/
2017-12-11 19:42:57 +01:00
declare(strict_types=1);
2016-10-14 17:14:04 +02: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.
|
*/
2016-10-30 07:19:56 +01:00
'failed' => 'Falscher Benutzername und/oder falsches Passwort.',
'throttle' => 'Zu viele Login-Versuche. Bitte versuchen Sie es in :seconds Sekunde(n) erneut.',
2016-10-14 17:14:04 +02:00
2017-09-03 10:41:39 +02:00
];