From 26e2ba448a193cf378239be3e996de946f69632a Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 10 Feb 2022 08:07:15 +0100 Subject: [PATCH] long datetime format with long weekday and month --- admin/src/i18n.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/src/i18n.js b/admin/src/i18n.js index 6291a9c6c..b2bb08074 100644 --- a/admin/src/i18n.js +++ b/admin/src/i18n.js @@ -54,9 +54,9 @@ const dateTimeFormats = { }, long: { year: 'numeric', - month: 'short', + month: 'long', day: 'numeric', - weekday: 'short', + weekday: 'long', hour: 'numeric', minute: 'numeric', }, @@ -78,9 +78,9 @@ const dateTimeFormats = { }, long: { day: 'numeric', - month: 'short', + month: 'long', year: 'numeric', - weekday: 'short', + weekday: 'long', hour: 'numeric', minute: 'numeric', },