diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-02 12:44:52 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-02 12:44:52 +0200 |
commit | 5faa12db4c4c02010e99c65e473024c018928603 (patch) | |
tree | a01f3aef54eb8d57509a41307ad3ae64a354fa58 /phpBB/language | |
parent | 58af8606c1f075ca34a2d6b307a55e598e9f4817 (diff) | |
parent | 76158e429b10ce09a5f5b27a2d12a6f57bfa154f (diff) | |
download | forums-5faa12db4c4c02010e99c65e473024c018928603.tar forums-5faa12db4c4c02010e99c65e473024c018928603.tar.gz forums-5faa12db4c4c02010e99c65e473024c018928603.tar.bz2 forums-5faa12db4c4c02010e99c65e473024c018928603.tar.xz forums-5faa12db4c4c02010e99c65e473024c018928603.zip |
Merge pull request #3855 from VSEphpbb/ticket/14123
[ticket/14123] Add descriptive help to the CLI help output
* VSEphpbb/ticket/14123:
[ticket/14123] Fix typo
[ticket/14123] Remove redundant help messages
[ticket/14123] Add descriptive help to the CLI help output
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/cli.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php index 0e7dc39b95..6989f26f72 100644 --- a/phpBB/language/en/cli.php +++ b/phpBB/language/en/cli.php @@ -54,9 +54,9 @@ $lang = array_merge($lang, array( 'CLI_DESCRIPTION_DELETE_CONFIG' => 'Deletes a configuration option', 'CLI_DESCRIPTION_DISABLE_EXTENSION' => 'Disables the specified extension.', 'CLI_DESCRIPTION_ENABLE_EXTENSION' => 'Enables the specified extension.', - 'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended on.', + 'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended upon.', 'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s value', - 'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments a configuration option’s value', + 'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments a configuration option’s integer value', 'CLI_DESCRIPTION_LIST_EXTENSIONS' => 'Lists all extensions in the database and on the filesystem.', 'CLI_DESCRIPTION_OPTION_SAFE_MODE' => 'Run in Safe Mode (without extensions).', 'CLI_DESCRIPTION_OPTION_SHELL' => 'Launch the shell.', @@ -79,3 +79,8 @@ $lang = array_merge($lang, array( 'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS' => 'Successfully recalculated all email hashes.', )); + +// Additional help for commands. +$lang = array_merge($lang, array( + 'CLI_HELP_CRON_RUN' => $lang['CLI_DESCRIPTION_CRON_RUN'] . ' Optionally you can specify a cron task name to run only the specified cron task.', +)); |