fix: clarify payment wait time (#3540)

This commit is contained in:
Tiago Vasconcelos 2025-11-19 13:50:51 +00:00 committed by GitHub
parent 4144359617
commit da3cb548bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -563,7 +563,9 @@ window.localisation.en = {
reserve_fee_in_percent: 'Reserve fee in percent', reserve_fee_in_percent: 'Reserve fee in percent',
payment_wait_time: 'Payment Wait Time (sec)', payment_wait_time: 'Payment Wait Time (sec)',
payment_wait_time_desc: payment_wait_time_desc:
'How long to wait when making a payment before marking it as pending. Set higher values for HODL invoices, Boltz, etc.', 'Wait time before marking an outgoing payment as pending. Default: 5s; raise for slow-settling invoices.',
payment_wait_time_tooltip:
'Controls how long LNbits waits for an outgoing payment attempt to confirm before marking it as pending. Higher values help when paying slow-settling invoices (e.g., HODL invoices, Boltz). The payment will be rechecked later and updated automatically or manually.',
server_management: 'Server Management', server_management: 'Server Management',
base_url: 'Base URL', base_url: 'Base URL',
base_url_label: 'Static/Base url for the server', base_url_label: 'Static/Base url for the server',

View file

@ -114,6 +114,12 @@
<div class="col-12 col-md-3"> <div class="col-12 col-md-3">
<p> <p>
<span v-text="$t('payment_wait_time')"></span> <span v-text="$t('payment_wait_time')"></span>
<sup>
<q-icon name="info" size="16px" class="q-ml-xs"></q-icon>
<q-tooltip max-width="150px">
<span v-text="$t('payment_wait_time_tooltip')"></span>
</q-tooltip>
</sup>
</p> </p>
<q-input <q-input
type="number" type="number"