mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
tweak wording
This commit is contained in:
parent
1fe48b0c3a
commit
42a0e43a3d
1 changed files with 9 additions and 9 deletions
18
aqt/sync.py
18
aqt/sync.py
|
@ -129,20 +129,20 @@ enter your details below."""))
|
||||||
|
|
||||||
def _confirmFullSync(self):
|
def _confirmFullSync(self):
|
||||||
diag = askUserDialog(_("""\
|
diag = askUserDialog(_("""\
|
||||||
Because this is your first time synchronizing, or because unmergable \
|
Your decks here and on AnkiWeb differ in such a way that they can't \
|
||||||
changes have been made, your collection needs to be either uploaded or \
|
be merged together, so it's necessary to overwrite the decks on one \
|
||||||
downloaded in full.
|
side with the decks from the other.
|
||||||
|
|
||||||
Do you want to keep the local version, overwriting the AnkiWeb version? Or \
|
Do you want to upload the decks from here, or download the decks \
|
||||||
do you want to keep the AnkiWeb version, overwriting the version here?"""),
|
from AnkiWeb?"""),
|
||||||
[_("Keep Local"),
|
[_("Upload to AnkiWeb"),
|
||||||
_("Keep AnkiWeb"),
|
_("Download from AnkiWeb"),
|
||||||
_("Cancel")])
|
_("Cancel")])
|
||||||
diag.setDefault(2)
|
diag.setDefault(2)
|
||||||
ret = diag.run()
|
ret = diag.run()
|
||||||
if ret == _("Keep Local"):
|
if ret == _("Upload to AnkiWeb"):
|
||||||
self.thread.fullSyncChoice = "upload"
|
self.thread.fullSyncChoice = "upload"
|
||||||
elif ret == _("Keep AnkiWeb"):
|
elif ret == _("Download from AnkiWeb"):
|
||||||
self.thread.fullSyncChoice = "download"
|
self.thread.fullSyncChoice = "download"
|
||||||
else:
|
else:
|
||||||
self.thread.fullSyncChoice = "cancel"
|
self.thread.fullSyncChoice = "cancel"
|
||||||
|
|
Loading…
Reference in a new issue