Skip to content
Snippets Groups Projects
Commit 5d4ddbc4 authored by Paul Licameli's avatar Paul Licameli
Browse files

Make the (en) welcome window say it's a Beta test version, not alpha...

... This gets in too late for the translation files, but very few of them
included a translation for this message.  So, it will appear English for all.
parent ccc802aa
Branches
Tags Audacity-2.2.0-beta-20170901
No related merge requests found
......@@ -201,6 +201,10 @@ wxString TitleText( const wxString & Key )
static wxString HelpTextBuiltIn( const wxString & Key )
{
// PRL: Is it necessary to define these outside of conditional compilation so that both get into the .pot file?
auto alphamsg = _("<br><br>The version of Audacity you are using is an <b>Alpha test version</b>.");
auto betamsg = _("<br><br>The version of Audacity you are using is a <b>Beta test version</b>.");
if (Key == wxT("welcome"))
{
/// TO-DO: Make the links to help here use the widgets/HelpSystem mechanism
......@@ -211,7 +215,12 @@ static wxString HelpTextBuiltIn( const wxString & Key )
#if IS_ALPHA
wxT("<hr><center><h3>") + _("Get the Official Released Version of Audacity") + wxT("</h3></center>") +
VerCheckHtml() +
_("<br><br>The version of Audacity you are using is an <b>Alpha test version</b>.") + " " +
#if IS_ALPHA == 1
alphamsg
#else
betamsg
#endif
+ " " +
_("We strongly recommend that you use our latest stable released version, which has full documentation and support.<br><br>") +
_("You can help us get Audacity ready for release by joining our [[http://www.audacityteam.org/community/|community]].<hr><br><br>")+
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment