From: Daniel Albers Date: Fri, 21 Feb 2014 11:58:16 +0000 (+0100) Subject: move © years out of translatable text in aboutDlg X-Git-Tag: 0.10-rc1~17 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=5b4b42dd1bce9bd4dfae9561f8707947c778ba12 move © years out of translatable text in aboutDlg --- diff --git a/po/quassel.pot b/po/quassel.pot index d6a152b7..7e2b4838 100644 --- a/po/quassel.pot +++ b/po/quassel.pot @@ -72,7 +72,7 @@ msgstr "" #: ../src/qtui/aboutdlg.cpp:49 msgctxt "AboutDlg|" msgid "" -"A modern, distributed IRC Client

©2005-2014 by the " +"A modern, distributed IRC Client

©%1 by the " "Quassel Project
http://quassel-irc." "org
#quassel on Freenode

Quassel IRC is dual-" diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 11fbb19e..8f100234 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -47,7 +47,7 @@ QString AboutDlg::about() const { QString res; res = tr("A modern, distributed IRC Client

" - "©2005-2014 by the Quassel Project
" + "©%1 by the Quassel Project
" "http://quassel-irc.org
" "#quassel on Freenode

" "Quassel IRC is dual-licensed under GPLv2 and " @@ -55,7 +55,7 @@ QString AboutDlg::about() const "Most icons are © by the Oxygen Team and used under the " "LGPL.

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