]> git.sur5r.net Git - minitube/blobdiff - src/AboutView.cpp
Added ability to copy the YouTube link to the clipboard
[minitube] / src / AboutView.cpp
index 3aab74b15e63402b936f93c412691807f21aa289..5ae351208f51c702ec85f5ee83e2d9ac5fb77f44 100644 (file)
@@ -21,17 +21,18 @@ 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("Icon designed by %1.").arg("Sebastian Kraft") + "</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("Compact mode contributed by %1.").arg("Stefan Brück") + "</p>"
+                   "<p>"
+                   + tr("Icon designed by %1.").arg("Sebastian Kraft")
+                   + "<br>" + tr("Compact mode contributed by %1.").arg("Stefan Brück")
+                   + "<br>" + tr("HTTP proxy support contributed by %1.").arg("Kiwamu Okabe")
+                   + "</p>"
 
                    "<p>" + tr("Translated by %1").arg("Nikita Lyalin (ru_RU), "
                                                       "Márcio Moraes (pt_BR), "
@@ -42,13 +43,22 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
                                                       "Dan Vrátil (cs_CZ), "
                                                       "Rafa (es_ES), "
                                                       "Yaron Shahrabani (he_IL), "
-                                                      "Oleksandr Korneta (uk)"
+                                                      "Oleksandr Korneta (uk), "
+                                                      "Inga Muste (lat), "
+                                                      "Srecko Belaic (hr_HR), "
+                                                      "Miguel Anxo Bouzada (es, gl), "
+                                                      "Guillaume Betous (fr_FR), "
+                                                      "Krisztián Horváth (hu_HU), "
+                                                      "Ali E. İmrek (tr_TR), "
+                                                      "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>")
                    .arg("http://www.gnu.org/licenses/gpl.html") + "</p>"
 
-                   "<p>&copy; 2009 " + Constants::ORG_NAME + "</p>";
+                   "<p>&copy; 2009-2010 " + Constants::ORG_NAME + "</p>";
     QLabel *infoLabel = new QLabel(info, this);
     infoLabel->setOpenExternalLinks(true);
     infoLabel->setWordWrap(true);
@@ -67,17 +77,3 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
     layout->addLayout(buttonLayout);
 
 }
-
-void AboutView::paintEvent(QPaintEvent * /*event*/) {
-
-    QPainter painter(this);
-
-#ifdef Q_WS_MAC
-    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
-
-}