tlocalizations - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit c6587c7a094cb8856f1c2322073a8b273f637d5d DIR parent 029e7b1edca484c1d13282f00bddf2c79b64dfcf HTML Author: thomasv <thomasv@gitorious> Date: Thu, 24 May 2012 10:11:00 +0200 localizations Diffstat: M lib/gui_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py t@@ -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)