From 2ab4667a73af93ad54e432f1141d14b6feb59d30 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 18 Apr 2012 04:01:33 +0900 Subject: [PATCH] translatable ankiweb signup page --- aqt/sync.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/aqt/sync.py b/aqt/sync.py index dbee09bef..0e1e1834e 100755 --- a/aqt/sync.py +++ b/aqt/sync.py @@ -128,13 +128,12 @@ AnkiWeb is too busy at the moment. Please try again in a few minutes.""") d = QDialog(self.mw) d.setWindowTitle("Anki") vbox = QVBoxLayout() - # FIXME: not translated for now, as we'll need to switch from beta to - # live all at once - l = QLabel(("""\ + l = QLabel(_("""\

Account Required

A free account is required to keep your collection synchronized. Please \ -sign up for an account, then \ -enter your details below.""")) +sign up for an account, then \ +enter your details below.""") % + "http://beta.ankiweb.net/account/login") l.setOpenExternalLinks(True) l.setWordWrap(True) vbox.addWidget(l)