Fix \n new line text break (2)

Fix \n new line text break
This commit is contained in:
rdymac 2013-06-17 23:18:42 +03:00
parent 8020fd9c33
commit 80e3cc8163
1 changed files with 1 additions and 3 deletions

View File

@ -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