[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * This file is part of the phpBB Forum Software package. 5 * 6 * @copyright (c) phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 * For full copyright and license information, please see 10 * the docs/CREDITS.txt file. 11 * 12 * Deutsche Übersetzung durch die Übersetzer-Gruppe von phpBB.de: 13 * siehe language/de/AUTHORS.md und https://www.phpbb.de/go/ubersetzerteam 14 * 15 */ 16 17 /** 18 * DO NOT CHANGE 19 */ 20 if (!defined('IN_PHPBB')) 21 { 22 exit; 23 } 24 25 if (empty($lang) || !is_array($lang)) 26 { 27 $lang = array(); 28 } 29 30 // DEVELOPERS PLEASE NOTE 31 // 32 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 33 // 34 // Placeholders can now contain order information, e.g. instead of 35 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 36 // translators to re-order the output of data while ensuring it remains correct 37 // 38 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 39 // equally where a string contains only two placeholders which are used to wrap text 40 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 41 42 $lang = array_merge($lang, array( 43 'ACTIVE_TOPICS' => 'Aktive Themen', 44 'ANNOUNCEMENTS' => 'Bekanntmachungen', 45 46 'FORUM_PERMISSIONS' => 'Berechtigungen in diesem Forum', 47 48 'ICON_ANNOUNCEMENT' => 'Bekanntmachung', 49 'ICON_STICKY' => 'Wichtig', 50 51 'LOGIN_NOTIFY_FORUM' => 'Du wurdest über ein neues Thema in diesem Forum informiert. Bitte melde dich an, um es anzusehen.', 52 53 'MARK_TOPICS_READ' => 'Themen als gelesen markieren', 54 55 'NEW_POSTS_HOT' => 'Neue Beiträge [ beliebt ]', // Not used anymore 56 'NEW_POSTS_LOCKED' => 'Neue Beiträge [ gesperrt ]', // Not used anymore 57 'NO_NEW_POSTS_HOT' => 'Keine neuen Beiträge [ beliebt ]', // Not used anymore 58 'NO_NEW_POSTS_LOCKED' => 'Keine neuen Beiträge [ gesperrt ]', // Not used anymore 59 'NO_READ_ACCESS' => 'Du hast keine ausreichenden Rechte, um Themen in diesem Forum zu sehen oder zu lesen.', 60 'NO_FORUMS_IN_CATEGORY' => 'Diese Kategorie hat keine Foren.', 61 'NO_UNREAD_POSTS_HOT' => 'Keine ungelesenen Beiträge [ beliebt ]', 62 'NO_UNREAD_POSTS_LOCKED' => 'Keine ungelesenen Beiträge [ gesperrt ]', 63 64 'POST_FORUM_LOCKED' => 'Das Forum ist gesperrt', 65 66 'TOPICS_MARKED' => 'Die Themen in diesem Forum wurden als gelesen markiert.', 67 68 'UNREAD_POSTS_HOT' => 'Ungelesene Beiträge [ beliebt ]', 69 'UNREAD_POSTS_LOCKED' => 'Ungelesene Beiträge [ gesperrt ]', 70 71 'VIEW_FORUM' => 'Forum anzeigen', 72 'VIEW_FORUM_TOPICS' => array( 73 1 => '%d Thema', 74 2 => '%d Themen', 75 ), 76 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |