From a411c9fbb34747ebee0ee235c139a4b7c63fdf26 Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Thu, 14 Mar 2013 17:06:09 +0100 Subject: [PATCH] SONAR-4144 The US date format should be MDY and not DMY (ex: Jan 20 2013 instead of 20 Jan 2013) --- sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml b/sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml index 154c872dc28..182cdc4e410 100644 --- a/sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml +++ b/sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml @@ -3,11 +3,11 @@ "en-US": date: formats: - default: "%d %b %Y" + default: "%b %d %Y" time: formats: - default: "%d %b %Y %H:%M" + default: "%b %d %Y %H:%M" am: "am" pm: "pm" -- 2.39.5