1 // moment.js locale configuration
2 // locale : norwegian bokmål (nb)
3 // authors : Espen Hovlandsdal : https://github.com/rexxars
4 // Sigurd Gartmann : https://github.com/sigurdga
7 // Comment out broken wrapper, see T145382
8 /*if (typeof define === 'function' && define.amd) {
9 define(['moment'], factory); // AMD
10 } else if (typeof exports === 'object') {
11 module.exports = factory(require('../moment')); // Node
13 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
17 return moment.defineLocale('nb', {
18 months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
19 monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
20 weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
21 weekdaysShort : 'søn_man_tirs_ons_tors_fre_lør'.split('_'),
22 weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
28 LLL : 'D. MMMM YYYY [kl.] LT',
29 LLLL : 'dddd D. MMMM YYYY [kl.] LT'
32 sameDay: '[i dag kl.] LT',
33 nextDay: '[i morgen kl.] LT',
34 nextWeek: 'dddd [kl.] LT',
35 lastDay: '[i går kl.] LT',
36 lastWeek: '[forrige] dddd [kl.] LT',
41 past : 'for %s siden',
54 ordinalParse: /\d{1,2}\./,
57 dow : 1, // Monday is the first day of the week.
58 doy : 4 // The week that contains Jan 4th is the first week of the year.