taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit 7b77bac0ecda7c0cfcb1993d7d83365d702805a6
parent 7b23482255b50cf148f890a7445e429c31456c7e
Author: Marc Stibane <marc@taler.net>
Date:   Sat, 26 Apr 2025 18:33:19 +0200

fix payment_balance_insufficient_max

Diffstat:
MTalerWallet1/Model/WalletModel.swift | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/TalerWallet1/Model/WalletModel.swift b/TalerWallet1/Model/WalletModel.swift @@ -46,8 +46,8 @@ enum InsufficientBalanceHint: String, Codable { String(localized: "payment_balance_insufficient_hint_wallet_balance_material_insufficient", defaultValue: "Some of the coins needed for this purchase are currently unavailable") case .walletBalanceAvailableInsufficient: - String(localized: "payment_balance_insufficient_hint_fees_not_covered", - defaultValue: "You don't have enough \(currency).") + String(localized: "payment_balance_insufficient_max", + defaultValue: "Balance insufficient! You don't have enough \(currency).") case .exchangeMissingGlobalFees: String(localized: "payment_balance_insufficient_hint_exchange_missing_global_fees", defaultValue: "Provider is missing the global fee configuration, this likely means it is misconfigured")