From 80e3cc8163c210c683f1d8fee87de943bb09aeed Mon Sep 17 00:00:00 2001 From: rdymac Date: Mon, 17 Jun 2013 23:18:42 +0300 Subject: [PATCH] Fix \n new line text break (2) Fix \n new line text break --- plugins/labels.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/labels.py b/plugins/labels.py index f8ceba90..20e4fa93 100644 --- a/plugins/labels.py +++ b/plugins/labels.py @@ -37,9 +37,7 @@ class Plugin(BasePlugin): def __init__(self, gui): self.target_host = 'labelectrum.herokuapp.com' - BasePlugin.__init__(self, gui, 'labels', _('Label Sync'),_('This plugin can sync your labels accross multiple Electrum installs by using a remote database to save your data. Labels, \ -transactions and addresses are all sent and stored encrypted on the remote server. This code might increase the load of your wallet with a few microseconds as it will sync labels on each startup.\n\n\ -To get started visit http://labelectrum.herokuapp.com/ to sign up for an account.')) + BasePlugin.__init__(self, gui, 'labels', _('Label Sync'), '%s\n\n%s%s%s' % (_("This plugin can sync your labels across multiple Electrum installs by using a remote database to save your data. Labels, transactions and addresses are all sent and stored encrypted on the remote server. This code might increase the load of your wallet with a few microseconds as it will sync labels on each startup."), _("To get started visit"), " http://labelectrum.herokuapp.com/", _(" to sign up for an account."))) self.wallet = gui.wallet self.gui = gui