X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Faboutdlg.cpp;h=6b21b0f57bc092635e09513415ac21e65af1a2e8;hb=a65f42197839da536975b3e2858eedcef420035f;hp=14684888aec153b1691db122b2540ef81fa8a087;hpb=fa56ee7fc1b94ea27da6b27c919d6df1c0e0490d;p=quassel.git diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 14684888..6b21b0f5 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,7 +44,8 @@ AboutDlg::AboutDlg(QWidget *parent) versionDate = QString("%1").arg(tr("Unknown date")); } else { - versionDate = tryFormatUnixEpoch(Quassel::buildInfo().commitDate); + versionDate = tryFormatUnixEpoch(Quassel::buildInfo().commitDate, + Qt::DateFormat::DefaultLocaleShortDate); } ui.versionLabel->setText(QString(tr("Version: %1
" "Version date: %2
" @@ -74,7 +75,7 @@ QString AboutDlg::about() const "Oxygen icon theme © Nuno Pinheiro and others, licensed under the " "LGPLv3.

" "Please use https://bugs.quassel-irc.org to report bugs." - ).arg("2005-2018") + ).arg("2005-2019") }; return res;