Remove redundant "in"

For example, this avoids displaying "Request expires in [ in about 24 hours]"
This commit is contained in:
Joel Stanner 2015-09-23 19:59:42 -07:00
parent cdbee6f4c9
commit 82a75f3949
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ class ElectrumWindow(QMainWindow, PrintError):
_('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(_('Request expires in'), msg), 3, 0)
grid.addWidget(HelpLabel(_('Request expires'), msg), 3, 0)
grid.addWidget(self.expires_combo, 3, 1)
self.expires_label = QLineEdit('')
self.expires_label.setReadOnly(1)