Supporter.
[dcpomatic.git] / src / wx / about_dialog.cc
index c13e8b4f322c3bf47d0268d706305aba3e805113..28ecf36c06c7d605ef082939df25f79ff6fc9251 100644 (file)
@@ -99,6 +99,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        translated_by.Add (wxT ("Manuel AC"));
        translated_by.Add (wxT ("Max Aeschlimann"));
        translated_by.Add (wxT ("Grégoire Ausina"));
+       translated_by.Add (wxT ("Tomáš Begeni"));
        translated_by.Add (wxT ("Cherif Ben Brahim"));
        translated_by.Add (wxT ("Massimiliano Broggi"));
        translated_by.Add (wxT ("Davide Dall'AraCiao"));
@@ -142,6 +143,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Adam Colt"));
        supported_by.Add (wxT ("Adam Cousins"));
        supported_by.Add (wxT ("Matthias Damm"));
+       supported_by.Add (wxT ("Yohann Dedy"));
        supported_by.Add (wxT ("Alexey Derevyanko"));
        supported_by.Add (wxT ("Thomas Dickens"));
        supported_by.Add (wxT ("Unwana Essien"));
@@ -161,7 +163,9 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Patrick Haderer"));
        supported_by.Add (wxT ("Jeff Hemingway"));
        supported_by.Add (wxT ("Antonio Ruiz Hernandez"));
+       supported_by.Add (wxT ("Karl Jacob"));
        supported_by.Add (wxT ("Jonathan Jensen"));
+       supported_by.Add (wxT ("Thierry Journet"));
        supported_by.Add (wxT ("Zbigniew Kamiński"));
        supported_by.Add (wxT ("Chris Kay"));
        supported_by.Add (wxT ("Lars Kelto"));
@@ -180,6 +184,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Paweł Lipiński"));
        supported_by.Add (wxT ("Adrian Manolescu"));
        supported_by.Add (wxT ("Mattias Mattsson"));
+       supported_by.Add (wxT ("George Mazarakis"));
        supported_by.Add (wxT ("Kjarten Michaelsen"));
        supported_by.Add (wxT ("Aldo Midali"));
        supported_by.Add (wxT ("Sylvain Mielle"));
@@ -191,8 +196,10 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Jerome Cohen Olivar"));
        supported_by.Add (wxT ("Kevin Orman"));
        supported_by.Add (wxT ("Rui Pereira"));
+       supported_by.Add (wxT ("Aditya Pratama"));
        supported_by.Add (wxT ("Ceridwen Productions"));
        supported_by.Add (wxT ("Ivan Pullman"));
+       supported_by.Add (wxT ("Desiderio Garcia Ramirez"));
        supported_by.Add (wxT ("Mark Rolfe"));
        supported_by.Add (wxT ("David Rozenthal"));
        supported_by.Add (wxT ("Lasse Salling"));
@@ -205,6 +212,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        supported_by.Add (wxT ("Bruce Taylor"));
        supported_by.Add (wxT ("Lawrence Towers"));
        supported_by.Add (wxT ("Richard Turner"));
+       supported_by.Add (wxT ("Stéphane Wagneur"));
        supported_by.Add (wxT ("Andrew Walls"));
        supported_by.Add (wxT ("Raoul Walzer"));
        supported_by.Add (wxT ("Wolfram Weber"));
@@ -296,7 +304,10 @@ AboutDialog::add_section (wxString name, wxArrayString credits)
        static bool first = true;
        int const N = 4;
 
-       wxPanel* panel = new wxPanel (_notebook, wxID_ANY);
+       wxScrolledWindow* panel = new wxScrolledWindow (_notebook);
+       panel->SetMaxSize (wxSize (-1, 380));
+       panel->EnableScrolling (false, true);
+       panel->SetScrollRate (0, 32);
        wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
 
        vector<wxSizer*> sizers;