Browse Source

qt: translate string, wording minimum channel amount in new_channel_dialog

master
Sander van Grieken 2 years ago
parent
commit
8c404f319a
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 2
      electrum/gui/qt/new_channel_dialog.py

2
electrum/gui/qt/new_channel_dialog.py

@ -40,7 +40,7 @@ class NewChannelDialog(WindowModalDialog):
).setEnabled(self.lnworker.can_have_recoverable_channels())
vbox.addLayout(toolbar)
msg = _('Choose a remote node and an amount to fund the channel.')
msg += '\n' + _('You need to put at least') + ': ' + self.window.format_amount_and_units(self.min_amount_sat)
msg += '\n' + _('Minimum required amount: {}').format(self.window.format_amount_and_units(self.min_amount_sat))
vbox.addWidget(WWLabel(msg))
if self.network.channel_db:
vbox.addWidget(QLabel(_('Enter Remote Node ID or connection string or invoice')))

Loading…
Cancel
Save