Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / fo.js
blob94c4f355540252341994e6db1831b716a72878cf
1 //! moment.js locale configuration
2 //! locale : Faroese [fo]
3 //! author : Ragnar Johannesen : https://github.com/ragnar123
4 //! author : Kristian Sakarisson : https://github.com/sakarisson
6 ;(function (global, factory) {
7    typeof exports === 'object' && typeof module !== 'undefined'
8        && typeof require === 'function' ? factory(require('../moment')) :
9    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10    factory(global.moment)
11 }(this, (function (moment) { 'use strict';
13     //! moment.js locale configuration
15     var fo = moment.defineLocale('fo', {
16         months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split(
17             '_'
18         ),
19         monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
20         weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
21             '_'
22         ),
23         weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
24         weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
25         longDateFormat: {
26             LT: 'HH:mm',
27             LTS: 'HH:mm:ss',
28             L: 'DD/MM/YYYY',
29             LL: 'D MMMM YYYY',
30             LLL: 'D MMMM YYYY HH:mm',
31             LLLL: 'dddd D. MMMM, YYYY HH:mm',
32         },
33         calendar: {
34             sameDay: '[Í dag kl.] LT',
35             nextDay: '[Í morgin kl.] LT',
36             nextWeek: 'dddd [kl.] LT',
37             lastDay: '[Í gjár kl.] LT',
38             lastWeek: '[síðstu] dddd [kl] LT',
39             sameElse: 'L',
40         },
41         relativeTime: {
42             future: 'um %s',
43             past: '%s síðani',
44             s: 'fá sekund',
45             ss: '%d sekundir',
46             m: 'ein minuttur',
47             mm: '%d minuttir',
48             h: 'ein tími',
49             hh: '%d tímar',
50             d: 'ein dagur',
51             dd: '%d dagar',
52             M: 'ein mánaður',
53             MM: '%d mánaðir',
54             y: 'eitt ár',
55             yy: '%d ár',
56         },
57         dayOfMonthOrdinalParse: /\d{1,2}\./,
58         ordinal: '%d.',
59         week: {
60             dow: 1, // Monday is the first day of the week.
61             doy: 4, // The week that contains Jan 4th is the first week of the year.
62         },
63     });
65     return fo;
67 })));