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.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "WordPressAuthenticator"
s.version = "1.11.0-beta.9"
s.version = "1.11.0-beta.10"
s.summary = "WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps."

s.description = <<-DESC
Expand Down
10 changes: 2 additions & 8 deletions WordPressAuthenticator/NUX/NUXLinkMailViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,8 @@ class NUXLinkMailViewController: LoginViewController {

usePasswordButton?.isHidden = emailMagicLinkSource == .signup

label?.text = {
switch emailMagicLinkSource {
case .login:
return NSLocalizedString("Your magic link is on its way! Check your email on this device, and tap the link in the email you receive from WordPress.com", comment: "Instructional text on how to open the email containing a magic link.")
case .signup:
return NSLocalizedString("We sent you a magic signup link! Check your email on this device, and tap the link in the email to finish signing up.", comment: "Instructional text on how to open the email containing a magic link.")
}
}()
label?.text = NSLocalizedString("Check your email on this device, and tap the link in the email you received from WordPress.com.\n\nNot seeing the email? Check your Spam or Junk Mail folder.", comment: "Instructional text on how to open the email containing a magic link.")

label?.textColor = WordPressAuthenticator.shared.style.instructionColor
}

Expand Down