From d60bcc49e18a4dba254f365ea1d2f857041ddd8b Mon Sep 17 00:00:00 2001 From: Foxster Date: Wed, 17 Jul 2024 16:21:39 -0700 Subject: [PATCH] Rename "AltStore" to "SideStore" --- AltStore/Managing Apps/AppManager.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index 4df3fd8c..310bba29 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1715,8 +1715,8 @@ private extension AppManager let trigger = UNTimeIntervalNotificationTrigger(timeInterval: timeIntervalUntilNotification, repeats: false) let content = UNMutableNotificationContent() - content.title = NSLocalizedString("AltStore Expiring Soon", comment: "") - content.body = NSLocalizedString("AltStore will expire in 24 hours. Open the app and refresh it to prevent it from expiring.", comment: "") + content.title = NSLocalizedString("SideStore Expiring Soon", comment: "") + content.body = NSLocalizedString("SideStore will expire in 24 hours. Open the app and refresh it to prevent it from expiring.", comment: "") content.sound = .default let request = UNNotificationRequest(identifier: AppManager.expirationWarningNotificationID, content: content, trigger: trigger)