And I believe {dateFormat} should come from Advanced Settings
(This screenshot was taken from another English Kibana for readability.
To avoid it, we should handle it like this in the date picker, perhaps?
source for test.js
const moment = require('moment');
require('moment/locale/ja');
moment.locale('ja');
let date = moment();
console.log(date.format('MMM D, YYYY @ HH:mm:ss.SSS'));
reproducible in 8.12.2
repro step
add
i18n.locale: "ja-JP"
to kibana.yml and restart Kibanaopen a dashboard and choose
Absolute
(絶対 in Japanese)Tweak the minute to
03:33:00.000
by hand Then you would notice this message"想定されている形式:MMM D, YYYY @ HH:mm:ss.SSS"
想定されている形式
comes from this codeAnd I believe
{dateFormat}
should come from Advanced Settings (This screenshot was taken from another English Kibana for readability.To avoid it, we should handle it like this in the date picker, perhaps?
test.js
After doing
npm install moment