summaryrefslogtreecommitdiff
path: root/TalerWallet1/Views/HelperViews/QRCodeDetailView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'TalerWallet1/Views/HelperViews/QRCodeDetailView.swift')
-rw-r--r--TalerWallet1/Views/HelperViews/QRCodeDetailView.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/TalerWallet1/Views/HelperViews/QRCodeDetailView.swift b/TalerWallet1/Views/HelperViews/QRCodeDetailView.swift
index 3f7b139..2af6d8a 100644
--- a/TalerWallet1/Views/HelperViews/QRCodeDetailView.swift
+++ b/TalerWallet1/Views/HelperViews/QRCodeDetailView.swift
@@ -15,7 +15,7 @@ struct QRCodeDetailView: View {
var body: some View {
if talerURI.count > 10 {
Section {
- Text("Either")
+ Text("Either", comment: "Either (copy/share)")
.multilineTextAlignment(.leading)
.accessibilityFont(.title3)
// .padding(.vertical)
@@ -26,9 +26,9 @@ struct QRCodeDetailView: View {
// .padding(.bottom)
.listRowSeparator(.hidden)
- let otherParty = incoming ? String(localized: "payer")
- : String(localized: "payee")
- Text("the link to the \(otherParty), or", comment: "(copy/share) the link to the other party (payer/payee), or")
+ let otherParty = incoming ? String(localized: "payer", comment: "the payment link to the (otherParty), or")
+ : String(localized: "payee", comment: "the payment link to the (otherParty), or")
+ Text("the payment link to the \(otherParty), or", comment: "...the payment link to the (payer/payee), or")
.multilineTextAlignment(.leading)
.accessibilityFont(.title3)
.listRowSeparator(.hidden)