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