better help msg

This commit is contained in:
ThomasV 2015-07-21 13:23:16 +02:00
parent 01d4118221
commit e4ea07c168
1 changed files with 5 additions and 1 deletions

View File

@ -621,7 +621,11 @@ class ElectrumWindow(QMainWindow):
self.expires_combo = QComboBox()
self.expires_combo.addItems(map(lambda x:x[0], expiration_values))
self.expires_combo.setCurrentIndex(1)
msg = _('Expiration date of your request. This information is not included in the Bitcoin address nor in the QR code; the recipient will see it only if you send them a complete request.')
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'),
])
grid.addWidget(HelpLabel(_('Expires in'), msg), 3, 0)
grid.addWidget(self.expires_combo, 3, 1)
self.expires_label = QLineEdit('')