minor grammar fix in qt/preferences

This commit is contained in:
SomberNight 2018-04-11 15:47:23 +02:00
parent f7d1d5a7c7
commit 75f0221617
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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)