commit b014ad5ce6015a0cb7ce5114fa2eb0cf691c0e4d
parent 4e38cf9cf4875247e6a3ff5ca3b883684da3bf41
Author: Marc Stibane <marc@taler.net>
Date: Tue, 26 Nov 2024 08:33:03 +0100
wording
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/Balances/BalancesSectionView.swift b/TalerWallet1/Views/Balances/BalancesSectionView.swift
@@ -97,7 +97,7 @@ extension BalancesSectionView: View {
scope: scopeInfo,
balance: balance,
selectedBalance: $selectedBalance,
- navTitle: nil, // will use scopeInfo.currency
+ navTitle: balance.available.readableDescription, // TODO: format with currency sign
transactions: $completedTransactions,
reloadAllAction: loadCompleted)
Section {
diff --git a/TalerWallet1/Views/HelperViews/ToSButtonView.swift b/TalerWallet1/Views/HelperViews/ToSButtonView.swift
@@ -20,7 +20,7 @@ struct ToSButtonView: View {
var body: some View {
let hint = minimalistic ? String(localized: "You must accept the Terms of Service of the payment service first.")
: p2p ? String(localized: "You must accept the Terms of Service of the payment service first before you can receive electronic cash in your wallet.", comment: "P2P Receive")
- : String(localized: "You must accept the Terms of Service of the payment service first before you can use it to withdraw electronic cash to your wallet.")
+ : String(localized: "You must accept the Terms of Service of the payment service first before you can withdraw electronic cash to your wallet.")
Text(hint)
.talerFont(.body)
.multilineTextAlignment(.leading)