From: terencehill Date: Fri, 16 Sep 2022 14:39:55 +0000 (+0200) Subject: Make 2 strings translatable X-Git-Tag: xonotic-v0.8.6~360^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1abbb17e725edb42685b92c2e23f4920fe8093d0;p=xonotic%2Fxonotic-data.pk3dir.git Make 2 strings translatable --- diff --git a/qcsrc/client/hud/panel/quickmenu.qc b/qcsrc/client/hud/panel/quickmenu.qc index a6ea8e20a..e75b5fbf9 100644 --- a/qcsrc/client/hud/panel/quickmenu.qc +++ b/qcsrc/client/hud/panel/quickmenu.qc @@ -874,10 +874,9 @@ void QuickMenu_Default(string target_submenu) if (autocvar__hud_panel_quickmenu_file_from_server != "") { - // TODO make it translatable - string entry_name = "Server's custom quickmenu"; + string entry_name = _("Server's custom quickmenu"); if (autocvar__hud_panel_quickmenu_file_from_server == "wpeditor.txt") - entry_name = "Waypoint editor quickmenu"; + entry_name = _("Waypoint editor quickmenu"); QUICKMENU_ENTRY(entry_name, "quickmenu; wait; quickmenu \"\" \"\" $_hud_panel_quickmenu_file_from_server") }