Browse Source

kivy: fix missing i18n

283
ThomasV 9 years ago
parent
commit
a2fc90dbda
  1. 4
      gui/kivy/uix/ui_screens/receive.kv

4
gui/kivy/uix/ui_screens/receive.kv

@ -60,8 +60,8 @@ ReceiveScreen:
pos_hint: {'center_y': .5}
BlueButton:
id: amount_label
default_text: 'Amount'
text: s.amount if s.amount else 'Amount'
default_text: _('Amount')
text: s.amount if s.amount else _('Amount')
on_release: app.amount_dialog(s, False)
CardSeparator:
opacity: message_selection.opacity

Loading…
Cancel
Save