Skip to content

Commit 069fde3

Browse files
Merge pull request #7602 from woocommerce/hotfix/7601-remove-apple-id-text
Add clarity to Apple ID login instructions
2 parents 2b22ece + 494751b commit 069fde3

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

WooCommerce/Classes/Authentication/AuthenticationConstants.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ struct AuthenticationConstants {
4444
comment: "Sign in instructions for logging in with a username and password."
4545
)
4646

47+
/// Sign in using Apple screen's instructions.
48+
///
49+
static let applePasswordInstructions = NSLocalizedString(
50+
"To proceed with this account, please first log in with your WordPress.com password. This will only be asked once.",
51+
comment: "Sign in instructions asking user to enter WordPress.com password to proceed with sign in using Apple process"
52+
)
53+
4754
/// Title of "Continue With WordPress.com" button in Login Prologue
4855
//
4956
static let continueWithWPButtonTitle = NSLocalizedString(

WooCommerce/Classes/Authentication/AuthenticationManager.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ class AuthenticationManager: Authentication {
104104
siteLoginInstructions: AuthenticationConstants.siteInstructions,
105105
siteCredentialInstructions: AuthenticationConstants.siteCredentialInstructions,
106106
usernamePasswordInstructions: AuthenticationConstants.usernamePasswordInstructions,
107+
applePasswordInstructions: AuthenticationConstants.applePasswordInstructions,
107108
continueWithWPButtonTitle: AuthenticationConstants.continueWithWPButtonTitle,
108109
enterYourSiteAddressButtonTitle: AuthenticationConstants.enterYourSiteAddressButtonTitle,
109110
signInWithSiteCredentialsButtonTitle: AuthenticationConstants.signInWithSiteCredsButtonTitle,

0 commit comments

Comments
 (0)