From d042267ff9d4ba9f46eb47f0499526669e994473 Mon Sep 17 00:00:00 2001 From: CelloSerenity <195480169+CelloSerenity@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:50:45 -0700 Subject: [PATCH] Update error messages to reference iloader Signed-off-by: CelloSerenity <195480169+CelloSerenity@users.noreply.github.com> --- AltStore/Operations/Errors/OperationError.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AltStore/Operations/Errors/OperationError.swift b/AltStore/Operations/Errors/OperationError.swift index f8bec67d..52b4ccf0 100644 --- a/AltStore/Operations/Errors/OperationError.swift +++ b/AltStore/Operations/Errors/OperationError.swift @@ -201,7 +201,7 @@ struct OperationError: ALTLocalizedError { case .unknownResult: return NSLocalizedString("The operation returned an unknown result.", comment: "") case .timedOut: return NSLocalizedString("The operation timed out.", comment: "") case .notAuthenticated: return NSLocalizedString("You are not signed in.", comment: "") - case .unknownUDID: return NSLocalizedString("SideStore could not determine this device's UDID. Please recreate your pairing using idevice_pair.", comment: "") + case .unknownUDID: return NSLocalizedString("SideStore could not determine this device's UDID. Please replace your pairing using iloader.", comment: "") case .invalidApp: return NSLocalizedString("The app is in an invalid format.", comment: "") case .maximumAppIDLimitReached: return NSLocalizedString("Cannot register more than 10 App IDs within a 7 day period.", comment: "") case .noSources: return NSLocalizedString("There are no SideStore sources.", comment: "") @@ -220,7 +220,7 @@ struct OperationError: ALTLocalizedError { case .openAppFailed: let appName = self.appName ?? NSLocalizedString("The app", comment: "") return String(format: NSLocalizedString("SideStore was denied permission to launch %@.", comment: ""), appName) - case .noWiFi: return NSLocalizedString("You do not appear to be connected to Wi-Fi and/or StosVPN!\nSideStore cannot install or refresh applications without Wi-Fi and StosVPN. If both are connected, recreate your pairing with idevice_pair.", comment: "") + case .noWiFi: return NSLocalizedString("You do not appear to be connected to Wi-Fi and/or StosVPN!\nSideStore cannot install or refresh applications without Wi-Fi and StosVPN. If both are connected, replace your pairing with iloader.", comment: "") case .tooNewError: return NSLocalizedString("iOS 17.0-17.3.1 changed how JIT is enabled so SideStore cannot enable JIT without SideJITServer on these versions, sorry for any inconvenience.", comment: "") case .unableToConnectSideJIT: return NSLocalizedString("Unable to connect to SideJITServer. Please check that you are on the same Wi-Fi of and your Firewall has been set correctly on your server.", comment: "") case .unableToRespondSideJITDevice: return NSLocalizedString("SideJITServer is unable to connect to your iDevice. Please make sure you have paired your iDevice by running 'SideJITServer -y', or try refreshing SideJITServer from Settings.", comment: "") @@ -310,7 +310,7 @@ extension MinimuxerError: LocalizedError { case .NoConnection: return NSLocalizedString("Unable to connect to the device, make sure StosVPN is enabled and you're connected to Wi-Fi. This could mean an invalid pairing.", comment: "") case .PairingFile: - return NSLocalizedString("Invalid pairing file. Your pairing file either didn't have a UDID, or it wasn't a valid plist. Please use idevice_pair to recreate it.", comment: "") + return NSLocalizedString("Invalid pairing file. Your pairing file either didn't have a UDID, or it wasn't a valid plist. Please use iloader to replace it.", comment: "") case .CreateDebug: return self.createService(name: "debug") @@ -338,7 +338,7 @@ extension MinimuxerError: LocalizedError { case .CreateAfc: return self.createService(name: "AFC") case .RwAfc: - return NSLocalizedString("AFC was unable to manage files on the device. Ensure Wi-Fi and StosVPN are connected. If they both are, recreate your pairing using idevice_pair.", comment: "") + return NSLocalizedString("AFC was unable to manage files on the device. Ensure Wi-Fi and StosVPN are connected. If they both are, replace your pairing using iloader.", comment: "") case .InstallApp(let message): return NSLocalizedString("Unable to install the app: \(message.toString())", comment: "") case .UninstallApp: