kivy: fix missing i18n

This commit is contained in:
ThomasV 2016-01-25 12:44:30 +01:00
parent b0311885a5
commit a2fc90dbda
1 changed files with 2 additions and 2 deletions

View File

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