diff --git a/client/mailing-lists/main.jsx b/client/mailing-lists/main.jsx index 311da2be382d1..46cd7600ceb07 100644 --- a/client/mailing-lists/main.jsx +++ b/client/mailing-lists/main.jsx @@ -99,6 +99,8 @@ const MainComponent = React.createClass( { return this.translate( 'Research' ); } else if ( 'community' === this.props.category ) { return this.translate( 'Community' ); + } else if ( 'digest' === this.props.category ) { + return this.translate( 'Digests' ); } return this.props.category; @@ -111,6 +113,8 @@ const MainComponent = React.createClass( { return this.translate( 'Opportunities to participate in WordPress.com research & surveys.' ); } else if ( 'community' === this.props.category ) { return this.translate( 'Information on WordPress.com courses and events (online & in-person).' ); + } else if ( 'digest' === this.props.category ) { + return this.translate( 'Reading & writing digests, tailored for you.' ); } return null;