URI: 
       tminor grammar fix in qt/preferences - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 75f02216179a567b5ffdb53ee4bfa541be000fc0
   DIR parent f7d1d5a7c75b2b16b7d2c2c79f82f892bcdb5ca5
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Wed, 11 Apr 2018 15:47:23 +0200
       
       minor grammar fix in qt/preferences
       
       Diffstat:
         M gui/qt/main_window.py               |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -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)