aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLEZY Thomas <thomas.gif.91@gmail.com>2014-05-28 22:09:38 +0200
committerLEZY Thomas <thomas.gif.91@gmail.com>2014-05-28 22:09:38 +0200
commit532e4470ea08e6245878e49e77f1ca51354681e7 (patch)
tree0b9f11733f7d255ae22f7a8e19d7fbaf49a544a6
parent54d60e3f7864cf0da4c6da9c824e29ba51d57a37 (diff)
downloadforums-532e4470ea08e6245878e49e77f1ca51354681e7.tar
forums-532e4470ea08e6245878e49e77f1ca51354681e7.tar.gz
forums-532e4470ea08e6245878e49e77f1ca51354681e7.tar.bz2
forums-532e4470ea08e6245878e49e77f1ca51354681e7.tar.xz
forums-532e4470ea08e6245878e49e77f1ca51354681e7.zip
[ticket/12597] Fix language key name
PHPBB3-12597
-rw-r--r--phpBB/language/en/acp/common.php5
-rw-r--r--phpBB/phpbb/console/command/cron/run.php4
2 files changed, 5 insertions, 4 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index a4117a2158..f9f38788a6 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -221,8 +221,9 @@ $lang = array_merge($lang, array(
'BACK' => 'Back',
- 'CLI_DESCR_CRON_RUN' => 'Runs all available cron tasks.',
- 'CLI_DESCR_CRON_ARG_RUN_1' => 'What task do you what to run?',
+ 'CLI_DESCRIPTION_CRON_RUN' => 'Runs all available cron tasks.',
+ 'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'What task do you what to run?',
+
'COLOUR_SWATCH' => 'Web-safe colour swatch',
'CONFIG_UPDATED' => 'Configuration updated successfully.',
diff --git a/phpBB/phpbb/console/command/cron/run.php b/phpBB/phpbb/console/command/cron/run.php
index 7387c260a9..df69b05321 100644
--- a/phpBB/phpbb/console/command/cron/run.php
+++ b/phpBB/phpbb/console/command/cron/run.php
@@ -54,8 +54,8 @@ class run extends \phpbb\console\command\command
{
$this
->setName('cron:run')
- ->setDescription($this->user->lang('CLI_DESCR_CRON_RUN'))
- ->addArgument('name', InputArgument::OPTIONAL, $this->user->lang('CLI_DESCR_CRON_ARG_RUN_1'))
+ ->setDescription($this->user->lang('CLI_DESCRIPTION_CRON_RUN'))
+ ->addArgument('name', InputArgument::OPTIONAL, $this->user->lang('CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'))
;
}