minor fix re translated string
This commit is contained in:
@@ -243,9 +243,8 @@ class TxDialog(Factory.Popup):
|
||||
to_delete |= self.wallet.get_depending_transactions(txid)
|
||||
question = _("Are you sure you want to remove this transaction?")
|
||||
if len(to_delete) > 1:
|
||||
question = _(
|
||||
"Are you sure you want to remove this transaction and {} child transactions?".format(len(to_delete) - 1)
|
||||
)
|
||||
question = (_("Are you sure you want to remove this transaction and {} child transactions?")
|
||||
.format(len(to_delete) - 1))
|
||||
|
||||
def on_prompt(b):
|
||||
if b:
|
||||
|
||||
Reference in New Issue
Block a user