thelp text for RBF button - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit be75b337aae370ef7b389d0bd93d8fc1561fe03b DIR parent f01f931e833e5eeff286b5cf62ed0803adf55246 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 23 May 2016 17:57:36 +0200 help text for RBF button Diffstat: M gui/qt/main_window.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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)