From d7a9fc6de4cf8500f210f82e896ff7464c38be81 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 2 May 2020 08:17:20 -0500 Subject: [PATCH] Fix not authenticated message --- Frameworks/Account/CloudKit/CloudKitError.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/Account/CloudKit/CloudKitError.swift b/Frameworks/Account/CloudKit/CloudKitError.swift index a92a4d167..fafcb5b61 100644 --- a/Frameworks/Account/CloudKit/CloudKitError.swift +++ b/Frameworks/Account/CloudKit/CloudKitError.swift @@ -57,7 +57,7 @@ class CloudKitError: LocalizedError { case .networkFailure: return NSLocalizedString("Network Failure: the internet connection appears to be offline.", comment: "Known iCloud Error") case .notAuthenticated: - return NSLocalizedString("Not Authenticated: to use this app, you must enable iCloud syncing. Go to device Settings, sign in to iCloud, then in the app settings, be sure the iCloud feature is enabled.", comment: "Known iCloud Error") + return NSLocalizedString("Not Authenticated: to use the iCloud account, you must enable iCloud syncing. Go to device Settings, sign in to iCloud, then in the app settings, be sure the iCloud feature is enabled.", comment: "Known iCloud Error") case .operationCancelled: return NSLocalizedString("Operation Cancelled: the operation was explicitly canceled.", comment: "Known iCloud Error") case .partialFailure: