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) }