mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
Fix #84: "menu_item" instead of "menu item" for symbol font localization
This commit is contained in:
@@ -7,6 +7,7 @@ HEAD: new items added as changes are made
|
|||||||
Bug fixes:
|
Bug fixes:
|
||||||
* Fixed: crash in expand_keywords when given empty tags (#90)
|
* Fixed: crash in expand_keywords when given empty tags (#90)
|
||||||
* Fixed: tab traversal in native look editors (style and set info tabs) (#98)
|
* Fixed: tab traversal in native look editors (style and set info tabs) (#98)
|
||||||
|
* Fixed: Mana Symbol Menu Items were notlonger using names from locale (#84)
|
||||||
* Auto replaces that match "" are now disabled
|
* Auto replaces that match "" are now disabled
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -479,7 +479,7 @@ wxMenu* InsertSymbolMenu::makeMenu(int id, SymbolFont& font) const {
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
wxMenuItem* InsertSymbolMenu::makeMenuItem(wxMenu* parent, int first_id, SymbolFont& font) const {
|
wxMenuItem* InsertSymbolMenu::makeMenuItem(wxMenu* parent, int first_id, SymbolFont& font) const {
|
||||||
wxString menu_name = tr(font, _("menu item"), name, capitalize);
|
wxString menu_name = tr(font, _("menu_item"), name, capitalize);
|
||||||
// ensure that there is not actually an accelerator string,
|
// ensure that there is not actually an accelerator string,
|
||||||
menu_name.Replace(_("\t "),_("\t"));
|
menu_name.Replace(_("\t "),_("\t"));
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
|
|||||||
Reference in New Issue
Block a user