Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

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