From 978dddad80659679edd9fecbc1d8a7d0f942dd56 Mon Sep 17 00:00:00 2001 From: fireduck64 Date: Tue, 22 Sep 2015 12:53:50 -0700 Subject: [PATCH] Make verbage from requests a little more clear --- gui/qt/main_window.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 599547817..44127e9a3 100644 --- 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)