aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-08-28 07:49:07 -0700
committerMatt Friedman <maf675@gmail.com>2015-08-28 07:49:07 -0700
commit6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9 (patch)
tree3db6d53d9783e8fb4bfcadc575e79be6262c2f15 /phpBB/language
parent13851f308f57e0cda4c24f9a9a186aac912213d1 (diff)
downloadforums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar
forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.gz
forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.bz2
forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.xz
forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.zip
[ticket/14123] Remove redundant help messages
PHPBB3-14123
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/cli.php87
1 files changed, 6 insertions, 81 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
index 11d45646f8..0b73f95b60 100644
--- a/phpBB/language/en/cli.php
+++ b/phpBB/language/en/cli.php
@@ -55,7 +55,7 @@ $lang = array_merge($lang, array(
'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 upon.',
- 'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s value',
+ 'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s integer value',
'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments a configuration option’s 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).',
@@ -65,86 +65,6 @@ $lang = array_merge($lang, array(
'CLI_DESCRIPTION_SET_ATOMIC_CONFIG' => 'Sets a configuration option’s value only if the old matches the current value',
'CLI_DESCRIPTION_SET_CONFIG' => 'Sets a configuration option’s value',
- 'CLI_HELP_PURGE_CACHE' => 'The <info>%command.name%</info> command allows you to purge the board’s cache.
-
- <info>php %command.full_name%</info>
-',
- 'CLI_HELP_DELETE_CONFIG' => 'The <info>%command.name%</info> command deletes a configuration option. The key name is required.
-
- <info>php %command.full_name% config_key</info>
-',
- 'CLI_HELP_GET_CONFIG' => 'The <info>%command.name%</info> command gets a configuration option’s value. The key name is required.
-
- <info>php %command.full_name% config_key</info>
-',
- 'CLI_HELP_INCREMENT_CONFIG' => 'The <info>%command.name%</info> command increments an integer configuration option’s value. The key name and increment amount are required.
-
- <info>php %command.full_name% config_key 1</info>
-
-If the configuration option changes too frequently to be efficiently cached, use the <info>--dynamic</info> or <info>-d</info> option:
-
- <info>php %command.full_name% config_key 1 --dynamic</info>
- <info>php %command.full_name% config_key 1 -d</info>
-',
- 'CLI_HELP_SET_CONFIG' => 'The <info>%command.name%</info> sets a configuration option’s value. The key name and value are required.
-
- <info>php %command.full_name% config_key foo</info>
-
-If the configuration option changes too frequently to be efficiently cached, use the <info>--dynamic</info> or <info>-d</info> option:
-
- <info>php %command.full_name% config_key foo --dynamic</info>
- <info>php %command.full_name% config_key foo -d</info>
-',
- 'CLI_HELP_SET_ATOMIC_CONFIG' => 'The <info>%command.name%</info> command sets a configuration option’s value only if the old value matches the current value or the configuration value does not exist yet. The key name, old and new values are required.
-
- <info>php %command.full_name% config_name foo bar</info>
-
-If the configuration option changes too frequently to be efficiently cached, use the <info>--dynamic</info> or <info>-d</info> option:
-
- <info>php %command.full_name% config_key foo bar --dynamic</info>
- <info>php %command.full_name% config_key foo bar -d</info>
-',
- 'CLI_HELP_CRON_LIST' => 'The <info>%command.name%</info> command prints a list of ready and unready cron jobs.
-
- <info>php %command.full_name%</info>
-',
- 'CLI_HELP_CRON_RUN' => 'The <info>%command.name%</info> command runs all ready cron tasks.
-
- <info>php %command.full_name%</info>
-
-Optionally you can specify a cron task name to run only the specified cron task:
-
- <info>php %command.full_name% task_name</info>
-',
- 'CLI_HELP_DB_MIGRATE' => 'The <info>%command.name%</info> command updates the database by applying available migrations.
-
- <info>php %command.full_name%</info>
-',
- 'CLI_HELP_FIND_MIGRATIONS' => 'The <info>%command.name%</info> command finds migrations that are not depended upon.
-
- <info>php %command.full_name%</info>
-',
- 'CLI_HELP_DISABLE_EXTENSION' => 'The <info>%command.name%</info> command disables the specified extension. The extension name is required.
-
- <info>php %command.full_name% vendor_name/package_name</info>
-',
- 'CLI_HELP_ENABLE_EXTENSION' => 'The <info>%command.name%</info> command enables the specified extension. The extension name is required.
-
- <info>php %command.full_name% vendor_name/package_name</info>
-',
- 'CLI_HELP_PURGE_EXTENSION' => 'The <info>%command.name%</info> command purges the specified extension. The extension name is required.
-
- <info>php %command.full_name% vendor_name/package_name</info>
-',
- 'CLI_HELP_LIST_EXTENSIONS' => 'The <info>%command.name%</info> command lists all extensions in the database and on the filesystem.
-
- <info>php %command.full_name%</info>
-',
- 'CLI_HELP_RECALCULATE_EMAIL_HASH' => 'The <info>%command.name%</info> command recalculates the user_email_hash column of the users table.
-
- <info>php %command.full_name%</info>
-',
-
'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s',
'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s',
'CLI_EXTENSION_ENABLE_FAILURE' => 'Could not enable extension %s',
@@ -159,3 +79,8 @@ Optionally you can specify a cron task name to run only the specified cron task:
'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.',
+));