mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* i18n: Translations under features/correlations * more changes * add links * add changes * changes * changes
25 lines
635 B
TypeScript
25 lines
635 B
TypeScript
import React from 'react';
|
|
|
|
import { Page } from 'app/core/components/Page/Page';
|
|
import { Trans } from 'app/core/internationalization';
|
|
|
|
export default function FeatureTogglePage() {
|
|
return (
|
|
<Page navId="correlations">
|
|
<Page.Contents>
|
|
<h1>
|
|
<Trans i18nKey="correlations.page-heading">Correlations are disabled</Trans>
|
|
</h1>
|
|
<Trans i18nKey="correlations.page-content">To enable Correlations, add it in the Grafana config:</Trans>
|
|
<div>
|
|
<pre>
|
|
{`[feature_toggles]
|
|
correlations = true
|
|
`}
|
|
</pre>
|
|
</div>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|