Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ingest Pipelines] Update copy in Manage processors #196923

Merged
merged 3 commits into from
Oct 22, 2024
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 @@ -137,7 +137,7 @@ export const AddDatabaseModal = ({
helpText={
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.addDatabaseForm.databaseTypeSelectHelpText"
defaultMessage="Select which provider you want to use"
defaultMessage="Select the provider you want to use."
/>
}
>
Expand All @@ -156,15 +156,15 @@ export const AddDatabaseModal = ({
title={
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.licenseCalloutTitle"
defaultMessage="Add your MaxMind license key to keystore"
defaultMessage="Add your MaxMind license token to the keystore"
/>
}
iconType="iInCircle"
>
<p>
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.licenseCalloutText"
defaultMessage="In order to grant access to your MaxMind account, you must add the license key to the keystore."
defaultMessage="The processor needs the license key to connect to the database."
/>
</p>
</EuiCallOut>
Expand All @@ -178,15 +178,15 @@ export const AddDatabaseModal = ({
title={
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.licenseCalloutTitle"
defaultMessage="Add your IP Info license token to keystore"
defaultMessage="Add your IP Info license token to the keystore"
/>
}
iconType="iInCircle"
>
<p>
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.licenseCalloutText"
defaultMessage="In order to grant access to your IP Info account, you must add the license token to the keystore."
defaultMessage="The processor needs the license key to connect to the database."
/>
</p>
</EuiCallOut>
Expand Down Expand Up @@ -246,7 +246,7 @@ export const AddDatabaseModal = ({
<p>
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.nameExistsErrorText"
defaultMessage="Database cannot be added multiple times."
defaultMessage="A database needs to be added only once in order to be available."
/>
</p>
</EuiCallOut>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import { EuiPageTemplate } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n-react';
import React from 'react';
import { css } from '@emotion/react/dist/emotion-react.cjs';

export const EmptyList = ({ addDatabaseButton }: { addDatabaseButton: JSX.Element }) => {
return (
Expand All @@ -26,11 +27,15 @@ export const EmptyList = ({ addDatabaseButton }: { addDatabaseButton: JSX.Elemen
<p>
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.emptyPromptDescription"
defaultMessage="Use a custom database when setting up IP Location processor."
defaultMessage="Set up a connection to a custom database when setting up IP Location processor."
/>
</p>
}
actions={addDatabaseButton}
css={css`
width: 450px;
padding: 0 20px 0 20px;
`}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const GeoipList: React.FunctionComponent = () => {
<h2>
<FormattedMessage
id="xpack.ingestPipelines.manageProcessors.geoip.tableTitle"
defaultMessage="GeoIP"
defaultMessage="IP Location"
/>
</h2>
</EuiTitle>
Expand Down