From b635fd4d45c07561bd5bbef703cc400f493cf942 Mon Sep 17 00:00:00 2001 From: Phil Viso Date: Mon, 7 Oct 2019 20:00:14 -0500 Subject: [PATCH] Fixed swipe direction in copy --- iOS/MasterFeed/MarkArticlesReadAlertController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/MasterFeed/MarkArticlesReadAlertController.swift b/iOS/MasterFeed/MarkArticlesReadAlertController.swift index 82d2b328b..4fa18f667 100644 --- a/iOS/MasterFeed/MarkArticlesReadAlertController.swift +++ b/iOS/MasterFeed/MarkArticlesReadAlertController.swift @@ -12,13 +12,13 @@ import UIKit struct MarkArticlesReadAlertController { static func allArticlesAlert(handler: @escaping (UIAlertAction) -> Void) -> UIAlertController { - let message = NSLocalizedString("Mark all articles in all accounts as read? You can undo this action with a three finger swipe to the right.", + let message = NSLocalizedString("Mark all articles in all accounts as read? You can undo this action with a three finger swipe to the left.", comment: "Mark all articles") return markAllReadAlert(message: message, handler: handler) } static func timelineArticlesAlert(handler: @escaping (UIAlertAction) -> Void) -> UIAlertController { - let message = NSLocalizedString("Mark all articles in this timeline as read? You can undo this action with a three finger swipe to the right.", + let message = NSLocalizedString("Mark all articles in this timeline as read? You can undo this action with a three finger swipe to the left.", comment: "Mark all articles") return markAllReadAlert(message: message, handler: handler) }