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
5 //! Stephen Ramthun : https://github.com/stephenramthun
7 ;(function (global, factory) {
8 typeof exports === 'object' && typeof module !== 'undefined'
9 && typeof require === 'function' ? factory(require('../moment')) :
10 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
11 factory(global.moment)
12 }(this, (function (moment) { 'use strict';
14 //! moment.js locale configuration
16 var nb = moment.defineLocale('nb', {
17 months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
20 monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
23 monthsParseExact: true,
24 weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
25 weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
26 weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
27 weekdaysParseExact: true,
33 LLL: 'D. MMMM YYYY [kl.] HH:mm',
34 LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
37 sameDay: '[i dag kl.] LT',
38 nextDay: '[i morgen kl.] LT',
39 nextWeek: 'dddd [kl.] LT',
40 lastDay: '[i går kl.] LT',
41 lastWeek: '[forrige] dddd [kl.] LT',
60 dayOfMonthOrdinalParse: /\d{1,2}\./,
63 dow: 1, // Monday is the first day of the week.
64 doy: 4, // The week that contains Jan 4th is the first week of the year.