Skip to content

Commit

Permalink
more copy updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Jun 29, 2020
1 parent 856c39a commit ae5863b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,15 +368,15 @@ export const RestoreSnapshotStepLogistics: React.FunctionComponent<StepProps> =
<h3>
<FormattedMessage
id="xpack.snapshotRestore.restoreForm.stepLogistics.renameIndicesTitle"
defaultMessage="Rename indices"
defaultMessage="Rename indices and data streams"
/>
</h3>
</EuiTitle>
}
description={
<FormattedMessage
id="xpack.snapshotRestore.restoreForm.stepLogistics.renameIndicesDescription"
defaultMessage="Renames indices on restore."
defaultMessage="Renames indices and data streams on restore."
/>
}
fullWidth
Expand All @@ -387,7 +387,7 @@ export const RestoreSnapshotStepLogistics: React.FunctionComponent<StepProps> =
label={
<FormattedMessage
id="xpack.snapshotRestore.restoreForm.stepLogistics.renameIndicesLabel"
defaultMessage="Rename indices"
defaultMessage="Rename indices and data streams"
/>
}
checked={isRenamingIndices}
Expand Down Expand Up @@ -430,7 +430,7 @@ export const RestoreSnapshotStepLogistics: React.FunctionComponent<StepProps> =
>
<EuiFieldText
value={renamePattern}
placeholder="index_(.+)"
placeholder="data_(.+)"
onChange={(e) => {
setCachedRestoreSettings({
...cachedRestoreSettings,
Expand All @@ -456,7 +456,7 @@ export const RestoreSnapshotStepLogistics: React.FunctionComponent<StepProps> =
>
<EuiFieldText
value={renameReplacement}
placeholder="restored_index_$1"
placeholder="restored_data_$1"
onChange={(e) => {
setCachedRestoreSettings({
...cachedRestoreSettings,
Expand Down

0 comments on commit ae5863b

Please sign in to comment.