diff --git a/src/about_imp.h b/src/about_imp.h index 8deb268cb..cfb7c2975 100644 --- a/src/about_imp.h +++ b/src/about_imp.h @@ -23,6 +23,7 @@ #define ABOUT_H #include "ui_about.h" +#include class about : public QDialog, private Ui::AboutDlg{ Q_OBJECT @@ -41,6 +42,7 @@ class about : public QDialog, private Ui::AboutDlg{ te_thanks->append("
  • I am gratefull to Peter Koeleman (peter@qbittorrent.org) and Johnny Mast (rave@qbittorrent.org) who helped me port qBittorrent to Windows.
  • "); te_thanks->append(QString::fromUtf8("
  • Thanks a lot to our graphist Mateusz Toboła (tobejodok@qbittorrent.org) for his great work.
  • ")); // Translation + te_translation->append(""); te_translation->append(tr("I would like to thank the following people who volunteered to translate qBittorrent:")+"
    "); te_translation->append(QString::fromUtf8( "- Brazilian: Nick Marinho (nickmarinho@gmail.com)
    \ @@ -68,7 +70,9 @@ class about : public QDialog, private Ui::AboutDlg{ - Turkish: Erdem Bingöl (erdem84@gmail.com)
    \ - Ukrainian: Andrey Shpachenko (masterfix@users.sourceforge.net)

    ")); te_translation->append(tr("Please contact me if you would like to translate qBittorrent into your own language.")); + te_translation->scrollToAnchor("top"); // License + te_license->append(""); te_license->append("
    GNU GENERAL PUBLIC LICENSE

    \
    Version 2, June 1991

    \ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
    \ @@ -403,6 +407,7 @@ class about : public QDialog, private Ui::AboutDlg{ consider it more useful to permit linking proprietary applications with the
    \ library. If this is what you want to do, use the GNU Library General
    \ Public License instead of this License.
    "); + te_license->scrollToAnchor("top"); show(); } };