tlabels plugin: shorter description for kivy gui - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 135eafd966d18f93d15abc54280a6c91a4159ebe DIR parent 62711ad5119f7e91eeb72da70af34539b0bd66b9 HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 11 Feb 2016 10:16:27 +0100 labels plugin: shorter description for kivy gui Diffstat: M gui/kivy/uix/dialogs/checkbox_dial… | 4 ++-- M plugins/labels/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) --- DIR diff --git a/gui/kivy/uix/dialogs/checkbox_dialog.py b/gui/kivy/uix/dialogs/checkbox_dialog.py t@@ -11,8 +11,6 @@ Builder.load_string(''' pos_hint: {'top':0.9} BoxLayout: orientation: 'vertical' - Widget: - size_hint: 1, 0.1 Label: id: description text: '' t@@ -26,6 +24,8 @@ Builder.load_string(''' text: _('Enable') CheckBox: id:cb + Widget: + size_hint: 1, 0.1 BoxLayout: orientation: 'horizontal' size_hint: 1, 0.2 DIR diff --git a/plugins/labels/__init__.py b/plugins/labels/__init__.py t@@ -1,9 +1,9 @@ from electrum.i18n import _ fullname = _('LabelSync') -description = '\n'.join([ - _("Synchronize your labels across multiple Electrum installs by using a remote database to save your data. Labels, transactions ids and addresses are encrypted before they are sent to the remote server."), - _("The label sync's server software is open-source as well and can be found on github.com/maran/electrum-sync-server") +description = ' '.join([ + _("Save your wallet labels on a remote server, and synchronize them across multiple devices where you use Electrum."), + _("Labels, transactions IDs and addresses are encrypted before they are sent to the remote server.") ]) available_for = ['qt', 'kivy']