aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/extension
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2014-07-23 00:35:09 +0530
committerDhruv <dhruv.goel92@gmail.com>2014-07-23 00:35:09 +0530
commit4092b63be39453f9a7ce4f985217099ab10aae90 (patch)
treefbb70772547189cd6838540681a473d6e7e1bca9 /phpBB/phpbb/console/command/extension
parente11875527dbb09c2c22192c6b6866a19cc38473d (diff)
downloadforums-4092b63be39453f9a7ce4f985217099ab10aae90.tar
forums-4092b63be39453f9a7ce4f985217099ab10aae90.tar.gz
forums-4092b63be39453f9a7ce4f985217099ab10aae90.tar.bz2
forums-4092b63be39453f9a7ce4f985217099ab10aae90.tar.xz
forums-4092b63be39453f9a7ce4f985217099ab10aae90.zip
[ticket/12656] Use lang keys for CLI command descriptions
PHPBB3-12656
Diffstat (limited to 'phpBB/phpbb/console/command/extension')
-rw-r--r--phpBB/phpbb/console/command/extension/disable.php2
-rw-r--r--phpBB/phpbb/console/command/extension/enable.php2
-rw-r--r--phpBB/phpbb/console/command/extension/purge.php2
-rw-r--r--phpBB/phpbb/console/command/extension/show.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/console/command/extension/disable.php b/phpBB/phpbb/console/command/extension/disable.php
index c04848aa01..ce32105ed5 100644
--- a/phpBB/phpbb/console/command/extension/disable.php
+++ b/phpBB/phpbb/console/command/extension/disable.php
@@ -22,7 +22,7 @@ class disable extends command
{
$this
->setName('extension:disable')
- ->setDescription('Disables the specified extension.')
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_DISABLE_EXTENSION'))
->addArgument(
'extension-name',
InputArgument::REQUIRED,
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php
index 86a034cdf4..001b3e2158 100644
--- a/phpBB/phpbb/console/command/extension/enable.php
+++ b/phpBB/phpbb/console/command/extension/enable.php
@@ -22,7 +22,7 @@ class enable extends command
{
$this
->setName('extension:enable')
- ->setDescription('Enables the specified extension.')
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_ENABLE_EXTENSION'))
->addArgument(
'extension-name',
InputArgument::REQUIRED,
diff --git a/phpBB/phpbb/console/command/extension/purge.php b/phpBB/phpbb/console/command/extension/purge.php
index 841598b90a..81d687d07c 100644
--- a/phpBB/phpbb/console/command/extension/purge.php
+++ b/phpBB/phpbb/console/command/extension/purge.php
@@ -22,7 +22,7 @@ class purge extends command
{
$this
->setName('extension:purge')
- ->setDescription('Purges the specified extension.')
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_PURGE_EXTENSION'))
->addArgument(
'extension-name',
InputArgument::REQUIRED,
diff --git a/phpBB/phpbb/console/command/extension/show.php b/phpBB/phpbb/console/command/extension/show.php
index 2db1c59e24..a6066818db 100644
--- a/phpBB/phpbb/console/command/extension/show.php
+++ b/phpBB/phpbb/console/command/extension/show.php
@@ -21,7 +21,7 @@ class show extends command
{
$this
->setName('extension:show')
- ->setDescription('Lists all extensions in the database and on the filesystem.')
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_LIST_EXTENSIONS'))
;
}