From f524648ca4df91f8c635b2ed7f3d3207759b23ed Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 23 Nov 2024 11:26:10 -0800 Subject: [PATCH] =?UTF-8?q?Fix=20error=20message=20=E2=80=94=C2=A0make=20i?= =?UTF-8?q?t=20refer=20to=20iCloud=20Drive=20and=20System=20Settings.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Accounts/AccountsAddCloudKitWindowController.swift | 2 +- iOS/Account/CloudKitAccountViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/Preferences/Accounts/AccountsAddCloudKitWindowController.swift b/Mac/Preferences/Accounts/AccountsAddCloudKitWindowController.swift index ac1dce14c..7bf883a15 100644 --- a/Mac/Preferences/Accounts/AccountsAddCloudKitWindowController.swift +++ b/Mac/Preferences/Accounts/AccountsAddCloudKitWindowController.swift @@ -13,7 +13,7 @@ enum AccountsAddCloudKitWindowControllerError: LocalizedError { case iCloudDriveMissing var errorDescription: String? { - return NSLocalizedString("Unable to add iCloud Account. Please make sure you have iCloud and iCloud enabled in System Preferences.", comment: "Unable to add iCloud Account.") + return NSLocalizedString("Unable to add iCloud Account. Please make sure you have iCloud and iCloud Drive enabled in System Settings.", comment: "Unable to add iCloud Account.") } } diff --git a/iOS/Account/CloudKitAccountViewController.swift b/iOS/Account/CloudKitAccountViewController.swift index 657617c04..d01741b0c 100644 --- a/iOS/Account/CloudKitAccountViewController.swift +++ b/iOS/Account/CloudKitAccountViewController.swift @@ -14,7 +14,7 @@ enum CloudKitAccountViewControllerError: LocalizedError { case iCloudDriveMissing var errorDescription: String? { - return NSLocalizedString("Unable to add iCloud Account. Please make sure you have iCloud and iCloud enabled in System Preferences.", comment: "Unable to add iCloud Account.") + return NSLocalizedString("Unable to add iCloud Account. Please make sure you have iCloud and iCloud Drive enabled in System Settings.", comment: "Unable to add iCloud Account.") } }