aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
authorMichael Cullum <unknownbliss@phpbbdevelopers.net>2012-02-29 21:23:50 +0000
committerUnknown Bliss <m@michaelcullum.com>2012-09-01 15:04:33 +0100
commit5e6b4c7192a80dc29382ad06976e9ce6d5c16efd (patch)
tree4fcabfb0a1446f87a591de9f5234e2710ceb8582 /phpBB/language
parent1128ff1e580361db7f7ecc72d496fdd347cbe0f2 (diff)
downloadforums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.gz
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.bz2
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.tar.xz
forums-5e6b4c7192a80dc29382ad06976e9ce6d5c16efd.zip
[ticket/10631] Adding an extensions admin
PHPBB3-10631
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/acp/common.php1
-rw-r--r--phpBB/language/en/acp/customisations.php100
-rw-r--r--phpBB/language/en/acp/permissions_phpbb.php1
3 files changed, 102 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index 04df897dba..5eb10d50b3 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -81,6 +81,7 @@ $lang = array_merge($lang, array(
'ACP_EMAIL_SETTINGS' => 'Email settings',
'ACP_EXTENSION_GROUPS' => 'Manage extension groups',
+ 'ACP_EXTENSIONS' => 'Manage board extensions',
'ACP_FORUM_BASED_PERMISSIONS' => 'Forum based permissions',
'ACP_FORUM_LOGS' => 'Forum logs',
diff --git a/phpBB/language/en/acp/customisations.php b/phpBB/language/en/acp/customisations.php
new file mode 100644
index 0000000000..7ba463bc81
--- /dev/null
+++ b/phpBB/language/en/acp/customisations.php
@@ -0,0 +1,100 @@
+<?php
+/**
+*
+* acp_mods [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 Admin',
+ 'EXTENSIONS_EXPLAIN' => 'The Extensions Admin is a tool in your phpBB Board which allows you to manage all of your extensions. For more information about extensions please visit <a href="http://phpbb.com/mods/extensions/">this page</a> on phpBBs Offical Website.',
+
+ 'DETAILS' => 'Details',
+
+ 'AVALIABLE' => 'Avaliable',
+ 'ENABLED' => 'Enabled',
+ 'DISBALED' => 'Disabled',
+
+ 'ENABLE' => 'Enable',
+ 'DISABLE' => 'Disable',
+ 'PURGE' => 'Purge',
+ 'DELETE' => 'Delete',
+
+ 'ENABLED' => 'Enabled',
+ 'DISABLED' => 'Disabled',
+ 'PURGED' => 'Purged',
+ 'DELETED' => 'Deleted',
+
+ 'ENABLE_EXPLAIN' => 'Enabling an extension allows you to use it on your board.',
+ 'DISABLE_EXPLAIN' => 'Disabling an extension keeps the files and data intact but is not working on your board.',
+ 'PURGE_EXPLAIN' => 'Purging an extension keeps the files but not the data on your board.',
+ 'DELETE_EXPLAIN' => 'Deleting an extension removes all traces of the extension except from your logs.',
+
+ 'ENABLE_SUCESS' => 'Your extension was enabled sucessfully',
+ 'DISABLE_SUCESS' => 'Your extension was disabled sucessfully',
+ 'PURGE_SUCESS' => 'Your extension was purged sucessfully',
+ 'DELETE_SUCESS' => 'Your extension was deleted sucessfully',
+
+ 'ENABLE_FAIL' => 'Your extension could not be enabled',
+ 'DISABLE_FAIL' => 'Your extension could not be disabled',
+ 'PURGE_FAIL' => 'Your extension could not be purged',
+ 'DELETE_FAIL' => 'Your extension could not be deleted',
+
+ 'EXTENSION_NAME' => 'Extension Name',
+ 'EXTENSION_ACTIONS' => 'Actions',
+ 'EXTENSION_OPTIONS' => 'Options',
+
+ 'ENABLE_CONFIRM' => 'Are you sure you wish to enable this extension?',
+ 'DISABLE_CONFIRM' => 'Are your sure you wish to disable this extension?',
+ 'PURGE_CONFIRM' => 'Are you sure you wish to purge (and not disable) this extension? This action will wipe the extension data on this board and is not reversible.',
+ 'DELETE_CONFIRM' => 'Are you sure you wish to delete (and not purge or disable) this extension? This action will remove the extension and all of its data from this board and is not reversible.',
+
+ 'WARNING' => 'Warning',
+ 'RETURN' => 'Return',
+
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+ '' => '',
+));
+
+?> \ No newline at end of file
diff --git a/phpBB/language/en/acp/permissions_phpbb.php b/phpBB/language/en/acp/permissions_phpbb.php
index 17649693fa..bb068e625f 100644
--- a/phpBB/language/en/acp/permissions_phpbb.php
+++ b/phpBB/language/en/acp/permissions_phpbb.php
@@ -226,6 +226,7 @@ $lang = array_merge($lang, array(
'acl_a_switchperm' => array('lang' => 'Can use others permissions', 'cat' => 'permissions'),
'acl_a_styles' => array('lang' => 'Can manage styles', 'cat' => 'misc'),
+ 'acl_a_extensions' => array('lang' => 'Can manage extensions', 'cat' => 'misc'),
'acl_a_viewlogs' => array('lang' => 'Can view logs', 'cat' => 'misc'),
'acl_a_clearlogs' => array('lang' => 'Can clear logs', 'cat' => 'misc'),
'acl_a_modules' => array('lang' => 'Can manage modules', 'cat' => 'misc'),