flo-electrum/electrum/gui/kivy/uix/ui_screens/about.kv
2019-01-30 13:38:16 +00:00

62 lines
2.0 KiB
Plaintext

#:import VERSION electrum.version.ELECTRUM_VERSION
Popup:
title: _("About FLO-Electrum")
BoxLayout:
orientation: 'vertical'
spacing: '10dp'
padding: '10dp'
GridLayout:
cols: 2
spacing: '10dp'
TopLabel:
text: _('Version')
size_hint_x: 0.4
TopLabel:
text: VERSION
size_hint_x: 0.6
TopLabel:
text: _('Licence')
size_hint_x: 0.4
TopLabel:
text: "MIT Licence"
size_hint_x: 0.6
TopLabel:
text: _('Homepage')
size_hint_x: 0.4
TopLabel:
markup: True
text: '[color=6666ff][ref=x]Ranchi Mall Github[/ref][/color]'
on_ref_press:
import webbrowser
webbrowser.open("https://github.com/ranchimall/flo-electrum")
size_hint_x: 0.6
TopLabel:
text: _('FLO-Electrum Developers')
size_hint_x: 0.4
TopLabel:
text: '\n'.join(['Vivek Teega', 'Bitspill', 'Rohit Tripathy', 'Akhil Bharti'])
size_hint_x: 0.6
TopLabel:
text: _('BTC-Electrum Developers')
size_hint_x: 0.4
TopLabel:
text: '\n'.join(['Thomas Voegtlin', 'Neil Booth', 'Akshay Arora'])
size_hint_x: 0.6
TopLabel:
text: _('Developed by Ranchi Mall FLO Blockchain Contract')
padding: '0dp', '20dp'
Widget:
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()