From: Flavio Tordini Date: Sat, 27 Jun 2009 15:03:37 +0000 (+0200) Subject: Added Stefan in the credits X-Git-Tag: 0.4~26 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0cc40a9800c0e18692396fdab9d72c7d86f1d553;p=minitube Added Stefan in the credits --- diff --git a/src/AboutView.cpp b/src/AboutView.cpp index 1ef93b7..92f687e 100644 --- a/src/AboutView.cpp +++ b/src/AboutView.cpp @@ -33,7 +33,8 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) { "

" + 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)" ) + "

" "

" + tr("Released under the GNU General Public License") @@ -42,6 +43,7 @@ AboutView::AboutView(QWidget *parent) : QWidget(parent) { "

© 2009 " + Constants::ORG_NAME + "

"; QLabel *infoLabel = new QLabel(info, this); infoLabel->setOpenExternalLinks(true); + infoLabel->setWordWrap(true); layout->addWidget(infoLabel); QLayout *buttonLayout = new QHBoxLayout();