[ILM] Add missing time unit labels (#68205)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Alison Goryachev 2020-06-04 21:18:44 -04:00 committed by GitHub
parent cdb6b4dd33
commit 2abf9d5946
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -140,6 +140,41 @@ export const MinAgeInput = (props) => {
defaultMessage: 'hours from index creation',
}
);
minutesOptionLabel = i18n.translate(
'xpack.indexLifecycleMgmt.editPolicy.creationMinutesOptionLabel',
{
defaultMessage: 'minutes from index creation',
}
);
secondsOptionLabel = i18n.translate(
'xpack.indexLifecycleMgmt.editPolicy.creationSecondsOptionLabel',
{
defaultMessage: 'seconds from index creation',
}
);
millisecondsOptionLabel = i18n.translate(
'xpack.indexLifecycleMgmt.editPolicy.creationMilliSecondsOptionLabel',
{
defaultMessage: 'milliseconds from index creation',
}
);
microsecondsOptionLabel = i18n.translate(
'xpack.indexLifecycleMgmt.editPolicy.creationMicroSecondsOptionLabel',
{
defaultMessage: 'microseconds from index creation',
}
);
nanosecondsOptionLabel = i18n.translate(
'xpack.indexLifecycleMgmt.editPolicy.creationNanoSecondsOptionLabel',
{
defaultMessage: 'nanoseconds from index creation',
}
);
}
return (