From 82a75f39490ad0c68cb80f3935168eea4a6af7f7 Mon Sep 17 00:00:00 2001 From: Joel Stanner Date: Wed, 23 Sep 2015 19:59:42 -0700 Subject: [PATCH] Remove redundant "in" For example, this avoids displaying "Request expires in [ in about 24 hours]" --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 76efbf2b9..2c1058f2b 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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)