From b3e47d836b89073f3872cff5d2961a411b749bfb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 30 Jul 2010 18:37:55 +0900 Subject: [PATCH] overwrite->upload --- ankiqt/ui/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 0858c45c7..f3aa0c738 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -2218,11 +2218,11 @@ You are about to upload %s to AnkiOnline. This will overwrite the online version if one exists. Are you sure?""" % deckName), - [_("Overwrite"), + [_("Upload"), _("Cancel")]) diag.setDefault(1) ret = diag.run() - if ret == _("Overwrite"): + if ret == _("Upload"): self.syncThread.clobberChoice = "overwrite" else: self.syncThread.clobberChoice = "cancel"