Skip to content

Commit

Permalink
internationalize link text
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarezmelissa87 committed Jan 8, 2020
1 parent 793a7eb commit c34a7e4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,12 @@ export const EvaluatePanel: FC<Props> = ({ jobConfig, jobStatus, searchQuery })
color="primary"
href={`https://www.elastic.co/guide/en/machine-learning/${metadata.branch}/ml-dfanalytics-evaluate.html#ml-dfanalytics-classification`}
>
Classification evaluation docs
{i18n.translate(
'xpack.ml.dataframe.analytics.classificationExploration.classificationDocsLink',
{
defaultMessage: 'Classification evaluation docs ',
}
)}
</EuiButtonEmpty>
</EuiFlexItem>
</EuiFlexGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,12 @@ export const EvaluatePanel: FC<Props> = ({ jobConfig, jobStatus, searchQuery })
color="primary"
href={`https://www.elastic.co/guide/en/machine-learning/${metadata.branch}/ml-dfanalytics-evaluate.html#ml-dfanalytics-regression-evaluation`}
>
Regression evaluation docs
{i18n.translate(
'xpack.ml.dataframe.analytics.classificationExploration.regressionDocsLink',
{
defaultMessage: 'Regression evaluation docs ',
}
)}
</EuiButtonEmpty>
</EuiFlexItem>
</EuiFlexGroup>
Expand Down

0 comments on commit c34a7e4

Please sign in to comment.