From b09c25507c611e805fc52e2cd4815dce77c43870 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Sat, 7 Nov 2020 09:31:52 +0800 Subject: [PATCH] FreshRSS specific wording --- Mac/Preferences/Accounts/AccountsReaderAPI.xib | 1 + .../Accounts/AccountsReaderAPIWindowController.swift | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Mac/Preferences/Accounts/AccountsReaderAPI.xib b/Mac/Preferences/Accounts/AccountsReaderAPI.xib index 3da28d180..57c7be46c 100644 --- a/Mac/Preferences/Accounts/AccountsReaderAPI.xib +++ b/Mac/Preferences/Accounts/AccountsReaderAPI.xib @@ -12,6 +12,7 @@ + diff --git a/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift b/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift index 15ab289fb..1709bb33f 100644 --- a/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift +++ b/Mac/Preferences/Accounts/AccountsReaderAPIWindowController.swift @@ -21,6 +21,7 @@ class AccountsReaderAPIWindowController: NSWindowController { @IBOutlet weak var usernameTextField: NSTextField! @IBOutlet weak var apiURLTextField: NSTextField! @IBOutlet weak var passwordTextField: NSSecureTextField! + @IBOutlet weak var createAccountButton: NSButton! @IBOutlet weak var errorMessageLabel: NSTextField! @IBOutlet weak var actionButton: NSButton! @IBOutlet weak var noAccountTextField: NSTextField! @@ -40,7 +41,8 @@ class AccountsReaderAPIWindowController: NSWindowController { case .freshRSS: titleImageView.image = AppAssets.accountFreshRSS titleLabel.stringValue = NSLocalizedString("Sign in to your FreshRSS account.", comment: "FreshRSS") - noAccountTextField.stringValue = NSLocalizedString("Don't have a FreshRSS account?", comment: "No FreshRSS") + noAccountTextField.stringValue = NSLocalizedString("Don't have a FreshRSS instance?", comment: "No FreshRSS") + createAccountButton.title = NSLocalizedString("Find out more", comment: "No FreshRSS Button") case .inoreader: titleImageView.image = AppAssets.accountInoreader titleLabel.stringValue = NSLocalizedString("Sign in to your InoReader account.", comment: "InoReader")