aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/language/en/cli.php4
-rw-r--r--phpBB/phpbb/console/command/extension/disable.php2
-rw-r--r--phpBB/phpbb/console/command/extension/enable.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
index 35f56be008..44b17c3147 100644
--- a/phpBB/language/en/cli.php
+++ b/phpBB/language/en/cli.php
@@ -110,10 +110,10 @@ $lang = array_merge($lang, array(
'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s',
'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s',
- 'CLI_EXTENSION_ALREADY_DISABLED' => 'Extension %s was already disabled',
+ 'CLI_EXTENSION_DISABLE_DISABLED' => 'Extension %s is not enabled',
'CLI_EXTENSION_ENABLE_FAILURE' => 'Could not enable extension %s',
'CLI_EXTENSION_ENABLE_SUCCESS' => 'Successfully enabled extension %s',
- 'CLI_EXTENSION_ALREADY_ENABLED' => 'Extension %s was already enabled',
+ 'CLI_EXTENSION_ENABLE_ENABLED' => 'Extension %s was already enabled',
'CLI_EXTENSION_NAME' => 'Name of the extension',
'CLI_EXTENSION_PURGE_FAILURE' => 'Could not purge extension %s',
'CLI_EXTENSION_PURGE_SUCCESS' => 'Successfully purged extension %s',
diff --git a/phpBB/phpbb/console/command/extension/disable.php b/phpBB/phpbb/console/command/extension/disable.php
index 323f9b6d83..05f7ce9704 100644
--- a/phpBB/phpbb/console/command/extension/disable.php
+++ b/phpBB/phpbb/console/command/extension/disable.php
@@ -40,7 +40,7 @@ class disable extends command
if (!$this->manager->is_enabled($name))
{
- $io->error($this->user->lang('CLI_EXTENSION_ALREADY_DISABLED', $name));
+ $io->error($this->user->lang('CLI_EXTENSION_DISABLE_DISABLED', $name));
return 1;
}
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php
index e6b5f66c7f..c7c336cdc9 100644
--- a/phpBB/phpbb/console/command/extension/enable.php
+++ b/phpBB/phpbb/console/command/extension/enable.php
@@ -40,7 +40,7 @@ class enable extends command
if ($this->manager->is_enabled($name))
{
- $io->error($this->user->lang('CLI_EXTENSION_ALREADY_ENABLED', $name));
+ $io->error($this->user->lang('CLI_EXTENSION_ENABLE_ENABLED', $name));
return 1;
}