From: Carl Hetherington Date: Thu, 7 Mar 2013 13:08:58 +0000 (+0000) Subject: Add basic translator info. X-Git-Tag: v2.0.48~1337^2~580 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=12e7eb5824624f38a7385db42ec3336147b039d5;p=dcpomatic.git Add basic translator info. --- diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc index f5d9bdf18..8cbd85270 100644 --- a/src/tools/dvdomatic.cc +++ b/src/tools/dvdomatic.cc @@ -407,12 +407,18 @@ private: } info.SetDescription (_("Free, open-source DCP generation from almost anything.")); info.SetCopyright (_("(C) 2012-2013 Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen")); + wxArrayString authors; authors.Add (wxT ("Carl Hetherington")); authors.Add (wxT ("Terrence Meiczinger")); authors.Add (wxT ("Paul Davis")); authors.Add (wxT ("Ole Laursen")); info.SetDevelopers (authors); + + wxArrayString translators; + translators.Add (wxT ("Olivier (freedcp.net")); + info.SetTranslators (translators); + info.SetWebSite (wxT ("http://carlh.net/software/dvdomatic")); wxAboutBox (info); }