Skip to content

Commit

Permalink
[ML] Changes transforms wizard UI text (#64150)
Browse files Browse the repository at this point in the history
Co-Authored-By: Walter Rafelsberger <walter@rafelsberger.at>
  • Loading branch information
szabosteve and walterra committed Apr 24, 2020
1 parent 59a9463 commit 222fba5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ export const StepDetailsForm: FC<Props> = React.memo(
]}
>
<EuiFieldText
placeholder="transform ID"
value={transformId}
onChange={e => setTransformId(e.target.value)}
aria-label={i18n.translate(
Expand All @@ -257,15 +256,12 @@ export const StepDetailsForm: FC<Props> = React.memo(
label={i18n.translate('xpack.transform.stepDetailsForm.transformDescriptionLabel', {
defaultMessage: 'Transform description',
})}
helpText={i18n.translate(
'xpack.transform.stepDetailsForm.transformDescriptionHelpText',
{
defaultMessage: 'Optional descriptive text.',
}
)}
>
<EuiFieldText
placeholder="transform description"
placeholder={i18n.translate(
'xpack.transform.stepDetailsForm.transformDescriptionPlaceholderText',
{ defaultMessage: 'Description (optional)' }
)}
value={transformDescription}
onChange={e => setTransformDescription(e.target.value)}
aria-label={i18n.translate(
Expand Down Expand Up @@ -310,7 +306,6 @@ export const StepDetailsForm: FC<Props> = React.memo(
}
>
<EuiFieldText
placeholder="destination index"
value={destinationIndex}
onChange={e => setDestinationIndex(e.target.value)}
aria-label={i18n.translate(
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -15668,7 +15668,6 @@
"xpack.transform.stepDetailsForm.errorGettingIndexPatternTitles": "既存のインデックスパターンのタイトルの取得中にエラーが発生しました:",
"xpack.transform.stepDetailsForm.errorGettingTransformList": "既存の変換 ID の取得中にエラーが発生しました:",
"xpack.transform.stepDetailsForm.indexPatternTitleError": "このタイトルのインデックスパターンが既に存在します。",
"xpack.transform.stepDetailsForm.transformDescriptionHelpText": "オプションの説明テキストです。",
"xpack.transform.stepDetailsForm.transformDescriptionInputAriaLabel": "オプションの変換の説明を選択してください。",
"xpack.transform.stepDetailsForm.transformDescriptionLabel": "変換の説明",
"xpack.transform.stepDetailsForm.transformIdExistsError": "この ID の変換が既に存在します。",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -15672,7 +15672,6 @@
"xpack.transform.stepDetailsForm.errorGettingIndexPatternTitles": "获取现有索引模式标题时发生错误:",
"xpack.transform.stepDetailsForm.errorGettingTransformList": "获取现有转换 ID 时发生错误:",
"xpack.transform.stepDetailsForm.indexPatternTitleError": "具有此名称的索引模式已存在。",
"xpack.transform.stepDetailsForm.transformDescriptionHelpText": "(可选)描述性文本。",
"xpack.transform.stepDetailsForm.transformDescriptionInputAriaLabel": "选择可选的转换描述。",
"xpack.transform.stepDetailsForm.transformDescriptionLabel": "转换描述",
"xpack.transform.stepDetailsForm.transformIdExistsError": "已存在具有此 ID 的转换。",
Expand Down

0 comments on commit 222fba5

Please sign in to comment.