diff --git a/Source/Core/DolphinWX/Config/GameCubeConfigPane.cpp b/Source/Core/DolphinWX/Config/GameCubeConfigPane.cpp index e901dc6eb6..2b904a684c 100644 --- a/Source/Core/DolphinWX/Config/GameCubeConfigPane.cpp +++ b/Source/Core/DolphinWX/Config/GameCubeConfigPane.cpp @@ -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 diff --git a/Source/Core/DolphinWX/MainMenuBar.cpp b/Source/Core/DolphinWX/MainMenuBar.cpp index d21686e40f..c82637159d 100644 --- a/Source/Core/DolphinWX/MainMenuBar.cpp +++ b/Source/Core/DolphinWX/MainMenuBar.cpp @@ -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..."));