diff --git a/ankiqt/ui/about.py b/ankiqt/ui/about.py index 1f1d06708..1824c306e 100644 --- a/ankiqt/ui/about.py +++ b/ankiqt/ui/about.py @@ -1,4 +1,5 @@ # Copyright: Damien Elmes +# -*- coding: utf-8 -*- # License: GNU GPL, version 3 or later; http://www.gnu.org/copyleft/gpl.html from PyQt4.QtGui import * @@ -10,12 +11,30 @@ def show(parent): abt = ankiqt.forms.about.Ui_About() abt.setupUi(dialog) abt.label.setText(_(""" -

Anki

- +

-Anki is a spaced repetition flashcard program designed to maximise your -memory potential.

It's free and licensed under the GPL.

-Version %s
+Anki is a friendly, intelligent spaced learning system. It's free and open +source.

+Version %(ver)s
Visit website -""") % appVersion) +

+Written by Damien Elmes, with patches, translation, testing and design from:

%(cont)s +

+If you have contributed and are not on this list, please get in touch. +

+A big thanks to all the people who have provided suggestions, bug reports and +donations.""") % { + 'cont': u""" + +Alex Fraser, Andreas Klauer, Bananeweizen, Bernhard Ibertsberger, Christian +Rusche, David Smith, Dave Druelinger, Emmanuel Jarri, Frank Harper, Ian Lewis, +Iroiro, Jin Eun-Deok, Jo Nakashima, Krause Chr, LaC, Laurent Steffan, Marco +Giancotti, Mark Wilbur, Meelis Vasser, Michael Penkov, Michal Čadil, Nathanael +Law, Nick Cook, Niklas Laxström, Pcsl88, Piotr Kubowicz, Richard Colley, +Samson Melamed, Susanna Björverud, Timm Preetz, Timo Paulssen and Xtru. + +""", + 'ver': appVersion}) + dialog.show() + dialog.adjustSize() dialog.exec_() diff --git a/designer/about.ui b/designer/about.ui index 870d56239..4d8d289fe 100644 --- a/designer/about.ui +++ b/designer/about.ui @@ -5,8 +5,8 @@ 0 0 - 224 - 310 + 410 + 447 diff --git a/icons.qrc b/icons.qrc index a159a61be..9bd396667 100644 --- a/icons.qrc +++ b/icons.qrc @@ -1,5 +1,6 @@ + icons/anki-logo-thin.png icons/anki-logo.png icons/download.png icons/preferences-plugin.png diff --git a/icons/anki-logo-thin.png b/icons/anki-logo-thin.png new file mode 100644 index 000000000..e0365dfde Binary files /dev/null and b/icons/anki-logo-thin.png differ