1 // moment.js locale configuration
2 // locale : faroese (fo)
3 // author : Ragnar Johannesen : https://github.com/ragnar123
6 // Comment out broken wrapper, see T145382
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((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment
.defineLocale('fo', {
17 months
: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
18 monthsShort
: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
19 weekdays
: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
20 weekdaysShort
: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
21 weekdaysMin
: 'su_má_tý_mi_hó_fr_le'.split('_'),
27 LLL
: 'D MMMM YYYY LT',
28 LLLL
: 'dddd D. MMMM, YYYY LT'
31 sameDay
: '[Í dag kl.] LT',
32 nextDay
: '[Í morgin kl.] LT',
33 nextWeek
: 'dddd [kl.] LT',
34 lastDay
: '[Í gjár kl.] LT',
35 lastWeek
: '[síðstu] dddd [kl] LT',
53 ordinalParse
: /\d{1,2}\./,
56 dow
: 1, // Monday is the first day of the week.
57 doy
: 4 // The week that contains Jan 4th is the first week of the year.