commit 8b8a226b8457d26904e5bba21a1460a52ae3afc2 parent c7a01b5d257f4f67a5472a22fa86815192e55d93 Author: Marc Stibane <marc@taler.net> Date: Sat, 13 Jul 2024 18:38:38 +0200 Authorize instead of confirm Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/TalerWallet1/Views/Overview/OverviewSectionV.swift b/TalerWallet1/Views/Overview/OverviewSectionV.swift @@ -167,7 +167,7 @@ fileprivate struct CurrenciesPendingRowV: View { } label: { let needsKYC = needsKYCin || needsKYCout let needsKYCStr = String(localized: ". Needs K Y C", comment: "VoiceOver") - let needsConfStr = String(localized: ". Needs bank confirmation", comment: "VoiceOver") + let needsConfStr = String(localized: ". Needs bank authorization", comment: "VoiceOver") VStack(spacing: 6) { let hasIncoming = !pendingIncoming.isZero if hasIncoming { diff --git a/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptDone.swift b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptDone.swift @@ -9,7 +9,7 @@ import SymLog struct WithdrawAcceptDone: View { private let symLog = SymLogV(0) let stack: CallStack - let navTitle = String(localized: "Confirm with Bank", comment: "Nav title") + let navTitle = String(localized: "Authorize with Bank", comment: "Nav title") let exchangeBaseUrl: String? let url: URL @@ -50,7 +50,7 @@ struct WithdrawAcceptDone: View { .navigationTitle(navTitle) } else { LoadingView(scopeInfo: nil, message: exchangeBaseUrl?.trimURL() - ?? "Bank Confirmation") + ?? "Bank Authorization") } }.onAppear() { symLog.log("onAppear") diff --git a/TalerWallet1/Views/Transactions/TransactionRowView.swift b/TalerWallet1/Views/Transactions/TransactionRowView.swift @@ -167,7 +167,7 @@ struct TransactionRowView: View { } .accessibilityElement(children: .combine) .accessibilityValue(needsKYC ? String(localized: ". Needs K Y C") : - shouldConfirm ? String(localized: ". Needs bank confirmation") : EMPTYSTRING) + shouldConfirm ? String(localized: ". Needs bank authorization") : EMPTYSTRING) .accessibilityHint(String(localized: "Will go to detail view.")) } }