kivy: update messages

This commit is contained in:
ThomasV 2016-02-26 10:48:43 +01:00
parent 4f04f96d29
commit 1ec4ccdf2e
2 changed files with 2 additions and 3 deletions

View File

@ -100,8 +100,7 @@ Builder.load_string('''
height: self.texture_size[1] height: self.texture_size[1]
text: text:
_("Creating a new wallet.")+" " +\ _("Creating a new wallet.")+" " +\
_("Do you want to create a wallet with a new seed")+\ _("Do you want to create a new seed, or to restore a wallet using an existing seed?")
_("or restore an existing one?")
Widget Widget
size_hint: 1, 1 size_hint: 1, 1
GridLayout: GridLayout:

View File

@ -188,7 +188,7 @@ class SendScreen(CScreen):
try: try:
uri = electrum.util.parse_URI(text, self.app.on_pr) uri = electrum.util.parse_URI(text, self.app.on_pr)
except: except:
self.app.show_info(_("Not a Bitcoin URI") + ':\n', text) self.app.show_info(_("Not a Bitcoin URI"))
return return
amount = uri.get('amount') amount = uri.get('amount')
self.screen.address = uri.get('address', '') self.screen.address = uri.get('address', '')