mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Fixed swipe direction in copy
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user