1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Add "In Memoriam" section to About, for Gale Andrews

This commit is contained in:
Paul Licameli
2017-08-31 12:54:49 -04:00
parent 272d3026e2
commit 8793dc5c4c
2 changed files with 8 additions and 1 deletions

View File

@@ -104,8 +104,10 @@ const wxString VerCheckHtml(){
void AboutDialog::CreateCreditsList()
{
// Deceased team members
AddCredit(wxString(wxT("[[https://wiki.audacityteam.org/wiki/User:Galeandrews|Gale Andrews]], ")) + _("quality assurance"), roleDeceased);
// The Audacity Team: developers and support
AddCredit(wxString(wxT("Gale Andrews, ")) + _("quality assurance"), roleTeamMember);
AddCredit(wxString(wxT("Arturo \"Buanzo\" Busleiman, ")) + _("system administration"), roleTeamMember);
AddCredit(wxString(wxT("James Crook, ")) + _("developer"), roleTeamMember);
AddCredit(wxString(wxT("Roger Dannenberg, ")) + _("co-founder and developer"), roleTeamMember);
@@ -395,6 +397,10 @@ visit our [[http://forum.audacityteam.org/|forum]].");
wxT("James Crook, art, coding &amp; design<br>") +
#endif
/* i18n-hint: The Latin phrase, "In memory of" a deceased person, often untranslated in European languages */
wxT("<p><b>") + wxString::Format(_("In Memoriam")) + wxT("</b><br>") +
GetCreditsByRole(roleDeceased) +
wxT("<p><b>") + wxString::Format(_("Audacity Team Members")) + wxT("</b><br>") +
GetCreditsByRole(roleTeamMember) +