From 096e8f79630a948464ec4f9c23d37fbb5f7c93f0 Mon Sep 17 00:00:00 2001 From: Sam Najian Date: Thu, 16 Feb 2023 12:49:15 +0100 Subject: [PATCH] Fix regression for newly added translation [MAILPOET-4908] --- .../send/congratulate/success_pitch_mss.tsx | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/mailpoet/assets/js/src/newsletters/send/congratulate/success_pitch_mss.tsx b/mailpoet/assets/js/src/newsletters/send/congratulate/success_pitch_mss.tsx index 993f9a52cb..27144be59f 100644 --- a/mailpoet/assets/js/src/newsletters/send/congratulate/success_pitch_mss.tsx +++ b/mailpoet/assets/js/src/newsletters/send/congratulate/success_pitch_mss.tsx @@ -8,10 +8,30 @@ import { Button, Heading, List } from 'common'; function FreeBenefitsList(): JSX.Element { return ( -
  • {MailPoet.I18n.t('congratulationsMSSPitchList1')}
  • -
  • {MailPoet.I18n.t('congratulationsMSSPitchList2')}
  • -
  • {MailPoet.I18n.t('congratulationsMSSPitchList3')}
  • -
  • {MailPoet.I18n.t('congratulationsMSSPitchList4')}
  • +
  • + {__( + 'Reliable marketing and transactional email delivery. Reach inboxes, not spam boxes', + 'mailpoet', + )} +
  • +
  • + {__( + 'Send your emails super fast (up to 50,000 emails per hour)', + 'mailpoet', + )} +
  • +
  • + {__( + 'Maintain your sender reputation and improve engagement levels with automated bounce and complaint handling. Stop sending to non-deliverable and complaining addresses, automatically', + 'mailpoet', + )} +
  • +
  • + {__( + 'Authenticate your emails (with SPF and DKIM) to improve deliverability and avoid spam boxes', + 'mailpoet', + )} +
  • ); }