mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 16:31:29 +00:00
labels plugin: shorter description for kivy gui
This commit is contained in:
parent
62711ad511
commit
135eafd966
2 changed files with 5 additions and 5 deletions
|
@ -11,8 +11,6 @@ Builder.load_string('''
|
||||||
pos_hint: {'top':0.9}
|
pos_hint: {'top':0.9}
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
Widget:
|
|
||||||
size_hint: 1, 0.1
|
|
||||||
Label:
|
Label:
|
||||||
id: description
|
id: description
|
||||||
text: ''
|
text: ''
|
||||||
|
@ -26,6 +24,8 @@ Builder.load_string('''
|
||||||
text: _('Enable')
|
text: _('Enable')
|
||||||
CheckBox:
|
CheckBox:
|
||||||
id:cb
|
id:cb
|
||||||
|
Widget:
|
||||||
|
size_hint: 1, 0.1
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
size_hint: 1, 0.2
|
size_hint: 1, 0.2
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
from electrum.i18n import _
|
from electrum.i18n import _
|
||||||
|
|
||||||
fullname = _('LabelSync')
|
fullname = _('LabelSync')
|
||||||
description = '\n'.join([
|
description = ' '.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."),
|
_("Save your wallet labels on a remote server, and synchronize them across multiple devices where you use Electrum."),
|
||||||
_("The label sync's server software is open-source as well and can be found on github.com/maran/electrum-sync-server")
|
_("Labels, transactions IDs and addresses are encrypted before they are sent to the remote server.")
|
||||||
])
|
])
|
||||||
available_for = ['qt', 'kivy']
|
available_for = ['qt', 'kivy']
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue