Fixed swipe direction in copy
This commit is contained in:
parent
b963d97922
commit
b635fd4d45
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue