electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 800ea1e3005e391ae152e51c0b5d7bc8a78157f9
parent 35ae2a0064b5548b5c337280a2763f3534ca569f
Author: SomberNight <somber.night@protonmail.com>
Date:   Tue, 20 Mar 2018 00:54:29 +0100

typos in gui/qt/main_window.py

Diffstat:
Mgui/qt/main_window.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -2629,7 +2629,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): msg = '\n'.join([ _('Time based: fee rate is based on average confirmation time estimates'), - _('Mempool based: fee rate is targetting a depth in the memory pool') + _('Mempool based: fee rate is targeting a depth in the memory pool') ] ) fee_type_label = HelpLabel(_('Fee estimation') + ':', msg) @@ -2656,7 +2656,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): use_rbf_cb.setChecked(self.config.get('use_rbf', True)) use_rbf_cb.setToolTip( _('If you check this box, your transactions will be marked as non-final,') + '\n' + \ - _('and you will have the possiblity, while they are unconfirmed, to replace them with transactions that pay higher fees.') + '\n' + \ + _('and you will have the possibility, while they are unconfirmed, to replace them with transactions that pay higher fees.') + '\n' + \ _('Note that some merchants do not accept non-final transactions until they are confirmed.')) def on_use_rbf(x): self.config.set_key('use_rbf', x == Qt.Checked)