]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/command/menu_cmd.qc
Standardize command usage messages:
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / command / menu_cmd.qc
index bb55a671bad802feb51cc1e4fb1dcd3be92ade08..6bab3ed8eb3be3248e937b292c0d88de15faeec9 100644 (file)
@@ -45,10 +45,11 @@ void GameCommand(string theCommand)
 
        if (argv(0) == "help" || argc == 0)
        {
-               LOG_HELP(_("Usage: menu_cmd command..., where possible commands are:"));
-               LOG_HELP(_("  sync - reloads all cvars on the current menu page"));
-               LOG_HELP(_("  directmenu ITEM - select a menu item as main item"));
-               LOG_HELP(_("  dumptree - dump the state of the menu as a tree to the console"));
+               LOG_HELP(_("Usage:^3 menu_cmd <command> [<item>], where possible commands are:"));
+               LOG_HELP(_("  'sync' reloads all cvars on the current menu page"));
+               LOG_HELP(_("  'directmenu' shows the menu window named 'item' (or the menu window containing an item named 'item')"));
+               LOG_HELP(_("   if 'item' is not specified it shows the list of available items in the console"));
+               LOG_HELP(_("  'dumptree' dumps the state of the menu as a tree to the console"));
 
                LOG_HELP("\nGeneric commands shared by all programs:");
                GenericCommand_macro_help();
@@ -77,7 +78,7 @@ void GameCommand(string theCommand)
 
                if (argc == 1)
                {
-                       LOG_HELP(_("Available options:"));
+                       LOG_HELP(_("Available items:"));
 
                        FOREACH_ENTITY_ORDERED(it.name != "", {
                                if (it.classname == "vtbl") continue;