]> git.sur5r.net Git - minitube/blobdiff - src/AboutView.cpp
Merge branch 'master' of git://gitorious.org/minitube/minitube
[minitube] / src / AboutView.cpp
index 1ef93b7fbb2eadd1d4d5b89104aa07e3a16a519a..9744da58d3e10daf1c513111bce967bad0f2e16f 100644 (file)
@@ -31,9 +31,15 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
 
                    "<p>" + tr("Icon designed by %1.").arg("Sebastian Kraft") + "</p>"
 
+                   "<p>" + tr("Compact mode contributed by %1.").arg("Stefan Brück") + "</p>"
+
                    "<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)"
                                                       ) + "</p>"
 
                    "<p>" + tr("Released under the <a href='%1'>GNU General Public License</a>")
@@ -42,6 +48,7 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) {
                    "<p>&copy; 2009 " + Constants::ORG_NAME + "</p>";
     QLabel *infoLabel = new QLabel(info, this);
     infoLabel->setOpenExternalLinks(true);
+    infoLabel->setWordWrap(true);
     layout->addWidget(infoLabel);
 
     QLayout *buttonLayout = new QHBoxLayout();