[ML] Fix earliest and latest texts for date fields (#87482)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Quynh Nguyen 2021-01-08 13:23:54 -06:00 committed by GitHub
parent e20817e57c
commit db022a3550
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 7 deletions

View file

@ -33,7 +33,10 @@ export const DateContent: FC<FieldDataCardProps> = ({ config }) => {
{
function: 'earliest',
display: (
<FormattedMessage id="xpack.ml.fieldDataCard.cardDate.minLabel" defaultMessage="min" />
<FormattedMessage
id="xpack.ml.fieldDataCard.cardDate.earliestLabel"
defaultMessage="earliest"
/>
),
value: formatDate(earliest, TIME_FORMAT),
},
@ -41,8 +44,8 @@ export const DateContent: FC<FieldDataCardProps> = ({ config }) => {
function: 'latest',
display: (
<FormattedMessage
id="xpack.ml.fieldDataCard.cardDate.medianLabel"
defaultMessage="median"
id="xpack.ml.fieldDataCard.cardDate.latestLabel"
defaultMessage="latest"
/>
),
value: formatDate(latest, TIME_FORMAT),

View file

@ -13141,8 +13141,6 @@
"xpack.ml.feature.reserved.description": "ユーザーアクセスを許可するには、machine_learning_user か machine_learning_admin ロールのどちらかを割り当てる必要があります。",
"xpack.ml.featureRegistry.mlFeatureName": "機械学習",
"xpack.ml.fieldDataCard.cardBoolean.valuesLabel": "値",
"xpack.ml.fieldDataCard.cardDate.medianLabel": "中間",
"xpack.ml.fieldDataCard.cardDate.minLabel": "分",
"xpack.ml.fieldDataCard.cardDate.summaryTableTitle": "まとめ",
"xpack.ml.fieldDataCard.cardIp.topValuesLabel": "トップの値",
"xpack.ml.fieldDataCard.cardKeyword.topValuesLabel": "トップの値",

View file

@ -13172,8 +13172,6 @@
"xpack.ml.feature.reserved.description": "要向用户授予访问权限,还应分配 machine_learning_user 或 machine_learning_admin 角色。",
"xpack.ml.featureRegistry.mlFeatureName": "Machine Learning",
"xpack.ml.fieldDataCard.cardBoolean.valuesLabel": "值",
"xpack.ml.fieldDataCard.cardDate.medianLabel": "中值",
"xpack.ml.fieldDataCard.cardDate.minLabel": "min",
"xpack.ml.fieldDataCard.cardDate.summaryTableTitle": "摘要",
"xpack.ml.fieldDataCard.cardIp.topValuesLabel": "排名最前值",
"xpack.ml.fieldDataCard.cardKeyword.topValuesLabel": "排名最前值",