Updated nl_NL translation from Rob van Nieuwkerk.
[dcpomatic.git] / src / wx / about_dialog.cc
index 0c9081f020cf09822fdbac93208d1ed58de2be82..28a5acf7968888d4dd905c52332566a0a79950a1 100644 (file)
@@ -81,7 +81,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
 
        t = new StaticText (
                this,
-               _("(C) 2012-2019 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"),
+               _("(C) 2012-2020 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"),
                wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
                );
 
@@ -145,6 +145,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        patrons.Add ("Luproduction");
        patrons.Add ("Lightbender Post");
        patrons.Add ("Drop-out Cinema");
+       patrons.Add ("Pilotkino LLC");
        add_section (_("Patrons"), patrons);
 
        wxArrayString subscribers;
@@ -213,7 +214,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        tested_by.Add (wxT ("Wolfgang Woehl"));
        add_section (_("Tested by"), tested_by);
 
-       sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
+       sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16));
 
        overall_sizer->Add (sizer);
 
@@ -250,7 +251,7 @@ AboutDialog::add_section (wxString name, wxArrayString credits)
 
        int c = 0;
        for (size_t i = 0; i < credits.Count(); ++i) {
-               add_label_to_sizer (sizers[c], panel, credits[i], false);
+               add_label_to_vertical_sizer (sizers[c], panel, credits[i], false);
                ++c;
                if (c == N) {
                        c = 0;