From bd39b0726074a6a01ba1958ea8ba20b9a35c0cba Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Tue, 28 Sep 2010 01:50:45 +0000 Subject: [PATCH] 'How to Get Help' is a title, so needs title capitalization, so changed "get" to "Get". And it's a dialog box, not a message. Internet is a proper name, so should always be capitalized. --- src/HelpText.cpp | 12 ++++++------ src/prefs/GUIPrefs.cpp | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/HelpText.cpp b/src/HelpText.cpp index 24d8b9b4d..708f3d1dd 100644 --- a/src/HelpText.cpp +++ b/src/HelpText.cpp @@ -173,19 +173,19 @@ wxString HelpTextBuiltIn( const wxString & Key ) { return WrapText( wxString(wxT("")) + - _("

How to get Help

") + + _("

How to Get Help

") + _("Welcome to Audacity ") + AUDACITY_VERSION_STRING + wxT("!

") + _("These are our support methods:") + wxT("

") + wxT("

") + + _(" [[file:quick_help.html|Quick Help]] (should be installed locally, Internet version if it isn't)") + wxT("

  • ") + + _(" [[file:index.html|Manual]] (should be installed locally, Internet version if it isn't)") + wxT("
  • ") + + _(" [[http://wiki.audacityteam.org/index.php|Wiki]] (the latest tips, tricks and tutorials, on the Internet)") + wxT("
  • ") + + _(" Forum (ask your question directly, on the Internet)") + wxT("
  • ") + _(" For even quicker answers, all the online resources above are searchable.") + wxT("

    ") ); } // Remote help allows us to link to a local copy of the help if it exists, - // or provide a message that takes you to the internet if it does not. + // or provide a message that takes you to the Internet if it does not. // It's used by the menu item Help > Index if(Key == wxT("remotehelp") ) { diff --git a/src/prefs/GUIPrefs.cpp b/src/prefs/GUIPrefs.cpp index 08f279c8e..69c640431 100644 --- a/src/prefs/GUIPrefs.cpp +++ b/src/prefs/GUIPrefs.cpp @@ -87,7 +87,7 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S) S.TieCheckBox(_("&Ergonomic order of audio I/O buttons"), wxT("/GUI/ErgonomicTransportButtons"), true); - S.TieCheckBox(_("S&how 'How to get Help' message at program start up"), + S.TieCheckBox(_("S&how 'How to Get Help' dialog box at program start up"), wxT("/GUI/ShowSplashScreen"), true);