diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index 2f482c07a..6a03d0e52 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -325,7 +325,7 @@ visit our [[http://forum.audacityteam.org/|forum]]."); wxT("
Audacity® software is copyright © 1999-2017 Audacity Team.
") +
+ wxT("
Audacity® software is copyright © 1999-2018 Audacity Team.
") +
wxT(" The name Audacity is a registered trademark of Dominic Mazzoni.
") +
#else
@@ -371,7 +371,15 @@ visit our [[http://forum.audacityteam.org/|forum]].");
#ifdef EXPERIMENTAL_DA
wxT("
DarkAudacity website: [[http://www.darkaudacity.com/|http://www.darkaudacity.com/]]") +
#else
- _("
Audacity® software is copyright © 1999-2017 Audacity Team.
") +
+ []{
+ // Will this post-translation substitution work in all locales?
+ // As of 2.2.2, yes for all of the up-to-date languages.
+ auto str =
+ _("
Audacity® software is copyright © 1999-2017 Audacity Team.
");
+ str.Replace( wxT("2017"), wxT("2018") );
+ return str;
+ }() +
+
_(" The name Audacity is a registered trademark of Dominic Mazzoni.
") +
#endif