1 // moment.js language configuration
2 // language : norwegian bokmål (nb)
3 // authors : Espen Hovlandsdal : https://github.com/rexxars
4 // Sigurd Gartmann : https://github.com/sigurdga
7 if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory(window.moment); // Browser global
15 return moment.lang('nb', {
16 months : "januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),
17 monthsShort : "jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),
18 weekdays : "søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),
19 weekdaysShort : "sø._ma._ti._on._to._fr._lø.".split("_"),
20 weekdaysMin : "sø_ma_ti_on_to_fr_lø".split("_"),
25 LLL : "D. MMMM YYYY [kl.] LT",
26 LLLL : "dddd D. MMMM YYYY [kl.] LT"
29 sameDay: '[i dag kl.] LT',
30 nextDay: '[i morgen kl.] LT',
31 nextWeek: 'dddd [kl.] LT',
32 lastDay: '[i går kl.] LT',
33 lastWeek: '[forrige] dddd [kl.] LT',
38 past : "for %s siden",
53 dow : 1, // Monday is the first day of the week.
54 doy : 4 // The week that contains Jan 4th is the first week of the year.