Use the translated text for submenus

Originally committed to SVN as r6924.
This commit is contained in:
Thomas Goyne 2012-06-27 01:44:38 +00:00
parent 7bb1e10736
commit fbd0681d2a
1 changed files with 3 additions and 2 deletions

View File

@ -340,10 +340,11 @@ void process_menu_item(wxMenu *parent, agi::Context *c, json::Object const& ele,
read_entry(ele, "special", &special);
if (read_entry(ele, "submenu", &submenu) && read_entry(ele, "text", &text)) {
parent->AppendSubMenu(build_menu(submenu, c, cm), lagi_wxString(text));
wxString tl_text = _(lagi_wxString(text));
parent->AppendSubMenu(build_menu(submenu, c, cm), tl_text);
#ifdef __WXMAC__
if (special == "help")
wxApp::s_macHelpMenuTitleName = lagi_wxString(text);
wxApp::s_macHelpMenuTitleName = tl_text;
#endif
return;
}