diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-30 18:17:23 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-09 09:21:51 +0200 |
commit | e3e293f5a6b38bb85f57841756a362e26b09088b (patch) | |
tree | 3d0a7f2fbd0a4359262aa845b3b87dd2c8e2de46 /phpBB/phpbb/console/command/thumbnail/recreate.php | |
parent | 96c5165a655062bb12cf8150262459d883911d8c (diff) | |
download | forums-e3e293f5a6b38bb85f57841756a362e26b09088b.tar forums-e3e293f5a6b38bb85f57841756a362e26b09088b.tar.gz forums-e3e293f5a6b38bb85f57841756a362e26b09088b.tar.bz2 forums-e3e293f5a6b38bb85f57841756a362e26b09088b.tar.xz forums-e3e293f5a6b38bb85f57841756a362e26b09088b.zip |
[ticket/12692] Cleanup language file
PHPBB3-12692
Diffstat (limited to 'phpBB/phpbb/console/command/thumbnail/recreate.php')
-rw-r--r-- | phpBB/phpbb/console/command/thumbnail/recreate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/thumbnail/recreate.php b/phpBB/phpbb/console/command/thumbnail/recreate.php index ec093161af..5d3edbd699 100644 --- a/phpBB/phpbb/console/command/thumbnail/recreate.php +++ b/phpBB/phpbb/console/command/thumbnail/recreate.php @@ -54,7 +54,7 @@ class recreate extends \phpbb\console\command\command $this->getApplication()->setAutoExit(false); - $output->writeln('<comment>' . $this->user->lang('THUMBNAIL_DELETING') . '</comment>'); + $output->writeln('<comment>' . $this->user->lang('CLI_THUMBNAIL_DELETING') . '</comment>'); $input_delete = new ArrayInput($parameters); $return = $this->getApplication()->run($input_delete, $output); @@ -63,7 +63,7 @@ class recreate extends \phpbb\console\command\command $parameters['command'] = 'thumbnail:generate'; $output->writeln(''); - $output->writeln('<comment>' . $this->user->lang('THUMBNAIL_GENERATING') . '</comment>'); + $output->writeln('<comment>' . $this->user->lang('CLI_THUMBNAIL_GENERATING') . '</comment>'); $input_create = new ArrayInput($parameters); $return = $this->getApplication()->run($input_create, $output); } |