aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2017-03-12 22:44:18 +0100
committerRubén Calvo <rubencm@gmail.com>2017-03-13 22:20:51 +0100
commit9b3609d6f60af328e6681146014453da0af4ee01 (patch)
tree1a14bd14aeb7b201cb42e8732e840c9aca4272c0
parent8994295f2b7d5b2beece7bbd8f7a2861fa15625d (diff)
downloadforums-9b3609d6f60af328e6681146014453da0af4ee01.tar
forums-9b3609d6f60af328e6681146014453da0af4ee01.tar.gz
forums-9b3609d6f60af328e6681146014453da0af4ee01.tar.bz2
forums-9b3609d6f60af328e6681146014453da0af4ee01.tar.xz
forums-9b3609d6f60af328e6681146014453da0af4ee01.zip
[ticket/15123] modified language strings
PHPBB3-15123
-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 44b17c3147..9b3fa7f32c 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_DISABLE_DISABLED' => 'Extension %s is not enabled',
+ 'CLI_EXTENSION_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_ENABLE_ENABLED' => 'Extension %s was already enabled',
+ 'CLI_EXTENSION_ENABLED' => 'Extension %s is 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 05f7ce9704..12674c16cb 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_DISABLE_DISABLED', $name));
+ $io->error($this->user->lang('CLI_EXTENSION_DISABLED', $name));
return 1;
}
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php
index c7c336cdc9..079e4ce1f6 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_ENABLE_ENABLED', $name));
+ $io->error($this->user->lang('CLI_EXTENSION_ENABLED', $name));
return 1;
}