Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WordPressAuthenticator/Extensions/WPStyleGuide+Login.swift
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ extension WPStyleGuide {

button = textButton(normal: attrStrNormal, highlighted: attrStrHighlight, font: font, alignment: alignment)
} else {
let baseString = NSLocalizedString("Log in by entering your site address.", comment: "Label for button to log in using your site address.")
let baseString = NSLocalizedString("Enter the address of the WordPress site you'd like to connect.", comment: "Label for button to log in using your site address.")

let attrStrNormal = selfHostedButtonString(baseString, linkColor: style.textButtonColor)
let attrStrHighlight = selfHostedButtonString(baseString, linkColor: style.textButtonHighlightColor)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LoginSiteAddressViewController: LoginViewController, NUXKeyboardResponder
// MARK: - URL Validation

private lazy var urlErrorDebouncer = Debouncer(delay: 2) { [weak self] in
let errorMessage = NSLocalizedString("Enter a valid URL eg. example.com.", comment: "Error message shown when a URL is invalid.")
let errorMessage = NSLocalizedString("Please enter a complete website address, like example.com.", comment: "Error message shown when a URL is invalid.")

self?.displayError(message: errorMessage)
}
Expand Down