commit 2d1600d350254e7b4b1079992d227ca601b30c12
parent 6cec75150c206ae9ad90edf9dd39df92ce405bdd
Author: Neil <kyuupichan@gmail.com>
Date: Wed, 23 Sep 2015 08:31:04 +0900
Merge pull request #1457 from fireduck64/master
Make verbage from requests a little more clear
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -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)