resources: Bump moment.js from 2.15.0 to 2.19.3
[lhc/web/wiklou.git] / resources / lib / moment / locale / fo.js
1 //! moment.js locale configuration
2 //! locale : Faroese [fo]
3 //! author : Ragnar Johannesen : https://github.com/ragnar123
4
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9 factory(global.moment)
10 }(this, (function (moment) { 'use strict';
11
12
13 var fo = moment.defineLocale('fo', {
14 months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
15 monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
16 weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
17 weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
18 weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'),
19 longDateFormat : {
20 LT : 'HH:mm',
21 LTS : 'HH:mm:ss',
22 L : 'DD/MM/YYYY',
23 LL : 'D MMMM YYYY',
24 LLL : 'D MMMM YYYY HH:mm',
25 LLLL : 'dddd D. MMMM, YYYY HH:mm'
26 },
27 calendar : {
28 sameDay : '[Í dag kl.] LT',
29 nextDay : '[Í morgin kl.] LT',
30 nextWeek : 'dddd [kl.] LT',
31 lastDay : '[Í gjár kl.] LT',
32 lastWeek : '[síðstu] dddd [kl] LT',
33 sameElse : 'L'
34 },
35 relativeTime : {
36 future : 'um %s',
37 past : '%s síðani',
38 s : 'fá sekund',
39 m : 'ein minutt',
40 mm : '%d minuttir',
41 h : 'ein tími',
42 hh : '%d tímar',
43 d : 'ein dagur',
44 dd : '%d dagar',
45 M : 'ein mánaði',
46 MM : '%d mánaðir',
47 y : 'eitt ár',
48 yy : '%d ár'
49 },
50 dayOfMonthOrdinalParse: /\d{1,2}\./,
51 ordinal : '%d.',
52 week : {
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.
55 }
56 });
57
58 return fo;
59
60 })));