Interim commit wth .based localisations

This commit is contained in:
Stuart Breckenridge
2022-12-24 15:01:33 +08:00
parent f48e30ea7d
commit d457b2dd53
17 changed files with 126 additions and 135 deletions

View File

@@ -46,11 +46,10 @@ struct MarkAsReadAlertController {
completion: @escaping (UIAlertAction) -> Void) -> UIAlertController where T: MarkAsReadAlertControllerSourceType {
let title = NSLocalizedString("Mark As Read", comment: "Mark As Read")
let message = NSLocalizedString("You can turn this confirmation off in Settings.",
comment: "You can turn this confirmation off in Settings.")
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
let settingsTitle = NSLocalizedString("Open Settings", comment: "Open Settings")
let title = NSLocalizedString("alert.title.markasread", comment: "Mark As Read")
let message = NSLocalizedString("alert.message.markasread.turnoffconfirmation", comment: "Message that indicates a user can turn off the Mark As Read confirmation in Settings.")
let cancelTitle = NSLocalizedString("button.title.cancel", comment: "Cancel")
let settingsTitle = NSLocalizedString("button.title.opensettings", comment: "Open Settings")
let alertController = UIAlertController(title: title, message: message, preferredStyle: .actionSheet)
let cancelAction = UIAlertAction(title: cancelTitle, style: .cancel) { _ in