1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/15123] modified language string

PHPBB3-15123
This commit is contained in:
Rubén Calvo
2017-03-11 23:03:31 +01:00
parent 68c167fe7a
commit 8994295f2b
3 changed files with 4 additions and 4 deletions

View File

@@ -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;
}

View File

@@ -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;
}