Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
extensions.php
001 <?php
002 /**
003 *
004 * This file is part of the phpBB Forum Software package.
005 *
006 * @copyright (c) phpBB Limited <https://www.phpbb.com>
007 * @license GNU General Public License, version 2 (GPL-2.0)
008 *
009 * For full copyright and license information, please see
010 * the docs/CREDITS.txt file.
011 *
012 */
013
014 if (!defined('IN_PHPBB'))
015 {
016 exit;
017 }
018
019 /**
020 * DO NOT CHANGE
021 */
022 if (empty($lang) || !is_array($lang))
023 {
024 $lang = array();
025 }
026
027 // DEVELOPERS PLEASE NOTE
028 //
029 // Placeholders can now contain order information, e.g. instead of
030 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
031 // translators to re-order the output of data while ensuring it remains correct
032 //
033 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
034 // equally where a string contains only two placeholders which are used to wrap text
035 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
036
037 $lang = array_merge($lang, array(
038 'EXTENSION' => 'Extension',
039 'EXTENSIONS' => 'Extensions',
040 'EXTENSIONS_ADMIN' => 'Extensions Manager',
041 'EXTENSIONS_EXPLAIN' => 'The Extensions Manager is a tool in your phpBB Board which allows you to manage all of your extensions statuses and view information about them.',
042 'EXTENSION_INVALID_LIST' => 'The “%s” extension is not valid.<br />%s<br /><br />',
043 'EXTENSION_NOT_AVAILABLE' => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).',
044 'EXTENSION_DIR_INVALID' => 'The selected extension has an invalid directory structure and cannot be enabled.',
045 'EXTENSION_NOT_ENABLEABLE' => 'The selected extension cannot be enabled, please verify the extension’s requirements.',
046
047 'DETAILS' => 'Details',
048
049 'EXTENSIONS_DISABLED' => 'Disabled Extensions',
050 'EXTENSIONS_ENABLED' => 'Enabled Extensions',
051
052 'EXTENSION_DELETE_DATA' => 'Delete data',
053 'EXTENSION_DISABLE' => 'Disable',
054 'EXTENSION_ENABLE' => 'Enable',
055
056 'EXTENSION_DELETE_DATA_EXPLAIN' => 'Deleting an extension’s data removes all of its data and settings. The extension files are retained so it can be enabled again.',
057 'EXTENSION_DISABLE_EXPLAIN' => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
058 'EXTENSION_ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.',
059
060 'EXTENSION_DELETE_DATA_IN_PROGRESS' => 'The extension’s data is currently being deleted. Please do not leave or refresh this page until it is completed.',
061 'EXTENSION_DISABLE_IN_PROGRESS' => 'The extension is currently being disabled. Please do not leave or refresh this page until it is completed.',
062 'EXTENSION_ENABLE_IN_PROGRESS' => 'The extension is currently being enabled. Please do not leave or refresh this page until it is completed.',
063
064 'EXTENSION_DELETE_DATA_SUCCESS' => 'The extension’s data was deleted successfully',
065 'EXTENSION_DISABLE_SUCCESS' => 'The extension was disabled successfully',
066 'EXTENSION_ENABLE_SUCCESS' => 'The extension was enabled successfully',
067
068 'EXTENSION_NAME' => 'Extension Name',
069 'EXTENSION_ACTIONS' => 'Actions',
070 'EXTENSION_OPTIONS' => 'Options',
071 'EXTENSION_UPDATE_HEADLINE' => 'Updating an extension',
072 'EXTENSION_UPDATE_EXPLAIN' => '<ol>
073 <li>Disable the extension</li>
074 <li>Delete the extension’s files from the filesystem</li>
075 <li>Upload the new files</li>
076 <li>Enable the extension</li>
077 </ol>',
078 'EXTENSION_REMOVE_HEADLINE' => 'Completly removing an extension from your board',
079 'EXTENSION_REMOVE_EXPLAIN' => '<ol>
080 <li>Disable the extension</li>
081 <li>Delete the extension’s data</li>
082 <li>Delete the extension’s files from the filesystem</li>
083 </ol>',
084
085 'EXTENSION_DELETE_DATA_CONFIRM' => 'Are you sure that you wish to delete the data associated with “%s”?<br /><br />This removes all of its data and settings and cannot be undone!',
086 'EXTENSION_DISABLE_CONFIRM' => 'Are you sure that you wish to disable the “%s” extension?',
087 'EXTENSION_ENABLE_CONFIRM' => 'Are you sure that you wish to enable the “%s” extension?',
088 'EXTENSION_FORCE_UNSTABLE_CONFIRM' => 'Are you sure that you wish to force the use of unstable version?',
089
090 'RETURN_TO_EXTENSION_LIST' => 'Return to the extension list',
091
092 'EXT_DETAILS' => 'Extension Details',
093 'DISPLAY_NAME' => 'Display Name',
094 'CLEAN_NAME' => 'Clean Name',
095 'TYPE' => 'Type',
096 'DESCRIPTION' => 'Description',
097 'VERSION' => 'Version',
098 'HOMEPAGE' => 'Homepage',
099 'PATH' => 'File Path',
100 'TIME' => 'Release Time',
101 'LICENSE' => 'Licence',
102
103 'REQUIREMENTS' => 'Requirements',
104 'PHPBB_VERSION' => 'phpBB Version',
105 'PHP_VERSION' => 'PHP Version',
106 'AUTHOR_INFORMATION' => 'Author Information',
107 'AUTHOR_NAME' => 'Name',
108 'AUTHOR_EMAIL' => 'Email',
109 'AUTHOR_HOMEPAGE' => 'Homepage',
110 'AUTHOR_ROLE' => 'Role',
111
112 'NOT_UP_TO_DATE' => '%s is not up to date',
113 'UP_TO_DATE' => '%s is up to date',
114 'ANNOUNCEMENT_TOPIC' => 'Release Announcement',
115 'DOWNLOAD_LATEST' => 'Download Version',
116 'NO_VERSIONCHECK' => 'No version check information given.',
117
118 'VERSIONCHECK_FORCE_UPDATE_ALL' => 'Re-Check all versions',
119 'FORCE_UNSTABLE' => 'Always check for unstable versions',
120 'EXTENSIONS_VERSION_CHECK_SETTINGS' => 'Version check settings',
121
122 'META_FIELD_NOT_SET' => 'Required meta field %s has not been set.',
123 'META_FIELD_INVALID' => 'Meta field %s is invalid.',
124 ));
125