mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-20 01:21:16 +02:00
Fix incorrect https and translation markings.
- DarkAudacity website does not support https, so don't specify https in strings. - Don't translate text about DarkAudacity.
This commit is contained in:
@@ -369,7 +369,7 @@ visit our [[https://forum.audacityteam.org/|forum]].");
|
|||||||
|
|
||||||
// DA: Link for DA url too
|
// DA: Link for DA url too
|
||||||
#ifdef EXPERIMENTAL_DA
|
#ifdef EXPERIMENTAL_DA
|
||||||
wxT("<br>DarkAudacity website: [[https://www.darkaudacity.com/|https://www.darkaudacity.com/]]") +
|
wxT("<br>DarkAudacity website: [[http://www.darkaudacity.com/|https://www.darkaudacity.com/]]") +
|
||||||
#else
|
#else
|
||||||
_("<p><br> <b>Audacity<sup>®</sup></b> software is copyright © 1999-2018 Audacity Team.<br>")
|
_("<p><br> <b>Audacity<sup>®</sup></b> software is copyright © 1999-2018 Audacity Team.<br>")
|
||||||
|
|
||||||
|
@@ -228,11 +228,12 @@ static wxString HelpTextBuiltIn( const wxString & Key )
|
|||||||
|
|
||||||
// DA: Support methods text.
|
// DA: Support methods text.
|
||||||
#ifdef EXPERIMENTAL_DA
|
#ifdef EXPERIMENTAL_DA
|
||||||
|
// Deliberately not translated.
|
||||||
wxT("<center><h3>DarkAudacity ") + AUDACITY_VERSION_STRING + wxT("</h3></center>") +
|
wxT("<center><h3>DarkAudacity ") + AUDACITY_VERSION_STRING + wxT("</h3></center>") +
|
||||||
_("<br><br>DarkAudacity is based on Audacity:") + wxT("<ul><li>") +
|
wxT("<br><br>DarkAudacity is based on Audacity:") + wxT("<ul><li>") +
|
||||||
_(" [[https://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them.") + wxT("</li><li>") +
|
wxT(" [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them.") + wxT("</li><li>") +
|
||||||
_(" email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity.") + wxT("</li><li>") +
|
wxT(" email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity.") + wxT("</li><li>") +
|
||||||
_(" [[https://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity.") + wxT("</li></ul>") +
|
wxT(" [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity.") + wxT("</li></ul>") +
|
||||||
|
|
||||||
wxT("<br><br>Audacity has these support methods:") + wxT("<ul><li>") +
|
wxT("<br><br>Audacity has these support methods:") + wxT("<ul><li>") +
|
||||||
wxT(" [[https://manual.audacityteam.org/|Manual]] - for comprehensive Audacity documentation") + wxT("</li><li>") +
|
wxT(" [[https://manual.audacityteam.org/|Manual]] - for comprehensive Audacity documentation") + wxT("</li><li>") +
|
||||||
|
@@ -308,7 +308,7 @@ void HelpSystem::ShowHelp(wxWindow *parent,
|
|||||||
#ifdef EXPERIMENTAL_DA
|
#ifdef EXPERIMENTAL_DA
|
||||||
releasePageName = wxT("video") + HelpSystem::ReleaseSuffix + anchor;
|
releasePageName = wxT("video") + HelpSystem::ReleaseSuffix + anchor;
|
||||||
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
|
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
|
||||||
webHelpPath = wxT("https://www.darkaudacity.com/");
|
webHelpPath = wxT("http://www.darkaudacity.com/");
|
||||||
#else
|
#else
|
||||||
releasePageName = wxT("quick_help") + HelpSystem::ReleaseSuffix + anchor;
|
releasePageName = wxT("quick_help") + HelpSystem::ReleaseSuffix + anchor;
|
||||||
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
|
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
|
||||||
|
Reference in New Issue
Block a user