Browse Source

qt send tab: HelpLabel for "pay to" field: update text

- maybe make it more readable
- mention new syntax for raw scripts
  - see 3ff588049e
master
SomberNight 2 years ago
parent
commit
abe700167f
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 14
      electrum/gui/qt/send_tab.py

14
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"

Loading…
Cancel
Save