@ -672,6 +672,9 @@ class ElectrumWindow(QMainWindow):
defcurrent_item_changed(self,a):
run_hook('current_item_changed',a)
self.pay_from=[]
self.tabs.emit(SIGNAL('currentChanged(int)'),1)
defupdate_history_tab(self):
@ -754,21 +757,33 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(self.message_e,2,1,1,3)
grid.addWidget(HelpButton(_('Description of the transaction (not mandatory).')+'\n\n'+_('The description is not sent to the recipient of the funds. It is stored in your wallet file, and displayed in the \'History\' tab.')),2,4)
+_('The amount will be displayed in red if you do not have enough funds in your wallet. 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.')),3,3)
+'\n\n'+_('Keyboard shortcut: type "!" to send all your coins.')),4,3)
self.fee_e=AmountEdit(self.base_unit)
grid.addWidget(QLabel(_('Fee')),4,0)
grid.addWidget(self.fee_e,4,1,1,2)
grid.addWidget(QLabel(_('Fee')),5,0)
grid.addWidget(self.fee_e,5,1)
grid.addWidget(HelpButton(
_('Bitcoin transactions are in general not free. A transaction fee is paid by the sender of the funds.')+'\n\n'\
+_('The amount of fee can be decided freely by the sender. However, transactions with low fees take more time to be processed.')+'\n\n'\
+_('A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction.')),4,3)
+_('A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction.')),5,3)