From 75f02216179a567b5ffdb53ee4bfa541be000fc0 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 11 Apr 2018 15:47:23 +0200 Subject: [PATCH] minor grammar fix in qt/preferences --- gui/qt/main_window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 928c07dde..e12551814 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2726,9 +2726,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): id_widgets.append((SSL_id_label, SSL_id_e)) units = ['BTC', 'mBTC', 'bits'] - msg = _('Base unit of your wallet.')\ - + '\n1BTC=1000mBTC.\n' \ - + _(' These settings affects the fields in the Send tab')+' ' + msg = (_('Base unit of your wallet.') + + '\n1 BTC = 1000 mBTC. 1 mBTC = 1000 bits.\n' + + _('This setting affects the Send tab, and all balance related fields.')) unit_label = HelpLabel(_('Base unit') + ':', msg) unit_combo = QComboBox() unit_combo.addItems(units)