mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Merge pull request #853 from abdnh/strip-isolation-chars
Strip isolation characters from app link
This commit is contained in:
commit
a26d78c269
1 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,7 @@ import platform
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import aqt.forms
|
import aqt.forms
|
||||||
|
from anki.lang import without_unicode_isolation
|
||||||
from anki.utils import versionWithBuild
|
from anki.utils import versionWithBuild
|
||||||
from aqt.addons import AddonManager, AddonMeta
|
from aqt.addons import AddonManager, AddonMeta
|
||||||
from aqt.qt import *
|
from aqt.qt import *
|
||||||
|
@ -100,7 +101,10 @@ def show(mw):
|
||||||
QT_VERSION_STR,
|
QT_VERSION_STR,
|
||||||
PYQT_VERSION_STR,
|
PYQT_VERSION_STR,
|
||||||
)
|
)
|
||||||
abouttext += tr(TR.ABOUT_VISIT_WEBSITE, val=aqt.appWebsite) + "</span>"
|
abouttext += (
|
||||||
|
without_unicode_isolation(tr(TR.ABOUT_VISIT_WEBSITE, val=aqt.appWebsite))
|
||||||
|
+ "</span>"
|
||||||
|
)
|
||||||
|
|
||||||
# automatically sorted; add new lines at the end
|
# automatically sorted; add new lines at the end
|
||||||
allusers = sorted(
|
allusers = sorted(
|
||||||
|
|
Loading…
Reference in a new issue