Change "Configure" to "Configuration" in Menu

Other settings options are nouns rather than verbs so this change makes the configuration option consistent with others. Also makes the menu option label the same as the windows title.
This commit is contained in:
PEmu1 2017-01-05 14:33:24 -08:00
parent a2e191649d
commit 398d544ebf

View File

@ -167,7 +167,7 @@ wxMenu* MainMenuBar::CreateMovieMenu() const
wxMenu* MainMenuBar::CreateOptionsMenu() const wxMenu* MainMenuBar::CreateOptionsMenu() const
{ {
auto* const options_menu = new wxMenu; auto* const options_menu = new wxMenu;
options_menu->Append(wxID_PREFERENCES, _("Co&nfigure...")); options_menu->Append(wxID_PREFERENCES, _("Co&nfiguration"));
options_menu->AppendSeparator(); options_menu->AppendSeparator();
options_menu->Append(IDM_CONFIG_GFX_BACKEND, _("&Graphics Settings")); options_menu->Append(IDM_CONFIG_GFX_BACKEND, _("&Graphics Settings"));
options_menu->Append(IDM_CONFIG_AUDIO, _("&Audio Settings")); options_menu->Append(IDM_CONFIG_AUDIO, _("&Audio Settings"));