commit 75f02216179a567b5ffdb53ee4bfa541be000fc0
parent f7d1d5a7c75b2b16b7d2c2c79f82f892bcdb5ca5
Author: SomberNight <somber.night@protonmail.com>
Date: Wed, 11 Apr 2018 15:47:23 +0200
minor grammar fix in qt/preferences
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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)