From 4aaff473453c326cf10ab8ef8d5b2410fd961f04 Mon Sep 17 00:00:00 2001 From: Sigurd Gartmann Date: Wed, 8 Jul 2015 23:15:13 +0200 Subject: [PATCH] Colon has been approved as separator between hours, minutes and seconds This has been part of the approved ISO 8601 standard for several years, and was officially taken into the language in 2014 (source: http://www.korrekturavdelingen.no/K4Punktum.htm). According to the ISO standard, hours should be noted between 00 and 24, so now using HH for hours. --- locale/nb.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locale/nb.js b/locale/nb.js index 966619cd7..7e54daae3 100644 --- a/locale/nb.js +++ b/locale/nb.js @@ -17,8 +17,8 @@ weekdaysShort : 'søn_man_tirs_ons_tors_fre_lør'.split('_'), weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), longDateFormat : { - LT : 'H.mm', - LTS : 'H.mm.ss', + LT : 'HH:mm', + LTS : 'HH:mm:ss', L : 'DD.MM.YYYY', LL : 'D. MMMM YYYY', LLL : 'D. MMMM YYYY [kl.] H.mm', @@ -57,4 +57,4 @@ return nb; -})); \ No newline at end of file +})); -- 2.47.3