diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp index b1a2556e7..85f332f42 100644 --- a/src/slic3r/GUI/AboutDialog.cpp +++ b/src/slic3r/GUI/AboutDialog.cpp @@ -89,21 +89,28 @@ AboutDialog::AboutDialog() int size[] = {fs,fs,fs,fs,fs,fs,fs}; m_html->SetFonts(font.GetFaceName(), font.GetFaceName(), size); m_html->SetBorders(2); + const wxString copyright_str = _(L("Copyright")); + // TRN "Slic3r _is licensed under the_ License" + const wxString is_lecensed_str = _(L("is licensed under the")); + const wxString license_str = _(L("GNU Affero General Public License, version 3")); + const wxString contributors_str = _(L("Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others.")); const auto text = wxString::Format( "" "" "" - "Copyright © 2016-2019 Prusa Research.
" - "Copyright © 2011-2018 Alessandro Ranellucci.
" - "Slic3r is licensed under the " - "GNU Affero General Public License, version 3." + "%s © 2016-2019 Prusa Research.
" + "%s © 2011-2018 Alessandro Ranellucci.
" + "Slic3r %s " + "%s." "

" - "Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and numerous others. " - "Manual by Gary Hodgson. Inspired by the RepRap community.
" - "Slic3r logo designed by Corey Daniels, Silk Icon Set designed by Mark James. " + "%s" "
" "" - "", bgr_clr_str, text_clr_str, text_clr_str); + "", bgr_clr_str, text_clr_str, text_clr_str, + copyright_str, copyright_str, + is_lecensed_str, + license_str, + contributors_str); m_html->SetPage(text); vsizer->Add(m_html, 1, wxEXPAND | wxBOTTOM, 10); m_html->Bind(wxEVT_HTML_LINK_CLICKED, &AboutDialog::onLinkClicked, this); @@ -113,9 +120,6 @@ AboutDialog::AboutDialog() this->SetEscapeId(wxID_CLOSE); this->Bind(wxEVT_BUTTON, &AboutDialog::onCloseDialog, this, wxID_CLOSE); vsizer->Add(buttons, 0, wxEXPAND | wxRIGHT | wxBOTTOM, 3); - -// this->Bind(wxEVT_LEFT_DOWN, &AboutDialog::onCloseDialog, this); -// logo->Bind(wxEVT_LEFT_DOWN, &AboutDialog::onCloseDialog, this); SetSizer(main_sizer); main_sizer->SetSizeHints(this);