mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12597] Change EXECUTE to RUN in language
Fix previous commit : change execute to run in language keys PHPBB3-12597
This commit is contained in:
parent
6f279c1bf4
commit
9a78772745
2 changed files with 2 additions and 2 deletions
|
@ -221,7 +221,7 @@ $lang = array_merge($lang, array(
|
||||||
|
|
||||||
'BACK' => 'Back',
|
'BACK' => 'Back',
|
||||||
|
|
||||||
'CLI_DESCR_CRON_EXECUTE_ALL' => 'Executes all available cron tasks.',
|
'CLI_DESCR_CRON_RUN_ALL' => 'Runs all available cron tasks.',
|
||||||
|
|
||||||
'COLOUR_SWATCH' => 'Web-safe colour swatch',
|
'COLOUR_SWATCH' => 'Web-safe colour swatch',
|
||||||
'CONFIG_UPDATED' => 'Configuration updated successfully.',
|
'CONFIG_UPDATED' => 'Configuration updated successfully.',
|
||||||
|
|
|
@ -48,7 +48,7 @@ class run_all extends \phpbb\console\command\command
|
||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('cron:run-all')
|
->setName('cron:run-all')
|
||||||
->setDescription($this->user->lang('CLI_DESCR_CRON_EXECUTE_ALL'))
|
->setDescription($this->user->lang('CLI_DESCR_CRON_RUN_ALL'))
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue