13
0

do not mark sections of menu/action paths as translatable, since they are not

This commit is contained in:
Paul Davis 2023-07-14 09:42:06 -06:00
parent ed869da97e
commit ae5755dbe5

View File

@ -496,15 +496,15 @@ lua_actionlist (lua_State *L)
} }
//kinda kludgy way to avoid displaying menu items as mappable //kinda kludgy way to avoid displaying menu items as mappable
if (parts[1] == _("Main_menu")) if (parts[1] == X_("Main_menu"))
continue; continue;
if (parts[1] == _("JACK")) if (parts[1] == X_("JACK"))
continue; continue;
if (parts[1] == _("redirectmenu")) if (parts[1] == X_("redirectmenu"))
continue; continue;
if (parts[1] == _("RegionList")) if (parts[1] == X_("RegionList"))
continue; continue;
if (parts[1] == _("ProcessorMenu")) if (parts[1] == X_("ProcessorMenu"))
continue; continue;
if (!action_tbl[parts[1]].isTable()) { if (!action_tbl[parts[1]].isTable()) {