]> git.sur5r.net Git - minitube/blobdiff - src/AboutView.cpp
Merge commit 'refs/merge-requests/4' of git://gitorious.org/minitube/minitube
[minitube] / src / AboutView.cpp
index 5ae351208f51c702ec85f5ee83e2d9ac5fb77f44..961c867594b0e4db3e3e0294f93b754e35765c75 100644 (file)
@@ -1,10 +1,11 @@
 #include "AboutView.h"
-#include "Constants.h"
+#include "constants.h"
 
 AboutView::AboutView(QWidget *parent) : QWidget(parent) {
 
     QBoxLayout *aboutlayout = new QHBoxLayout(this);
     aboutlayout->setAlignment(Qt::AlignCenter);
+    aboutlayout->setMargin(30);
     aboutlayout->setSpacing(30);
 
     QLabel *logo = new QLabel(this);
@@ -16,15 +17,15 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
     layout->setSpacing(30);
     aboutlayout->addLayout(layout);
 
-    QString info = "<h1>" + QString(Constants::APP_NAME) + "</h1>"
+    QString info = "<html><style>a { color: palette(text); }</style><body><h1>" + QString(Constants::APP_NAME) + "</h1>"
                    "<p>" + tr("There's life outside the browser!") + "</p>"
                    "<p>" + tr("Version %1").arg(Constants::VERSION) + "</p>"
                    + QString("<p><a href=\"%1/\">%1</a></p>").arg(Constants::WEBSITE) +
-
+#if !defined(APP_MAC) && !defined(Q_WS_WIN)
                    "<p>" +  tr("%1 is Free Software but its development takes precious time.").arg(Constants::APP_NAME) + "<br/>"
                    + tr("Please <a href='%1'>donate</a> to support the continued development of %2.")
                    .arg(QString(Constants::WEBSITE).append("#donate"), Constants::APP_NAME) + "</p>"
-
+#endif
                    "<p>" + tr("Report bugs and send in your ideas to %1")
                    .arg(QString("<a href=\"mailto:%1\">%1</a>").arg(Constants::EMAIL)) + "</p>"
 
@@ -36,29 +37,36 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
 
                    "<p>" + tr("Translated by %1").arg("Nikita Lyalin (ru_RU), "
                                                       "Márcio Moraes (pt_BR), "
-                                                      "Sergio Tocalini Joerg (es_AR), "
+                                                      // "Sergio Tocalini Joerg (es_AR), "
                                                       "Stefan Brück (de_DE), "
                                                       "Grzegorz Gibas (pl_PL), "
                                                       "Kiwamu Okabe (ja_JP), "
                                                       "Dan Vrátil (cs_CZ), "
-                                                      "Rafa (es_ES), "
+                                                      // "Rafa (es_ES), "
                                                       "Yaron Shahrabani (he_IL), "
                                                       "Oleksandr Korneta (uk), "
                                                       "Inga Muste (lat), "
-                                                      "Srecko Belaic (hr_HR), "
+                                                      "Srecko Belaic & Zvonimir Đeri (hr_HR), "
                                                       "Miguel Anxo Bouzada (es, gl), "
-                                                      "Guillaume Betous (fr_FR), "
+                                                      "Guillaume Betous & Mathieu Dimanche (fr_FR), "
                                                       "Krisztián Horváth (hu_HU), "
                                                       "Ali E. İmrek (tr_TR), "
-                                                      "Jan W. Skjoldal (nb_NO), "
+                                                      "Jan W. Skjoldal & Halvor Lyche Strandvoll (nb_NO), "
                                                       "Ovidiu Niţan (ro_RO), "
-                                                      "Giorgos Skettos (el_GR)"
+                                                      "Giorgos Skettos (el_GR), "
+                                                      "Brian Keetman (nl_NL), "
+                                                      "Sderawi (ar), "
+                                                      "Daniel Rodrigues (pt_PT), "
+                                                      "Jesse Jaara (fi_FI), "
+                                                      "Tsvyatko Makazchiev (bg_BG), "
+                                                      "Changtai Liang (zh_CN)"
                                                       ) + "</p>"
-
+#if !defined(APP_MAC) && !defined(Q_WS_WIN)
                    "<p>" + tr("Released under the <a href='%1'>GNU General Public License</a>")
                    .arg("http://www.gnu.org/licenses/gpl.html") + "</p>"
-
-                   "<p>&copy; 2009-2010 " + Constants::ORG_NAME + "</p>";
+#endif
+                   "<p>&copy; 2009-2010 " + Constants::ORG_NAME + "</p>"
+                   "</body></html>";;
     QLabel *infoLabel = new QLabel(info, this);
     infoLabel->setOpenExternalLinks(true);
     infoLabel->setWordWrap(true);