Skip to content

Commit

Permalink
fixing translation ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed May 7, 2020
1 parent 96004a4 commit 62e3acf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions x-pack/plugins/ml/server/models/job_validation/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,22 +435,22 @@ export const getMessages = () => {
},
mml_greater_than_effective_max_mml: {
status: 'WARNING',
text: i18n.translate('xpack.ml.models.jobValidation.messages.mmlGreaterThanMaxMmlMessage', {
defaultMessage:
'Job will not be able to run in the current cluster because model memory limit is higher than {effectiveMaxModelMemoryLimit}.',
values: { effectiveMaxModelMemoryLimit: '{{effectiveMaxModelMemoryLimit}}' },
}),
},
mml_greater_than_max_mml: {
status: 'ERROR',
text: i18n.translate(
'xpack.ml.models.jobValidation.messages.mmlGreaterThanEffectiveMaxMmlMessage',
{
defaultMessage:
'The model memory limit is greater than the max model memory limit configured for this cluster.',
'Job will not be able to run in the current cluster because model memory limit is higher than {effectiveMaxModelMemoryLimit}.',
values: { effectiveMaxModelMemoryLimit: '{{effectiveMaxModelMemoryLimit}}' },
}
),
},
mml_greater_than_max_mml: {
status: 'ERROR',
text: i18n.translate('xpack.ml.models.jobValidation.messages.mmlGreaterThanMaxMmlMessage', {
defaultMessage:
'The model memory limit is greater than the max model memory limit configured for this cluster.',
}),
},
mml_value_invalid: {
status: 'ERROR',
text: i18n.translate('xpack.ml.models.jobValidation.messages.mmlValueInvalidMessage', {
Expand Down

0 comments on commit 62e3acf

Please sign in to comment.