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"