mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
Merge branch 'master' of git://github.com/sanna/ankiqt
This commit is contained in:
commit
3036d3baf9
18 changed files with 6396 additions and 5934 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -10,21 +10,14 @@ def show(parent):
|
||||||
dialog = QDialog(parent)
|
dialog = QDialog(parent)
|
||||||
abt = ankiqt.forms.about.Ui_About()
|
abt = ankiqt.forms.about.Ui_About()
|
||||||
abt.setupUi(dialog)
|
abt.setupUi(dialog)
|
||||||
abt.label.setText(_("""
|
abouttext = "<center><img src=':/icons/anki-logo-thin.png'></center>"
|
||||||
<center><img src=":/icons/anki-logo-thin.png"></center>
|
abouttext += '<p>' + _("Anki is a friendly, intelligent spaced learning \
|
||||||
<p>
|
system. It's free and open source.")
|
||||||
Anki is a friendly, intelligent spaced learning system. It's free and open
|
abouttext += '<p>' + _("Version %s") % appVersion + '<br>'
|
||||||
source.<p>
|
abouttext += _("<a href='http://ichi2.net/anki/'>Visit website</a>") + \
|
||||||
Version %(ver)s<br>
|
"</span>"
|
||||||
<a href="http://ichi2.net/anki/">Visit website</a></span>
|
abouttext += '<p>' + _("Written by Damien Elmes, with patches, translation,\
|
||||||
<p>
|
testing and design from:<p>%(cont)s") % {'cont': u"""
|
||||||
Written by Damien Elmes, with patches, translation, testing and design from:<p>%(cont)s
|
|
||||||
<p>
|
|
||||||
If you have contributed and are not on this list, please get in touch.
|
|
||||||
<p>
|
|
||||||
A big thanks to all the people who have provided suggestions, bug reports and
|
|
||||||
donations.""") % {
|
|
||||||
'cont': u"""
|
|
||||||
|
|
||||||
Alex Fraser, Andreas Klauer, Andrew Wright, Bernhard Ibertsberger, Charlene
|
Alex Fraser, Andreas Klauer, Andrew Wright, Bernhard Ibertsberger, Charlene
|
||||||
Barina, Christian Rusche, David Smith, Dave Druelinger, Emilio Wuerges,
|
Barina, Christian Rusche, David Smith, Dave Druelinger, Emilio Wuerges,
|
||||||
|
|
@ -33,10 +26,13 @@ Jarvik7, Jo Nakashima, Christian Krause, LaC, Laurent Steffan, Marco
|
||||||
Giancotti, Mari Egami, Michael Jürges, Mark Wilbur, Meelis Vasser, Michael
|
Giancotti, Mari Egami, Michael Jürges, Mark Wilbur, Meelis Vasser, Michael
|
||||||
Penkov, Michael Keppler, Michal Čadil, Nathanael Law, Nick Cook, Niklas
|
Penkov, Michael Keppler, Michal Čadil, Nathanael Law, Nick Cook, Niklas
|
||||||
Laxström, Pcsl88, Piotr Kubowicz, Richard Colley, Samson Melamed, Susanna
|
Laxström, Pcsl88, Piotr Kubowicz, Richard Colley, Samson Melamed, Susanna
|
||||||
Björverud, Timm Preetz, Timo Paulssen, Victor Suba, and Xtru.
|
Björverud, Timm Preetz, Timo Paulssen, Victor Suba, and Xtru."""
|
||||||
|
}
|
||||||
""",
|
abouttext += '<p>' + _("If you have contributed and are not on this list, \
|
||||||
'ver': appVersion})
|
please get in touch.")
|
||||||
|
abouttext += '<p>' + _("A big thanks to all the people who have provided \
|
||||||
|
suggestions, bug reports and donations.")
|
||||||
|
abt.label.setText(abouttext)
|
||||||
dialog.show()
|
dialog.show()
|
||||||
dialog.adjustSize()
|
dialog.adjustSize()
|
||||||
dialog.exec_()
|
dialog.exec_()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue