Update to version 2.0.4 and add myself as maintainer.
Tested with some Japanese decks and plugins (both migrated from prev version 
and from scratch).
OK?

f.-

Index: Makefile
===================================================================
RCS file: /cvs/ports/education/anki/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile    30 Dec 2012 02:54:14 -0000      1.3
+++ Makefile    14 Jan 2013 21:00:32 -0000
@@ -2,11 +2,13 @@
 
 COMMENT        =       spaced learning system
 
-DISTNAME =     anki-2.0.3
+DISTNAME =     anki-2.0.4
 CATEGORIES =   education
 
 HOMEPAGE =     http://ankisrs.net/
 
+MAINTAINER =   Federico G. Schwindt <fg...@openbsd.org>
+
 # AGPL3
 PERMIT_PACKAGE_CDROM = Yes
 PERMIT_PACKAGE_FTP =   Yes
@@ -21,7 +23,7 @@ MODULES =     lang/python
 
 MODPY_VERSION =        2.7
 
-MODPY_ADJ_FILES = anki
+MODPY_ADJ_FILES = anki/anki
 
 RUN_DEPENDS =  audio/py-audio \
                devel/desktop-file-utils \
@@ -39,7 +41,7 @@ do-build:
 
 do-install:
        ${INSTALL_DATA_DIR} ${PREFIX}/bin
-       ${INSTALL_PROGRAM} ${WRKSRC}/anki ${PREFIX}/bin
+       ${INSTALL_PROGRAM} ${WRKSRC}/anki/anki ${PREFIX}/bin
        ${INSTALL_DATA_DIR} ${PREFIX}/man/man1
        ${INSTALL_DATA} ${WRKSRC}/anki.1 ${PREFIX}/man/man1
        ${INSTALL_DATA_DIR} ${PREFIX}/share/applications
@@ -50,10 +52,12 @@ do-install:
            ${PREFIX}/share/pixmaps
        ${INSTALL_DATA_DIR} \
            ${PREFIX}/lib/python${MODPY_VERSION}/site-packages
-       cd ${WRKSRC}/libanki && pax -rw anki \
+       cd ${WRKSRC} && pax -rw anki \
            ${PREFIX}/lib/python${MODPY_VERSION}/site-packages
+       cd ${WRKSRC} && pax -rw locale \
+           ${PREFIX}/lib/python${MODPY_VERSION}/site-packages/anki
        cd ${WRKSRC} && pax -rw aqt \
            ${PREFIX}/lib/python${MODPY_VERSION}/site-packages
