summaryrefslogtreecommitdiff
path: root/TalerWallet1/Views/Banking/QuiteSomeCoins.swift
diff options
context:
space:
mode:
Diffstat (limited to 'TalerWallet1/Views/Banking/QuiteSomeCoins.swift')
-rw-r--r--TalerWallet1/Views/Banking/QuiteSomeCoins.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/TalerWallet1/Views/Banking/QuiteSomeCoins.swift b/TalerWallet1/Views/Banking/QuiteSomeCoins.swift
index 4bcfb88..0a090fd 100644
--- a/TalerWallet1/Views/Banking/QuiteSomeCoins.swift
+++ b/TalerWallet1/Views/Banking/QuiteSomeCoins.swift
@@ -17,10 +17,10 @@ struct SomeCoins {
let fee: Amount?
func feeLabel(_ currencyInfo: CurrencyInfo?) -> String {
return if let fee {
- invalid ? "Amount too small!"
- : tooMany ? "Amount too big for a single withdrawal!"
- : fee.isZero ? "No withdrawal fee"
- : "- \(fee.string(currencyInfo)) fee"
+ invalid ? String(localized: "Amount too small!")
+ : tooMany ? String(localized: "Amount too big for a single withdrawal!")
+ : fee.isZero ? String(localized: "No withdrawal fee")
+ : String(localized: "- \(fee.string(currencyInfo)) fee")
} else {
EMPTYSTRING
}