Improved messaging around analytics

This commit is contained in:
liamcardenas 2018-03-07 20:21:33 -08:00
parent a8ce782894
commit 5d896124f4
3 changed files with 10 additions and 3 deletions

View file

@ -30,7 +30,14 @@ class ModalEmailCollection extends React.PureComponent {
<Modal type="custom" isOpen contentLabel="Email">
<section>
<h3 className="modal__header">Can We Stay In Touch?</h3>
{this.renderInner()}
<div className="card__content">{this.renderInner()}</div>
<div className="card__content">
<div className="help">
{`${__(
'Your email may be used to sync usage data across devices.'
)} `}
</div>
</div>
</section>
</Modal>
);

View file

@ -68,7 +68,7 @@ export class AuthPage extends React.PureComponent {
<div className="card__content">
<div className="help">
{`${__(
'This information is disclosed only to LBRY, Inc. and not to the LBRY network. It is only required to earn LBRY rewards.'
'This information is disclosed only to LBRY, Inc. and not to the LBRY network. It is only required to earn LBRY rewards and may be used to sync usage data across devices.'
)} `}
<Link onClick={() => navigate('/discover')} label={__('Return home')} />.
</div>

View file

@ -308,7 +308,7 @@ class SettingsPage extends React.PureComponent {
type="checkbox"
onChange={this.onShareDataChange.bind(this)}
defaultChecked={daemonSettings.share_usage_data}
label={__('Help make LBRY better by contributing diagnostic data about my usage')}
label={__('Help make LBRY better by contributing analytics and diagnostic data and about my usage')}
/>
</div>
</section>