this should fix crashes in the nick/bufer view delegates when receiving an invalid...
[quassel.git] / src / qtui / aboutdlg.cpp
index d7932c1..e178324 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -44,7 +44,7 @@ AboutDlg::AboutDlg(QWidget *parent) : QDialog(parent) {
 QString AboutDlg::about() const {
   QString res;
   res = tr("<b>A modern, distributed IRC Client</b><br><br>"
-           "&copy;2005-2008 by the Quassel Project<br>"
+           "&copy;2005-2009 by the Quassel Project<br>"
            "<a href=\"http://quassel-irc.org\">http://quassel-irc.org</a><br>"
            "<a href=\"irc://irc.freenode.net/quassel\">#quassel</a> on <a href=\"http://www.freenode.net\">Freenode</a><br><br>"
            "Quassel IRC is dual-licensed under <a href=\"http://www.gnu.org/licenses/gpl-2.0.txt\">GPLv2</a> and "
@@ -74,13 +74,16 @@ QString AboutDlg::authors() const {
 
 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:") + "<br>"
+  res = tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:")
+      + QString::fromUtf8("<br>"
            "<dl>"
            "<dt><b>Daniel \"al\" Albers</b></dt><dd>German translation, various fixes</dd>"
            "<dt><b>Terje \"tan\" Andersen</b></dt><dd>Norwegian translation, documentation</dd>"
+           "<dt><b>Tomas \"scarabeus\" Chvatal</b></dt><dd>Czech translation</dd>"
            "<dt><b>Kevin \"KRF\" Funk</b></dt><dd>German translation</dd>"
            "<dt><b>Marco \"kaffeedoktor\" Genise</b></dt><dd>Ideas, hacking, motivation</dd>"
            "<dt><b>Sebastian \"seezer\" Goth</b></dt><dd>Various improvements and features</dd>"
+           "<dt><b>H. İbrahim \"igungor\" Güngör</b></dt><dd>Turkish translation</dd>"
            "<dt><b>Edward \"Aides\" Toroshchin</b></dt><dd>Russian translation</dd>"
            "<dt><b>John \"nox-Hand\" Hand</b></dt><dd>Gorgeous application and tray icons</dd>"
            "<dt><b>Jonas \"Dante\" Heese</b></dt><dd>Project founder, various improvements</dd>"
@@ -95,7 +98,7 @@ QString AboutDlg::contributors() const {
            "<dt><b>Adam \"adamt\" Tulinius</b></dt><dd>Early beta tester and bughunter, Danish translation</dd>"
            "<dt><b>Pavel \"int\" Volkovitskiy</b></dt><dd>Early beta tester and bughunter</dd>"
            "</dl><br>"
-           "...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!";
+           "...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!");
 
   return res;
 }