tweak wording

This commit is contained in:
Damien Elmes 2011-12-04 18:15:11 +09:00
parent 1fe48b0c3a
commit 42a0e43a3d

View file

@ -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"