diff options
| author | Rubén Calvo <rubencm@gmail.com> | 2017-03-11 23:03:31 +0100 |
|---|---|---|
| committer | Rubén Calvo <rubencm@gmail.com> | 2017-03-13 22:20:45 +0100 |
| commit | 8994295f2b7d5b2beece7bbd8f7a2861fa15625d (patch) | |
| tree | 35ad6172e073d6a7239681d314ecb6424a3cab18 | |
| parent | 68c167fe7a5f0c86d97c9c3dda30f66d9df5b032 (diff) | |
| download | forums-8994295f2b7d5b2beece7bbd8f7a2861fa15625d.tar forums-8994295f2b7d5b2beece7bbd8f7a2861fa15625d.tar.gz forums-8994295f2b7d5b2beece7bbd8f7a2861fa15625d.tar.bz2 forums-8994295f2b7d5b2beece7bbd8f7a2861fa15625d.tar.xz forums-8994295f2b7d5b2beece7bbd8f7a2861fa15625d.zip | |
[ticket/15123] modified language string
PHPBB3-15123
| -rw-r--r-- | phpBB/language/en/cli.php | 4 | ||||
| -rw-r--r-- | phpBB/phpbb/console/command/extension/disable.php | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/console/command/extension/enable.php | 2 |
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; } |
