mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
fix signup link
This commit is contained in:
parent
ef7f61ab39
commit
dee7d45d8b
1 changed files with 4 additions and 1 deletions
|
@ -8,6 +8,7 @@ import os
|
|||
from typing import Callable, Tuple
|
||||
|
||||
import aqt
|
||||
from anki.lang import without_unicode_isolation
|
||||
from anki.rsbackend import (
|
||||
TR,
|
||||
FullSyncProgress,
|
||||
|
@ -289,7 +290,9 @@ def get_id_and_pass_from_user(
|
|||
diag.setWindowModality(Qt.WindowModal)
|
||||
vbox = QVBoxLayout()
|
||||
info_label = QLabel(
|
||||
tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/login")
|
||||
without_unicode_isolation(
|
||||
tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/login")
|
||||
)
|
||||
)
|
||||
info_label.setOpenExternalLinks(True)
|
||||
info_label.setWordWrap(True)
|
||||
|
|
Loading…
Reference in a new issue