[ 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 */ 13 14 /** 15 * DO NOT CHANGE 16 */ 17 if (!defined('IN_PHPBB')) 18 { 19 exit; 20 } 21 22 if (empty($lang) || !is_array($lang)) 23 { 24 $lang = array(); 25 } 26 27 // DEVELOPERS PLEASE NOTE 28 // 29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 30 // 31 // Placeholders can now contain order information, e.g. instead of 32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 33 // translators to re-order the output of data while ensuring it remains correct 34 // 35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 36 // equally where a string contains only two placeholders which are used to wrap text 37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 38 39 $lang = array_merge($lang, array( 40 'CONFIG_NOT_EXIST' => 'The config setting "%s" unexpectedly does not exist.', 41 42 'GROUP_NOT_EXIST' => 'The group "%s" unexpectedly does not exist.', 43 44 'MIGRATION_APPLY_DEPENDENCIES' => 'Apply dependencies of %s.', 45 'MIGRATION_DATA_DONE' => 'Installed Data: %1$s; Time: %2$.2f seconds', 46 'MIGRATION_DATA_IN_PROGRESS' => 'Installing Data: %1$s; Time: %2$.2f seconds', 47 'MIGRATION_DATA_RUNNING' => 'Installing Data: %s.', 48 'MIGRATION_EFFECTIVELY_INSTALLED' => 'Migration already effectively installed (skipped): %s', 49 'MIGRATION_EXCEPTION_ERROR' => 'Something went wrong during the request and an exception was thrown. The changes made before the error occurred were reversed to the best of our abilities, but you should check the board for errors.', 50 'MIGRATION_NOT_FULFILLABLE' => 'The migration "%1$s" is not fulfillable, missing migration "%2$s".', 51 'MIGRATION_NOT_INSTALLED' => 'The migration "%s" is not installed.', 52 'MIGRATION_NOT_VALID' => '%s is not a valid migration.', 53 'MIGRATION_SCHEMA_DONE' => 'Installed Schema: %1$s; Time: %2$.2f seconds', 54 'MIGRATION_SCHEMA_IN_PROGRESS' => 'Installing Schema: %1$s; Time: %2$.2f seconds', 55 'MIGRATION_SCHEMA_RUNNING' => 'Installing Schema: %s.', 56 57 'MIGRATION_REVERT_DATA_DONE' => 'Reverted Data: %1$s; Time: %2$.2f seconds', 58 'MIGRATION_REVERT_DATA_IN_PROGRESS' => 'Reverting Data: %1$s; Time: %2$.2f seconds', 59 'MIGRATION_REVERT_DATA_RUNNING' => 'Reverting Data: %s.', 60 'MIGRATION_REVERT_SCHEMA_DONE' => 'Reverted Schema: %1$s; Time: %2$.2f seconds', 61 'MIGRATION_REVERT_SCHEMA_IN_PROGRESS' => 'Reverting Schema: %1$s; Time: %2$.2f seconds', 62 'MIGRATION_REVERT_SCHEMA_RUNNING' => 'Reverting Schema: %s.', 63 64 'MIGRATION_INVALID_DATA_MISSING_CONDITION' => 'A migration is invalid. An if statement helper is missing a condition.', 65 'MIGRATION_INVALID_DATA_MISSING_STEP' => 'A migration is invalid. An if statement helper is missing a valid call to a migration step.', 66 'MIGRATION_INVALID_DATA_CUSTOM_NOT_CALLABLE' => 'A migration is invalid. A custom callable function could not be called.', 67 'MIGRATION_INVALID_DATA_UNKNOWN_TYPE' => 'A migration is invalid. An unknown migration tool type was encountered.', 68 'MIGRATION_INVALID_DATA_UNDEFINED_TOOL' => 'A migration is invalid. An undefined migration tool was encountered.', 69 'MIGRATION_INVALID_DATA_UNDEFINED_METHOD' => 'A migration is invalid. An undefined migration tool method was encountered.', 70 71 'MODULE_ERROR' => 'An error occurred while creating a module: %s', 72 'MODULE_EXISTS' => 'A module already exists: %s', 73 'MODULE_EXIST_MULTIPLE' => 'Several modules with the given parent module langname already exist: %s. Try using before/after keys to clarify the module placement.', 74 'MODULE_INFO_FILE_NOT_EXIST' => 'A required module info file is missing: %2$s', 75 'MODULE_NOT_EXIST' => 'A required module does not exist: %s', 76 77 'PARENT_MODULE_FIND_ERROR' => 'Unable to determine the parent module identifier: %s', 78 'PERMISSION_NOT_EXIST' => 'The permission setting "%s" unexpectedly does not exist.', 79 80 'ROLE_ASSIGNED_NOT_EXIST' => 'The permission role assigned to group "%1$s" unexpectedly does not exist. Role id: "%2$s"', 81 'ROLE_NOT_EXIST' => 'The permission role "%s" unexpectedly does not exist.', 82 ));
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 |