WX: Replace 'BIOS' with 'IPL'

It's not really a BIOS.
This commit is contained in:
Léo Lam
2017-06-04 10:20:16 +02:00
parent a33d48dd0d
commit 94bb55cef0
6 changed files with 34 additions and 34 deletions

View File

@ -217,14 +217,14 @@ wxMenu* MainMenuBar::CreateToolsMenu() const
tools_menu->Append(IDM_EXPORT_ALL_SAVE, _("Export All Wii Saves"));
tools_menu->AppendSeparator();
auto* const gc_bios_menu = new wxMenu;
gc_bios_menu->Append(IDM_LOAD_GC_BIOS_JAP, _("NTSC-J"),
_("Load NTSC-J GameCube BIOS from the JAP folder."));
gc_bios_menu->Append(IDM_LOAD_GC_BIOS_USA, _("NTSC-U"),
_("Load NTSC-U GameCube BIOS from the USA folder."));
gc_bios_menu->Append(IDM_LOAD_GC_BIOS_EUR, _("PAL"),
_("Load PAL GameCube BIOS from the EUR folder."));
tools_menu->AppendSubMenu(gc_bios_menu, _("Load GameCube BIOS"),
_("Load a GameCube BIOS located under Dolphin's GC folder."));
gc_bios_menu->Append(IDM_LOAD_GC_IPL_JAP, _("NTSC-J"),
_("Load NTSC-J GameCube IPL from the JAP folder."));
gc_bios_menu->Append(IDM_LOAD_GC_IPL_USA, _("NTSC-U"),
_("Load NTSC-U GameCube IPL from the USA folder."));
gc_bios_menu->Append(IDM_LOAD_GC_IPL_EUR, _("PAL"),
_("Load PAL GameCube IPL from the EUR folder."));
tools_menu->AppendSubMenu(gc_bios_menu, _("Load GameCube IPL"),
_("Load a GameCube IPL located under Dolphin's GC folder."));
tools_menu->AppendSeparator();
tools_menu->Append(IDM_CHEATS, _("&Cheat Manager"));
tools_menu->Append(IDM_NETPLAY, _("Start &NetPlay..."));