[ 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 'CONFIG_NOT_EXIST' => 'Die Konfigurationseinstellung „%s“ existiert unerwarteterweise nicht.', 44 45 'GROUP_NOT_EXIST' => 'Die Gruppe „%s“ existiert unerwarteterweise nicht.', 46 47 'MIGRATION_APPLY_DEPENDENCIES' => 'Wende Abhängigkeiten von %s an.', 48 'MIGRATION_DATA_DONE' => 'Daten eingerichtet: %1$s; Dauer: %2$.2f Sekunden', 49 'MIGRATION_DATA_IN_PROGRESS' => 'Richte Daten ein: %1$s; Dauer: %2$.2f Sekunden', 50 'MIGRATION_DATA_RUNNING' => 'Richte Daten ein: %s.', 51 'MIGRATION_EFFECTIVELY_INSTALLED' => 'Die Migration wurde bereits erfolgreich durchgeführt (übersprungen): %s', 52 'MIGRATION_EXCEPTION_ERROR' => 'Während der Anpassung der Datenbank ist etwas falsch gelaufen und ein Fehler aufgetreten. Die Änderungen, die vor dem Fehler durchgeführt wurden, wurden so weit wie möglich rückgängig gemacht. Du solltest jedoch prüfen, ob dein Board fehlerfrei funktioniert.', 53 'MIGRATION_NOT_FULFILLABLE' => 'Die Migration „%1$s“ kann nicht durchgeführt werden. Fehlender Migrations-Schritt: „%2$s“.', 54 'MIGRATION_NOT_INSTALLED' => 'Die Migration „%s“ ist nicht installiert.', 55 'MIGRATION_NOT_VALID' => '%s ist keine gültige Migration.', 56 'MIGRATION_SCHEMA_DONE' => 'Installiertes Schema: %1$s; Dauer: %2$.2f Sekunden', 57 'MIGRATION_SCHEMA_IN_PROGRESS' => 'Installiere Schema: %1$s; Dauer: %2$.2f Sekunden', 58 'MIGRATION_SCHEMA_RUNNING' => 'Installiere Schema: %s.', 59 60 'MIGRATION_REVERT_DATA_DONE' => 'Rückgängig gemachte Daten-Änderungen: %1$s; Dauer: %2$.2f Sekunden', 61 'MIGRATION_REVERT_DATA_IN_PROGRESS' => 'Mache Daten-Änderungen rückgängig: %1$s; Dauer: %2$.2f Sekunden', 62 'MIGRATION_REVERT_DATA_RUNNING' => 'Mache Daten-Änderungen rückgängig: %s.', 63 'MIGRATION_REVERT_SCHEMA_DONE' => 'Rückgängig gemachte Schema-Änderungen: %1$s; Dauer: %2$.2f Sekunden', 64 'MIGRATION_REVERT_SCHEMA_IN_PROGRESS' => 'Mache Schema-Änderungen rückgängig: %1$s; Dauer: %2$.2f Sekunden', 65 'MIGRATION_REVERT_SCHEMA_RUNNING' => 'Mache Schema-Änderungen rückgängig: %s.', 66 67 'MIGRATION_INVALID_DATA_MISSING_CONDITION' => 'Eine Migration ist ungültig. Einer Hilfsfunktion für bedingte Anweisungen fehlt eine Bedingung. („An if statement helper is missing a condition.“)', 68 'MIGRATION_INVALID_DATA_MISSING_STEP' => 'Eine Migration ist ungültig. Einer Hilfsfunktion für bedingte Anweisungen fehlt ein gültiger Aufruf eines Migrationsschritts. („An if statement helper is missing a valid call to a migration step.“)', 69 'MIGRATION_INVALID_DATA_CUSTOM_NOT_CALLABLE' => 'Eine Migration ist ungültig. Der Aufruf einer benutzerdefinierten Rückruffunktion ist gescheitert. („A custom callable function could not be called.“)', 70 'MIGRATION_INVALID_DATA_UNKNOWN_TYPE' => 'Eine Migration ist ungültig. Ein unbekannter Migrationstool-Typ wurde gefunden. („An unknown migration tool type was encountered.“)', 71 'MIGRATION_INVALID_DATA_UNDEFINED_TOOL' => 'Eine Migration ist ungültig. Ein undefiniertes Migrationstool wurde gefunden. („An undefined migration tool was encountered.“)', 72 'MIGRATION_INVALID_DATA_UNDEFINED_METHOD' => 'Eine Migration ist ungültig. Eine undefinierte Migrationstool-Methode wurde gefunden. („An undefined migration tool method was encountered.“)', 73 74 75 'MODULE_ERROR' => 'Bei der Erstellung eines Moduls ist ein Fehler aufgetreten: %s', 76 'MODULE_EXISTS' => 'Ein Modul existiert bereits: %s', 77 'MODULE_EXIST_MULTIPLE' => 'Es existieren mehrere Module mit dem angegebenen übergeordneten Namen: %s. Verwende die Nach-Oben-/Nach-Unten-Schaltflächen, um die Position des Moduls festzulegen.', 78 'MODULE_INFO_FILE_NOT_EXIST' => 'Eine erforderliche Informationsdatei für ein Modul existiert nicht: %2$s', 79 'MODULE_NOT_EXIST' => 'Ein erforderliches Modul existiert nicht: %s', 80 81 'PARENT_MODULE_FIND_ERROR' => 'Es wurde kein übergeordnetes Modul mit diesem Namen gefunden: %s', 82 'PERMISSION_NOT_EXIST' => 'Die Berechtigungs-Einstellung „%s“ existiert leider nicht.', 83 84 'ROLE_ASSIGNED_NOT_EXIST' => 'Die der Gruppe „%1$s“ zugewiesene Berechtigungsrolle existiert leider nicht. ID der Rolle: „%2$s“', 85 'ROLE_NOT_EXIST' => 'Die Berechtigungs-Rolle „%s“ existiert leider nicht.', 86 ));
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 |