Add basic translator info.
authorCarl Hetherington <cth@carlh.net>
Thu, 7 Mar 2013 13:08:58 +0000 (13:08 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 7 Mar 2013 13:08:58 +0000 (13:08 +0000)
src/tools/dvdomatic.cc

index f5d9bdf181a3e82b3a40dac108c75bc129cca020..8cbd8527035cfa8c9b095ddb37346bc9c979ea8b 100644 (file)
@@ -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);
        }