1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
| //! moment.js locale configuration
| //! locale : Occitan, lengadocian dialecte [oc-lnc]
| //! author : Quentin PAGÈS : https://github.com/Quenty31
|
| ;(function (global, factory) {
| typeof exports === 'object' && typeof module !== 'undefined'
| && typeof require === 'function' ? factory(require('../moment')) :
| typeof define === 'function' && define.amd ? define(['../moment'], factory) :
| factory(global.moment)
| }(this, (function (moment) { 'use strict';
|
| //! moment.js locale configuration
|
| var ocLnc = moment.defineLocale('oc-lnc', {
| months: {
| standalone: 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(
| '_'
| ),
| format: "de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split(
| '_'
| ),
| isFormat: /D[oD]?(\s)+MMMM/,
| },
| monthsShort: 'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(
| '_'
| ),
| monthsParseExact: true,
| weekdays: 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'.split(
| '_'
| ),
| weekdaysShort: 'dg._dl._dm._dc._dj._dv._ds.'.split('_'),
| weekdaysMin: 'dg_dl_dm_dc_dj_dv_ds'.split('_'),
| weekdaysParseExact: true,
| longDateFormat: {
| LT: 'H:mm',
| LTS: 'H:mm:ss',
| L: 'DD/MM/YYYY',
| LL: 'D MMMM [de] YYYY',
| ll: 'D MMM YYYY',
| LLL: 'D MMMM [de] YYYY [a] H:mm',
| lll: 'D MMM YYYY, H:mm',
| LLLL: 'dddd D MMMM [de] YYYY [a] H:mm',
| llll: 'ddd D MMM YYYY, H:mm',
| },
| calendar: {
| sameDay: '[uèi a] LT',
| nextDay: '[deman a] LT',
| nextWeek: 'dddd [a] LT',
| lastDay: '[ièr a] LT',
| lastWeek: 'dddd [passat a] LT',
| sameElse: 'L',
| },
| relativeTime: {
| future: "d'aquí %s",
| past: 'fa %s',
| s: 'unas segondas',
| ss: '%d segondas',
| m: 'una minuta',
| mm: '%d minutas',
| h: 'una ora',
| hh: '%d oras',
| d: 'un jorn',
| dd: '%d jorns',
| M: 'un mes',
| MM: '%d meses',
| y: 'un an',
| yy: '%d ans',
| },
| dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
| ordinal: function (number, period) {
| var output =
| number === 1
| ? 'r'
| : number === 2
| ? 'n'
| : number === 3
| ? 'r'
| : number === 4
| ? 't'
| : 'è';
| if (period === 'w' || period === 'W') {
| output = 'a';
| }
| return number + output;
| },
| week: {
| dow: 1, // Monday is the first day of the week.
| doy: 4,
| },
| });
|
| return ocLnc;
|
| })));
|
|