diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2014-07-23 01:23:44 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2014-07-23 01:23:44 +0530 |
| commit | c81438e1f85633dd770fcddd8e332b278338732f (patch) | |
| tree | 87e588947878a0f3c036b91cbe7b15e594cfe913 /phpBB/phpbb/console/command/config/get.php | |
| parent | 4092b63be39453f9a7ce4f985217099ab10aae90 (diff) | |
| download | forums-c81438e1f85633dd770fcddd8e332b278338732f.tar forums-c81438e1f85633dd770fcddd8e332b278338732f.tar.gz forums-c81438e1f85633dd770fcddd8e332b278338732f.tar.bz2 forums-c81438e1f85633dd770fcddd8e332b278338732f.tar.xz forums-c81438e1f85633dd770fcddd8e332b278338732f.zip | |
[ticket/12656] Use lang keys for all CLI strings
PHPBB3-12656
Diffstat (limited to 'phpBB/phpbb/console/command/config/get.php')
| -rw-r--r-- | phpBB/phpbb/console/command/config/get.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/console/command/config/get.php b/phpBB/phpbb/console/command/config/get.php index 9734833d23..9c03b49a3d 100644 --- a/phpBB/phpbb/console/command/config/get.php +++ b/phpBB/phpbb/console/command/config/get.php @@ -30,13 +30,13 @@ class get extends command ->addArgument( 'key', InputArgument::REQUIRED, - "The configuration option's name" + $this->user->lang('CLI_CONFIG_OPTION_NAME') ) ->addOption( 'no-newline', null, InputOption::VALUE_NONE, - 'Set this option if the value should be printed without a new line at the end.' + $this->user->lang('CLI_CONFIG_PRINT_WITHOUT_NEWLINE') ) ; } @@ -66,7 +66,7 @@ class get extends command } else { - $output->writeln("<error>Could not get config $key</error>"); + $output->writeln('<error>' . $this->user->lang('CLI_CONFIG_NOT_EXISTS', $key) . '</error>'); } } } |
