From cd89741827ea748c4234730f62e3c674ccf85e4d Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 30 Mar 2020 15:38:00 -0700 Subject: [PATCH] =?UTF-8?q?Updates=20RefreshError.noInstalledApps=E2=80=99?= =?UTF-8?q?=20localized=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AltStore/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/AppDelegate.swift b/AltStore/AppDelegate.swift index 50d70570..2c670353 100644 --- a/AltStore/AppDelegate.swift +++ b/AltStore/AppDelegate.swift @@ -21,7 +21,7 @@ private enum RefreshError: LocalizedError var errorDescription: String? { switch self { - case .noInstalledApps: return NSLocalizedString("No installed apps to refresh.", comment: "") + case .noInstalledApps: return NSLocalizedString("No active apps require refreshing.", comment: "") } } }