diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 18:11:56 -0500 |
---|---|---|
committer | Unknown Bliss <m@michaelcullum.com> | 2012-09-01 15:05:12 +0100 |
commit | 3ba59c6362c955d1f9b59278f7dd19cdacecff99 (patch) | |
tree | 06e2522931757e7dfa30bec7c36047527a022b29 /phpBB/language/en | |
parent | c45243a91e142f1aa7a10e78c5ef4e91c4e18d9d (diff) | |
download | forums-3ba59c6362c955d1f9b59278f7dd19cdacecff99.tar forums-3ba59c6362c955d1f9b59278f7dd19cdacecff99.tar.gz forums-3ba59c6362c955d1f9b59278f7dd19cdacecff99.tar.bz2 forums-3ba59c6362c955d1f9b59278f7dd19cdacecff99.tar.xz forums-3ba59c6362c955d1f9b59278f7dd19cdacecff99.zip |
[ticket/10631] Various tidbits and cleanup on the acp extensions manager
PHPBB3-10631
Diffstat (limited to 'phpBB/language/en')
-rw-r--r-- | phpBB/language/en/acp/extensions.php | 207 |
1 files changed, 104 insertions, 103 deletions
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php index 728ab40ee9..950f3b5332 100644 --- a/phpBB/language/en/acp/extensions.php +++ b/phpBB/language/en/acp/extensions.php @@ -1,103 +1,104 @@ -<?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.',
-
- 'DETAILS' => 'Details',
-
- 'AVAILABLE' => 'Available',
- 'ENABLED' => 'Enabled',
- 'DISABLED' => 'Disabled',
- 'PURGED' => 'Purged',
- 'DELETED' => 'Deleted',
- 'UPLOADED' => 'Uploaded',
-
- 'ENABLE' => 'Enable',
- 'DISABLE' => 'Disable',
- 'PURGE' => 'Purge',
- 'DELETE' => 'Delete',
-
- 'ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.',
- 'DISABLE_EXPLAIN' => 'Disabling an extension retains its files and settings but removes any functionality added by the extension.',
- 'PURGE_EXPLAIN' => 'Purging an extension clears an extensions data while retaining its files.',
- 'DELETE_EXPLAIN' => 'Deleting an extension removes all of its files and settings. Log entries will remain, although any language variables added by the extension will not be available.',
-
- 'ENABLE_SUCESS' => 'The extension was enabled successfully',
- 'DISABLE_SUCESS' => 'The extension was disabled successfully',
- 'PURGE_SUCESS' => 'The extension was purged successfully',
- 'DELETE_SUCESS' => 'The extension was deleted successfully',
-
- 'ENABLE_FAIL' => 'The extension could not be enabled',
- 'DISABLE_FAIL' => 'The extension could not be disabled',
- 'PURGE_FAIL' => 'The extension could not be purged',
- 'DELETE_FAIL' => 'The extension could not be deleted',
-
- 'EXTENSION_NAME' => 'Extension Name',
- 'EXTENSION_ACTIONS' => 'Actions',
- 'EXTENSION_OPTIONS' => 'Options',
-
- 'ENABLE_CONFIRM' => 'Are you sure that you wish to enable this extension?',
- 'DISABLE_CONFIRM' => 'Are you sure that you wish to disable this extension?',
- 'PURGE_CONFIRM' => 'Are you sure that you wish to purge this extension's data? This cannot be undone.',
- 'DELETE_CONFIRM' => 'Are you sure that you wish to data this extension's files and clear its data? This cannot be undone.',
-
- 'WARNING' => 'Warning',
- 'RETURN' => 'Return',
-
- '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',
-));
+<?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' => 'The selected extension is not valid.', + + 'DETAILS' => 'Details', + + 'AVAILABLE' => 'Available', + 'ENABLED' => 'Enabled', + 'DISABLED' => 'Disabled', + 'PURGED' => 'Purged', + 'DELETED' => 'Deleted', + 'UPLOADED' => 'Uploaded', + + 'ENABLE' => 'Enable', + 'DISABLE' => 'Disable', + 'PURGE' => 'Purge', + 'DELETE' => 'Delete', + + 'ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.', + 'DISABLE_EXPLAIN' => 'Disabling an extension retains its files and settings but removes any functionality added by the extension.', + 'PURGE_EXPLAIN' => 'Purging an extension clears an extensions data while retaining its files.', + 'DELETE_EXPLAIN' => 'Deleting an extension removes all of its files and settings. Log entries will remain, although any language variables added by the extension will not be available.', + + 'ENABLE_SUCESS' => 'The extension was enabled successfully', + 'DISABLE_SUCESS' => 'The extension was disabled successfully', + 'PURGE_SUCESS' => 'The extension was purged successfully', + 'DELETE_SUCESS' => 'The extension was deleted successfully', + + 'ENABLE_FAIL' => 'The extension could not be enabled', + 'DISABLE_FAIL' => 'The extension could not be disabled', + 'PURGE_FAIL' => 'The extension could not be purged', + 'DELETE_FAIL' => 'The extension could not be deleted', + + 'EXTENSION_NAME' => 'Extension Name', + 'EXTENSION_ACTIONS' => 'Actions', + 'EXTENSION_OPTIONS' => 'Options', + + 'ENABLE_CONFIRM' => 'Are you sure that you wish to enable this extension?', + 'DISABLE_CONFIRM' => 'Are you sure that you wish to disable this extension?', + 'PURGE_CONFIRM' => 'Are you sure that you wish to purge this extension's data? This cannot be undone.', + 'DELETE_CONFIRM' => 'Are you sure that you wish to data this extension's files and clear its data? This cannot be undone.', + + 'WARNING' => 'Warning', + 'RETURN' => 'Return', + + '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', +)); |