]> git.sur5r.net Git - minitube/blobdiff - src/AboutView.cpp
Added ability to copy the YouTube link to the clipboard
[minitube] / src / AboutView.cpp
index 2d727d2c699fd0130f3fa8050c72151312705f50..5ae351208f51c702ec85f5ee83e2d9ac5fb77f44 100644 (file)
@@ -21,14 +21,13 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
                    "<p>" + tr("Version %1").arg(Constants::VERSION) + "</p>"
                    + QString("<p><a href=\"%1/\">%1</a></p>").arg(Constants::WEBSITE) +
 
-                   "<p>" + tr("This is a \"Technology Preview\" release, do not expect it to be perfect.") + "<br/>"
-                   + tr("Report bugs and send in your ideas to %1")
-                   .arg(QString("<a href=\"mailto:%1\">%1</a>").arg(Constants::EMAIL)) + "</p>"
-
                    "<p>" +  tr("%1 is Free Software but its development takes precious time.").arg(Constants::APP_NAME) + "<br/>"
-                   + tr("Please <a href='%1'>donate via PayPal</a> to support the continued development of %2.")
+                   + tr("Please <a href='%1'>donate</a> to support the continued development of %2.")
                    .arg(QString(Constants::WEBSITE).append("#donate"), Constants::APP_NAME) + "</p>"
 
+                   "<p>" + tr("Report bugs and send in your ideas to %1")
+                   .arg(QString("<a href=\"mailto:%1\">%1</a>").arg(Constants::EMAIL)) + "</p>"
+
                    "<p>"
                    + tr("Icon designed by %1.").arg("Sebastian Kraft")
                    + "<br>" + tr("Compact mode contributed by %1.").arg("Stefan Brück")
@@ -51,7 +50,9 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
                                                       "Guillaume Betous (fr_FR), "
                                                       "Krisztián Horváth (hu_HU), "
                                                       "Ali E. İmrek (tr_TR), "
-                                                      "Jan W. Skjoldal (nb_NO)"
+                                                      "Jan W. Skjoldal (nb_NO), "
+                                                      "Ovidiu Niţan (ro_RO), "
+                                                      "Giorgos Skettos (el_GR)"
                                                       ) + "</p>"
 
                    "<p>" + tr("Released under the <a href='%1'>GNU General Public License</a>")
@@ -76,14 +77,3 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
     layout->addLayout(buttonLayout);
 
 }
-
-void AboutView::paintEvent(QPaintEvent * /*event*/) {
-#ifdef Q_WS_MAC
-    QPainter painter(this);
-    QLinearGradient linearGrad(0, 0, 0, height());
-    QPalette palette;
-    linearGrad.setColorAt(0, palette.color(QPalette::Light));
-    linearGrad.setColorAt(1, palette.color(QPalette::Midlight));
-    painter.fillRect(0, 0, width(), height(), QBrush(linearGrad));
-#endif
-}