# Copyright: Damien Elmes # License: GNU GPL, version 3 or later; http://www.gnu.org/copyleft/gpl.html from PyQt4.QtGui import * import ankiqt.forms from ankiqt import appVersion def show(parent): dialog = QDialog(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
Visit website """) % appVersion) dialog.exec_()