Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,9 @@ const OtpAuth = ({
<Text fontSize="md" maxWidth="300px" textAlign="center">
{isGuestRegistration ? (
<FormattedMessage
defaultMessage="We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the 6-digit code below."
defaultMessage="We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the {otpLength}-digit code below."
id="otp.message.enter_code_for_account_guest"
values={{otpLength: OTP_LENGTH}}
/>
) : (
<FormattedMessage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3014,7 +3014,15 @@
"otp.message.enter_code_for_account_guest": [
{
"type": 0,
"value": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the 6-digit code below."
"value": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the "
},
{
"type": 1,
"value": "otpLength"
},
{
"type": 0,
"value": "-digit code below."
}
],
"otp.message.enter_code_for_account_returning": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3014,7 +3014,15 @@
"otp.message.enter_code_for_account_guest": [
{
"type": 0,
"value": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the 6-digit code below."
"value": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the "
},
{
"type": 1,
"value": "otpLength"
},
{
"type": 0,
"value": "-digit code below."
}
],
"otp.message.enter_code_for_account_returning": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6354,7 +6354,15 @@
},
{
"type": 0,
"value": "Ẇḗḗ şḗḗƞŧ ȧȧ ǿǿƞḗḗ-ŧīḿḗḗ ƥȧȧşşẇǿǿřḓ (ǾŦƤ) ŧǿǿ ẏǿǿŭŭř ḗḗḿȧȧīŀ. Ŧǿǿ ƈřḗḗȧȧŧḗḗ ẏǿǿŭŭř ȧȧƈƈǿǿŭŭƞŧ ȧȧƞḓ ƥřǿǿƈḗḗḗḗḓ ŧǿǿ ƈħḗḗƈķǿǿŭŭŧ, ḗḗƞŧḗḗř ŧħḗḗ 6-ḓīɠīŧ ƈǿǿḓḗḗ ƀḗḗŀǿǿẇ."
"value": "Ẇḗḗ şḗḗƞŧ ȧȧ ǿǿƞḗḗ-ŧīḿḗḗ ƥȧȧşşẇǿǿřḓ (ǾŦƤ) ŧǿǿ ẏǿǿŭŭř ḗḗḿȧȧīŀ. Ŧǿǿ ƈřḗḗȧȧŧḗḗ ẏǿǿŭŭř ȧȧƈƈǿǿŭŭƞŧ ȧȧƞḓ ƥřǿǿƈḗḗḗḗḓ ŧǿǿ ƈħḗḗƈķǿǿŭŭŧ, ḗḗƞŧḗḗř ŧħḗḗ "
},
{
"type": 1,
"value": "otpLength"
},
{
"type": 0,
"value": "-ḓīɠīŧ ƈǿǿḓḗḗ ƀḗḗŀǿǿẇ."
},
{
"type": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@
"defaultMessage": "The code is invalid or expired. Click Resend Code and try again."
},
"otp.message.enter_code_for_account_guest": {
"defaultMessage": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the 6-digit code below."
"defaultMessage": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the {otpLength}-digit code below."
},
"otp.message.enter_code_for_account_returning": {
"defaultMessage": "To log in to your account, enter the code sent to your email."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@
"defaultMessage": "The code is invalid or expired. Click Resend Code and try again."
},
"otp.message.enter_code_for_account_guest": {
"defaultMessage": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the 6-digit code below."
"defaultMessage": "We sent a one-time password (OTP) to your email. To create your account and proceed to checkout, enter the {otpLength}-digit code below."
},
"otp.message.enter_code_for_account_returning": {
"defaultMessage": "To log in to your account, enter the code sent to your email."
Expand Down
Loading