Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

extensions.php

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 5.82 KiB


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      'EXTENSION_NOT_INSTALLED'    => 'The extension %s is not available. Please check that you have installed it correctly.',
047   
048      'DETAILS'                => 'Details',
049   
050      'EXTENSIONS_DISABLED'    => 'Disabled Extensions',
051      'EXTENSIONS_ENABLED'    => 'Enabled Extensions',
052   
053      'EXTENSION_DELETE_DATA'    => 'Delete data',
054      'EXTENSION_DISABLE'        => 'Disable',
055      'EXTENSION_ENABLE'        => 'Enable',
056   
057      '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.',
058      'EXTENSION_DISABLE_EXPLAIN'        => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
059      'EXTENSION_ENABLE_EXPLAIN'        => 'Enabling an extension allows you to use it on your board.',
060   
061      '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.',
062      'EXTENSION_DISABLE_IN_PROGRESS'    => 'The extension is currently being disabled. Please do not leave or refresh this page until it is completed.',
063      'EXTENSION_ENABLE_IN_PROGRESS'    => 'The extension is currently being enabled. Please do not leave or refresh this page until it is completed.',
064   
065      'EXTENSION_DELETE_DATA_SUCCESS'    => 'The extension’s data was deleted successfully',
066      'EXTENSION_DISABLE_SUCCESS'        => 'The extension was disabled successfully',
067      'EXTENSION_ENABLE_SUCCESS'        => 'The extension was enabled successfully',
068   
069      'EXTENSION_NAME'            => 'Extension Name',
070      'EXTENSION_ACTIONS'            => 'Actions',
071      'EXTENSION_OPTIONS'            => 'Options',
072      'EXTENSION_INSTALL_HEADLINE'=> 'Installing an extension',
073      'EXTENSION_INSTALL_EXPLAIN'    => '<ol>
074              <li>Download an extension from phpBB’s extensions database</li>
075              <li>Unzip the extension and upload it to the <samp>ext/</samp> directory of your phpBB board</li>
076              <li>Enable the extension, here in the Extensions manager</li>
077          </ol>',
078      'EXTENSION_UPDATE_HEADLINE'    => 'Updating an extension',
079      'EXTENSION_UPDATE_EXPLAIN'    => '<ol>
080              <li>Disable the extension</li>
081              <li>Delete the extension’s files from the filesystem</li>
082              <li>Upload the new files</li>
083              <li>Enable the extension</li>
084          </ol>',
085      'EXTENSION_REMOVE_HEADLINE'    => 'Completely removing an extension from your board',
086      'EXTENSION_REMOVE_EXPLAIN'    => '<ol>
087              <li>Disable the extension</li>
088              <li>Delete the extension’s data</li>
089              <li>Delete the extension’s files from the filesystem</li>
090          </ol>',
091   
092      '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!',
093      'EXTENSION_DISABLE_CONFIRM'        => 'Are you sure that you wish to disable the “%s” extension?',
094      'EXTENSION_ENABLE_CONFIRM'        => 'Are you sure that you wish to enable the “%s” extension?',
095      'EXTENSION_FORCE_UNSTABLE_CONFIRM'    => 'Are you sure that you wish to force the use of unstable version?',
096   
097      'RETURN_TO_EXTENSION_LIST'    => 'Return to the extension list',
098   
099      'EXT_DETAILS'            => 'Extension Details',
100      'DISPLAY_NAME'            => 'Display Name',
101      'CLEAN_NAME'            => 'Clean Name',
102      'TYPE'                    => 'Type',
103      'DESCRIPTION'            => 'Description',
104      'VERSION'                => 'Version',
105      'HOMEPAGE'                => 'Homepage',
106      'PATH'                    => 'File Path',
107      'TIME'                    => 'Release Time',
108      'LICENSE'                => 'Licence',
109   
110      'REQUIREMENTS'            => 'Requirements',
111      'PHPBB_VERSION'            => 'phpBB Version',
112      'PHP_VERSION'            => 'PHP Version',
113      'AUTHOR_INFORMATION'    => 'Author Information',
114      'AUTHOR_NAME'            => 'Name',
115      'AUTHOR_EMAIL'            => 'Email',
116      'AUTHOR_HOMEPAGE'        => 'Homepage',
117      'AUTHOR_ROLE'            => 'Role',
118   
119      'NOT_UP_TO_DATE'        => '%s is not up to date',
120      'UP_TO_DATE'            => '%s is up to date',
121      'ANNOUNCEMENT_TOPIC'    => 'Release Announcement',
122      'DOWNLOAD_LATEST'        => 'Download Version',
123      'NO_VERSIONCHECK'        => 'No version check information given.',
124   
125      'VERSIONCHECK_FORCE_UPDATE_ALL'        => 'Re-Check all versions',
126      'FORCE_UNSTABLE'                    => 'Always check for unstable versions',
127      'EXTENSIONS_VERSION_CHECK_SETTINGS'    => 'Version check settings',
128   
129      'BROWSE_EXTENSIONS_DATABASE'        => 'Browse extensions database',
130   
131      'META_FIELD_NOT_SET'    => 'Required meta field %s has not been set.',
132      'META_FIELD_INVALID'    => 'Meta field %s is invalid.',
133  ));
134