From c6587c7a094cb8856f1c2322073a8b273f637d5d Mon Sep 17 00:00:00 2001 From: thomasv Date: Thu, 24 May 2012 10:11:00 +0200 Subject: [PATCH] localizations --- lib/gui_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 488e66e9..5f4ad2e1 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -1217,7 +1217,7 @@ class ElectrumGui(): def restore_or_create(self): msg = _("Wallet file not found.")+"\n"+_("Do you want to create a new wallet, or to restore an existing one?") - r = QMessageBox.question(None, 'Message', msg, 'create', 'restore', 'cancel', 0, 2) + r = QMessageBox.question(None, _('Message'), msg, _('Create'), _('Restore'), _('Cancel'), 0, 2) if r==2: return False is_recovery = (r==1)