Maybe to be consistent we could not do it like that.
But rather just have translators translate two strings. And then programmers can decide in the code if they want to combine two strings. Or just have the translators have the same text two places.
Code: Select all
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
[...]
'CLI_HELP_CRON_RUN' => $lang['CLI_DESCRIPTION_CRON_RUN'] . ' Optionally you can specify a cron task name to run only the specified cron task.',
Code: Select all
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
[...]
'CLI_HELP_CRON_RUN' => 'Optionally you can specify a cron task name to run only the specified cron task.',
I suggest:
Code: Select all
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
[...]
'CLI_HELP_CRON_RUN' => 'Runs all ready cron tasks. Optionally you can specify a cron task name to run only the specified cron task.',