|
@ -1369,10 +1369,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): |
|
|
self.message_e = SizedFreezableLineEdit(width=700) |
|
|
self.message_e = SizedFreezableLineEdit(width=700) |
|
|
grid.addWidget(self.message_e, 2, 1, 1, -1) |
|
|
grid.addWidget(self.message_e, 2, 1, 1, -1) |
|
|
|
|
|
|
|
|
msg = _('Amount to be sent.') + '\n\n' \ |
|
|
msg = (_('The amount to be received by the recipient.') + ' ' |
|
|
+ _('The amount will be displayed in red if you do not have enough funds in your wallet.') + ' ' \ |
|
|
+ _('Fees are paid by the sender.') + '\n\n' |
|
|
+ _('Note that if you have frozen some of your addresses, the available funds will be lower than your total balance.') + '\n\n' \ |
|
|
+ _('The amount will be displayed in red if you do not have enough funds in your wallet.') + ' ' |
|
|
+ _('Keyboard shortcut: type "!" to send all your coins.') |
|
|
+ _('Note that if you have frozen some of your addresses, the available funds will be lower than your total balance.') + '\n\n' |
|
|
|
|
|
+ _('Keyboard shortcut: type "!" to send all your coins.')) |
|
|
amount_label = HelpLabel(_('Amount'), msg) |
|
|
amount_label = HelpLabel(_('Amount'), msg) |
|
|
grid.addWidget(amount_label, 3, 0) |
|
|
grid.addWidget(amount_label, 3, 0) |
|
|
grid.addWidget(self.amount_e, 3, 1) |
|
|
grid.addWidget(self.amount_e, 3, 1) |
|
|