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
Copy file name to clipboardExpand all lines: Loop/Managers/AppExpirationAlerter.swift
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ class AppExpirationAlerter {
51
51
title:NSLocalizedString("TestFlight Expires Soon", comment:"The title for notification of upcoming TestFlight expiration"),
52
52
message: alertMessage,
53
53
preferredStyle:.alert)
54
-
dialog.addAction(UIAlertAction(title:NSLocalizedString("OK", comment:"Text for ok action on notification of upcoming profile expiration"), style:.default, handler:nil))
54
+
dialog.addAction(UIAlertAction(title:NSLocalizedString("OK", comment:"Text for ok action on notification of upcoming TestFlight expiration"), style:.default, handler:nil))
55
55
dialog.addAction(UIAlertAction(title:NSLocalizedString("More Info", comment:"Text for more info action on notification of upcoming TestFlight expiration"), style:.default, handler:{(_)in
returnString(format:NSLocalizedString("%1$@ will stop working in %2$@. You will need to update before that, with a new provisioning profile.", comment:"Format string for body for notification of upcoming provisioning profile expiration. (1: app name) (2: amount of time until expiration"),Bundle.main.bundleDisplayName, timeUntilExpirationStr)
76
+
returnString(format:NSLocalizedString("%1$@ will stop working in %2$@. You will need to rebuild before that.", comment:"Format string for body for notification of upcoming expiration. (1: app name) (2: amount of time until expiration"),Bundle.main.bundleDisplayName, timeUntilExpirationStr)
77
77
}else{
78
-
returnString(format:NSLocalizedString("%1$@ will stop working in %2$@. You will need to rebuild before that.", comment:"Format string for body for notification of upcoming provisioning profile expiration. (1: app name) (2: amount of time until expiration"),Bundle.main.bundleDisplayName, timeUntilExpirationStr)
78
+
returnString(format:NSLocalizedString("%1$@ will stop working in %2$@. You will need to update before that, with a new provisioning profile.", comment:"Format string for body for notification of upcoming provisioning profile expiration. (1: app name) (2: amount of time until expiration"),Bundle.main.bundleDisplayName, timeUntilExpirationStr)
0 commit comments