From 952f0cf6bdac8cc3da0f0d4d4abb4363eb591ddb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 24 May 2013 10:54:33 +0900 Subject: [PATCH] mention agpl3 in about --- aqt/about.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aqt/about.py b/aqt/about.py index 89e780b8e..618388c2b 100644 --- a/aqt/about.py +++ b/aqt/about.py @@ -20,6 +20,8 @@ def show(parent): abouttext = "
" abouttext += '

' + _("Anki is a friendly, intelligent spaced learning \ system. It's free and open source.") + abouttext += "

"+_("Anki is licensed under the AGPL3 license. Please see " + "the license file in the source distribution for more information.") abouttext += '

' + _("Version %s") % appVersion + '
' abouttext += ("Qt %s PyQt %s
") % (QT_VERSION_STR, PYQT_VERSION_STR) abouttext += (_("Visit website") % aqt.appWebsite) + \