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.
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',
return nb;
-}));
\ No newline at end of file
+}));