qt: translate string, wording minimum channel amount in new_channel_dialog
This commit is contained in:
@@ -40,7 +40,7 @@ class NewChannelDialog(WindowModalDialog):
|
|||||||
).setEnabled(self.lnworker.can_have_recoverable_channels())
|
).setEnabled(self.lnworker.can_have_recoverable_channels())
|
||||||
vbox.addLayout(toolbar)
|
vbox.addLayout(toolbar)
|
||||||
msg = _('Choose a remote node and an amount to fund the channel.')
|
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))
|
vbox.addWidget(WWLabel(msg))
|
||||||
if self.network.channel_db:
|
if self.network.channel_db:
|
||||||
vbox.addWidget(QLabel(_('Enter Remote Node ID or connection string or invoice')))
|
vbox.addWidget(QLabel(_('Enter Remote Node ID or connection string or invoice')))
|
||||||
|
|||||||
Reference in New Issue
Block a user