Commit 4814d886 authored by Antoine Cellerier's avatar Antoine Cellerier

Fix help string.

parent f995f513
...@@ -2176,17 +2176,17 @@ vlc_module_end(); ...@@ -2176,17 +2176,17 @@ vlc_module_end();
const module_config_t libvlc_config[] = const module_config_t libvlc_config[] =
{ {
{ {
.i_type = CONFIG_ITEM_BOOL, .i_type = CONFIG_ITEM_BOOL,
.psz_name = "help", .psz_name = "help",
.i_short = 'h', .i_short = 'h',
.psz_text = N_("print help for VLC (can be combined with --advanced)") .psz_text = N_("print help for VLC (can be combined with --advanced and --help-verbose)")
}, },
{ {
.i_type = CONFIG_ITEM_BOOL, .i_type = CONFIG_ITEM_BOOL,
.psz_name = "longhelp", .psz_name = "longhelp",
.i_short = 'H', .i_short = 'H',
.psz_text = N_("print help for VLC and all its modules (can be combined with --advanced)") .psz_text = N_("print help for VLC and all its modules (can be combined with --advanced and --help-verbose)")
}, },
{ {
.i_type = CONFIG_ITEM_BOOL, .i_type = CONFIG_ITEM_BOOL,
...@@ -2208,7 +2208,7 @@ const module_config_t libvlc_config[] = ...@@ -2208,7 +2208,7 @@ const module_config_t libvlc_config[] =
.i_type = CONFIG_ITEM_STRING, .i_type = CONFIG_ITEM_STRING,
.psz_name = "module", .psz_name = "module",
.i_short = 'p', .i_short = 'p',
.psz_text = N_("print help on a specific module (can be combined with --advanced)") .psz_text = N_("print help on a specific module (can be combined with --advanced and --help-verbose)")
}, },
{ {
.i_type = CONFIG_ITEM_BOOL, .i_type = CONFIG_ITEM_BOOL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment