X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fgamecommand.qc;h=f3d780b6f55fe7edf13e8e18129b44199b110a6a;hb=7ec398db61b56e3c74bf0dbef1f6740a81cc7ced;hp=104c8840e58cda121daecb6afd36c6b68f2083cf;hpb=ee1bc52fd8269edac22ce73ddecc88583fa1d623;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/gamecommand.qc b/qcsrc/menu/gamecommand.qc index 104c8840e..f3d780b6f 100644 --- a/qcsrc/menu/gamecommand.qc +++ b/qcsrc/menu/gamecommand.qc @@ -44,7 +44,7 @@ void Curl_URI_Get_Callback(float id, float status, string data) do_cvar = curl_uri_get_cvar[i]; if(status != 0) { - print("error: status is ", ftos(status), "\n"); + print(sprintf(_("error: status is %d\n"), status)); return; } if(do_exec) @@ -62,9 +62,9 @@ void GameCommand(string theCommand) if(argv(0) == "help" || argc == 0) { - print("Usage: menu_cmd theCommand..., where possible theCommands are:\n"); - print(" sync - reloads all cvars on the current menu page\n"); - print(" directmenu ITEM - select a menu item as main item\n"); + print(_("Usage: menu_cmd command..., where possible commands are:\n")); + print(_(" sync - reloads all cvars on the current menu page\n")); + print(_(" directmenu ITEM - select a menu item as main item\n")); GameCommand_Generic("help"); return; } @@ -75,6 +75,7 @@ void GameCommand(string theCommand) if(argv(0) == "sync") { loadAllCvars(main); + updateCompression(); return; } @@ -99,6 +100,12 @@ void GameCommand(string theCommand) return; } + if(argv(0) == "languageselect") + { + m_goto_language_selector(); + return; + } + if(argv(0) == "videosettings") { m_goto_video_settings(); @@ -183,7 +190,7 @@ void GameCommand(string theCommand) curl_uri_get_pos = mod(curl_uri_get_pos + 1, URI_GET_CURL_END - URI_GET_CURL + 1); } else - print("error creating curl handle\n"); + print(_("error creating curl handle\n")); buf_del(buf); @@ -229,5 +236,5 @@ void GameCommand(string theCommand) } #endif - print("Invalid theCommand. For a list of supported theCommands, try menu_cmd help.\n"); + print(_("Invalid command. For a list of supported commands, try menu_cmd help.\n")); }