summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Stibane <marc@taler.net>2024-02-29 14:46:44 +0100
committerMarc Stibane <marc@taler.net>2024-02-29 14:46:44 +0100
commit15d533a30be971bf554479968dc8eb983d050023 (patch)
tree8c81e0cae1395328c078d631c40b0057dec43ce6
parentc4dfcb22283d37f2826adc53997f4966fd898c96 (diff)
downloadtaler-ios-15d533a30be971bf554479968dc8eb983d050023.tar.gz
taler-ios-15d533a30be971bf554479968dc8eb983d050023.tar.bz2
taler-ios-15d533a30be971bf554479968dc8eb983d050023.zip
Empty Wallet
-rw-r--r--TalerWallet1/Views/Main/WalletEmptyView.swift11
1 files changed, 9 insertions, 2 deletions
diff --git a/TalerWallet1/Views/Main/WalletEmptyView.swift b/TalerWallet1/Views/Main/WalletEmptyView.swift
index c2ea5b6..ff72980 100644
--- a/TalerWallet1/Views/Main/WalletEmptyView.swift
+++ b/TalerWallet1/Views/Main/WalletEmptyView.swift
@@ -21,15 +21,22 @@ struct WalletEmptyView: View {
Section {
Text("There is no digital cash in your wallet.")
.talerFont(.title3)
+ }
+ Section {
+ Text("You can register an account in the demo bank, then withdraw some digital cash to experience how to pay with the money of the future.")
+ .talerFont(.body)
.listRowSeparator(.hidden)
- let title = String(localized: "LinkTitle_Test_Money", defaultValue: "Get some test money")
+ let title = String(localized: "LinkTitle_Test_Money", defaultValue: "Get demo money")
Link(title, destination: URL(string: DEMOBANK)!)
.buttonStyle(TalerButtonStyle(type: .prominent, narrow: false, aligned: .center))
.padding(.vertical)
.accessibilityHint("Will go to the demo bank website.")
}
Section {
- Text("Just register a test account in the demo bank, then withdraw some electronic cash.")
+ Text("Use the QR code scan button to start a withdrawal if your bank already supports Taler payments.")
+ .talerFont(.body)
+ .listRowSeparator(.hidden)
+ Text("You can also add a payment service manually on the Banking tab.")
.talerFont(.body)
}
}