X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fcommand%2Fmenu_cmd.qc;h=8485c5382b834ce58a6abfedaabce865fc8cca2f;hb=ac7deb97b1a0e73ceea4684be73e72912fb3f1aa;hp=a06ac8e23100f7ffbc98312edba482164aec1c77;hpb=e044c33d2e56a13837659b0cdb0ac9a2e6242957;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index a06ac8e23..8485c5382 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -45,13 +45,13 @@ void GameCommand(string theCommand) if (argv(0) == "help" || argc == 0) { - LOG_INFO(_("Usage: menu_cmd command..., where possible commands are:")); - LOG_INFO(_(" sync - reloads all cvars on the current menu page")); - LOG_INFO(_(" directmenu ITEM - select a menu item as main item")); - LOG_INFO(_(" dumptree - dump the state of the menu as a tree to the console")); - LOG_INFO("\n"); + LOG_HELP(_("Usage:^3 menu_cmd [], where possible commands are:")); + LOG_HELP(_(" reloads all cvars on the current menu page")); + LOG_HELP(_(" shows the menu window named (or the menu window containing an item named )")); + LOG_HELP(_(" if is not specified it shows the list of available items in the console")); + LOG_HELP(_(" dumps the state of the menu as a tree to the console")); - LOG_INFO("Generic commands shared by all programs:"); + LOG_HELP("\nGeneric commands shared by all programs:"); GenericCommand_macro_help(); return; @@ -78,7 +78,7 @@ void GameCommand(string theCommand) if (argc == 1) { - LOG_INFO(_("Available options:")); + LOG_HELP(_("Available items:")); FOREACH_ENTITY_ORDERED(it.name != "", { if (it.classname == "vtbl") continue; @@ -88,7 +88,7 @@ void GameCommand(string theCommand) if (!startsWith(s, filter)) continue; s = substring(s, strlen(filter), strlen(s) - strlen(filter)); } - LOG_INFOF(" %s", s); + LOG_HELP(" ", s); }); } else if (argc == 2 && !isdemo()) // don't allow this command in demos