electrum

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

commit 2b751f8026bb547ac9d4d8b98efc45f4731ff546
parent 39274ea10e5e04bd0f420a92093d44af9fc50ee3
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 12 Jun 2014 09:32:05 +0200

improve fee help message

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 @@ -2256,8 +2256,8 @@ class ElectrumWindow(QMainWindow): fee_e = BTCAmountEdit(self.get_decimal_point) fee_e.setAmount(self.wallet.fee) grid.addWidget(fee_e, 2, 1) - msg = _('Fee per kilobyte of transaction.') + ' ' \ - + _('Recommended value') + ': ' + self.format_amount(20000) + msg = _('Fee per kilobyte of transaction.') + '\n' \ + + _('Recommended value') + ': ' + self.format_amount(10000) + ' ' + self.base_unit() grid.addWidget(HelpButton(msg), 2, 2) if not self.config.is_modifiable('fee_per_kb'): for w in [fee_e, fee_label]: w.setEnabled(False)