77 lines
2.5 KiB
PHP
77 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
* Deutsche Übersetzung durch die Übersetzer-Gruppe von phpBB.de:
|
|
* siehe language/de/AUTHORS.md und https://www.phpbb.de/go/ubersetzerteam
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* DO NOT CHANGE
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
if (empty($lang) || !is_array($lang))
|
|
{
|
|
$lang = array();
|
|
}
|
|
|
|
// DEVELOPERS PLEASE NOTE
|
|
//
|
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
//
|
|
// Placeholders can now contain order information, e.g. instead of
|
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
// translators to re-order the output of data while ensuring it remains correct
|
|
//
|
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
// equally where a string contains only two placeholders which are used to wrap text
|
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
|
|
$lang = array_merge($lang, array(
|
|
'ACTIVE_TOPICS' => 'Aktive Themen',
|
|
'ANNOUNCEMENTS' => 'Bekanntmachungen',
|
|
|
|
'FORUM_PERMISSIONS' => 'Berechtigungen in diesem Forum',
|
|
|
|
'ICON_ANNOUNCEMENT' => 'Bekanntmachung',
|
|
'ICON_STICKY' => 'Wichtig',
|
|
|
|
'LOGIN_NOTIFY_FORUM' => 'Du wurdest über ein neues Thema in diesem Forum informiert. Bitte melde dich an, um es anzusehen.',
|
|
|
|
'MARK_TOPICS_READ' => 'Themen als gelesen markieren',
|
|
|
|
'NEW_POSTS_HOT' => 'Neue Beiträge [ beliebt ]', // Not used anymore
|
|
'NEW_POSTS_LOCKED' => 'Neue Beiträge [ gesperrt ]', // Not used anymore
|
|
'NO_NEW_POSTS_HOT' => 'Keine neuen Beiträge [ beliebt ]', // Not used anymore
|
|
'NO_NEW_POSTS_LOCKED' => 'Keine neuen Beiträge [ gesperrt ]', // Not used anymore
|
|
'NO_READ_ACCESS' => 'Du hast keine ausreichenden Rechte, um Themen in diesem Forum zu sehen oder zu lesen.',
|
|
'NO_FORUMS_IN_CATEGORY' => 'Diese Kategorie hat keine Foren.',
|
|
'NO_UNREAD_POSTS_HOT' => 'Keine ungelesenen Beiträge [ beliebt ]',
|
|
'NO_UNREAD_POSTS_LOCKED' => 'Keine ungelesenen Beiträge [ gesperrt ]',
|
|
|
|
'POST_FORUM_LOCKED' => 'Das Forum ist gesperrt',
|
|
|
|
'TOPICS_MARKED' => 'Die Themen in diesem Forum wurden als gelesen markiert.',
|
|
|
|
'UNREAD_POSTS_HOT' => 'Ungelesene Beiträge [ beliebt ]',
|
|
'UNREAD_POSTS_LOCKED' => 'Ungelesene Beiträge [ gesperrt ]',
|
|
|
|
'VIEW_FORUM' => 'Forum anzeigen',
|
|
'VIEW_FORUM_TOPICS' => array(
|
|
1 => '%d Thema',
|
|
2 => '%d Themen',
|
|
),
|
|
));
|