Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / locale / nn.js
blobf341cb4137a0f52effbc1cdb80b03a495085db5b
1 //! moment.js locale configuration
2 //! locale : norwegian nynorsk (nn)
3 //! author : https://github.com/mechuwind
5 import moment from '../moment';
7 export default moment.defineLocale('nn', {
8     months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
9     monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
10     weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
11     weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'),
12     weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'),
13     longDateFormat : {
14         LT : 'HH:mm',
15         LTS : 'HH:mm:ss',
16         L : 'DD.MM.YYYY',
17         LL : 'D. MMMM YYYY',
18         LLL : 'D. MMMM YYYY [kl.] H:mm',
19         LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm'
20     },
21     calendar : {
22         sameDay: '[I dag klokka] LT',
23         nextDay: '[I morgon klokka] LT',
24         nextWeek: 'dddd [klokka] LT',
25         lastDay: '[I går klokka] LT',
26         lastWeek: '[Føregåande] dddd [klokka] LT',
27         sameElse: 'L'
28     },
29     relativeTime : {
30         future : 'om %s',
31         past : '%s sidan',
32         s : 'nokre sekund',
33         m : 'eit minutt',
34         mm : '%d minutt',
35         h : 'ein time',
36         hh : '%d timar',
37         d : 'ein dag',
38         dd : '%d dagar',
39         M : 'ein månad',
40         MM : '%d månader',
41         y : 'eit år',
42         yy : '%d år'
43     },
44     ordinalParse: /\d{1,2}\./,
45     ordinal : '%d.',
46     week : {
47         dow : 1, // Monday is the first day of the week.
48         doy : 4  // The week that contains Jan 4th is the first week of the year.
49     }
50 });