diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 7ae0cf113..d517150df 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1357,10 +1357,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): return if status == PR_PAID: # FIXME notification should only be shown if request was not PAID before - msg = _('Payment received:') + msg = _('Payment received') amount = req.get_amount_sat() if amount: - msg += ' ' + self.format_amount_and_units(amount) + msg += ': ' + self.format_amount_and_units(amount) msg += '\n' + req.get_message() self.notify(msg) self.receive_tab.request_list.delete_item(key)