Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"Trace": "Trace",
"Tracing": "Tracing",
"Limit traces": "Limit traces",
"No datapoints found.": "No datapoints found.",
"Hide graph": "Hide graph",
"Show graph": "Show graph",
"Filter": "Filter",
Expand All @@ -47,7 +46,7 @@
"To get started, install the Tempo operator and create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.": "To get started, install the Tempo operator and create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.",
"Install Tempo operator": "Install Tempo operator",
"No Tempo instances yet": "No Tempo instances yet",
"To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.": "To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.",
"To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.<1></1>Instances without multi-tenancy are not supported.": "To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.<1></1>Instances without multi-tenancy are not supported.",
"Create a Tempo instance": "Create a Tempo instance",
"Create a TempoStack instance": "Create a TempoStack instance",
"Create a TempoMonolithic instance": "Create a TempoMonolithic instance",
Expand Down
11 changes: 7 additions & 4 deletions web/src/pages/TracesPage/TracesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
Title,
} from '@patternfly/react-core';
import { PlusCircleIcon, WrenchIcon, ExternalLinkAltIcon } from '@patternfly/react-icons';
import { useTranslation } from 'react-i18next';
import { useTranslation, Trans } from 'react-i18next';
import { ErrorAlert } from '../../components/ErrorAlert';
import { Helmet } from 'react-helmet';
import { Link } from 'react-router-dom-v5-compat';
Expand Down Expand Up @@ -125,9 +125,12 @@ function NoTempoInstance() {
<PageSection>
<EmptyState titleText={t('No Tempo instances yet')} headingLevel="h4" icon={PlusCircleIcon}>
<EmptyStateBody>
{t(
'To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.',
)}
<Trans t={t}>
To get started, create a TempoStack or TempoMonolithic instance with multi-tenancy
enabled.
<br />
Instances without multi-tenancy are not supported.
</Trans>
</EmptyStateBody>
<EmptyStateFooter>
<EmptyStateActions>
Expand Down