From c8f5a24b95da1622fdbb3f84d39c9c28302396dc Mon Sep 17 00:00:00 2001 From: Ryan Dotson Date: Tue, 13 Aug 2019 07:41:14 +0900 Subject: [PATCH] Use proper quotes in timeline contextual menu --- .../Timeline/TimelineViewController+ContextualMenus.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift b/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift index dd2302aec..f3a8fa2fc 100644 --- a/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift +++ b/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift @@ -248,7 +248,7 @@ private extension TimelineViewController { } func selectFeedInSidebarMenuItem(_ feed: Feed) -> NSMenuItem { - let localizedMenuText = NSLocalizedString("Select \"%@\" in Sidebar", comment: "Command") + let localizedMenuText = NSLocalizedString("Select “%@” in Sidebar", comment: "Command") let formattedMenuText = NSString.localizedStringWithFormat(localizedMenuText as NSString, feed.nameForDisplay) return menuItem(formattedMenuText as String, #selector(selectFeedInSidebarFromContextualMenu(_:)), feed) } @@ -260,7 +260,7 @@ private extension TimelineViewController { return nil } - let localizedMenuText = NSLocalizedString("Mark All as Read in \"%@\"", comment: "Command") + let localizedMenuText = NSLocalizedString("Mark All as Read in “%@”", comment: "Command") let menuText = NSString.localizedStringWithFormat(localizedMenuText as NSString, feed.nameForDisplay) as String return menuItem(menuText, #selector(markAllInFeedAsRead(_:)), articles)