electrum-bitcoinprivate/gui/kivy/uix/ui_screens/about.kv

56 lines
1.7 KiB
Plaintext
Raw Normal View History

2016-01-19 01:32:11 -08:00
#:import VERSION electrum.version.ELECTRUM_VERSION
2015-12-18 01:53:50 -08:00
Popup:
2016-01-19 01:32:11 -08:00
title: _("About Electrum")
2015-12-18 01:53:50 -08:00
BoxLayout:
orientation: 'vertical'
2016-01-19 01:32:11 -08:00
spacing: '10dp'
padding: '10dp'
2016-01-18 06:42:05 -08:00
GridLayout:
cols: 2
spacing: '10dp'
2016-01-19 01:32:11 -08:00
TopLabel:
text: _('Version')
size_hint_x: 0.4
2016-01-19 01:32:11 -08:00
TopLabel:
text: VERSION
size_hint_x: 0.6
2016-01-19 01:32:11 -08:00
TopLabel:
text: _('Licence')
size_hint_x: 0.4
2016-01-19 01:32:11 -08:00
TopLabel:
2016-02-23 02:36:42 -08:00
text: "MIT Licence"
size_hint_x: 0.6
2016-01-19 01:32:11 -08:00
TopLabel:
text: _('Homepage')
size_hint_x: 0.4
2016-01-19 01:32:11 -08:00
TopLabel:
markup: True
text: '[color=6666ff][ref=x]https://electrum.org[/ref][/color]'
on_ref_press:
import webbrowser
webbrowser.open("https://electrum.org")
size_hint_x: 0.6
2016-01-19 01:32:11 -08:00
TopLabel:
text: _('Developers')
size_hint_x: 0.4
TopLabel:
2016-01-18 07:06:12 -08:00
text: '\n'.join(['Thomas Voegtlin', 'Neil Booth', 'Akshay Arora'])
size_hint_x: 0.6
2016-01-19 01:32:11 -08:00
TopLabel:
text: _('Distributed by Electrum Technologies GmbH')
padding: '0dp', '20dp'
2016-01-18 06:42:05 -08:00
Widget:
2016-01-19 01:32:11 -08:00
size_hint: None, 0.5
BoxLayout:
size_hint: 1, None
height: '48dp'
Widget:
size_hint: 0.5, None
height: '48dp'
Button:
size_hint: 0.5, None
height: '48dp'
text: _('Close')
on_release: root.dismiss()