Make verbage from requests a little more clear

This commit is contained in:
fireduck64 2015-09-22 12:53:50 -07:00
parent 6cec75150c
commit 978dddad80
1 changed files with 3 additions and 2 deletions

View File

@ -604,9 +604,10 @@ class ElectrumWindow(QMainWindow, PrintError):
msg = ' '.join([
_('Expiration date of your request.'),
_('This information is seen by the recipient if you send them a signed payment request.'),
_('Expired requests have to be deleted manually from your list, in order to free the corresponding Bitcoin addresses'),
_('Expired requests have to be deleted manually from your list, in order to free the corresponding Bitcoin addresses.'),
_('The bitcoin address never expires and will always be part of this electrum wallet.'),
])
grid.addWidget(HelpLabel(_('Expires in'), msg), 3, 0)
grid.addWidget(HelpLabel(_('Request expires in'), msg), 3, 0)
grid.addWidget(self.expires_combo, 3, 1)
self.expires_label = QLineEdit('')
self.expires_label.setReadOnly(1)