commit 252efa73ef0b008e72ff9b70b86675f29fe09b61 parent 33ecb76c11fdea97345ec35658a1d6a5034b7e44 Author: Marc Stibane <marc@taler.net> Date: Wed, 18 Mar 2026 13:34:25 +0100 fix icon Diffstat:
| M | TalerWallet1/Views/Transactions/ManualDetailsWireV.swift | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/TalerWallet1/Views/Transactions/ManualDetailsWireV.swift b/TalerWallet1/Views/Transactions/ManualDetailsWireV.swift @@ -217,9 +217,9 @@ struct ManualDetailsWireV: View { .talerFont(.body) .multilineTextAlignment(.leading) let warningIcon = Image(systemName: WARNING) - let manda1 = String(localized: "This is mandatory, otherwise your money will not arrive in this wallet.") - let manda2 = String(localized: "This is mandatory, otherwise the verification will fail.") - let mandatory = Text("\(warningIcon) " + (debitIBAN == nil ? manda1 : manda2)) + let manda = debitIBAN == nil ? String(localized: "This is mandatory, otherwise your money will not arrive in this wallet.") + : String(localized: "This is mandatory, otherwise the verification will fail.") + let mandatory = Text("\(warningIcon) \(manda)") .bold() .talerFont(.body) .multilineTextAlignment(.leading)