Edit error message — replace & with and.

This commit is contained in:
Brent Simmons
2024-10-27 22:13:57 -07:00
parent 1321a87254
commit cf844e5f73

View File

@@ -67,7 +67,7 @@ final class AccountsFeedbinWindowController: NSWindowController {
self.errorMessageLabel.stringValue = ""
guard !usernameTextField.stringValue.isEmpty && !passwordTextField.stringValue.isEmpty else {
self.errorMessageLabel.stringValue = NSLocalizedString("Username & password required.", comment: "Credentials Error")
self.errorMessageLabel.stringValue = NSLocalizedString("Username and password are required.", comment: "Credentials Error")
return
}