Merge pull request #4056 from Pringo/master

Update Menu Ellipses Usage
This commit is contained in:
JosJuice 2016-09-16 20:28:51 +02:00 committed by GitHub
commit 22b5d89bf1
1 changed files with 5 additions and 5 deletions

View File

@ -123,7 +123,7 @@ wxMenuBar* CFrame::CreateMenu()
fileMenu->Append(IDM_CHANGE_DISC, GetMenuLabel(HK_CHANGE_DISC));
wxMenu* externalDrive = new wxMenu;
fileMenu->Append(IDM_DRIVES, _("&Boot from DVD Backup..."), externalDrive);
fileMenu->Append(IDM_DRIVES, _("&Boot from DVD Backup"), externalDrive);
drives = cdio_get_devices();
// Windows Limitation of 24 character drives
@ -234,13 +234,13 @@ wxMenuBar* CFrame::CreateMenu()
// Tools menu
wxMenu* toolsMenu = new wxMenu;
toolsMenu->Append(IDM_MEMCARD, _("&Memcard Manager (GC)"));
toolsMenu->Append(IDM_IMPORT_SAVE, _("Import Wii Save"));
toolsMenu->Append(IDM_IMPORT_SAVE, _("Import Wii Save..."));
toolsMenu->Append(IDM_EXPORT_ALL_SAVE, _("Export All Wii Saves"));
toolsMenu->Append(IDM_CHEATS, _("&Cheat Manager"));
toolsMenu->Append(IDM_NETPLAY, _("Start &NetPlay"));
toolsMenu->Append(IDM_NETPLAY, _("Start &NetPlay..."));
toolsMenu->Append(IDM_MENU_INSTALL_WAD, _("Install WAD"));
toolsMenu->Append(IDM_MENU_INSTALL_WAD, _("Install WAD..."));
UpdateWiiMenuChoice(toolsMenu->Append(IDM_LOAD_WII_MENU, "Dummy string to keep wxw happy"));
toolsMenu->Append(IDM_FIFOPLAYER, _("FIFO Player"));
@ -370,7 +370,7 @@ wxMenuBar* CFrame::CreateMenu()
helpMenu->Append(IDM_HELP_ONLINE_DOCS, _("Online &Documentation"));
helpMenu->Append(IDM_HELP_GITHUB, _("&GitHub Repository"));
helpMenu->AppendSeparator();
helpMenu->Append(wxID_ABOUT, _("&About..."));
helpMenu->Append(wxID_ABOUT, _("&About"));
menubar->Append(helpMenu, _("&Help"));
return menubar;