aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/config/set.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-07-28 14:45:33 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-07-28 14:45:33 +0200
commit52e8a7231eb0feca005abf8a8b0df3c86a6a6895 (patch)
treebb7105aee442e1c208b72d4341506350911bde7b /phpBB/phpbb/console/command/config/set.php
parent3df41920f7fa0291aa2b093ce3c6d036e103f9db (diff)
parent8a046743bc083f8ca26d70cc5a1b63bd47b92f57 (diff)
downloadforums-52e8a7231eb0feca005abf8a8b0df3c86a6a6895.tar
forums-52e8a7231eb0feca005abf8a8b0df3c86a6a6895.tar.gz
forums-52e8a7231eb0feca005abf8a8b0df3c86a6a6895.tar.bz2
forums-52e8a7231eb0feca005abf8a8b0df3c86a6a6895.tar.xz
forums-52e8a7231eb0feca005abf8a8b0df3c86a6a6895.zip
Merge pull request #2772 from dhruvgoel92/ticket/12656
[ticket/12656] Translate existing CLI commands * dhruvgoel92/ticket/12656: [ticket/12656] Fix typo for "purged extension" [ticket/12656] Fix syntax in language file [ticket/12656] Fix typo [ticket/12656] Use utf8 ’ instead of escaping ' [ticket/12656] Use lang keys for all CLI strings [ticket/12656] Use lang keys for CLI command descriptions
Diffstat (limited to 'phpBB/phpbb/console/command/config/set.php')
-rw-r--r--phpBB/phpbb/console/command/config/set.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/console/command/config/set.php b/phpBB/phpbb/console/command/config/set.php
index 587b7fb0de..695de31013 100644
--- a/phpBB/phpbb/console/command/config/set.php
+++ b/phpBB/phpbb/console/command/config/set.php
@@ -26,22 +26,22 @@ class set extends command
{
$this
->setName('config:set')
- ->setDescription("Sets a configuration option's value")
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_SET_CONFIG'))
->addArgument(
'key',
InputArgument::REQUIRED,
- "The configuration option's name"
+ $this->user->lang('CLI_CONFIG_OPTION_NAME')
)
->addArgument(
'value',
InputArgument::REQUIRED,
- 'New configuration value, use 0 and 1 to specify boolean values'
+ $this->user->lang('CLI_CONFIG_NEW')
)
->addOption(
'dynamic',
'd',
InputOption::VALUE_NONE,
- 'Set this option if the configuration option changes too frequently to be efficiently cached.'
+ $this->user->lang('CLI_CONFIG_CANNOT_CACHED')
)
;
}
@@ -65,6 +65,6 @@ class set extends command
$this->config->set($key, $value, $use_cache);
- $output->writeln("<info>Successfully set config $key</info>");
+ $output->writeln('<info>' . $this->user->lang('CLI_CONFIG_SET_SUCCESS', $key) . '</info>');
}
}