Skip to content

Commit

Permalink
snapshot update
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsongl committed Nov 12, 2019
1 parent 321de36 commit 5717491
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import { getConfigTelemetryDesc, PRIVACY_STATEMENT_URL } from '../../common/cons
import { OptInExampleFlyout } from './opt_in_details_component';
import { Field } from 'ui/management';
import { FormattedMessage } from '@kbn/i18n/react';
import { i18n } from '@kbn/i18n';

const SEARCH_TERMS = ['telemetry', 'usage', 'data', 'usage data'];

Expand Down Expand Up @@ -113,7 +114,7 @@ export class TelemetryForm extends Component {
value: telemetryOptInProvider.getOptIn() || false,
description: this.renderDescription(),
defVal: false,
ariaName: 'Provide usage statistics'
ariaName: i18n.translate('telemetry.provideUsageStatisticsLabel', { defaultMessage: 'Provide usage statistics' })
}}
save={this.toggleOptIn}
clear={this.toggleOptIn}
Expand Down

0 comments on commit 5717491

Please sign in to comment.