Skip to content

Commit

Permalink
[ML] Review feedback: Translate progress tooltip.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed May 12, 2020
1 parent 3f21748 commit bad6c67
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,15 @@ export const progressColumn = {
</EuiText>
</EuiFlexItem>
<EuiFlexItem style={{ width: '40px' }} grow={false}>
<EuiToolTip content={`Progress of phase ${currentPhase}: ${progress}%`}>
<EuiToolTip
content={i18n.translate('xpack.ml.dataframe.analyticsList.progress', {
defaultMessage: 'Progress of phase {currentPhase}: {progress}%',
values: {
currentPhase,
progress,
},
})}
>
<EuiProgress
value={progress}
max={100}
Expand Down

0 comments on commit bad6c67

Please sign in to comment.