electrum

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

commit be75b337aae370ef7b389d0bd93d8fc1561fe03b
parent f01f931e833e5eeff286b5cf62ed0803adf55246
Author: ThomasV <thomasv@electrum.org>
Date:   Mon, 23 May 2016 17:57:36 +0200

help text for RBF button

Diffstat:
Mgui/qt/main_window.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -1040,7 +1040,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): # we go back to auto-calculate mode and put a fee back. self.fee_e.editingFinished.connect(self.update_fee) - self.rbf_checkbox = QCheckBox('RBF') + self.rbf_checkbox = QCheckBox(_('Replaceable')) + msg = [_('If you check this box, your transaction will be marked as non-final,'), + _('and you will have the possiblity, while it is unconfirmed, to replace it with a transaction that pays a higher fee.'), + _('Note that some merchants do not accept non-final transactions until they are confirmed.')] + self.rbf_checkbox.setToolTip('<p>' + ' '.join(msg) + '</p>') self.rbf_checkbox.setVisible(self.config.get('use_rbf', False)) grid.addWidget(self.fee_e_label, 5, 0)