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

[ML] Changes transforms wizard UI text #64150

Merged
merged 7 commits into from
Apr 24, 2020
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -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 @@ -15697,7 +15697,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 @@ -15701,7 +15701,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