WX: Change GC IPL to GC "Main Menu"

That is the official term used by Nintendo.
This commit is contained in:
Léo Lam 2017-06-04 13:20:37 +02:00
parent 94bb55cef0
commit 3daf7c3f8e
2 changed files with 7 additions and 7 deletions

View File

@ -66,7 +66,7 @@ void GameCubeConfigPane::InitializeGUI()
"Lets the system language be set to values that games were not designed for. This can allow "
"the use of extra translations for a few games, but can also lead to text display issues."));
m_skip_ipl_checkbox = new wxCheckBox(this, wxID_ANY, _("Skip IPL"));
m_skip_ipl_checkbox = new wxCheckBox(this, wxID_ANY, _("Skip Main Menu"));
if (!File::Exists(File::GetUserPath(D_GCUSER_IDX) + DIR_SEP + USA_DIR + DIR_SEP GC_IPL) &&
!File::Exists(File::GetSysDirectory() + GC_SYS_DIR + DIR_SEP + USA_DIR + DIR_SEP GC_IPL) &&
@ -76,7 +76,7 @@ void GameCubeConfigPane::InitializeGUI()
!File::Exists(File::GetSysDirectory() + GC_SYS_DIR + DIR_SEP + EUR_DIR + DIR_SEP GC_IPL))
{
m_skip_ipl_checkbox->Disable();
m_skip_ipl_checkbox->SetToolTip(_("Put IPL roms in User/GC/{region}."));
m_skip_ipl_checkbox->SetToolTip(_("Put Main Menu roms in User/GC/{region}."));
}
// Device settings

View File

@ -218,13 +218,13 @@ wxMenu* MainMenuBar::CreateToolsMenu() const
tools_menu->AppendSeparator();
auto* const gc_bios_menu = new wxMenu;
gc_bios_menu->Append(IDM_LOAD_GC_IPL_JAP, _("NTSC-J"),
_("Load NTSC-J GameCube IPL from the JAP folder."));
_("Load NTSC-J GameCube Main Menu from the JAP folder."));
gc_bios_menu->Append(IDM_LOAD_GC_IPL_USA, _("NTSC-U"),
_("Load NTSC-U GameCube IPL from the USA folder."));
_("Load NTSC-U GameCube Main Menu 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."));
_("Load PAL GameCube Main Menu from the EUR folder."));
tools_menu->AppendSubMenu(gc_bios_menu, _("Load GameCube Main Menu"),
_("Load a GameCube Main Menu located under Dolphin's GC folder."));
tools_menu->AppendSeparator();
tools_menu->Append(IDM_CHEATS, _("&Cheat Manager"));
tools_menu->Append(IDM_NETPLAY, _("Start &NetPlay..."));