@wavemaker/app-runtime-wm-build 11.13.0-rc.6255 → 11.14.0-rc.232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/npm-shrinkwrap.json +2 -2
- package/package-lock.json +2 -2
- package/package.json +1 -1
- package/wmapp/locales/moment/ar-dz.js +8 -8
- package/wmapp/locales/moment/ar-ly.js +8 -8
- package/wmapp/locales/moment/ar-ps.js +123 -0
- package/wmapp/locales/moment/ar.js +8 -8
- package/wmapp/locales/moment/be.js +2 -2
- package/wmapp/locales/moment/bs.js +14 -4
- package/wmapp/locales/moment/ca.js +6 -6
- package/wmapp/locales/moment/cs.js +5 -4
- package/wmapp/locales/moment/cv.js +2 -2
- package/wmapp/locales/moment/en-au.js +6 -6
- package/wmapp/locales/moment/en-ca.js +6 -6
- package/wmapp/locales/moment/en-gb.js +6 -6
- package/wmapp/locales/moment/en-ie.js +6 -6
- package/wmapp/locales/moment/en-il.js +6 -6
- package/wmapp/locales/moment/en-in.js +6 -6
- package/wmapp/locales/moment/en-nz.js +6 -6
- package/wmapp/locales/moment/en-sg.js +6 -6
- package/wmapp/locales/moment/it.js +4 -4
- package/wmapp/locales/moment/ku-kmr.js +125 -0
- package/wmapp/locales/moment/lt.js +2 -2
- package/wmapp/locales/moment/me.js +2 -2
- package/wmapp/locales/moment/nb.js +4 -4
- package/wmapp/locales/moment/nl-be.js +1 -1
- package/wmapp/locales/moment/nl.js +1 -1
- package/wmapp/locales/moment/oc-lnc.js +6 -6
- package/wmapp/locales/moment/ru.js +2 -2
- package/wmapp/locales/moment/sv.js +6 -6
- package/wmapp/locales/moment/tet.js +6 -6
- package/wmapp/locales/moment/tlh.js +8 -8
- package/wmapp/locales/moment/tzl.js +2 -2
- package/wmapp/locales/moment/uk.js +4 -4
- package/wmapp/locales/moment/x-pseudo.js +6 -6
- package/wmapp/locales/moment-timezone/moment-timezone-with-data.js +2 -2
- package/wmapp/scripts/wm-libs.js +50 -64
- package/wmapp/scripts/wm-libs.min.js +94 -108
- package/wmapp/scripts/wm-loader.js +2 -2
- package/wmapp/scripts/wm-loader.min.js +2 -2
- package/wmapp/styles/foundation/foundation.css +11730 -10119
- package/wmapp/styles/foundation/foundation.min.css +1 -1
- package/wmapp/styles/foundation/icon-fonts.min.css +1 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-runtime-wm-build",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.14.0-rc.232",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-runtime-wm-build",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.14.0-rc.232",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=18.16.1",
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-runtime-wm-build",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.14.0-rc.232",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-runtime-wm-build",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.14.0-rc.232",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=18.16.1",
|
package/package.json
CHANGED
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
return n === 0
|
|
20
20
|
? 0
|
|
21
21
|
: n === 1
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
? 1
|
|
23
|
+
: n === 2
|
|
24
|
+
? 2
|
|
25
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
26
|
+
? 3
|
|
27
|
+
: n % 100 >= 11
|
|
28
|
+
? 4
|
|
29
|
+
: 5;
|
|
30
30
|
},
|
|
31
31
|
plurals = {
|
|
32
32
|
s: [
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
return n === 0
|
|
28
28
|
? 0
|
|
29
29
|
: n === 1
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
? 1
|
|
31
|
+
: n === 2
|
|
32
|
+
? 2
|
|
33
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
34
|
+
? 3
|
|
35
|
+
: n % 100 >= 11
|
|
36
|
+
? 4
|
|
37
|
+
: 5;
|
|
38
38
|
},
|
|
39
39
|
plurals = {
|
|
40
40
|
s: [
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Arabic (Palestine) [ar-ps]
|
|
3
|
+
//! author : Majd Al-Shihabi : https://github.com/majdal
|
|
4
|
+
|
|
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) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
//! moment.js locale configuration
|
|
13
|
+
|
|
14
|
+
var symbolMap = {
|
|
15
|
+
1: '١',
|
|
16
|
+
2: '٢',
|
|
17
|
+
3: '٣',
|
|
18
|
+
4: '٤',
|
|
19
|
+
5: '٥',
|
|
20
|
+
6: '٦',
|
|
21
|
+
7: '٧',
|
|
22
|
+
8: '٨',
|
|
23
|
+
9: '٩',
|
|
24
|
+
0: '٠',
|
|
25
|
+
},
|
|
26
|
+
numberMap = {
|
|
27
|
+
'١': '1',
|
|
28
|
+
'٢': '2',
|
|
29
|
+
'٣': '3',
|
|
30
|
+
'٤': '4',
|
|
31
|
+
'٥': '5',
|
|
32
|
+
'٦': '6',
|
|
33
|
+
'٧': '7',
|
|
34
|
+
'٨': '8',
|
|
35
|
+
'٩': '9',
|
|
36
|
+
'٠': '0',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
var arPs = moment.defineLocale('ar-ps', {
|
|
40
|
+
months: 'كانون الثاني_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_تشري الأوّل_تشرين الثاني_كانون الأوّل'.split(
|
|
41
|
+
'_'
|
|
42
|
+
),
|
|
43
|
+
monthsShort:
|
|
44
|
+
'ك٢_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_ت١_ت٢_ك١'.split('_'),
|
|
45
|
+
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
|
46
|
+
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
|
47
|
+
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
|
48
|
+
weekdaysParseExact: true,
|
|
49
|
+
longDateFormat: {
|
|
50
|
+
LT: 'HH:mm',
|
|
51
|
+
LTS: 'HH:mm:ss',
|
|
52
|
+
L: 'DD/MM/YYYY',
|
|
53
|
+
LL: 'D MMMM YYYY',
|
|
54
|
+
LLL: 'D MMMM YYYY HH:mm',
|
|
55
|
+
LLLL: 'dddd D MMMM YYYY HH:mm',
|
|
56
|
+
},
|
|
57
|
+
meridiemParse: /ص|م/,
|
|
58
|
+
isPM: function (input) {
|
|
59
|
+
return 'م' === input;
|
|
60
|
+
},
|
|
61
|
+
meridiem: function (hour, minute, isLower) {
|
|
62
|
+
if (hour < 12) {
|
|
63
|
+
return 'ص';
|
|
64
|
+
} else {
|
|
65
|
+
return 'م';
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
calendar: {
|
|
69
|
+
sameDay: '[اليوم على الساعة] LT',
|
|
70
|
+
nextDay: '[غدا على الساعة] LT',
|
|
71
|
+
nextWeek: 'dddd [على الساعة] LT',
|
|
72
|
+
lastDay: '[أمس على الساعة] LT',
|
|
73
|
+
lastWeek: 'dddd [على الساعة] LT',
|
|
74
|
+
sameElse: 'L',
|
|
75
|
+
},
|
|
76
|
+
relativeTime: {
|
|
77
|
+
future: 'في %s',
|
|
78
|
+
past: 'منذ %s',
|
|
79
|
+
s: 'ثوان',
|
|
80
|
+
ss: '%d ثانية',
|
|
81
|
+
m: 'دقيقة',
|
|
82
|
+
mm: '%d دقائق',
|
|
83
|
+
h: 'ساعة',
|
|
84
|
+
hh: '%d ساعات',
|
|
85
|
+
d: 'يوم',
|
|
86
|
+
dd: '%d أيام',
|
|
87
|
+
M: 'شهر',
|
|
88
|
+
MM: '%d أشهر',
|
|
89
|
+
y: 'سنة',
|
|
90
|
+
yy: '%d سنوات',
|
|
91
|
+
},
|
|
92
|
+
preparse: function (string) {
|
|
93
|
+
return string
|
|
94
|
+
.replace(/[٣٤٥٦٧٨٩٠]/g, function (match) {
|
|
95
|
+
return numberMap[match];
|
|
96
|
+
})
|
|
97
|
+
.split('') // reversed since negative lookbehind not supported everywhere
|
|
98
|
+
.reverse()
|
|
99
|
+
.join('')
|
|
100
|
+
.replace(/[١٢](?![\u062a\u0643])/g, function (match) {
|
|
101
|
+
return numberMap[match];
|
|
102
|
+
})
|
|
103
|
+
.split('')
|
|
104
|
+
.reverse()
|
|
105
|
+
.join('')
|
|
106
|
+
.replace(/،/g, ',');
|
|
107
|
+
},
|
|
108
|
+
postformat: function (string) {
|
|
109
|
+
return string
|
|
110
|
+
.replace(/\d/g, function (match) {
|
|
111
|
+
return symbolMap[match];
|
|
112
|
+
})
|
|
113
|
+
.replace(/,/g, '،');
|
|
114
|
+
},
|
|
115
|
+
week: {
|
|
116
|
+
dow: 0, // Sunday is the first day of the week.
|
|
117
|
+
doy: 6, // The week that contains Jan 6th is the first week of the year.
|
|
118
|
+
},
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
return arPs;
|
|
122
|
+
|
|
123
|
+
})));
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
return n === 0
|
|
42
42
|
? 0
|
|
43
43
|
: n === 1
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
? 1
|
|
45
|
+
: n === 2
|
|
46
|
+
? 2
|
|
47
|
+
: n % 100 >= 3 && n % 100 <= 10
|
|
48
|
+
? 3
|
|
49
|
+
: n % 100 >= 11
|
|
50
|
+
? 4
|
|
51
|
+
: 5;
|
|
52
52
|
},
|
|
53
53
|
plurals = {
|
|
54
54
|
s: [
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
return num % 10 === 1 && num % 100 !== 11
|
|
19
19
|
? forms[0]
|
|
20
20
|
: num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
? forms[1]
|
|
22
|
+
: forms[2];
|
|
23
23
|
}
|
|
24
24
|
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
|
25
25
|
var format = {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
//! moment.js locale configuration
|
|
2
2
|
//! locale : Bosnian [bs]
|
|
3
3
|
//! author : Nedim Cholich : https://github.com/frontyard
|
|
4
|
+
//! author : Rasid Redzic : https://github.com/rasidre
|
|
4
5
|
//! based on (hr) translation by Bojan Marković
|
|
5
6
|
|
|
6
7
|
;(function (global, factory) {
|
|
@@ -12,6 +13,17 @@
|
|
|
12
13
|
|
|
13
14
|
//! moment.js locale configuration
|
|
14
15
|
|
|
16
|
+
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
|
17
|
+
switch (key) {
|
|
18
|
+
case 'm':
|
|
19
|
+
return withoutSuffix
|
|
20
|
+
? 'jedna minuta'
|
|
21
|
+
: isFuture
|
|
22
|
+
? 'jednu minutu'
|
|
23
|
+
: 'jedne minute';
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
15
27
|
function translate(number, withoutSuffix, key) {
|
|
16
28
|
var result = number + ' ';
|
|
17
29
|
switch (key) {
|
|
@@ -24,8 +36,6 @@
|
|
|
24
36
|
result += 'sekundi';
|
|
25
37
|
}
|
|
26
38
|
return result;
|
|
27
|
-
case 'm':
|
|
28
|
-
return withoutSuffix ? 'jedna minuta' : 'jedne minute';
|
|
29
39
|
case 'mm':
|
|
30
40
|
if (number === 1) {
|
|
31
41
|
result += 'minuta';
|
|
@@ -36,7 +46,7 @@
|
|
|
36
46
|
}
|
|
37
47
|
return result;
|
|
38
48
|
case 'h':
|
|
39
|
-
return withoutSuffix ? 'jedan sat' : '
|
|
49
|
+
return withoutSuffix ? 'jedan sat' : 'jedan sat';
|
|
40
50
|
case 'hh':
|
|
41
51
|
if (number === 1) {
|
|
42
52
|
result += 'sat';
|
|
@@ -137,7 +147,7 @@
|
|
|
137
147
|
past: 'prije %s',
|
|
138
148
|
s: 'par sekundi',
|
|
139
149
|
ss: translate,
|
|
140
|
-
m:
|
|
150
|
+
m: processRelativeTime,
|
|
141
151
|
mm: translate,
|
|
142
152
|
h: translate,
|
|
143
153
|
hh: translate,
|
|
@@ -89,12 +89,12 @@
|
|
|
89
89
|
number === 1
|
|
90
90
|
? 'r'
|
|
91
91
|
: number === 2
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
92
|
+
? 'n'
|
|
93
|
+
: number === 3
|
|
94
|
+
? 'r'
|
|
95
|
+
: number === 4
|
|
96
|
+
? 't'
|
|
97
|
+
: 'è';
|
|
98
98
|
if (period === 'w' || period === 'W') {
|
|
99
99
|
output = 'a';
|
|
100
100
|
}
|
|
@@ -12,13 +12,14 @@
|
|
|
12
12
|
//! moment.js locale configuration
|
|
13
13
|
|
|
14
14
|
var months = {
|
|
15
|
-
format: 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
|
16
|
-
'_'
|
|
17
|
-
),
|
|
18
15
|
standalone:
|
|
19
|
-
'
|
|
16
|
+
'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
|
20
17
|
'_'
|
|
21
18
|
),
|
|
19
|
+
format: 'ledna_února_března_dubna_května_června_července_srpna_září_října_listopadu_prosince'.split(
|
|
20
|
+
'_'
|
|
21
|
+
),
|
|
22
|
+
isFormat: /DD?[o.]?(\[[^\[\]]*\]|\s)+MMMM/,
|
|
22
23
|
},
|
|
23
24
|
monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
|
|
24
25
|
monthsParse = [
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
(this.hours() > 1
|
|
69
69
|
? 'lle '
|
|
70
70
|
: this.hours() === 0
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
? ' '
|
|
72
|
+
: "ll'") +
|
|
73
73
|
']LT'
|
|
74
74
|
);
|
|
75
75
|
default:
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
(this.hours() > 1
|
|
79
79
|
? 'lle '
|
|
80
80
|
: this.hours() === 0
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
? ' '
|
|
82
|
+
: "ll'") +
|
|
83
83
|
']LT'
|
|
84
84
|
);
|
|
85
85
|
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
//! moment.js locale configuration
|
|
2
|
+
//! locale : Northern Kurdish [ku-kmr]
|
|
3
|
+
//! authors : Mazlum Özdogan : https://github.com/mergehez
|
|
4
|
+
|
|
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) :
|
|
9
|
+
factory(global.moment)
|
|
10
|
+
}(this, (function (moment) { 'use strict';
|
|
11
|
+
|
|
12
|
+
//! moment.js locale configuration
|
|
13
|
+
|
|
14
|
+
function processRelativeTime(num, withoutSuffix, key, isFuture) {
|
|
15
|
+
var format = {
|
|
16
|
+
s: ['çend sanîye', 'çend sanîyeyan'],
|
|
17
|
+
ss: [num + ' sanîye', num + ' sanîyeyan'],
|
|
18
|
+
m: ['deqîqeyek', 'deqîqeyekê'],
|
|
19
|
+
mm: [num + ' deqîqe', num + ' deqîqeyan'],
|
|
20
|
+
h: ['saetek', 'saetekê'],
|
|
21
|
+
hh: [num + ' saet', num + ' saetan'],
|
|
22
|
+
d: ['rojek', 'rojekê'],
|
|
23
|
+
dd: [num + ' roj', num + ' rojan'],
|
|
24
|
+
w: ['hefteyek', 'hefteyekê'],
|
|
25
|
+
ww: [num + ' hefte', num + ' hefteyan'],
|
|
26
|
+
M: ['mehek', 'mehekê'],
|
|
27
|
+
MM: [num + ' meh', num + ' mehan'],
|
|
28
|
+
y: ['salek', 'salekê'],
|
|
29
|
+
yy: [num + ' sal', num + ' salan'],
|
|
30
|
+
};
|
|
31
|
+
return withoutSuffix ? format[key][0] : format[key][1];
|
|
32
|
+
}
|
|
33
|
+
// function obliqueNumSuffix(num) {
|
|
34
|
+
// if(num.includes(':'))
|
|
35
|
+
// num = parseInt(num.split(':')[0]);
|
|
36
|
+
// else
|
|
37
|
+
// num = parseInt(num);
|
|
38
|
+
// return num == 0 || num % 10 == 1 ? 'ê'
|
|
39
|
+
// : (num > 10 && num % 10 == 0 ? 'î' : 'an');
|
|
40
|
+
// }
|
|
41
|
+
function ezafeNumSuffix(num) {
|
|
42
|
+
num = '' + num;
|
|
43
|
+
var l = num.substring(num.length - 1),
|
|
44
|
+
ll = num.length > 1 ? num.substring(num.length - 2) : '';
|
|
45
|
+
if (
|
|
46
|
+
!(ll == 12 || ll == 13) &&
|
|
47
|
+
(l == '2' || l == '3' || ll == '50' || l == '70' || l == '80')
|
|
48
|
+
)
|
|
49
|
+
return 'yê';
|
|
50
|
+
return 'ê';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
var kuKmr = moment.defineLocale('ku-kmr', {
|
|
54
|
+
// According to the spelling rules defined by the work group of Weqfa Mezopotamyayê (Mesopotamia Foundation)
|
|
55
|
+
// this should be: 'Kanûna Paşîn_Sibat_Adar_Nîsan_Gulan_Hezîran_Tîrmeh_Tebax_Îlon_Çirîya Pêşîn_Çirîya Paşîn_Kanûna Pêşîn'
|
|
56
|
+
// But the names below are more well known and handy
|
|
57
|
+
months: 'Rêbendan_Sibat_Adar_Nîsan_Gulan_Hezîran_Tîrmeh_Tebax_Îlon_Cotmeh_Mijdar_Berfanbar'.split(
|
|
58
|
+
'_'
|
|
59
|
+
),
|
|
60
|
+
monthsShort: 'Rêb_Sib_Ada_Nîs_Gul_Hez_Tîr_Teb_Îlo_Cot_Mij_Ber'.split('_'),
|
|
61
|
+
monthsParseExact: true,
|
|
62
|
+
weekdays: 'Yekşem_Duşem_Sêşem_Çarşem_Pêncşem_În_Şemî'.split('_'),
|
|
63
|
+
weekdaysShort: 'Yek_Du_Sê_Çar_Pên_În_Şem'.split('_'),
|
|
64
|
+
weekdaysMin: 'Ye_Du_Sê_Ça_Pê_În_Şe'.split('_'),
|
|
65
|
+
meridiem: function (hours, minutes, isLower) {
|
|
66
|
+
if (hours < 12) {
|
|
67
|
+
return isLower ? 'bn' : 'BN';
|
|
68
|
+
} else {
|
|
69
|
+
return isLower ? 'pn' : 'PN';
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
meridiemParse: /bn|BN|pn|PN/,
|
|
73
|
+
longDateFormat: {
|
|
74
|
+
LT: 'HH:mm',
|
|
75
|
+
LTS: 'HH:mm:ss',
|
|
76
|
+
L: 'DD.MM.YYYY',
|
|
77
|
+
LL: 'Do MMMM[a] YYYY[an]',
|
|
78
|
+
LLL: 'Do MMMM[a] YYYY[an] HH:mm',
|
|
79
|
+
LLLL: 'dddd, Do MMMM[a] YYYY[an] HH:mm',
|
|
80
|
+
ll: 'Do MMM[.] YYYY[an]',
|
|
81
|
+
lll: 'Do MMM[.] YYYY[an] HH:mm',
|
|
82
|
+
llll: 'ddd[.], Do MMM[.] YYYY[an] HH:mm',
|
|
83
|
+
},
|
|
84
|
+
calendar: {
|
|
85
|
+
sameDay: '[Îro di saet] LT [de]',
|
|
86
|
+
nextDay: '[Sibê di saet] LT [de]',
|
|
87
|
+
nextWeek: 'dddd [di saet] LT [de]',
|
|
88
|
+
lastDay: '[Duh di saet] LT [de]',
|
|
89
|
+
lastWeek: 'dddd[a borî di saet] LT [de]',
|
|
90
|
+
sameElse: 'L',
|
|
91
|
+
},
|
|
92
|
+
relativeTime: {
|
|
93
|
+
future: 'di %s de',
|
|
94
|
+
past: 'berî %s',
|
|
95
|
+
s: processRelativeTime,
|
|
96
|
+
ss: processRelativeTime,
|
|
97
|
+
m: processRelativeTime,
|
|
98
|
+
mm: processRelativeTime,
|
|
99
|
+
h: processRelativeTime,
|
|
100
|
+
hh: processRelativeTime,
|
|
101
|
+
d: processRelativeTime,
|
|
102
|
+
dd: processRelativeTime,
|
|
103
|
+
w: processRelativeTime,
|
|
104
|
+
ww: processRelativeTime,
|
|
105
|
+
M: processRelativeTime,
|
|
106
|
+
MM: processRelativeTime,
|
|
107
|
+
y: processRelativeTime,
|
|
108
|
+
yy: processRelativeTime,
|
|
109
|
+
},
|
|
110
|
+
dayOfMonthOrdinalParse: /\d{1,2}(?:yê|ê|\.)/,
|
|
111
|
+
ordinal: function (num, period) {
|
|
112
|
+
var p = period.toLowerCase();
|
|
113
|
+
if (p.includes('w') || p.includes('m')) return num + '.';
|
|
114
|
+
|
|
115
|
+
return num + ezafeNumSuffix(num);
|
|
116
|
+
},
|
|
117
|
+
week: {
|
|
118
|
+
dow: 1, // Monday is the first day of the week.
|
|
119
|
+
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
120
|
+
},
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
return kuKmr;
|
|
124
|
+
|
|
125
|
+
})));
|