1 //! moment.js locale configuration
2 //! locale : Frisian [fy]
3 //! author : Robin van der Vliet : https://github.com/robin0van0der0v
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
) :
10 }(this, function (moment
) { 'use strict';
13 var monthsShortWithDots
= 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
14 monthsShortWithoutDots
= 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
16 var fy
= moment
.defineLocale('fy', {
17 months
: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),
18 monthsShort : function (m
, format
) {
19 if (/-MMM-/.test(format
)) {
20 return monthsShortWithoutDots
[m
.month()];
22 return monthsShortWithDots
[m
.month()];
25 monthsParseExact
: true,
26 weekdays
: 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split('_'),
27 weekdaysShort
: 'si._mo._ti._wo._to._fr._so.'.split('_'),
28 weekdaysMin
: 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),
29 weekdaysParseExact
: true,
35 LLL
: 'D MMMM YYYY HH:mm',
36 LLLL
: 'dddd D MMMM YYYY HH:mm'
39 sameDay
: '[hjoed om] LT',
40 nextDay
: '[moarn om] LT',
41 nextWeek
: 'dddd [om] LT',
42 lastDay
: '[juster om] LT',
43 lastWeek
: '[ôfrûne] dddd [om] LT',
49 s
: 'in pear sekonden',
61 ordinalParse
: /\d{1,2}(ste|de)/,
62 ordinal : function (number
) {
63 return number
+ ((number
=== 1 || number
=== 8 || number
>= 20) ? 'ste' : 'de');
66 dow
: 1, // Monday is the first day of the week.
67 doy
: 4 // The week that contains Jan 4th is the first week of the year.