diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-03-14 17:06:09 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-03-14 17:06:31 +0100 |
commit | a411c9fbb34747ebee0ee235c139a4b7c63fdf26 (patch) | |
tree | c37ebdeceefd443ee86143de6ea95687c98e81ba /sonar-server | |
parent | 81a8b4918a42d5a02fb06af291b0551c0789f86f (diff) | |
download | sonarqube-a411c9fbb34747ebee0ee235c139a4b7c63fdf26.tar.gz sonarqube-a411c9fbb34747ebee0ee235c139a4b7c63fdf26.zip |
SONAR-4144 The US date format should be MDY and not DMY (ex: Jan 20 2013 instead of 20 Jan 2013)
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/config/locales/en-US.yml | 4 |
1 files 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" |