From 1abbb17e725edb42685b92c2e23f4920fe8093d0 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 16 Sep 2022 16:39:55 +0200 Subject: [PATCH] Make 2 strings translatable --- qcsrc/client/hud/panel/quickmenu.qc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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") } -- 2.39.2