mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-24 17:40:43 +01:00
[ticket/15123] modified language string
PHPBB3-15123
This commit is contained in:
parent
68c167fe7a
commit
8994295f2b
@ -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',
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user