diff --git a/src/HelpText.cpp b/src/HelpText.cpp
index dfb4590a7..df922f9df 100644
--- a/src/HelpText.cpp
+++ b/src/HelpText.cpp
@@ -199,11 +199,11 @@ static wxString HelpTextBuiltIn( const wxString & Key )
wxString(wxT("")) +
wxT("
DarkAudacity ") + AUDACITY_VERSION_STRING + wxT("
") +
_("
DarkAudacity is based on Audacity:") + wxT("- ") +
- _(" email to [[mailto:james@audacityteam.org|'james@audacityteam.org']] - for help using DarkAudacity.") + wxT("
- ") +
- _(" see [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between DarkAudacity and Audacity.") + wxT("
") +
+ _(" [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them.") + wxT("") +
+ _(" email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity.") + wxT("") +
+ _(" [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity.") + wxT("") +
_("
Audacity has these support methods:") + wxT("- ") +
- _(" [[http://manual.audacityteam.org/quick_help.html|'Quick Help']] - for getting started with Audacity.") + wxT("
- ") +
_(" [[http://manual.audacityteam.org/|Manual]] - for comprehensive Audacity documentation") + wxT("
- ") +
_(" [[http://forum.audacityteam.org/|Forum]] - for large knowledge base on using Audacity.") + wxT("
")
);
diff --git a/src/Menus.cpp b/src/Menus.cpp
index 2b3899cdb..e46ca1e79 100644
--- a/src/Menus.cpp
+++ b/src/Menus.cpp
@@ -1090,7 +1090,10 @@ void AudacityProject::CreateMenusAndCommands()
c->BeginMenu(_("&Help"));
c->SetDefaultFlags(AlwaysEnabledFlag, AlwaysEnabledFlag);
- c->AddItem(wxT("QuickHelp"), _("&Quick Help"), FN(OnQuickHelp));
+ // 'Getting Started' rather than 'Quick Help' for DarkAudacity.
+ // At the moment the video tutorials are aspirational (aka do not exist yet).
+ // Emphasise that manual is for Audacity, not DarkAudacity.
+ c->AddItem(wxT("QuickHelp"), _("&Getting Started"), FN(OnQuickHelp));
c->AddItem(wxT("Manual"), _("Audacity &Manual"), FN(OnManual));
c->AddSeparator();
diff --git a/src/widgets/HelpSystem.cpp b/src/widgets/HelpSystem.cpp
index 60bfc16d9..934d13103 100644
--- a/src/widgets/HelpSystem.cpp
+++ b/src/widgets/HelpSystem.cpp
@@ -296,9 +296,9 @@ void HelpSystem::ShowHelpDialog(wxWindow *parent,
}
else if (releasePageName == wxT("Quick_Help"))
{
- releasePageName = wxT("quick_help") + HelpSystem::ReleaseSuffix + anchor;
+ releasePageName = wxT("video") + HelpSystem::ReleaseSuffix + anchor;
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
- webHelpPath = wxT("http://")+HelpSystem::HelpHostname+HelpSystem::HelpServerHomeDir;
+ webHelpPath = wxT("http://www.darkaudacity.com/");
}
else
{