Files
Hugo Häggmark 119d5897ea i18n: imports use @grafana/i18n (#105177)
* i18n: everything should target @grafana/i18n

* wip

* chore: updates after PR feedback

* Trigger build

* Trigger build

* Trigger build

* chore: skip flaky tests

* chore: skip flaky tests

* chore: skip flaky tests

* chore: skip flaky tests

* chore: skip flaky tests

* chore: skip flaky tests

* chore: revert all flaky tests

* chore: some incorrect usages of useTranslate
2025-05-15 09:17:14 +02:00

27 lines
1.0 KiB
TypeScript

import { Trans } from '@grafana/i18n';
import { reportInteraction } from '@grafana/runtime';
import { Space, TextLink } from '@grafana/ui';
export const RoadmapLinks = () => {
return (
<div>
<Space v={2} />
<TextLink
href="https://github.com/grafana/grafana/issues/new?assignees=&labels=area%2Fdatasource%2Ctype%2Fnew-plugin-request&projects=&template=3-data_source_request.yaml&title=%5BNew+Data+Source%5D%3A+%3Cname-of-service%3E"
onClick={() => reportInteraction('connections_data_source_request_clicked')}
external
>
<Trans i18nKey="connections.connect-data.request-data-source">Request a new data source</Trans>
</TextLink>
<br />
<TextLink
href="https://github.com/orgs/grafana/projects/619/views/1?pane=info"
onClick={() => reportInteraction('connections_data_source_roadmap_clicked')}
external
>
<Trans i18nKey="connections.connect-data.roadmap">View roadmap</Trans>
</TextLink>
</div>
);
};