Skip to content

Commit

Permalink
Qt: rename incoming/outgoing payments to send/receive queue. fixes #6711
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Jan 12, 2021
1 parent 3d640df commit d50a8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrum/gui/qt/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ def on_expiry(i):
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)
Expand Down Expand Up @@ -1372,7 +1372,7 @@ def reset_max(text):

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)

Expand Down

0 comments on commit d50a8d1

Please sign in to comment.