electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit c6587c7a094cb8856f1c2322073a8b273f637d5d
parent 029e7b1edca484c1d13282f00bddf2c79b64dfcf
Author: thomasv <thomasv@gitorious>
Date:   Thu, 24 May 2012 10:11:00 +0200

localizations

Diffstat:
Mlib/gui_qt.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)