1 // moment.js language configuration
2 // language : norwegian nynorsk (nn)
3 // author : https://github.com/mechuwind
6 if (typeof define
=== 'function' && define
.amd
) {
7 define(['moment'], factory
); // AMD
8 } else if (typeof exports
=== 'object') {
9 module
.exports
= factory(require('../moment')); // Node
11 factory(window
.moment
); // Browser global
14 return moment
.lang('nn', {
15 months
: "januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),
16 monthsShort
: "jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),
17 weekdays
: "sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),
18 weekdaysShort
: "sun_mån_tys_ons_tor_fre_lau".split("_"),
19 weekdaysMin
: "su_må_ty_on_to_fr_lø".split("_"),
24 LLL
: "D MMMM YYYY LT",
25 LLLL
: "dddd D MMMM YYYY LT"
28 sameDay
: '[I dag klokka] LT',
29 nextDay
: '[I morgon klokka] LT',
30 nextWeek
: 'dddd [klokka] LT',
31 lastDay
: '[I går klokka] LT',
32 lastWeek
: '[Føregåande] dddd [klokka] LT',
37 past
: "for %s sidan",
52 dow
: 1, // Monday is the first day of the week.
53 doy
: 4 // The week that contains Jan 4th is the first week of the year.