From 1e998543a535254ea91828eb8228cbf31d30b2df Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 8 Jul 2019 22:59:29 -0700 Subject: [PATCH] Use right single curly quote instead of foot mark in error messages. --- Frameworks/Account/AccountError.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/Account/AccountError.swift b/Frameworks/Account/AccountError.swift index 569b8993c..090cb268d 100644 --- a/Frameworks/Account/AccountError.swift +++ b/Frameworks/Account/AccountError.swift @@ -19,9 +19,9 @@ public enum AccountError: LocalizedError { public var errorDescription: String? { switch self { case .createErrorNotFound: - return NSLocalizedString("The feed couldn't be found and can't be added.", comment: "Not found") + return NSLocalizedString("The feed couldn’t be found and can’t be added.", comment: "Not found") case .createErrorAlreadySubscribed: - return NSLocalizedString("You are already subscribed to this feed and can't add it again.", comment: "Already subscribed") + return NSLocalizedString("You are already subscribed to this feed and can’t add it again.", comment: "Already subscribed") case .opmlImportInProgress: return NSLocalizedString("An OPML import for this account is already running.", comment: "Import running") case .wrappedError(let error, let account):