1
0

qt: translate string, wording minimum channel amount in new_channel_dialog

This commit is contained in:
Sander van Grieken
2023-11-30 15:03:05 +01:00
parent daeedca1d0
commit 8c404f319a

View File

@@ -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')))