From 44b0092b449977423e8236028cd0619bee64775d Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 4 Oct 2021 15:29:10 -0700 Subject: [PATCH] Changes "free developer accounts" to "non-developer Apple IDs" in app copy Will hopefully clarify that the 3 active app limitation is due to using a non-developer Apple ID, and not because they haven't donated via Patreon. --- AltStore/App IDs/AppIDsViewController.swift | 2 +- AltStore/My Apps/MyAppsViewController.swift | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AltStore/App IDs/AppIDsViewController.swift b/AltStore/App IDs/AppIDsViewController.swift index 8a4d39f6..0172e5b3 100644 --- a/AltStore/App IDs/AppIDsViewController.swift +++ b/AltStore/App IDs/AppIDsViewController.swift @@ -201,7 +201,7 @@ extension AppIDsViewController: UICollectionViewDelegateFlowLayout if let activeTeam = DatabaseManager.shared.activeTeam(), activeTeam.type == .free { let text = NSLocalizedString(""" - Each app and app extension installed with AltStore must register an App ID with Apple. Apple limits free developer accounts to 10 App IDs at a time. + Each app and app extension installed with AltStore must register an App ID with Apple. Apple limits non-developer Apple IDs to 10 App IDs at a time. **App IDs can't be deleted**, but they do expire after one week. AltStore will automatically renew App IDs for all active apps once they've expired. """, comment: "") diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 857d4f45..d33d3d4e 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -938,11 +938,11 @@ private extension MyAppsViewController if UserDefaults.standard.activeAppLimitIncludesExtensions { - message = NSLocalizedString("Free developer accounts are limited to 3 apps and app extensions. Inactive apps don't count towards your total, but cannot be opened until activated.", comment: "") + message = NSLocalizedString("Non-developer Apple IDs are limited to 3 apps and app extensions. Inactive apps don't count towards your total, but cannot be opened until activated.", comment: "") } else { - message = NSLocalizedString("Free developer accounts are limited to 3 apps. Inactive apps are backed up and uninstalled so they don't count towards your total, but will be reinstalled with all their data when activated again.", comment: "") + message = NSLocalizedString("Non-developer Apple IDs are limited to 3 apps. Inactive apps are backed up and uninstalled so they don't count towards your total, but will be reinstalled with all their data when activated again.", comment: "") } let alertController = UIAlertController(title: NSLocalizedString("What are inactive apps?", comment: ""), message: message, preferredStyle: .alert) @@ -968,11 +968,11 @@ private extension MyAppsViewController if UserDefaults.standard.activeAppLimitIncludesExtensions { - firstSentence = NSLocalizedString("Free developer accounts are limited to 3 active apps and app extensions.", comment: "") + firstSentence = NSLocalizedString("Non-developer Apple IDs are limited to 3 active apps and app extensions.", comment: "") } else { - firstSentence = NSLocalizedString("Free developer accounts are limited to creating 10 App IDs per week.", comment: "") + firstSentence = NSLocalizedString("Non-developer Apple IDs are limited to creating 10 App IDs per week.", comment: "") } let message = firstSentence + " " + NSLocalizedString("Would you like to remove this app's extensions so they don't count towards your limit?", comment: "")