1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

Change text to clarify this is a customised version

"Audacity" to "Dark Audacity".  Updated text in about box.
This commit is contained in:
James Crook 2016-06-23 15:01:15 +01:00
parent a5ca1f9ce9
commit db667ab58f
7 changed files with 33 additions and 25 deletions

View File

@ -233,7 +233,7 @@ AboutDialog *AboutDialog::ActiveIntance()
}
AboutDialog::AboutDialog(wxWindow * parent)
: wxDialog(parent, -1, _("About Audacity"),
: wxDialog(parent, -1, _("About Dark Audacity"),
wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{
@ -266,7 +266,7 @@ void AboutDialog::PopulateAudacityPage( ShuttleGui & S )
CreateCreditsList();
wxString par1Str = _(
"Audacity is a free program written by a worldwide team of <a href=\"http://audacityteam.org/about/credits\">volunteers</a>. \
"Audacity, which this is a customised version of, is a free program written by a worldwide team of <a href=\"http://audacityteam.org/about/credits\">volunteers</a>. \
Audacity is <a href=\"http://audacityteam.org/download\">available</a> for Windows, Mac, and GNU/Linux (and other Unix-like systems).");
// This trick here means that the English language version won't mention using
@ -300,34 +300,39 @@ visit our <a href=\"http://forum.audacityteam.org/\">forum</a>.");
localeStr +
wxT("\"></head>") +
wxT("<body bgcolor=\"#ffffff\"><center>") +
wxT("<h3>Audacity ") + wxString(AUDACITY_VERSION_STRING) + wxT("</center></h3>") +
_("Free, open source, cross-platform software for recording and editing sounds.") +
wxT(" <a href=\"http://audacityteam.org/\">http://audacityteam.org/</a>") +
wxT("<p><br>") + par1Str +
wxT("<p>") + par2Str +
wxT("<h3>Dark Audacity ") + wxString(AUDACITY_VERSION_STRING) + wxT("</center></h3>") +
_("Customised version of Audacity, the free, open source, cross-platform software " ) +
_("for recording and editing sounds.") +
//wxT("<p><br>") + par1Str +
//wxT("<p>") + par2Str +
wxT("<h3>") + _("Credits") + wxT("</h3>") + wxT("<p>") +
wxT("<p><b>") + wxString::Format(_("Team Members")) + wxT("</b><br><br>") +
wxT("<p><b>") + wxString::Format(_("Dark Audacity Customisation")) + wxT("</b><br>") +
wxT("James Crook, art, coding &amp; design<br>") +
wxT("<p><b>") + wxString::Format(_("Audacity Team Members")) + wxT("</b><br>") +
GetCreditsByRole(roleTeamMember) +
wxT("<p><b> ") + _("Emeritus:") + wxT("</b><br>") +
_("Distinguished Audacity Team members, not currently active") + wxT("<br><br>") +
GetCreditsByRole(roleEmeritusTeam) +
wxT("<p><b>") + _("Contributors") + wxT("</b><br><br>") +
wxT("<p><b>") + _("Contributors") + wxT("</b><br>") +
GetCreditsByRole(roleContributor) +
wxT("<p><b>") + _("Translators") + wxT("</b><br>") +
translatorCredits + wxT("<br>") +
translatorCredits +
GetCreditsByRole(roleTranslators) +
wxT("<p><b>") + _("Libraries") + wxT("</b><br>") +
wxT("Audacity includes code from the following projects:") + wxT("<br><br>") +
GetCreditsByRole(roleLibrary) +
wxT("<p><b>") + _("Special thanks:") + wxT("</b><br><br>") +
wxT("<p><b>") + _("Special thanks:") + wxT("</b><br>") +
GetCreditsByRole(roleThanks) +
wxT("<p><br>Audacity website: <a href=\"http://www.audacityteam.org/\">http://www.audacityteam.org/</a>") +
wxT("<br>Dark Audacity website: <a href=\"http://www.darkaudacity.com/\">http://www.darkaudacity.com/</a>") +
wxT("<p><br>") + _("<b>Audacity&reg;</b> software is copyright")+
wxT("&copy; 1999-2016 Audacity Team.<br>") +
_("The name <b>Audacity&reg;</b> is a registered trademark of Dominic Mazzoni.") +
@ -402,6 +407,7 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
informationStr = wxT("<h2><center>");
informationStr += _("Build Information");
informationStr += wxT("</center></h2>\n");
// top level heading
informationStr += wxT("<h3>");
informationStr += _("File Format Support");
@ -495,6 +501,8 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
informationStr += _("Features");
informationStr += wxT("</h3>\n<table>"); // start table of features
AddBuildinfoRow(&informationStr, wxT("Theme"), _("Dark Theme"), enabled);
# if USE_NYQUIST
AddBuildinfoRow(&informationStr, wxT("Nyquist"), _("Plug-in support"),
enabled);

View File

@ -1193,12 +1193,12 @@ bool AudacityApp::OnInit()
#ifdef AUDACITY_NAME
wxString appName = wxT(AUDACITY_NAME);
#else
wxString appName = wxT("Audacity");
wxString appName = wxT("DarkAudacity");
#endif
wxTheApp->SetAppName(appName);
// Explicitly set since OSX will use it for the "Quit" menu item
wxTheApp->SetAppDisplayName(wxT("Audacity"));
wxTheApp->SetAppDisplayName(wxT("Dark Audacity"));
wxTheApp->SetVendorName(wxT("Audacity"));
// Unused strings that we want to be translated, even though

View File

@ -80,7 +80,7 @@ void AudacityLogger::DoLogText(const wxString & str)
TimeStamp(&stamp);
mBuffer << stamp << wxT("Audacity ") << AUDACITY_VERSION_STRING << wxT("\n");
mBuffer << stamp << wxT("DarkAudacity ") << AUDACITY_VERSION_STRING << wxT("\n");
}
mBuffer << str << wxT("\n");

View File

@ -186,7 +186,7 @@ static wxString HelpTextBuiltIn( const wxString & Key )
/* i18n-hint: Preserve [[file:quick_help.html as it's the name of a file.*/
return WrapText(
wxString(wxT("")) +
wxT("<center><h3>Audacity ") + AUDACITY_VERSION_STRING + wxT("</h3><h3>") +
wxT("<center><h3>Dark Audacity ") + AUDACITY_VERSION_STRING + wxT("</h3><h3>") +
_("How to get help") + wxT("</h3></center>") +
_("These are our support methods:") + wxT("<p><ul><li>") +
_(" [[file:quick_help.html|Quick Help]] - if not installed locally, <a href=\"http://manual.audacityteam.org/quick_help.html\">view online</a>") + wxT("</li><li>") +

View File

@ -815,7 +815,7 @@ END_EVENT_TABLE()
AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id,
const wxPoint & pos,
const wxSize & size)
: wxFrame(parent, id, wxT("Audacity"), pos, size),
: wxFrame(parent, id, wxT("Dark Audacity"), pos, size),
mRate((double) gPrefs->Read(wxT("/SamplingRate/DefaultProjectSampleRate"), AudioIO::GetOptimalSupportedSampleRate())),
mDefaultFormat((sampleFormat) gPrefs->
Read(wxT("/SamplingRate/DefaultProjectSampleFormat"), floatSample)),
@ -1082,7 +1082,7 @@ AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id,
int widths[] = {0, GetControlToolBar()->WidthForStatusBar(mStatusBar), -1, 150};
mStatusBar->SetStatusWidths(4, widths);
wxString msg = wxString::Format(_("Welcome to Audacity version %s"),
wxString msg = wxString::Format(_("Welcome to Dark Audacity version %s"),
AUDACITY_VERSION_STRING);
mStatusBar->SetStatusText(msg, mainStatusBarField);
GetControlToolBar()->UpdateStatusBar(this);
@ -1308,7 +1308,7 @@ void AudacityProject::SetProjectTitle()
wxString name = GetName();
if( name.IsEmpty() )
{
name = wxT("Audacity");
name = wxT("Dark Audacity");
}
if (mIsRecovered)

View File

@ -59,7 +59,7 @@ END_EVENT_TABLE()
IMPLEMENT_CLASS(SplashDialog, wxDialog)
SplashDialog::SplashDialog(wxWindow * parent)
: wxDialog(parent, -1, _("Welcome to Audacity!"),
: wxDialog(parent, -1, _("Welcome to Dark Audacity!"),
wxPoint( -1, 60 ), // default x position, y position 60 pixels from top of screen.
wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{

View File

@ -22,14 +22,14 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "The Audacity Team"
VALUE "FileDescription", "Audacity®, the Free, Cross-Platform Sound Editor"
VALUE "CompanyName", "Extended Audacity Team"
VALUE "FileDescription", "A customised Audacity® Cross-Platform Sound Editor"
VALUE "FileVersion", AUDACITY_FILE_VERSION
VALUE "InternalName", "Audacity"
VALUE "LegalCopyright", "Copyright © 2015. All rights reserved."
VALUE "InternalName", "DarkAudacity"
VALUE "LegalCopyright", "Copyright © 2016. All rights reserved."
VALUE "LegalTrademarks", "Audacity® is a registered trademark of Dominic Mazzoni."
VALUE "OriginalFilename", "Audacity.exe"
VALUE "ProductName", "Audacity®"
VALUE "OriginalFilename", "DarkAudacity.exe"
VALUE "ProductName", "DarkAudacity®"
VALUE "ProductVersion", AUDACITY_FILE_VERSION
END
END