[ Index ] |
PHP Cross Reference of phpBB-3.1.12-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 'ACP_FILES' => 'Sprachdateien Administrations-Bereich', 44 'ACP_LANGUAGE_PACKS_EXPLAIN' => 'Hier kannst du Sprachpakete installieren und entfernen. Das Standard-Sprachpaket ist mit einem Stern (*) gekennzeichnet.', 45 46 'DELETE_LANGUAGE_CONFIRM' => 'Bist du dir sicher, dass du „%s“ löschen möchtest?', 47 48 'INSTALLED_LANGUAGE_PACKS' => 'Installierte Sprachpakete', 49 50 'LANGUAGE_DETAILS_UPDATED' => 'Sprachdetails erfolgreich aktualisiert.', 51 'LANGUAGE_PACK_ALREADY_INSTALLED' => 'Dieses Sprachpaket ist bereits installiert.', 52 'LANGUAGE_PACK_DELETED' => 'Das Sprachpaket „%s“ wurde erfolgreich entfernt. Alle Benutzer, die dieses Paket genutzt haben, wurden auf die Standard-Sprache des Boards umgestellt.', 53 'LANGUAGE_PACK_DETAILS' => 'Sprachpaket-Details', 54 'LANGUAGE_PACK_INSTALLED' => 'Das Sprachpaket „%s“ wurde erfolgreich installiert.', 55 'LANGUAGE_PACK_CPF_UPDATE' => 'Die Sprachvariablen der benutzerdefinierten Profilfelder wurden von der Standard-Sprache übernommen. Bitte passe sie gegebenenfalls an.', 56 'LANGUAGE_PACK_ISO' => 'ISO', 57 'LANGUAGE_PACK_LOCALNAME' => 'Lokaler Name', 58 'LANGUAGE_PACK_NAME' => 'Name', 59 'LANGUAGE_PACK_NOT_EXIST' => 'Das gewählte Sprachpaket existiert nicht.', 60 'LANGUAGE_PACK_USED_BY' => 'Verwendet von (inklusive Spiders/Robots)', 61 'LANGUAGE_VARIABLE' => 'Wert der Variablen', 62 'LANG_AUTHOR' => 'Autor des Sprachpakets', 63 'LANG_ENGLISH_NAME' => 'Englischer Name', 64 'LANG_ISO_CODE' => 'ISO-Code', 65 'LANG_LOCAL_NAME' => 'Lokaler Name', 66 67 'MISSING_LANG_FILES' => 'Fehlende Sprachdateien', 68 'MISSING_LANG_VARIABLES' => 'Fehlende Sprachvariablen', 69 70 'NO_FILE_SELECTED' => 'Du hast keine Sprachdatei angegeben.', 71 'NO_LANG_ID' => 'Du hast kein Sprachpaket angegeben.', 72 'NO_REMOVE_DEFAULT_LANG' => 'Du kannst das Standard-Sprachpaket nicht entfernen.<br />Wenn du dieses Sprachpaket entfernen möchtest, musst du zuerst die Standard-Sprache des Boards ändern.', 73 'NO_UNINSTALLED_LANGUAGE_PACKS' => 'Keine deinstallierten Sprachpakete', 74 75 'THOSE_MISSING_LANG_FILES' => 'Die folgenden Sprachdateien fehlen im „%s“-Sprachpaket', 76 'THOSE_MISSING_LANG_VARIABLES' => 'Die folgenden Sprachvariablen fehlen im „%s“-Sprachpaket', 77 78 'UNINSTALLED_LANGUAGE_PACKS' => 'Deinstallierte Sprachpakete', 79 80 'BROWSE_LANGUAGE_PACKS_DATABASE' => 'phpBB-Sprachpaket-Datenbank', 81 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |