Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / locale / fo.js
blob2425fc9576d6837d3ee623459867fb2e0752b2a4
1 //! moment.js locale configuration
2 //! locale : faroese (fo)
3 //! author : Ragnar Johannesen : https://github.com/ragnar123
5 import moment from '../moment';
7 export default moment.defineLocale('fo', {
8     months : 'januar_februar_mars_apríl_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 : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
11     weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
12     weekdaysMin : 'su_má_tý_mi_hó_fr_le'.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 HH:mm',
19         LLLL : 'dddd D. MMMM, YYYY HH:mm'
20     },
21     calendar : {
22         sameDay : '[Í dag kl.] LT',
23         nextDay : '[Í morgin kl.] LT',
24         nextWeek : 'dddd [kl.] LT',
25         lastDay : '[Í gjár kl.] LT',
26         lastWeek : '[síðstu] dddd [kl] LT',
27         sameElse : 'L'
28     },
29     relativeTime : {
30         future : 'um %s',
31         past : '%s síðani',
32         s : 'fá sekund',
33         m : 'ein minutt',
34         mm : '%d minuttir',
35         h : 'ein tími',
36         hh : '%d tímar',
37         d : 'ein dagur',
38         dd : '%d dagar',
39         M : 'ein mánaði',
40         MM : '%d mánaðir',
41         y : 'eitt á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 });