URI: 
       tQt: rename incoming/outgoing payments to send/receive queue. fixes #6711 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit d50a8d1b843d9f155e58e846ed5fa4ff8d28c929
   DIR parent 3d640dfc1ff5809e3a309a3cf18734ee6aaf81e1
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue, 12 Jan 2021 10:56:05 +0100
       
       Qt: rename incoming/outgoing payments to send/receive queue. fixes #6711
       
       Diffstat:
         M electrum/gui/qt/main_window.py      |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py
       t@@ -1115,7 +1115,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
                qr_icon = "qrcode_white.png" if ColorScheme.dark_scheme else "qrcode.png"
                self.receive_address_e.addButton(qr_icon, qr_show, _("Show as QR code"))
        
       -        self.receive_requests_label = QLabel(_('Incoming payments'))
       +        self.receive_requests_label = QLabel(_('Receive queue'))
        
                from .request_list import RequestList
                self.request_list = RequestList(self)
       t@@ -1372,7 +1372,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
        
                self.set_onchain(False)
        
       -        self.invoices_label = QLabel(_('Outgoing payments'))
       +        self.invoices_label = QLabel(_('Send queue'))
                from .invoice_list import InvoiceList
                self.invoice_list = InvoiceList(self)