mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
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.
This commit is contained in:
@@ -549,7 +549,7 @@ msgstr ""
|
|||||||
msgid "Contributors"
|
msgid "Contributors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/AboutDialog.cpp:406
|
#: src/AboutDialog.cpp:406
|
||||||
msgid "Translators"
|
msgid "Translators"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@@ -201,7 +201,11 @@ wxString TitleText( const wxString & Key )
|
|||||||
|
|
||||||
static wxString HelpTextBuiltIn( const wxString & Key )
|
static wxString HelpTextBuiltIn( const wxString & Key )
|
||||||
{
|
{
|
||||||
if(Key==wxT("welcome"))
|
// 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
|
/// TO-DO: Make the links to help here use the widgets/HelpSystem mechanism
|
||||||
/// so that they are consistent
|
/// so that they are consistent
|
||||||
@@ -211,8 +215,13 @@ static wxString HelpTextBuiltIn( const wxString & Key )
|
|||||||
#if IS_ALPHA
|
#if IS_ALPHA
|
||||||
wxT("<hr><center><h3>") + _("Get the Official Released Version of Audacity") + wxT("</h3></center>") +
|
wxT("<hr><center><h3>") + _("Get the Official Released Version of Audacity") + wxT("</h3></center>") +
|
||||||
VerCheckHtml() +
|
VerCheckHtml() +
|
||||||
_("<br><br>The version of Audacity you are using is an <b>Alpha test version</b>.") + " " +
|
#if IS_ALPHA == 1
|
||||||
_("We strongly recommend that you use our latest stable released version, which has full documentation and support.<br><br>")+
|
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>")+
|
_("You can help us get Audacity ready for release by joining our [[http://www.audacityteam.org/community/|community]].<hr><br><br>")+
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user