From 206279fcfb28e5559a9920cae7bffdde517e4baa Mon Sep 17 00:00:00 2001 From: rdymac Date: Sun, 16 Jun 2013 14:05:25 +0300 Subject: [PATCH] Fix \n new line text break --- plugins/virtualkeyboard.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/virtualkeyboard.py b/plugins/virtualkeyboard.py index f150e29f..ed7e16ad 100644 --- 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