From 74e3a6fdba4de96831436a39ec1ee96bd98ed14b Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Thu, 31 Aug 2017 16:56:33 -0400 Subject: [PATCH] Replace mentions of feedback@audacityteam.org with url of forum... ... There are two in AboutDialog.cpp, but these strings aren't actually used. There are two in InconsistencyException.cpp, which ought never to be seen by users, but should be treated as high priority bugs if they are. There is a very old one in Sequence.cpp, which was never internationalized and was only written to the log and likewise ought to be eliminated from happening in pre-release testing. Therefore, though this is a minor breach of string freeze, it's only the second one above that users might ever see, and then only if a serious bug escaped. --- src/AboutDialog.cpp | 4 ++-- src/InconsistencyException.cpp | 4 ++-- src/Sequence.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index 54842d54f..36ed92096 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -348,11 +348,11 @@ Audacity is [[http://www.audacityteam.org/download|available]] for Windows, Mac, // This trick here means that the English language version won't mention using // English, whereas all translated versions will. wxString par2StrUntranslated = wxT( -"If you find a bug or have a suggestion for us, please write, in English, to our [[mailto:feedback@audacityteam.org|feedback address]]. \ +"If you find a bug or have a suggestion for us, please write, in English, to our [[http://forum.audacityteam.org/|forum]]. \ For help, view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or \ visit our [[http://forum.audacityteam.org/|forum]]."); wxString par2Str = _( -"If you find a bug or have a suggestion for us, please write, in English, to our [[mailto:feedback@audacityteam.org|feedback address]]. \ +"If you find a bug or have a suggestion for us, please write, in English, to our [[http://forum.audacityteam.org/|forum]]. \ For help, view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or \ visit our [[http://forum.audacityteam.org/|forum]]."); diff --git a/src/InconsistencyException.cpp b/src/InconsistencyException.cpp index a5b06d45b..6cf20a9b4 100644 --- a/src/InconsistencyException.cpp +++ b/src/InconsistencyException.cpp @@ -30,12 +30,12 @@ wxString InconsistencyException::ErrorMessage() const #ifdef __func__ return wxString::Format( -_("Internal error in %s at %s line %d.\nPlease inform the Audacity team at feedback@audacityteam.org."), +_("Internal error in %s at %s line %d.\nPlease inform the Audacity team at https://forum.audacityteam.org/."), func, path, line ); #else return wxString::Format( -_("Internal error at %s line %d.\nPlease inform the Audacity team at feedback@audacityteam.org."), +_("Internal error at %s line %d.\nPlease inform the Audacity team at https://forum.audacityteam.org/."), path, line ); #endif diff --git a/src/Sequence.cpp b/src/Sequence.cpp index 159d93b41..c01f782ef 100644 --- a/src/Sequence.cpp +++ b/src/Sequence.cpp @@ -1840,7 +1840,7 @@ void Sequence::ConsistencyCheck wxString str; DebugPrintf(mBlock, mNumSamples, &str); wxLogError(wxT("%s"), str.c_str()); - wxLogError(wxT("*** Please report this error to feedback@audacityteam.org. ***\n\n") + wxLogError(wxT("*** Please report this error to https://forum.audacityteam.org/. ***\n\n") wxT("Recommended course of action:\n") wxT("Undo the failed operation(s), then export or save your work and quit."));