taler-ios

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

commit 45a022075abf369dff9a74a8932a507ade571727
parent ad2a521744b747e145330e326421095fc9e1fda5
Author: Marc Stibane <marc@taler.net>
Date:   Sun,  9 Jun 2024 18:18:32 +0200

Authorize

Diffstat:
MTalerWallet1/Views/Transactions/TransactionSummaryV.swift | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/TalerWallet1/Views/Transactions/TransactionSummaryV.swift b/TalerWallet1/Views/Transactions/TransactionSummaryV.swift @@ -226,14 +226,14 @@ struct TransactionSummaryV: View { var body: some View { VStack(alignment: .leading) { // Show Hint that User should Confirm on bank website if !minimalistic { - Text("The bank is waiting for your confirmation.") + Text("The bank is waiting for your authorization.") // .fixedSize(horizontal: false, vertical: true) // wrap in scrollview .multilineTextAlignment(.leading) // otherwise .listRowSeparator(.hidden) } - Link("Confirm now", destination: destination) + Link("Authorize now", destination: destination) .buttonStyle(TalerButtonStyle(type: .prominent, badge: CONFIRM_BANK)) - .accessibilityHint(String(localized: "Will go to bank website to confirm this withdrawal.")) + .accessibilityHint(String(localized: "Will go to bank website to authorize this withdrawal.")) } } }