tabout.kv - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
tabout.kv (1704B)
---
1 #:import VERSION electrum.version.ELECTRUM_VERSION
2
3 Popup:
4 title: _("About Electrum")
5 BoxLayout:
6 orientation: 'vertical'
7 spacing: '10dp'
8 padding: '10dp'
9 GridLayout:
10 cols: 2
11 spacing: '10dp'
12 TopLabel:
13 text: _('Version')
14 size_hint_x: 0.4
15 TopLabel:
16 text: VERSION
17 size_hint_x: 0.6
18 TopLabel:
19 text: _('Licence')
20 size_hint_x: 0.4
21 TopLabel:
22 text: "MIT Licence"
23 size_hint_x: 0.6
24 TopLabel:
25 text: _('Homepage')
26 size_hint_x: 0.4
27 TopLabel:
28 markup: True
29 text: '[color=6666ff][ref=x]https://electrum.org[/ref][/color]'
30 on_ref_press:
31 import webbrowser
32 webbrowser.open("https://electrum.org")
33 size_hint_x: 0.6
34 TopLabel:
35 text: _('Developers')
36 size_hint_x: 0.4
37 TopLabel:
38 text: '\n'.join(['Thomas Voegtlin', 'SomberNight'])
39 size_hint_x: 0.6
40 TopLabel:
41 text: _('Distributed by Electrum Technologies GmbH')
42 padding: '0dp', '20dp'
43 Widget:
44 size_hint: None, 0.5
45 BoxLayout:
46 size_hint: 1, None
47 height: '48dp'
48 Widget:
49 size_hint: 0.5, None
50 height: '48dp'
51 Button:
52 size_hint: 0.5, None
53 height: '48dp'
54 text: _('Close')
55 on_release: root.dismiss()