electrum

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

commit 5278515afbd8393b8881e6b2ca83cf78ac1f3880
parent 293cb1aceb6b72a520182149cb501225d6c38140
Author: Maran H <maran.hidskes@gmail.com>
Date:   Mon, 17 Jun 2013 11:11:21 -0700

Merge pull request #238 from rdymac/patch-11

Fix \n new line text break
Diffstat:
Mplugins/virtualkeyboard.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/plugins/virtualkeyboard.py b/plugins/virtualkeyboard.py @@ -6,8 +6,7 @@ class Plugin(BasePlugin): def __init__(self, gui): - BasePlugin.__init__(self, gui, 'virtualkeyboard', 'Virtual Keyboard', - _("Add an optional, mouse keyboard to the password dialog.\nWarning: do not use this if it makes you pick a weaker password.")) + BasePlugin.__init__(self, gui, 'virtualkeyboard', 'Virtual Keyboard', '%s\n%s' % (_("Add an optional, mouse keyboard to the password dialog."), _("Warning: do not use this if it makes you pick a weaker password."))) self.vkb = None self.vkb_index = 0