Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
98.35% |
119 / 121 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 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 | if (!defined('IN_PHPBB')) |
| 15 | { |
| 16 | exit; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * DO NOT CHANGE |
| 21 | */ |
| 22 | if (empty($lang) || !is_array($lang)) |
| 23 | { |
| 24 | $lang = array(); |
| 25 | } |
| 26 | |
| 27 | // DEVELOPERS PLEASE NOTE |
| 28 | // |
| 29 | // Placeholders can now contain order information, e.g. instead of |
| 30 | // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows |
| 31 | // translators to re-order the output of data while ensuring it remains correct |
| 32 | // |
| 33 | // You do not need this where single placeholders are used, e.g. 'Message %d' is fine |
| 34 | // equally where a string contains only two placeholders which are used to wrap text |
| 35 | // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine |
| 36 | |
| 37 | $lang = array_merge($lang, array( |
| 38 | |
| 39 | 'EXTENSIONS_ALREADY_INSTALLED' => 'The “%s” extension has already been installed.', |
| 40 | 'EXTENSIONS_ALREADY_INSTALLED_MANUALLY' => 'The “%s” extension has already been installed manually.', |
| 41 | 'EXTENSIONS_ALREADY_MANAGED' => 'The “%s” extension is already managed.', |
| 42 | 'EXTENSIONS_CANNOT_MANAGE_FILESYSTEM_ERROR' => 'The “%s” extension cannot be managed because the existing files could not be removed from the filesystem.', |
| 43 | 'EXTENSIONS_CANNOT_MANAGE_INSTALL_ERROR' => 'The “%s” extension could not be installed. The prior installation of this extension has been restored.', |
| 44 | 'EXTENSIONS_MANAGED_WITH_CLEAN_ERROR' => 'The “%1$s” extension has been installed but an error occurred and the old files could not be removed. You might want to delete the “%2$s” files manually.', |
| 45 | 'EXTENSIONS_MANAGED_WITH_ENABLE_ERROR' => 'The “%s” extension has been installed but an error occurred while enabling it.', |
| 46 | 'EXTENSIONS_NOT_INSTALLED' => 'The “%s” extension is not installed.', |
| 47 | 'EXTENSIONS_NOT_MANAGED' => 'The “%s” extension is not being managed.', |
| 48 | |
| 49 | 'ENABLING_EXTENSIONS' => 'Enabling extensions', |
| 50 | 'DISABLING_EXTENSIONS' => 'Disabling extensions', |
| 51 | |
| 52 | 'EXTENSIONS_CATALOG' => 'Extensions Catalog', |
| 53 | 'EXTENSIONS_CATALOG_EXPLAIN' => 'Here you can browse all of the extensions available for your phpBB board. Extensions can easily be installed or removed with just a click. Adjust the settings to allow instant enabling and purging of extensions.', |
| 54 | |
| 55 | 'EXTENSION' => 'Extension', |
| 56 | 'EXTENSIONS' => 'Extensions', |
| 57 | 'EXTENSIONS_ADMIN' => 'Extensions Manager', |
| 58 | '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.', |
| 59 | 'EXTENSION_INVALID_LIST' => 'The “%s” extension is not valid.<br />%s<br /><br />', |
| 60 | '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).', |
| 61 | 'EXTENSION_DIR_INVALID' => 'The selected extension has an invalid directory structure and cannot be enabled.', |
| 62 | 'EXTENSION_NOT_ENABLEABLE' => 'The selected extension cannot be enabled, please verify the extension’s requirements.', |
| 63 | |
| 64 | 'DETAILS' => 'Details', |
| 65 | |
| 66 | 'EXTENSIONS_NOT_INSTALLED' => 'Not installed Extensions', |
| 67 | 'EXTENSIONS_DISABLED' => 'Disabled Extensions', |
| 68 | 'EXTENSIONS_ENABLED' => 'Enabled Extensions', |
| 69 | |
| 70 | 'EXTENSION_DELETE_DATA' => 'Delete data', |
| 71 | 'EXTENSION_DISABLE' => 'Disable', |
| 72 | 'EXTENSION_ENABLE' => 'Enable', |
| 73 | 'EXTENSION_UPDATE' => 'Update', |
| 74 | 'EXTENSION_REMOVE' => 'Remove', |
| 75 | |
| 76 | '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.', |
| 77 | 'EXTENSION_DISABLE_EXPLAIN' => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.', |
| 78 | 'EXTENSION_ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.', |
| 79 | 'EXTENSION_REMOVE_EXPLAIN' => 'Removing an extension removes all of its files, data and settings.', |
| 80 | 'EXTENSION_UPDATE_EXPLAIN' => 'Updating an extension will install the latest version compatible with your board, removing old files and replacing them with new ones, and updating the database if necessary.', |
| 81 | |
| 82 | '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.', |
| 83 | 'EXTENSION_DISABLE_IN_PROGRESS' => 'The extension is currently being disabled. Please do not leave or refresh this page until it is completed.', |
| 84 | 'EXTENSION_ENABLE_IN_PROGRESS' => 'The extension is currently being enabled. Please do not leave or refresh this page until it is completed.', |
| 85 | |
| 86 | 'EXTENSION_DELETE_DATA_SUCCESS' => 'The extension’s data was deleted successfully', |
| 87 | 'EXTENSION_DISABLE_SUCCESS' => 'The extension was disabled successfully', |
| 88 | 'EXTENSION_ENABLE_SUCCESS' => 'The extension was enabled successfully', |
| 89 | |
| 90 | 'EXTENSION_NAME' => 'Extension Name', |
| 91 | 'EXTENSION_ACTIONS' => 'Actions', |
| 92 | 'EXTENSION_OPTIONS' => 'Options', |
| 93 | |
| 94 | 'EXTENSION_INSTALLING_HEADLINE' => 'Installing an extension', |
| 95 | 'EXTENSION_INSTALLING_EXPLAIN_STEP1' => 'Download an extension from phpBB’s extensions database', |
| 96 | 'EXTENSION_INSTALLING_EXPLAIN_STEP2' => 'Unzip the extension and upload it to the <samp>ext/</samp> directory of your phpBB board', |
| 97 | 'EXTENSION_INSTALLING_EXPLAIN_STEP3' => 'Enable the extension, here in the Extensions manager', |
| 98 | |
| 99 | 'EXTENSION_REMOVING_HEADLINE' => 'Deleting an extension from your board', |
| 100 | 'EXTENSION_REMOVING_EXPLAIN_STEP1' => 'Disable the extension', |
| 101 | 'EXTENSION_REMOVING_EXPLAIN_STEP2' => 'Delete the extension’s data', |
| 102 | 'EXTENSION_REMOVING_EXPLAIN_STEP3' => 'Delete the extension‘s files from the filesystem', |
| 103 | |
| 104 | 'EXTENSION_UPDATING_HEADLINE' => 'Updating an extension', |
| 105 | 'EXTENSION_UPDATING_EXPLAIN_STEP1' => 'Disable the extension', |
| 106 | 'EXTENSION_UPDATING_EXPLAIN_STEP2' => 'Delete the extension’s files from the filesystem', |
| 107 | 'EXTENSION_UPDATING_EXPLAIN_STEP3' => 'Upload the new files', |
| 108 | 'EXTENSION_UPDATING_EXPLAIN_STEP4' => 'Enable the extension', |
| 109 | |
| 110 | |
| 111 | '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!', |
| 112 | 'EXTENSION_DISABLE_CONFIRM' => 'Are you sure that you wish to disable the “%s” extension?', |
| 113 | 'EXTENSION_ENABLE_CONFIRM' => 'Are you sure that you wish to enable the “%s” extension?', |
| 114 | 'EXTENSION_FORCE_UNSTABLE_CONFIRM' => 'Are you sure that you wish to force the use of unstable version?', |
| 115 | |
| 116 | 'INSTALLED' => 'Installed', |
| 117 | 'INSTALLED_MANUALLY' => 'Installed manually', |
| 118 | |
| 119 | 'RETURN_TO_EXTENSION_LIST' => 'Return to the extension list', |
| 120 | |
| 121 | 'EXT_DETAILS' => 'Extension Details', |
| 122 | 'DISPLAY_NAME' => 'Display Name', |
| 123 | 'CLEAN_NAME' => 'Clean Name', |
| 124 | 'TYPE' => 'Type', |
| 125 | 'DESCRIPTION' => 'Description', |
| 126 | 'VERSION' => 'Version', |
| 127 | 'HOMEPAGE' => 'Homepage', |
| 128 | 'PATH' => 'File Path', |
| 129 | 'TIME' => 'Release Time', |
| 130 | 'LICENSE' => 'Licence', |
| 131 | |
| 132 | 'REQUIREMENTS' => 'Requirements', |
| 133 | 'PHPBB_VERSION' => 'phpBB Version', |
| 134 | 'PHP_VERSION' => 'PHP Version', |
| 135 | 'AUTHOR_INFORMATION' => 'Author Information', |
| 136 | 'AUTHOR_NAME' => 'Name', |
| 137 | 'AUTHOR_EMAIL' => 'Email', |
| 138 | 'AUTHOR_HOMEPAGE' => 'Homepage', |
| 139 | 'AUTHOR_ROLE' => 'Role', |
| 140 | |
| 141 | 'NOT_UP_TO_DATE' => '%s is not up to date', |
| 142 | 'UP_TO_DATE' => '%s is up to date', |
| 143 | 'ANNOUNCEMENT_TOPIC' => 'Release Announcement', |
| 144 | 'DOWNLOAD_LATEST' => 'Download Version', |
| 145 | 'NO_VERSIONCHECK' => 'No version check information given.', |
| 146 | |
| 147 | 'VERSIONCHECK_FORCE_UPDATE_ALL' => 'Re-Check all versions', |
| 148 | 'FORCE_UNSTABLE' => 'Always check for unstable versions', |
| 149 | 'EXTENSIONS_VERSION_CHECK_SETTINGS' => 'Version check settings', |
| 150 | |
| 151 | 'BROWSE_EXTENSIONS_DATABASE' => 'Browse extensions database', |
| 152 | |
| 153 | 'META_FIELD_NOT_SET' => 'Required meta field %s has not been set.', |
| 154 | 'META_FIELD_INVALID' => 'Meta field %s is invalid.', |
| 155 | |
| 156 | 'EXTENSIONS_CATALOG_SETTINGS' => 'Extensions catalog settings', |
| 157 | 'ENABLE_ON_INSTALL' => 'Enable extensions while installing', |
| 158 | 'PURGE_ON_REMOVE' => 'Purge extensions while removing', |
| 159 | 'ENABLE_PACKAGIST' => 'Search packagist', |
| 160 | 'ENABLE_PACKAGIST_EXPLAIN' => 'Search packagist for phpBB extensions. Beware that packagist may contain extensions not validated by the phpBB Extension Customisations Team.', |
| 161 | 'ENABLE_PACKAGIST_CONFIRM' => 'Are you sure you want to search packagist?', |
| 162 | 'COMPOSER_REPOSITORIES' => 'Repositories', |
| 163 | 'COMPOSER_REPOSITORIES_EXPLAIN' => 'Add URLs to Composer repositories of phpBB extensions to search here, one per line (must be the base url of the packages.json file).', |
| 164 | 'NO_EXTENSION_AVAILABLE' => 'There are no extension available for your board', |
| 165 | |
| 166 | 'EXTENSION_MANAGED_SUCCESS' => 'The extension %s is now being managed automatically.', |
| 167 | 'EXTENSIONS_INSTALLED' => 'Extensions successfully installed.', |
| 168 | 'EXTENSIONS_REMOVED' => 'Extensions successfully removed.', |
| 169 | 'EXTENSIONS_UPDATED' => 'Extensions successfully updated.', |
| 170 | |
| 171 | 'EXTENSIONS_CATALOG_NOT_AVAILABLE' => 'The extensions catalog is not available', |
| 172 | 'EXTENSIONS_COMPOSER_NOT_WRITABLE' => 'In order to use the catalog, the following files and directories must be writable: ext/ vendor-ext/ composer-ext.json and composer-ext.lock', |
| 173 | |
| 174 | 'STABILITY_STABLE' => 'stable', |
| 175 | 'STABILITY_RC' => 'RC', |
| 176 | 'STABILITY_BETA' => 'beta', |
| 177 | 'STABILITY_ALPHA' => 'alpha', |
| 178 | 'STABILITY_DEV' => 'dev', |
| 179 | |
| 180 | 'COMPOSER_MINIMUM_STABILITY' => 'Minimum stability', |
| 181 | 'COMPOSER_MINIMUM_STABILITY_EXPLAIN' => 'Always use <samp>stable</samp> versions on a live forum. Non-stable versions may still be in development and could cause unexpected problems with your forum and should only be used for development purposes in local or staging environments.', |
| 182 | |
| 183 | )); |