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."));