From abe700167ff2808427448edf9a253796144befa2 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 24 Oct 2023 16:47:05 +0000 Subject: [PATCH] qt send tab: HelpLabel for "pay to" field: update text - maybe make it more readable - mention new syntax for raw scripts - see 3ff588049e5e9b8f060b853507bf1843b4a918e4 --- electrum/gui/qt/send_tab.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/electrum/gui/qt/send_tab.py b/electrum/gui/qt/send_tab.py index 59e9cfcd8..608579e8b 100644 --- a/electrum/gui/qt/send_tab.py +++ b/electrum/gui/qt/send_tab.py @@ -63,11 +63,15 @@ class SendTab(QWidget, MessageBoxMixin, Logger): from .paytoedit import PayToEdit self.amount_e = BTCAmountEdit(self.window.get_decimal_point) self.payto_e = PayToEdit(self) - msg = (_("Recipient of the funds.") + "\n\n" - + _("You may enter a Bitcoin address, a label from your list of contacts " - "(a list of completions will be proposed), " - "or an alias (email-like address that forwards to a Bitcoin address)") + ". " - + _("Lightning invoices are also supported.") + "\n\n" + msg = (_("Recipient of the funds.") + + "\n\n" + + _("This field can contain:") + "\n" + + _("- a Bitcoin address or BIP21 URI") + "\n" + + _("- a Lightning invoice") + "\n" + + _("- a label from your list of contacts") + "\n" + + _("- an openalias") + "\n" + + _("- an arbitrary on-chain script, e.g.:") + " script(OP_RETURN deadbeef)" + "\n" + + "\n" + _("You can also pay to many outputs in a single transaction, " "specifying one output per line.") + "\n" + _("Format: address, amount") + "\n" + _("To set the amount to 'max', use the '!' special character.") + "\n"