electrum

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

commit d0e2f0a5db4404202538c5799700bb895dad778a
parent 743d2721db9dce9c35c8a93b80a8e87e198a47a1
Author: ThomasV <thomasv@gitorious>
Date:   Fri,  7 Aug 2015 19:44:50 +0200

tooltips

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

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -2597,7 +2597,7 @@ class ElectrumWindow(QMainWindow): gui_widgets.append((nz_label, nz)) msg = _('Fee per kilobyte of transaction.') + '\n' \ - + _('If you enable dynamic fees, your client will use a value recommended by the server, and this parameter will be used as upper bound.') + + _('If you enable dynamic fees, and this parameter will be used as upper bound.') fee_label = HelpLabel(_('Transaction fee per kb') + ':', msg) fee_e = BTCkBEdit(self.get_decimal_point) fee_e.setAmount(self.config.get('fee_per_kb', bitcoin.RECOMMENDED_FEE)) @@ -2612,6 +2612,7 @@ class ElectrumWindow(QMainWindow): dynfee_cb = QCheckBox(_('Dynamic fees')) dynfee_cb.setChecked(self.config.get('dynamic_fees', False)) + dynfee_cb.setToolTip(_("Use a fee per kB value recommended by the server.")) dynfee_sl = QSlider(Qt.Horizontal, self) dynfee_sl.setValue(self.config.get('fee_factor', 50)) dynfee_sl.setToolTip("Fee Multiplier. Min = 50%, Max = 150%") @@ -2740,7 +2741,6 @@ class ElectrumWindow(QMainWindow): qr_combo.currentIndexChanged.connect(on_video_device) gui_widgets.append((qr_label, qr_combo)) - usechange_help = HelpButton(_('Using change addresses makes it more difficult for other people to track your transactions.')) usechange_cb = QCheckBox(_('Use change addresses')) usechange_cb.setChecked(self.wallet.use_change) if not self.config.is_modifiable('use_change'): usechange_cb.setEnabled(False) @@ -2750,12 +2750,13 @@ class ElectrumWindow(QMainWindow): self.wallet.use_change = usechange_result self.wallet.storage.put('use_change', self.wallet.use_change) usechange_cb.stateChanged.connect(on_usechange) + usechange_cb.setToolTip(_('Using change addresses makes it more difficult for other people to track your transactions.')) tx_widgets.append((usechange_cb, None)) - showtx_cb = QCheckBox(_('Show transaction before broadcast')) + showtx_cb = QCheckBox(_('View transaction before signing')) showtx_cb.setChecked(self.show_before_broadcast()) showtx_cb.stateChanged.connect(lambda x: self.set_show_before_broadcast(showtx_cb.isChecked())) - showtx_help = HelpButton(_('Display the details of your transactions before broadcasting it.')) + showtx_cb.setToolTip(_('Display the details of your transactions before signing it.')) tx_widgets.append((showtx_cb, None)) can_edit_fees_cb = QCheckBox(_('Set transaction fees manually')) @@ -2764,7 +2765,7 @@ class ElectrumWindow(QMainWindow): self.config.set_key('can_edit_fees', x == Qt.Checked) self.update_fee_edit() can_edit_fees_cb.stateChanged.connect(on_editfees) - can_edit_fees_help = HelpButton(_('This option lets you edit fees in the send tab.')) + can_edit_fees_cb.setToolTip(_('This option lets you edit fees in the send tab.')) tx_widgets.append((can_edit_fees_cb, None)) tabs_info = [