fix(identity): Modify language around subscribing

This commit is contained in:
Jackie Luo 2016-07-26 15:46:29 -07:00
parent 665f2c8dd1
commit 950126e6c8
2 changed files with 4 additions and 4 deletions

View file

@ -118,9 +118,9 @@ export default class AccountErrorHeader extends React.Component {
<div className="message">
{
(this.state.subscriptionState === IdentityStore.State.Lapsed) ? (
"Your subscription has expired and we've paused your mailboxes. Re-new your subscription to continue using N1!"
"Your subscription has expired, and we've paused your mailboxes. Renew your subscription to continue using N1!"
) : (
"Your 30-day trial has expired and we've paused your mailboxes. Upgrade today to continue using N1!"
"Your 30-day trial has expired, and we've paused your mailboxes. Subscribe to continue using N1!"
)
}
</div>
@ -165,7 +165,7 @@ export default class AccountErrorHeader extends React.Component {
default:
return this._renderErrorHeader(
`Nylas encountered an error while syncing mail for ${account.emailAddress} - we're
`Nylas encountered an error while syncing mail for ${account.emailAddress}we're
looking into it. Contact Nylas support for details.`,
"Contact support",
() => this._contactSupport());

View file

@ -96,7 +96,7 @@ class PreferencesIdentity extends React.Component {
if (daysUntilSubscriptionRequired > 1) {
msg = `There are ${daysUntilSubscriptionRequired} days remaining in your 30-day trial of Nylas Pro.`;
} else if (daysUntilSubscriptionRequired === 1) {
msg = `There is one day remaining in your trial of Nylas Pro. Upgrade today!`;
msg = `There is one day remaining in your trial of Nylas Pro. Subscribe today!`;
}
return (
<div className="row payment-row">