diff --git a/client/me/security-2fa-disable/index.jsx b/client/me/security-2fa-disable/index.jsx index 005f51cec793..1adcd3d9d261 100644 --- a/client/me/security-2fa-disable/index.jsx +++ b/client/me/security-2fa-disable/index.jsx @@ -1,3 +1,4 @@ +import { Card } from '@automattic/components'; import { localizeUrl } from '@automattic/i18n-utils'; import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; @@ -52,34 +53,36 @@ class Security2faDisable extends Component { const { userSettings, translate } = this.props; if ( userSettings.two_step_sms_enabled ) { return ( -
- { translate( - "You've enabled two-step authentication. " + - 'While enabled, logging in to WordPress.com ' + - 'requires you to enter a unique passcode, sent via text message, ' + - 'in addition to your username and password.' - ) } -
++ { translate( + "You've enabled two-step authentication. " + + 'While enabled, logging in to WordPress.com ' + + 'requires you to enter a unique passcode, sent via text message, ' + + 'in addition to your username and password.' + ) } +
-- { translate( - "You're all set to receive authentication codes at " + - '{{strong}}%(smsNumber)s{{/strong}}. ' + - 'Want to switch to a different number? No problem! ' + - "You'll need to disable two-step authentication, " + - 'then complete the setup process again on another device.', - { - components: { - strong: , - }, - args: { - smsNumber: userSettings.two_step_sms_phone_number, - }, - } - ) } -
-+ { translate( + "You're all set to receive authentication codes at " + + '{{strong}}%(smsNumber)s{{/strong}}. ' + + 'Want to switch to a different number? No problem! ' + + "You'll need to disable two-step authentication, " + + 'then complete the setup process again on another device.', + { + components: { + strong: , + }, + args: { + smsNumber: userSettings.two_step_sms_phone_number, + }, + } + ) } +
+- { this.props.translate( - 'Two-Step Authentication adds an extra layer ' + - 'of security to your account. Once enabled, logging in to ' + - 'WordPress.com will require you to enter a unique passcode ' + - 'generated by an app on your mobile device or sent via text ' + - 'message, in addition to your username and password.' - ) } -
- -