diff options
| author | Buddybenj <buddybenj@gmail.com> | 2015-04-01 16:47:29 -0500 |
|---|---|---|
| committer | Buddybenj <buddybenj@gmail.com> | 2015-04-01 18:08:26 -0500 |
| commit | fb0d3a9756713aaa4d830e7f0813749aea2bc2c9 (patch) | |
| tree | cb2e7b80bb2ef42e140703b64981aa760c7a6338 /Source/Core | |
| parent | d50d8cbddd9a383ca9dee6bf07c16fb9d0045cc6 (diff) | |
Change Wording in Help Menu
"Dolphin at GitHub" doesn't make much sense IMO. We could also make it say "Source Code" or "Dolphin on GitHub".
I also changed "Dolphin Website" to make it consistent with the Qt version.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/MainWindow.ui | 2 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.ui b/Source/Core/DolphinQt/MainWindow.ui index 3fee16ffe0..272dc5a65e 100644 --- a/Source/Core/DolphinQt/MainWindow.ui +++ b/Source/Core/DolphinQt/MainWindow.ui @@ -122,7 +122,7 @@ </action> <action name="actionGitHub"> <property name="text"> - <string>&Dolphin at GitHub</string> + <string>&GitHub Repository</string> </property> </action> <action name="actionAbout"> diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 544263ab7f..f8f2c99aa8 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -387,9 +387,9 @@ wxMenuBar* CFrame::CreateMenu() wxMenu* helpMenu = new wxMenu; // Re-enable when there's something useful to display */ // helpMenu->Append(wxID_HELP, _("&Help")); - helpMenu->Append(IDM_HELP_WEBSITE, _("Dolphin &Website")); + helpMenu->Append(IDM_HELP_WEBSITE, _("&Website")); helpMenu->Append(IDM_HELP_ONLINE_DOCS, _("Online &Documentation")); - helpMenu->Append(IDM_HELP_GITHUB, _("Dolphin at &GitHub")); + helpMenu->Append(IDM_HELP_GITHUB, _("&GitHub Repository")); helpMenu->AppendSeparator(); helpMenu->Append(wxID_ABOUT, _("&About...")); menubar->Append(helpMenu, _("&Help")); |
