mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
Enable and Install were split into two different expressions. Purge was renamed to uninstall to make clearer what is going to happen. PHPBB3-11994
101 lines
4.3 KiB
PHP
101 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* acp_extensions [English]
|
|
*
|
|
* @package language
|
|
* @copyright (c) 2012 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
|
*
|
|
*/
|
|
/**
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* DO NOT CHANGE
|
|
*/
|
|
if (empty($lang) || !is_array($lang))
|
|
{
|
|
$lang = array();
|
|
}
|
|
|
|
// DEVELOPERS PLEASE NOTE
|
|
//
|
|
// Placeholders can now contain order information, e.g. instead of
|
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
// translators to re-order the output of data while ensuring it remains correct
|
|
//
|
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
// equally where a string contains only two placeholders which are used to wrap text
|
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
|
|
|
|
$lang = array_merge($lang, array(
|
|
'EXTENSION' => 'Extension',
|
|
'EXTENSIONS' => 'Extensions',
|
|
'EXTENSIONS_ADMIN' => 'Extensions Manager',
|
|
'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.',
|
|
'EXTENSION_INVALID_LIST' => 'The “%s” extension is not valid.<br />%s<br /><br />',
|
|
'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).',
|
|
|
|
'DETAILS' => 'Details',
|
|
|
|
'EXTENSIONS_ENABLED' => 'Enabled Extensions',
|
|
'EXTENSIONS_DISABLED' => 'Disabled Extensions',
|
|
|
|
'EXTENSION_DISABLE' => 'Disable',
|
|
'EXTENSION_ENABLE' => 'Enable',
|
|
'EXTENSION_INSTALL' => 'Install',
|
|
'EXTENSION_UNINSTALL' => 'Uninstall',
|
|
|
|
'EXTENSION_DISABLE_EXPLAIN' => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
|
|
'EXTENSION_ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.',
|
|
'EXTENSION_INSTALL_EXPLAIN' => 'Installing an extension will perform database changes that are required to use the extension on your board.',
|
|
'EXTENSION_UNINSTALL_EXPLAIN' => 'Uninstalling an extension removes all data and settings of the extensions. Only the extension files are retained, so you can install it again.',
|
|
|
|
'EXTENSION_DISABLE_IN_PROGRESS' => 'The extension is currently being disabled, please do not leave this page or refresh until it is completed.',
|
|
'EXTENSION_ENABLE_IN_PROGRESS' => 'The extension is currently being enabled, please do not leave this page or refresh until it is completed.',
|
|
'EXTENSION_INSTALL_IN_PROGRESS' => 'The extension is currently being installed, please do not leave this page or refresh until it is completed.',
|
|
'EXTENSION_UNINSTALL_IN_PROGRESS' => 'The extension is currently being purged, please do not leave this page or refresh until it is completed.',
|
|
|
|
'EXTENSION_DISABLE_SUCCESS' => 'The extension was disabled successfully',
|
|
'EXTENSION_ENABLE_SUCCESS' => 'The extension was enabled successfully',
|
|
'EXTENSION_INSTALL_SUCCESS' => 'The extension was installed successfully',
|
|
'EXTENSION_UNINSTALL_SUCCESS' => 'The extension was uninstalled successfully',
|
|
|
|
'EXTENSION_NAME' => 'Extension Name',
|
|
'EXTENSION_ACTIONS' => 'Actions',
|
|
'EXTENSION_OPTIONS' => 'Options',
|
|
|
|
'EXTENSION_DISABLE_CONFIRM' => 'Are you sure that you wish to disable the “%s” extension?',
|
|
'EXTENSION_ENABLE_CONFIRM' => 'Are you sure that you wish to enable the “%s” extension?',
|
|
'EXTENSION_INSTALL_CONFIRM' => 'Are you sure that you wish to install the “%s” extension?',
|
|
'EXTENSION_UNINSTALL_CONFIRM' => 'Are you sure that you wish to uninstall the “%s” extension? This will remove all data and settings stored for this extension and cannot be undone!',
|
|
|
|
'RETURN_TO_EXTENSION_LIST' => 'Return to the extension list',
|
|
|
|
'EXT_DETAILS' => 'Extension Details',
|
|
'DISPLAY_NAME' => 'Display Name',
|
|
'CLEAN_NAME' => 'Clean Name',
|
|
'TYPE' => 'Type',
|
|
'DESCRIPTION' => 'Description',
|
|
'VERSION' => 'Version',
|
|
'HOMEPAGE' => 'Homepage',
|
|
'PATH' => 'File Path',
|
|
'TIME' => 'Release Time',
|
|
'LICENCE' => 'Licence',
|
|
|
|
'REQUIREMENTS' => 'Requirements',
|
|
'PHPBB_VERSION' => 'phpBB Version',
|
|
'PHP_VERSION' => 'PHP Version',
|
|
'AUTHOR_INFORMATION' => 'Author Information',
|
|
'AUTHOR_NAME' => 'Name',
|
|
'AUTHOR_EMAIL' => 'Email',
|
|
'AUTHOR_HOMEPAGE' => 'Homepage',
|
|
'AUTHOR_ROLE' => 'Role',
|
|
));
|