diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp
index 2e1d1dfe0..d485e85b1 100644
--- a/src/AboutDialog.cpp
+++ b/src/AboutDialog.cpp
@@ -56,14 +56,12 @@ void AboutDialog::CreateCreditsList()
// The Audacity 1.3.x and 2.0.x team: developers and support
AddCredit(wxT("Richard Ash"), roleTeamDeveloper);
AddCredit(wxT("Michael Chinen"), roleTeamDeveloper);
-#if IS_BETA
AddCredit(wxT("James Crook"), roleTeamDeveloper);
-#endif
AddCredit(wxString(wxT("Roger Dannenberg - ")) + _("co-founder"), roleTeamDeveloper);
AddCredit(wxT("Vaughan Johnson"), roleTeamDeveloper);
AddCredit(wxT("Martyn Shaw"), roleTeamDeveloper);
- AddCredit(wxT("Gale Andrews"), roleTeamSupport);
+ AddCredit(wxString(wxT("Gale Andrews - ")) + _("quality assurance"), roleTeamSupport);
AddCredit(wxT("Christian Brochec"), roleTeamSupport);
AddCredit(wxT("Steve Daulton"), roleTeamSupport);
AddCredit(wxT("Greg Kozikowski"), roleTeamSupport);
@@ -200,15 +198,9 @@ void AboutDialog::PopulateAudacityPage( ShuttleGui & S )
wxString par1Str = _(
"Audacity is a free program written by a worldwide team of volunteer developers. We thank SourceForge.net and Google Code for our project hosting. Audacity is available for Windows, Mac, and GNU/Linux (and other Unix-like systems).");
- #if IS_BETA // Is this beta or not?
- // TODO: IS_BETA is going away
- // No longer distribute betas, so translation no longer needed.
- wxString par2Str = wxT(
- "This is a Beta version of the program. It may contain bugs and unfinished features. We depend on your feedback: please send bug reports and feature requests to our Feedback address. For help, use the Help menu in the program, view the tips and tricks on our Wiki or visit our Forum.");
- #else
+ // No such thing as an official released 'beta' anymore, so keep this string simple.
wxString par2Str = _(
"If you find a bug or have a suggestion for us, please write to our Feedback address. For help, view the tips and tricks on our Wiki or visit our Forum.");
- #endif
wxString translatorCredits;
/* i18n-hint: The translation of "translator_credits" will appear
diff --git a/src/Menus.cpp b/src/Menus.cpp
index 2f46ae55b..d56081b31 100644
--- a/src/Menus.cpp
+++ b/src/Menus.cpp
@@ -1074,6 +1074,8 @@ void AudacityProject::CreateMenusAndCommands()
c->AddItem(wxT("Screenshot"), _("&Screenshot Tools..."), FN(OnScreenshot));
#if IS_BETA
+ // TODO: What should we do here? Make benchmark a plug-in?
+ // Easy enough to do. We'd call it mod-self-test.
c->AddSeparator();
c->AddItem(wxT("Benchmark"), _("&Run Benchmark..."), FN(OnBenchmark));