You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Text(String(format:NSLocalizedString("Required %1$@ App Update", comment:"Title for required version update modal (1: app name)"), appName))
26
26
.font(.headline)
27
27
.multilineTextAlignment(.center)
28
28
29
29
VStack(spacing:12){
30
-
Text(String(format:NSLocalizedString("A critical issue has been discovered in this version of %1$@.", comment:"Required update modal paragraph 1 (1: app name)"), appName))
31
-
Text(String(format:NSLocalizedString("Until you update the app, you will not be able to use %1$@.", comment:"Required update modal paragraph 2 (1: app name)"), appName))
32
-
Text(NSLocalizedString("Please go to the App Store to install the latest version.", comment:"Required update modal paragraph 3"))
30
+
Text(String(format:NSLocalizedString("A critical issue has been discovered in this version of %1$@. To continue using the app, you must update to the latest version.", comment:"Required update modal paragraph 1 (1: app name)"), appName))
31
+
Text(String(format:NSLocalizedString("You will continue to receive your scheduled basal rate, but %1$@ will not make automated adjustments.", comment:"Required update modal paragraph 2 (1: app name)"), appName))
32
+
Text(NSLocalizedString("Please go to the App Store now to update the app.", comment:"Required update modal paragraph 3"))
33
33
}
34
34
.font(.subheadline)
35
35
.multilineTextAlignment(.center)
36
-
.foregroundColor(.secondary)
37
36
38
37
Divider()
38
+
.padding(.horizontal,-40)
39
39
40
40
Button(action: openAppStore){
41
41
Text(NSLocalizedString("App Store", comment:"Button title to open the App Store for a required update"))
0 commit comments