Skip to content

Commit

Permalink
update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonelizabeth committed Jul 7, 2020
1 parent 533cf63 commit 97c4234
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const ComponentTemplateList: React.FunctionComponent<Props> = ({
learnMoreLink: (
<EuiLink href={documentation.componentTemplates} target="_blank" external>
{i18n.translate('xpack.idxMgmt.componentTemplates.list.learnMoreLinkText', {
defaultMessage: 'Learn more',
defaultMessage: 'Learn more.',
})}
</EuiLink>
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ export const EmptyPrompt: FunctionComponent<Props> = ({ history }) => {
<p>
<FormattedMessage
id="xpack.idxMgmt.home.componentTemplates.emptyPromptDescription"
defaultMessage="For example, you might create a component template that defines index settings that can be reused across index templates."
defaultMessage="For example, you can create a component template for index settings that can be reused across index templates."
/>
<br />
<EuiLink href={documentation.componentTemplates} target="_blank" external>
{i18n.translate('xpack.idxMgmt.home.componentTemplates.emptyPromptDocumentionLink', {
defaultMessage: 'Learn more',
defaultMessage: 'Learn more.',
})}
</EuiLink>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const ComponentTable: FunctionComponent<Props> = ({
{
field: 'usedBy',
name: i18n.translate('xpack.idxMgmt.componentTemplatesList.table.isInUseColumnTitle', {
defaultMessage: 'Index templates',
defaultMessage: 'Usage count',
}),
sortable: true,
render: (usedBy: string[]) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const StepLogistics: React.FunctionComponent<Props> = React.memo(
description={
<FormattedMessage
id="xpack.idxMgmt.componentTemplateForm.stepLogistics.nameDescription"
defaultMessage="A unique identifier for this component template."
defaultMessage="Unique name for this component template."
/>
}
>
Expand All @@ -141,7 +141,7 @@ export const StepLogistics: React.FunctionComponent<Props> = React.memo(
description={
<FormattedMessage
id="xpack.idxMgmt.componentTemplateForm.stepLogistics.versionDescription"
defaultMessage="A number that identifies the component template to external management systems."
defaultMessage="Number used by external management systems to identify the component template."
/>
}
>
Expand All @@ -165,7 +165,7 @@ export const StepLogistics: React.FunctionComponent<Props> = React.memo(
<>
<FormattedMessage
id="xpack.idxMgmt.componentTemplateForm.stepLogistics.metaDescription"
defaultMessage="Arbitrary metadata that is stored in cluster state. {learnMoreLink}"
defaultMessage="Arbitrary information about the template, stored in the cluster state. {learnMoreLink}"
values={{
learnMoreLink: (
<EuiLink
Expand All @@ -176,7 +176,7 @@ export const StepLogistics: React.FunctionComponent<Props> = React.memo(
{i18n.translate(
'xpack.idxMgmt.componentTemplateForm.stepLogistics.metaDocumentionLink',
{
defaultMessage: 'Learn more',
defaultMessage: 'Learn more.',
}
)}
</EuiLink>
Expand Down

0 comments on commit 97c4234

Please sign in to comment.