tMerge pull request #238 from rdymac/patch-11 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 5278515afbd8393b8881e6b2ca83cf78ac1f3880
DIR parent 293cb1aceb6b72a520182149cb501225d6c38140
HTML 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:
M plugins/virtualkeyboard.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
DIR diff --git a/plugins/virtualkeyboard.py b/plugins/virtualkeyboard.py
t@@ -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