Mercurial > public > simoleon
diff Simoleon/Subscription.swift @ 29:c52966834f83
Add localised strings
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 22 Jul 2021 22:30:54 +0100 |
parents | 4f862c618b44 |
children | f76d0e26c178 |
line wrap: on
line diff
--- a/Simoleon/Subscription.swift Thu Jul 22 19:06:01 2021 +0100 +++ b/Simoleon/Subscription.swift Thu Jul 22 22:30:54 2021 +0100 @@ -23,7 +23,7 @@ .frame(width: 100, height: 100) .cornerRadius(25) - Text("Unlock all access") + Text("Unlock all access", comment: "Headline in Subscription paywall") .font(.title) .fontWeight(.semibold) .padding(.top) @@ -75,7 +75,9 @@ } .toolbar { ToolbarItem(placement: .cancellationAction) { - Button("Cancel", action: { showingSubscriptionPaywall = false }) + Button(action: { showingSubscriptionPaywall = false }) { + Text("Cancel", comment: "Button to dismiss paywall modal sheet") + } } } }