From f4e9df8457a00169b5d698dfc163eb5161d0a707 Mon Sep 17 00:00:00 2001 From: David Allison <62114487+david-allison-1@users.noreply.github.com> Date: Sun, 4 Oct 2020 17:58:22 +0100 Subject: [PATCH] Fix "Sign Up" link location String states "Sign Up", but currently points to the "Sign In" screen: https://ankiweb.net/account/login https://github.com/ankitects/anki/blob/aff28a38e56356582179c3330c3de00e02ae2ec4/rslib/ftl/sync.ftl#L38-L42 --- CONTRIBUTORS | 1 + qt/aqt/sync.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d5bcb9ecf..8688354e3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -62,6 +62,7 @@ Aleksa Sarai Jakub Kaczmarzyk Akshara Balachandra lukkea +David Allison ******************** diff --git a/qt/aqt/sync.py b/qt/aqt/sync.py index bdb5e5755..255ae8120 100644 --- a/qt/aqt/sync.py +++ b/qt/aqt/sync.py @@ -292,7 +292,7 @@ def get_id_and_pass_from_user( vbox = QVBoxLayout() info_label = QLabel( without_unicode_isolation( - tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/login") + tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/register") ) ) info_label.setOpenExternalLinks(True)