From 49f17c33fbb9d42b6c3a001981bc61bb8dcde9fd Mon Sep 17 00:00:00 2001 From: Mark Trolley Date: Mon, 14 Oct 2024 20:00:40 -0400 Subject: [PATCH] Add protocol to FreshRSS example URLs As a new user it's not obvious that the FreshRSS API URL needs to include the protocol since the example URL does not have it. Add the protocol to the example URL to clarify that. --- .../Accounts/AccountsReaderAPIWindowController.swift | 2 +- iOS/Account/ReaderAPIAccountViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift b/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift index cf6b6c61a..1208e02ac 100644 --- a/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift +++ b/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift @@ -44,7 +44,7 @@ class AccountsReaderAPIWindowController: NSWindowController { titleLabel.stringValue = NSLocalizedString("Sign in to your FreshRSS account.", comment: "FreshRSS") noAccountTextField.stringValue = NSLocalizedString("Don’t have a FreshRSS instance?", comment: "No FreshRSS") createAccountButton.title = NSLocalizedString("Find out more", comment: "No FreshRSS Button") - apiURLTextField.placeholderString = NSLocalizedString("fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") + apiURLTextField.placeholderString = NSLocalizedString("https://fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") case .inoreader: titleImageView.image = AppAsset.inoReaderImage titleLabel.stringValue = NSLocalizedString("Sign in to your InoReader account.", comment: "InoReader") diff --git a/iOS/Account/ReaderAPIAccountViewController.swift b/iOS/Account/ReaderAPIAccountViewController.swift index 58d53b5c0..24cefe5bc 100644 --- a/iOS/Account/ReaderAPIAccountViewController.swift +++ b/iOS/Account/ReaderAPIAccountViewController.swift @@ -56,7 +56,7 @@ class ReaderAPIAccountViewController: UITableViewController { switch unwrappedAccountType { case .freshRSS: title = NSLocalizedString("FreshRSS", comment: "FreshRSS") - apiURLTextField.placeholder = NSLocalizedString("API URL: fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") + apiURLTextField.placeholder = NSLocalizedString("API URL: https://fresh.rss.net/api/greader.php", comment: "FreshRSS API Helper") case .inoreader: title = NSLocalizedString("InoReader", comment: "InoReader") case .bazQux: