X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=24dd19ca0b58ed414093e4db1627e14044cfb66a;hb=3c3ee5f15038e8fea3e634a6b08188db7ac8f856;hp=582fe9329f659b01327726fe0b36c43a33daf858;hpb=d32f2fcafe3d3925cd64e332e0d02261a134af21;p=quassel.git diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 582fe932..24dd19ca 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -35,10 +35,10 @@ AboutDlg::AboutDlg(QWidget *parent) ui.setupUi(this); ui.quasselLogo->setPixmap(QIcon(":/icons/quassel-64.png").pixmap(64)); // don't let the icon theme affect our logo here - ui.versionLabel->setText(QString(tr("Version: %1
Protocol version: %2
Built: %3")) + ui.versionLabel->setText(QString(tr("Version: %1
Version date: %2
Protocol version: %3")) .arg(Quassel::buildInfo().fancyVersionString) - .arg(Quassel::buildInfo().protocolVersion) - .arg(Quassel::buildInfo().buildDate)); + .arg(Quassel::buildInfo().commitDate) + .arg(Quassel::buildInfo().protocolVersion)); ui.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); @@ -74,7 +74,7 @@ QString AboutDlg::authors() const res.append("
" + person.prettyName() + "
"); if (!person.emailAddress().isEmpty()) res.append("" + person.emailAddress() + "
"); - res.append(person.task() + "
"); + res.append("" + person.task() + "
"); } res.append(""); return res; @@ -86,9 +86,9 @@ QString AboutDlg::contributors() const QString res; res = tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:") + "
"; for (const auto &person : _aboutData->credits()) { - res.append("
" + person.prettyName() + "
" + person.task() + "
"); + res.append("
" + person.prettyName() + "
" + person.task() + "
"); } - res.append("

" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); + res.append("" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); return res; } @@ -100,13 +100,13 @@ QString AboutDlg::thanksTo() const res = tr("Special thanks goes to:
" "
" "
 John \"nox\" Hand
" - "
for the original Quassel icon - The All-Seeing Eye" + "
for the original Quassel icon - The All-Seeing Eye
" "
 The Oxygen Team
" - "
for creating all the artwork you see throughout Quassel
" + "
for creating all the artwork you see throughout Quassel
" "
 Qt Software formerly known as Trolltech
" - "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" + "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" "
" - "
for keeping Qt alive, and for sponsoring development of Quassel Mobile with N810s
" + "
for sponsoring development of Quassel Mobile with N810s
" ); return res;