Currently, despite date keywords such as month and day names are localized, the format itself does not follow the locale standard.
For instance, with the French locale, a date is displayed septembre 12, 2018 while it should be 12 septembre 2018 (grammatically, the day of the month is before the name of the month).
Setting LL format for date and LLL format for dateTime would provide the standard format for all locale out of the box. See moment.js documentation.
French | English | Description | |
---|---|---|---|
LL | 12 septembre 2018 | September 12, 2018 | Month name, day of month, year |
LLL | 12 septembre 2018 23:58 | September 12, 2018 11:58 PM | Month name, day of month, year, time |
as suggested in ELEMENTS-736
- depends on
-
ELEMENTS-736 Allow to customize date format in Web UI
- Resolved