commit a2fc90dbda53f4bd26256e008626e53a303fbbbd parent b0311885a55365944794a345b65225101b9c4c65 Author: ThomasV <thomasv@electrum.org> Date: Mon, 25 Jan 2016 12:44:30 +0100 kivy: fix missing i18n Diffstat:
M | gui/kivy/uix/ui_screens/receive.kv | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui/kivy/uix/ui_screens/receive.kv b/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