Changes strings to NSLocalizedStrings

This commit is contained in:
Stuart Breckenridge 2023-02-05 09:45:34 +08:00
parent 757c680f4b
commit b2a2c5f5b9
No known key found for this signature in database
GPG Key ID: 64DCE361D27B805B

View File

@ -743,8 +743,8 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
}
private func showTwitterDeprecationAlert() {
let alert = UIAlertController(title: "Twitter Integration Removed",
message: "On February 1, 2023, Twitter announced the end of free access to the Twitter API, effective February 9.\n\nSince Twitter does not provide RSS feeds, weve had to use the Twitter API. Without free access to that API, we cant read feeds from Twitter.\n\nWeve left your Twitter feeds intact. If you have any starred items from those feeds, they will remain as long as you dont delete those feeds.\n\nYou can still read whatever you have already downloaded. However, those feeds will no longer update.",
let alert = UIAlertController(title: NSLocalizedString("Twitter Integration Removed", comment: "Twitter Integration Removed"),
message: NSLocalizedString("On February 1, 2023, Twitter announced the end of free access to the Twitter API, effective February 9.\n\nSince Twitter does not provide RSS feeds, weve had to use the Twitter API. Without free access to that API, we cant read feeds from Twitter.\n\nWeve left your Twitter feeds intact. If you have any starred items from those feeds, they will remain as long as you dont delete those feeds.\n\nYou can still read whatever you have already downloaded. However, those feeds will no longer update.", comment: "Twitter deprecation message"),
preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: .cancel))