taler-ios

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

commit b03c3a59bb3d038290ae1b3bc58e78ccd4ffed61
parent f0e76b6455cf8d8c45227839b01c79ee5989b8a3
Author: Marc Stibane <marc@taler.net>
Date:   Mon, 17 Aug 2026 17:39:49 +0200

fix garbled string

Diffstat:
MTalerWallet1/Views/Actions/Banking/DepositAmountView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/Actions/Banking/DepositAmountView.swift b/TalerWallet1/Views/Actions/Banking/DepositAmountView.swift @@ -131,7 +131,7 @@ struct DepositAmountView: View { : (feeAmount?.isZero ?? true) ? WalletColors().secondary(colorScheme, colorSchemeContrast) : WalletColors().negative) .padding(4) - let hint = String(localized: "enabled when amount is non-zero, but not higher than your available nt", + let hint = String(localized: "enabled when amount is non-zero, but not higher than your available amount", comment: "a11y") Button(buttonTitle(amountToTransfer)) { action() } .buttonStyle(TalerButtonStyle(type: .prominent, disabled: disabled || depositStarted))