-       rm ${PREFIX}/lib/python${MODPY_VERSION}/site-packages/{aqt,anki}/*.orig
+       rm ${PREFIX}/lib/python${MODPY_VERSION}/site-packages/anki/*.orig
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/education/anki/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo    30 Dec 2012 02:54:14 -0000      1.3
+++ distinfo    14 Jan 2013 21:00:32 -0000
@@ -1,2 +1,2 @@
-SHA256 (anki-2.0.3.tgz) = 9A7k7ynJEQHPmXjOe9TFE/E8p8d0l6P7ULgSit86UXg=
-SIZE (anki-2.0.3.tgz) = 2833114
+SHA256 (anki-2.0.4.tgz) = +qnJYANRX6ASXaSJvbij1gGv8XZ9kvoT/49BHD2FacU=
+SIZE (anki-2.0.4.tgz) = 2877891
Index: patches/patch-anki
===================================================================
RCS file: patches/patch-anki
diff -N patches/patch-anki
--- patches/patch-anki  30 Dec 2012 02:54:14 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,19 +0,0 @@
-$OpenBSD: patch-anki,v 1.1 2012/12/30 02:54:14 fgsch Exp $
---- anki.orig  Tue Oct 16 01:50:42 2012
-+++ anki       Tue Oct 16 01:50:51 2012
-@@ -1,15 +1,4 @@
- #!/usr/bin/env python
- 
--import os, sys
--# system-wide install
--sys.path.insert(0, "/usr/share/anki")
--sys.path.insert(0, "/usr/share/anki/libanki")
--# running from extracted folder
--base = os.path.dirname(os.path.realpath(__file__))
--sys.path.insert(0, base)
--sys.path.insert(0, os.path.join(base, "libanki"))
--# or git
--sys.path.insert(0, os.path.join(base, "..", "libanki"))
--# start
- import anki, aqt
- aqt.run()
Index: patches/patch-anki_anki
===================================================================
RCS file: patches/patch-anki_anki
diff -N patches/patch-anki_anki
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-anki_anki     14 Jan 2013 21:00:34 -0000
@@ -0,0 +1,20 @@
+$OpenBSD$
+--- anki/anki.orig     Sat Dec 22 00:12:33 2012
++++ anki/anki  Thu Jan 10 21:44:12 2013
+@@ -1,15 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/local/bin/python2.7
+ 
+-import os, sys
+-# system-wide install
+-sys.path.insert(0, "/usr/share/anki")
+-sys.path.insert(0, "/usr/share/anki/libanki")
+-# running from extracted folder
+-base = os.path.dirname(os.path.realpath(__file__))
+-sys.path.insert(0, base)
+-sys.path.insert(0, os.path.join(base, "libanki"))
+-# or git
+-sys.path.insert(0, os.path.join(base, "..", "libanki"))
+-# start
+ import  aqt
+ aqt.run()
Index: patches/patch-aqt_share_py
===================================================================
RCS file: patches/patch-aqt_share_py
diff -N patches/patch-aqt_share_py
--- patches/patch-aqt_share_py  30 Dec 2012 02:54:14 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-$OpenBSD: patch-aqt_share_py,v 1.1 2012/12/30 02:54:14 fgsch Exp $
---- aqt/share.py.orig  Tue Oct 16 01:39:40 2012
-+++ aqt/share.py       Tue Oct 16 01:39:44 2012
-@@ -1,6 +1,6 @@
- # to be moved into libanki
- 
--    def _copyToTmpDeck(self, name="cram.anki", tags="", ids=[]):
-+def _copyToTmpDeck(self, name="cram.anki", tags="", ids=[]):
-         # fixme: use namedtmp
-         ndir = tempfile.mkdtemp(prefix="anki")
-         path = os.path.join(ndir, name)
-@@ -15,7 +15,7 @@
-         e.exportInto(path)
-         return (e, path)
- 
--    def onShare(self, tags):
-+def onShare(self, tags):
-         pwd = os.getcwd()
-         # open tmp deck
-         (e, path) = self._copyToTmpDeck(name="shared.anki", tags=tags)
Index: patches/patch-libanki_anki_sync_py
===================================================================
RCS file: patches/patch-libanki_anki_sync_py
diff -N patches/patch-libanki_anki_sync_py
--- patches/patch-libanki_anki_sync_py  30 Dec 2012 02:54:14 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,21 +0,0 @@
-$OpenBSD: patch-libanki_anki_sync_py,v 1.1 2012/12/30 02:54:14 fgsch Exp $
---- libanki/anki/sync.py.orig  Thu Dec 20 19:57:40 2012
-+++ libanki/anki/sync.py       Thu Dec 20 19:58:50 2012
-@@ -42,7 +42,7 @@ def httpCon():
- def _setupProxy():
-     global HTTP_PROXY
-     # set in env?
--    p = httplib2.ProxyInfo.from_environment()
-+    p = httplib2.proxy_info_from_environment()
-     if not p:
-         # platform-specific fetch
-         url = None
-@@ -59,7 +59,7 @@ def _setupProxy():
-             elif 'http' in r:
-                 url = r['http']
-         if url:
--            p = httplib2.ProxyInfo.from_url(url, _proxyMethod(url))
-+            p = httplib2.proxy_info_from_url(url, _proxyMethod(url))
-     HTTP_PROXY = p
- 
- def _proxyMethod(url):
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/education/anki/pkg/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- pkg/PLIST   30 Dec 2012 02:54:14 -0000      1.2
+++ pkg/PLIST   14 Jan 2013 21:00:36 -0000
@@ -3,6 +3,7 @@ bin/anki
 lib/python${MODPY_VERSION}/site-packages/anki/
 lib/python${MODPY_VERSION}/site-packages/anki/__init__.py
 lib/python${MODPY_VERSION}/site-packages/anki/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/anki/anki
 lib/python${MODPY_VERSION}/site-packages/anki/ankiweb.certs
 lib/python${MODPY_VERSION}/site-packages/anki/cards.py
 lib/python${MODPY_VERSION}/site-packages/anki/cards.pyc
@@ -50,148 +51,173 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/anki/locale/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/af/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/af/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/af/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/af/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ar/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ar/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ar/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ar/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/az/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/az/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/az/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/az/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/bg/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/bg/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/bg/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/bg/LC_MESSAGES/anki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/bn/
+lib/python${MODPY_VERSION}/site-packages/anki/locale/bn/LC_MESSAGES/
+lib/python${MODPY_VERSION}/site-packages/anki/locale/bn/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ca/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ca/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ca/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ca/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/cs/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/cs/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/cs/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/cs/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/da/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/da/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/da/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/da/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/de/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/de/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/de/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/de/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/el/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/el/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/el/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/el/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/en_GB/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/en_GB/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/en_GB/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/en_GB/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/eo/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/eo/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/eo/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/eo/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/es/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/es/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/es/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/es/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/et/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/et/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/et/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/et/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/eu/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/eu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/eu/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/eu/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fa/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fa/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/fa/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/fa/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fi/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fi/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/fi/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/fi/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fr/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/fr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/fr/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/fr/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/gu/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/gu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/gu/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/gu/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/he/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/he/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/he/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/he/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/hr/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/hr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/hr/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/hr/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/hu/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/hu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/hu/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/hu/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/it/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/it/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/it/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/it/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ja/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ja/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ja/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ja/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ko/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ko/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ko/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ko/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/lt/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/lt/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/lt/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/lt/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/lv/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/lv/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/lv/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/lv/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/mn/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/mn/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/mn/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/mn/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/mr/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/mr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/mr/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/mr/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ms/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ms/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ms/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ms/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/nb/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/nb/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/nb/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/nb/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/nl/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/nl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/nl/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/nl/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/no/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/no/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/no/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/no/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/oc/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/oc/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/oc/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/oc/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pl/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/pl/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/pl/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pt/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pt/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/pt/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/pt/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pt_BR/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/pt_BR/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/pt_BR/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/pt_BR/LC_MESSAGES/anki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_ar.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_cs.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_da.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_de.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_es.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_fa.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_fr.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_gl.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_he.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_hu.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_ja.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_ko.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_lt.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_pl.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_pt.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_ru.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_sk.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_sl.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_sv.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_uk.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_zh_CN.qm
+lib/python${MODPY_VERSION}/site-packages/anki/locale/qt_zh_TW.qm
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ro/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ro/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ro/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ro/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ru/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/ru/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/ru/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/ru/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/sl/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/sl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/sl/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/sl/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/sv/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/sv/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/sv/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/sv/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/th/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/th/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/th/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/th/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/tlh/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/tlh/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/tlh/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/tlh/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/tr/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/tr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/tr/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/tr/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/uk/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/uk/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/uk/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/uk/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/vi/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/vi/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/vi/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/vi/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_CN/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_CN/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_CN/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_CN/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_HK/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_HK/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_HK/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_HK/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_TW/
 lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_TW/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_TW/LC_MESSAGES/libanki.mo
+lib/python${MODPY_VERSION}/site-packages/anki/locale/zh_TW/LC_MESSAGES/anki.mo
 lib/python${MODPY_VERSION}/site-packages/anki/media.py
 lib/python${MODPY_VERSION}/site-packages/anki/media.pyc
 lib/python${MODPY_VERSION}/site-packages/anki/models.py
@@ -316,8 +342,6 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/icons_rc.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/importing.py
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/importing.pyc
-lib/python${MODPY_VERSION}/site-packages/aqt/forms/limits.py
-lib/python${MODPY_VERSION}/site-packages/aqt/forms/limits.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/main.py
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/main.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/modelopts.py
@@ -348,185 +372,6 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/aqt/forms/template.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/importing.py
 lib/python${MODPY_VERSION}/site-packages/aqt/importing.pyc
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/af/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/af/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/af/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ar/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ar/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ar/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/az/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/az/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/az/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bg/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bg/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bg/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bn/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bn/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bn/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bs/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bs/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/bs/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ca/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ca/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ca/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/cs/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/cs/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/cs/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/da/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/da/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/da/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/de/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/de/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/de/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/el/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/el/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/el/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_AU/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_AU/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_AU/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_GB/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_GB/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/en_GB/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eo/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eo/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eo/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/es/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/es/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/es/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/et/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/et/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/et/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eu/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/eu/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fa/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fa/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fa/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fi/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fi/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fi/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fr/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/fr/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/gu/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/gu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/gu/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/he/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/he/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/he/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hr/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hr/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hu/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hu/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/hu/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/it/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/it/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/it/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ja/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ja/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ja/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ko/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ko/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ko/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lt/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lt/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lt/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lv/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lv/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/lv/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mn/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mn/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mn/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mr/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/mr/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ms/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ms/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ms/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nb/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nb/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nb/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nds/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nds/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nds/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nl/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/nl/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/no/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/no/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/no/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/oc/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/oc/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/oc/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pl/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pl/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt_BR/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt_BR/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/pt_BR/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_ar.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_cs.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_da.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_de.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_es.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_fa.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_fr.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_gl.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_he.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_hu.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_ja.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_ko.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_lt.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_pl.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_pt.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_ru.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_sk.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_sl.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_sv.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_uk.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_zh_CN.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/qt_zh_TW.qm
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ro/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ro/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ro/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ru/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ru/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/ru/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sl/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sl/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sl/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sv/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sv/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/sv/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/th/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/th/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/th/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tlh/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tlh/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tlh/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tr/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tr/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/tr/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/uk/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/uk/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/uk/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/vi/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/vi/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/vi/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_CN/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_CN/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_CN/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_HK/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_HK/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_HK/LC_MESSAGES/ankiqt.mo
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_TW/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_TW/LC_MESSAGES/
-lib/python${MODPY_VERSION}/site-packages/aqt/locale/zh_TW/LC_MESSAGES/ankiqt.mo
 lib/python${MODPY_VERSION}/site-packages/aqt/main.py
 lib/python${MODPY_VERSION}/site-packages/aqt/main.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/modelchooser.py
@@ -545,8 +390,6 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/aqt/qt.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/reviewer.py
 lib/python${MODPY_VERSION}/site-packages/aqt/reviewer.pyc
-lib/python${MODPY_VERSION}/site-packages/aqt/share.py
-lib/python${MODPY_VERSION}/site-packages/aqt/share.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/sound.py
 lib/python${MODPY_VERSION}/site-packages/aqt/sound.pyc
 lib/python${MODPY_VERSION}/site-packages/aqt/stats.py

Reply via email to