1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 17:10:05 +02:00

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.
This commit is contained in:
Paul Licameli 2017-08-31 16:56:33 -04:00
parent 8793dc5c4c
commit 74e3a6fdba
3 changed files with 5 additions and 5 deletions

View File

@ -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 // This trick here means that the English language version won't mention using
// English, whereas all translated versions will. // English, whereas all translated versions will.
wxString par2StrUntranslated = wxT( 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 \ For help, view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or \
visit our [[http://forum.audacityteam.org/|forum]]."); visit our [[http://forum.audacityteam.org/|forum]].");
wxString par2Str = _( 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 \ For help, view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or \
visit our [[http://forum.audacityteam.org/|forum]]."); visit our [[http://forum.audacityteam.org/|forum]].");

View File

@ -30,12 +30,12 @@ wxString InconsistencyException::ErrorMessage() const
#ifdef __func__ #ifdef __func__
return wxString::Format( 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 func, path, line
); );
#else #else
return wxString::Format( 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 path, line
); );
#endif #endif

View File

@ -1840,7 +1840,7 @@ void Sequence::ConsistencyCheck
wxString str; wxString str;
DebugPrintf(mBlock, mNumSamples, &str); DebugPrintf(mBlock, mNumSamples, &str);
wxLogError(wxT("%s"), str.c_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("Recommended course of action:\n")
wxT("Undo the failed operation(s), then export or save your work and quit.")); wxT("Undo the failed operation(s), then export or save your work and quit."));