Display number of subscribers in plan on list page

[MAILPOET-2832]
This commit is contained in:
Pavel Dohnal
2020-04-23 11:33:34 +02:00
committed by Veljko V
parent 2659f53cab
commit 4902ab508f
2 changed files with 16 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import MailPoet from 'mailpoet';
import classNames from 'classnames'; import classNames from 'classnames';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import HelpTooltip from 'help-tooltip.jsx';
import Listing from 'listing/listing.jsx'; import Listing from 'listing/listing.jsx';
import SubscribersLimitNotice from 'notices/subscribers_limit_notice.jsx'; import SubscribersLimitNotice from 'notices/subscribers_limit_notice.jsx';
import InvalidMssKeyNotice from '../notices/invalid_mss_key_notice'; import InvalidMssKeyNotice from '../notices/invalid_mss_key_notice';
@@ -308,6 +309,18 @@ class SegmentList extends React.Component {
subscribersCount={window.mailpoet_subscribers_count} subscribersCount={window.mailpoet_subscribers_count}
/> />
{window.mailpoet_subscribers_limit && (
<h3>
{MailPoet.I18n.t('subscribersInPlan')
.replace('%$1d', window.mailpoet_subscribers_limit.toLocaleString())}
{' '}
<HelpTooltip
tooltip={MailPoet.I18n.t('subscribersInPlanTooltip')}
place="right"
/>
</h3>
)}
<Tabs /> <Tabs />
<Listing <Listing

View File

@@ -98,6 +98,9 @@
'segmentDescriptionTip': __('This text box is for your own use and is never shown to your subscribers.'), 'segmentDescriptionTip': __('This text box is for your own use and is never shown to your subscribers.'),
'backToList': __('Back'), 'backToList': __('Back'),
'subscribersInPlan': __('%$1d subscribers in your plan'),
'subscribersInPlanTooltip': __('This is the total of subscribed, unconfirmed and inactive subscribers. The count excludes unsubscribed and bounced (invalid) email addresses.'),
'pageTitleSegments': __('Segments'), 'pageTitleSegments': __('Segments'),
'formPageTitle': __('Segment'), 'formPageTitle': __('Segment'),
'formSegmentTitle': __('Segment'), 'formSegmentTitle': __('Segment'),