Skip to content

Commit

Permalink
Fix regression for newly added translation
Browse files Browse the repository at this point in the history
[MAILPOET-4908]
  • Loading branch information
samnajian committed Feb 16, 2023
1 parent ab8fa9b commit 5845d5c
Showing 1 changed file with 24 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,30 @@ import { Button, Heading, List } from 'common';
function FreeBenefitsList(): JSX.Element {
return (
<List>
<li>{MailPoet.I18n.t('congratulationsMSSPitchList1')}</li>
<li>{MailPoet.I18n.t('congratulationsMSSPitchList2')}</li>
<li>{MailPoet.I18n.t('congratulationsMSSPitchList3')}</li>
<li>{MailPoet.I18n.t('congratulationsMSSPitchList4')}</li>
<li>
{__(
'Reliable marketing and transactional email delivery. Reach inboxes, not spam boxes',
'mailpoet',
)}
</li>
<li>
{__(
'Send your emails super fast (up to 50,000 emails per hour)',
'mailpoet',
)}
</li>
<li>
{__(
'Maintain your sender reputation and improve engagement levels with automated bounce and complaint handling. Stop sending to non-deliverable and complaining addresses, automatically',
'mailpoet',
)}
</li>
<li>
{__(
'Authenticate your emails (with SPF and DKIM) to improve deliverability and avoid spam boxes',
'mailpoet',
)}
</li>
</List>
);
}
Expand Down

0 comments on commit 5845d5c

Please sign in to comment.