Skip to content

Commit

Permalink
GA: Update inactive description to match calypso (#6291)
Browse files Browse the repository at this point in the history
  • Loading branch information
dereksmart authored Feb 6, 2017
1 parent 158cd71 commit 160782b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions _inc/client/components/module-settings/modules-per-tab-page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import {
WordAdsSettings
} from 'components/module-settings/';
import ExternalLink from 'components/external-link';

import {
getSiteAdminUrl,
getSiteRawUrl
Expand Down Expand Up @@ -132,7 +131,16 @@ const AllModuleSettingsComponent = React.createClass( {
if ( 'inactive' === module.configure_url ) {
return (
<div>
{ __( 'Activate this module to use Google Analytics.' ) }
{ __(
'Google Analytics is a free service that complements our {{a}}built-in stats{{/a}} with different insights into your traffic.' +
' WordPress.com stats and Google Analytics use different methods to identify and track activity on your site, so they will ' +
'normally show slightly different totals for your visits, views, etc.',
{
components: {
a: <a href={ 'https://wordpress.com/stats/day/' + this.props.siteRawUrl } />
}
}
) }
</div>
);
} else {
Expand Down

0 comments on commit 160782b

Please sign in to comment.