mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-16 02:03:42 +08:00
fix(identity): Modify language around subscribing
This commit is contained in:
parent
665f2c8dd1
commit
950126e6c8
2 changed files with 4 additions and 4 deletions
|
@ -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());
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue