long datetime format with long weekday and month

This commit is contained in:
Moriz Wahl 2022-02-10 08:07:15 +01:00
parent 9f51438b61
commit 26e2ba448a

View File

@ -54,9 +54,9 @@ const dateTimeFormats = {
}, },
long: { long: {
year: 'numeric', year: 'numeric',
month: 'short', month: 'long',
day: 'numeric', day: 'numeric',
weekday: 'short', weekday: 'long',
hour: 'numeric', hour: 'numeric',
minute: 'numeric', minute: 'numeric',
}, },
@ -78,9 +78,9 @@ const dateTimeFormats = {
}, },
long: { long: {
day: 'numeric', day: 'numeric',
month: 'short', month: 'long',
year: 'numeric', year: 'numeric',
weekday: 'short', weekday: 'long',
hour: 'numeric', hour: 'numeric',
minute: 'numeric', minute: 'numeric',
}, },