diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-07 13:08:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-07 13:08:58 +0000 |
| commit | 12e7eb5824624f38a7385db42ec3336147b039d5 (patch) | |
| tree | ffd777a0da95afeeee6a1fd29eab4dfe385a0f98 /src | |
| parent | 3881ae48d8f3b945f956a874156857e5e121852e (diff) | |
Add basic translator info.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dvdomatic.cc | 6 |
1 files changed, 6 insertions, 0 deletions
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); } |
