You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
#:import VERSION electrum.version.ELECTRUM_VERSION
|
|
|
|
<TopLabel@Label>
|
|
valign: 'top'
|
|
font_size: '6pt'
|
|
text_size: self.size
|
|
|
|
Popup:
|
|
title: _("About Electrum")
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
spacing: '10dp'
|
|
padding: '10dp'
|
|
GridLayout:
|
|
cols: 2
|
|
TopLabel:
|
|
text: _('Version')
|
|
TopLabel:
|
|
text: VERSION
|
|
TopLabel:
|
|
text: _('Licence')
|
|
TopLabel:
|
|
text: "GNU GPL v3"
|
|
TopLabel:
|
|
text: _('Homepage')
|
|
TopLabel:
|
|
markup: True
|
|
text: '[color=6666ff][ref=x]https://electrum.org[/ref][/color]'
|
|
on_ref_press:
|
|
import webbrowser
|
|
webbrowser.open("https://electrum.org")
|
|
TopLabel:
|
|
text: _('Developers')
|
|
Label:
|
|
text: '\n'.join(['Thomas Voegtlin', 'Neil Booth', 'Akshay Arora'])
|
|
valign: 'top'
|
|
font_size: '6pt'
|
|
size_hint_y: None
|
|
text_size: self.width, None
|
|
height: self.texture_size[1]
|
|
TopLabel:
|
|
text: _('Distributed by Electrum Technologies GmbH')
|
|
padding: '0dp', '20dp'
|
|
Widget:
|
|
size_hint: None, 0.5
|
|
|