From 52916eebf1d0ca9fde93fd4fd469240a82b36d17 Mon Sep 17 00:00:00 2001 From: Joshua Grady Date: Wed, 19 Mar 2025 10:56:20 -0400 Subject: [PATCH] Replaced uses of "InoReader" with "Inoreader" --- .../Accounts/AccountsReaderAPIWindowController.swift | 4 ++-- iOS/Settings/Account/ReaderAPIAccountViewController.swift | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Mac/Settings/Accounts/AccountsReaderAPIWindowController.swift b/Mac/Settings/Accounts/AccountsReaderAPIWindowController.swift index 3fc7365a4..d5be0c07e 100644 --- a/Mac/Settings/Accounts/AccountsReaderAPIWindowController.swift +++ b/Mac/Settings/Accounts/AccountsReaderAPIWindowController.swift @@ -46,9 +46,9 @@ final class AccountsReaderAPIWindowController: NSWindowController { apiURLTextField.placeholderString = NSLocalizedString("fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") case .inoreader: titleImageView.image = AppImage.account(.inoreader) - titleLabel.stringValue = NSLocalizedString("Sign in to your InoReader account.", comment: "InoReader") + titleLabel.stringValue = NSLocalizedString("Sign in to your Inoreader account.", comment: "Inoreader") gridView.row(at: 2).isHidden = true - noAccountTextField.stringValue = NSLocalizedString("Don’t have an InoReader account?", comment: "No InoReader") + noAccountTextField.stringValue = NSLocalizedString("Don’t have an Inoreader account?", comment: "No Inoreader") case .bazQux: titleImageView.image = AppImage.account(.bazQux) titleLabel.stringValue = NSLocalizedString("Sign in to your BazQux account.", comment: "BazQux") diff --git a/iOS/Settings/Account/ReaderAPIAccountViewController.swift b/iOS/Settings/Account/ReaderAPIAccountViewController.swift index 1c00b1771..53bbe3524 100644 --- a/iOS/Settings/Account/ReaderAPIAccountViewController.swift +++ b/iOS/Settings/Account/ReaderAPIAccountViewController.swift @@ -52,7 +52,7 @@ final class ReaderAPIAccountViewController: UITableViewController { title = NSLocalizedString("FreshRSS", comment: "FreshRSS") apiURLTextField.placeholder = NSLocalizedString("API URL: fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") case .inoreader: - title = NSLocalizedString("InoReader", comment: "InoReader") + title = NSLocalizedString("Inoreader", comment: "Inoreader") case .bazQux: title = NSLocalizedString("BazQux", comment: "BazQux") case .theOldReader: @@ -75,8 +75,8 @@ final class ReaderAPIAccountViewController: UITableViewController { footerLabel.text = NSLocalizedString("Sign in to your BazQux account and sync your feeds across your devices. Your username and password will be encrypted and stored in Keychain.\n\nDon’t have a BazQux account?", comment: "BazQux") signUpButton.setTitle(NSLocalizedString("Sign Up Here", comment: "BazQux SignUp"), for: .normal) case .inoreader: - footerLabel.text = NSLocalizedString("Sign in to your InoReader account and sync your feeds across your devices. Your username and password will be encrypted and stored in Keychain.\n\nDon’t have an InoReader account?", comment: "InoReader") - signUpButton.setTitle(NSLocalizedString("Sign Up Here", comment: "InoReader SignUp"), for: .normal) + footerLabel.text = NSLocalizedString("Sign in to your Inoreader account and sync your feeds across your devices. Your username and password will be encrypted and stored in Keychain.\n\nDon’t have an Inoreader account?", comment: "Inoreader") + signUpButton.setTitle(NSLocalizedString("Sign Up Here", comment: "Inoreader SignUp"), for: .normal) case .theOldReader: footerLabel.text = NSLocalizedString("Sign in to your The Old Reader account and sync your feeds across your devices. Your username and password will be encrypted and stored in Keychain.\n\nDon’t have a The Old Reader account?", comment: "TOR") signUpButton.setTitle(NSLocalizedString("Sign Up Here", comment: "TOR SignUp"), for: .normal)