From 398d544ebf5c630e4496d150b9077f14e5d1e3cd Mon Sep 17 00:00:00 2001 From: PEmu1 Date: Thu, 5 Jan 2017 14:33:24 -0800 Subject: [PATCH] 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. --- Source/Core/DolphinWX/MainMenuBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/MainMenuBar.cpp b/Source/Core/DolphinWX/MainMenuBar.cpp index 679c6821b6..7790a389b7 100644 --- a/Source/Core/DolphinWX/MainMenuBar.cpp +++ b/Source/Core/DolphinWX/MainMenuBar.cpp @@ -167,7 +167,7 @@ wxMenu* MainMenuBar::CreateMovieMenu() const wxMenu* MainMenuBar::CreateOptionsMenu() const { 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->Append(IDM_CONFIG_GFX_BACKEND, _("&Graphics Settings")); options_menu->Append(IDM_CONFIG_AUDIO, _("&Audio Settings"));