@formatjs/intl-locale 5.2.2 → 5.3.2
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/index.d.ts +105 -102
- package/index.js +4304 -230
- package/index.js.map +1 -0
- package/package.json +3 -4
- package/polyfill-force.d.ts +1 -1
- package/polyfill-force.js +4669 -1
- package/polyfill-force.js.map +1 -0
- package/polyfill.d.ts +1 -1
- package/polyfill.iife.js +13818 -23358
- package/polyfill.js +4716 -5
- package/polyfill.js.map +1 -0
- package/should-polyfill.d.ts +5 -1
- package/should-polyfill.js +9 -13
- package/should-polyfill.js.map +1 -0
- package/calendars.generated.d.ts +0 -55
- package/calendars.generated.js +0 -260
- package/character-orders.generated.d.ts +0 -770
- package/character-orders.generated.js +0 -770
- package/get_internal_slots.d.ts +0 -3
- package/get_internal_slots.js +0 -17
- package/hour-cycles.generated.d.ts +0 -279
- package/hour-cycles.generated.js +0 -284
- package/numbering-systems.generated.d.ts +0 -769
- package/numbering-systems.generated.js +0 -865
- package/preference-data.d.ts +0 -6
- package/preference-data.js +0 -42
- package/timezones.generated.d.ts +0 -250
- package/timezones.generated.js +0 -508
- package/week-data.generated.d.ts +0 -1299
- package/week-data.generated.js +0 -1299
package/should-polyfill.d.ts
CHANGED
package/should-polyfill.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
//#region packages/intl-locale/should-polyfill.ts
|
|
1
2
|
/**
|
|
2
3
|
* https://bugs.chromium.org/p/v8/issues/detail?id=10682
|
|
3
4
|
*/
|
|
@@ -17,9 +18,8 @@ function hasIntlGetCanonicalLocalesBug() {
|
|
|
17
18
|
function hasVariantsProperty() {
|
|
18
19
|
try {
|
|
19
20
|
const locale = new Intl.Locale("en-US-posix");
|
|
20
|
-
// Check if variants property exists
|
|
21
21
|
const descriptor = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(locale), "variants");
|
|
22
|
-
return descriptor !==
|
|
22
|
+
return descriptor !== void 0 && typeof descriptor.get === "function";
|
|
23
23
|
} catch {
|
|
24
24
|
return false;
|
|
25
25
|
}
|
|
@@ -33,21 +33,17 @@ function hasVariantsProperty() {
|
|
|
33
33
|
function hasIncompleteLocaleInfo() {
|
|
34
34
|
try {
|
|
35
35
|
const locale = new Intl.Locale("en-US");
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if (typeof locale.getWeekInfo !== "function") {
|
|
39
|
-
return true;
|
|
40
|
-
}
|
|
41
|
-
// Also check for other Intl Locale Info methods
|
|
42
|
-
// These are part of the same proposal and often missing together
|
|
43
|
-
if (typeof locale.getCalendars !== "function" || typeof locale.getCollations !== "function" || typeof locale.getHourCycles !== "function" || typeof locale.getNumberingSystems !== "function" || typeof locale.getTimeZones !== "function" || typeof locale.getTextInfo !== "function") {
|
|
44
|
-
return true;
|
|
45
|
-
}
|
|
36
|
+
if (typeof locale.getWeekInfo !== "function") return true;
|
|
37
|
+
if (typeof locale.getCalendars !== "function" || typeof locale.getCollations !== "function" || typeof locale.getHourCycles !== "function" || typeof locale.getNumberingSystems !== "function" || typeof locale.getTimeZones !== "function" || typeof locale.getTextInfo !== "function") return true;
|
|
46
38
|
return false;
|
|
47
39
|
} catch {
|
|
48
40
|
return true;
|
|
49
41
|
}
|
|
50
42
|
}
|
|
51
|
-
|
|
43
|
+
function shouldPolyfill() {
|
|
52
44
|
return !("Locale" in Intl) || hasIntlGetCanonicalLocalesBug() || hasIncompleteLocaleInfo() || !hasVariantsProperty();
|
|
53
45
|
}
|
|
46
|
+
//#endregion
|
|
47
|
+
export { shouldPolyfill };
|
|
48
|
+
|
|
49
|
+
//# sourceMappingURL=should-polyfill.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"should-polyfill.js","names":[],"sources":["../should-polyfill.ts"],"sourcesContent":["/**\n * https://bugs.chromium.org/p/v8/issues/detail?id=10682\n */\nfunction hasIntlGetCanonicalLocalesBug(): boolean {\n try {\n return new (Intl as any).Locale('und-x-private').toString() === 'x-private'\n } catch {\n return true\n }\n}\n\n/**\n * Check if Intl.Locale is missing the variants property.\n * This property was added to ECMA-402 via PR #960.\n * https://github.com/tc39/ecma402/pull/960\n * https://github.com/tc39/ecma402/issues/900\n */\nfunction hasVariantsProperty(): boolean {\n try {\n const locale = new (Intl as any).Locale('en-US-posix')\n // Check if variants property exists\n const descriptor = Object.getOwnPropertyDescriptor(\n Object.getPrototypeOf(locale),\n 'variants'\n )\n return descriptor !== undefined && typeof descriptor.get === 'function'\n } catch {\n return false\n }\n}\n\n/**\n * Check if Intl.Locale is missing critical methods from the Intl Locale Info proposal.\n * Firefox has an incomplete implementation that lacks getWeekInfo() and other methods.\n * https://github.com/formatjs/formatjs/issues/5112\n * https://bugzilla.mozilla.org/show_bug.cgi?id=1693576\n */\nfunction hasIncompleteLocaleInfo(): boolean {\n try {\n const locale = new (Intl as any).Locale('en-US')\n // Check for getWeekInfo - critical for week calculations (e.g., Luxon's localWeekNumber)\n // This is the most important check as it affects date/time libraries\n if (typeof locale.getWeekInfo !== 'function') {\n return true\n }\n // Also check for other Intl Locale Info methods\n // These are part of the same proposal and often missing together\n if (\n typeof locale.getCalendars !== 'function' ||\n typeof locale.getCollations !== 'function' ||\n typeof locale.getHourCycles !== 'function' ||\n typeof locale.getNumberingSystems !== 'function' ||\n typeof locale.getTimeZones !== 'function' ||\n typeof locale.getTextInfo !== 'function'\n ) {\n return true\n }\n return false\n } catch {\n return true\n }\n}\n\nexport function shouldPolyfill(): boolean {\n return (\n !('Locale' in Intl) ||\n hasIntlGetCanonicalLocalesBug() ||\n hasIncompleteLocaleInfo() ||\n !hasVariantsProperty()\n )\n}\n"],"mappings":";;;;AAGA,SAAS,gCAAyC;AAChD,KAAI;AACF,SAAO,IAAK,KAAa,OAAO,gBAAgB,CAAC,UAAU,KAAK;SAC1D;AACN,SAAO;;;;;;;;;AAUX,SAAS,sBAA+B;AACtC,KAAI;EACF,MAAM,SAAS,IAAK,KAAa,OAAO,cAAc;EAEtD,MAAM,aAAa,OAAO,yBACxB,OAAO,eAAe,OAAO,EAC7B,WACD;AACD,SAAO,eAAe,KAAA,KAAa,OAAO,WAAW,QAAQ;SACvD;AACN,SAAO;;;;;;;;;AAUX,SAAS,0BAAmC;AAC1C,KAAI;EACF,MAAM,SAAS,IAAK,KAAa,OAAO,QAAQ;AAGhD,MAAI,OAAO,OAAO,gBAAgB,WAChC,QAAO;AAIT,MACE,OAAO,OAAO,iBAAiB,cAC/B,OAAO,OAAO,kBAAkB,cAChC,OAAO,OAAO,kBAAkB,cAChC,OAAO,OAAO,wBAAwB,cACtC,OAAO,OAAO,iBAAiB,cAC/B,OAAO,OAAO,gBAAgB,WAE9B,QAAO;AAET,SAAO;SACD;AACN,SAAO;;;AAIX,SAAgB,iBAA0B;AACxC,QACE,EAAE,YAAY,SACd,+BAA+B,IAC/B,yBAAyB,IACzB,CAAC,qBAAqB"}
|
package/calendars.generated.d.ts
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
export declare const calendars: {
|
|
2
|
-
readonly "001": readonly ["gregorian"];
|
|
3
|
-
readonly AE: readonly ["gregorian", "islamic-umalqura", "islamic", "islamic-civil", "islamic-tbla"];
|
|
4
|
-
readonly AF: readonly ["persian", "gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
5
|
-
readonly AL: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
6
|
-
readonly AZ: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
7
|
-
readonly BD: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
8
|
-
readonly BH: readonly ["gregorian", "islamic-umalqura", "islamic", "islamic-civil", "islamic-tbla"];
|
|
9
|
-
readonly CN: readonly ["gregorian", "chinese"];
|
|
10
|
-
readonly CX: readonly ["gregorian", "chinese"];
|
|
11
|
-
readonly DJ: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
12
|
-
readonly DZ: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
13
|
-
readonly EG: readonly ["gregorian", "coptic", "islamic", "islamic-civil", "islamic-tbla"];
|
|
14
|
-
readonly EH: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
15
|
-
readonly ER: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
16
|
-
readonly ET: readonly ["gregorian", "ethiopic"];
|
|
17
|
-
readonly HK: readonly ["gregorian", "chinese"];
|
|
18
|
-
readonly ID: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
19
|
-
readonly IL: readonly ["gregorian", "hebrew", "islamic", "islamic-civil", "islamic-tbla"];
|
|
20
|
-
readonly IN: readonly ["gregorian", "indian"];
|
|
21
|
-
readonly IQ: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
22
|
-
readonly IR: readonly ["persian", "gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
23
|
-
readonly JO: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
24
|
-
readonly JP: readonly ["gregorian", "japanese"];
|
|
25
|
-
readonly KM: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
26
|
-
readonly KR: readonly ["gregorian", "dangi"];
|
|
27
|
-
readonly KW: readonly ["gregorian", "islamic-umalqura", "islamic", "islamic-civil", "islamic-tbla"];
|
|
28
|
-
readonly LB: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
29
|
-
readonly LY: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
30
|
-
readonly MA: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
31
|
-
readonly MO: readonly ["gregorian", "chinese"];
|
|
32
|
-
readonly MR: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
33
|
-
readonly MV: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
34
|
-
readonly MY: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
35
|
-
readonly NE: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
36
|
-
readonly OM: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
37
|
-
readonly PK: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
38
|
-
readonly PS: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
39
|
-
readonly QA: readonly ["gregorian", "islamic-umalqura", "islamic", "islamic-civil", "islamic-tbla"];
|
|
40
|
-
readonly SA: readonly ["gregorian", "islamic-umalqura", "islamic", "islamic-rgsa"];
|
|
41
|
-
readonly SD: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
42
|
-
readonly SG: readonly ["gregorian", "chinese"];
|
|
43
|
-
readonly SY: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
44
|
-
readonly TD: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
45
|
-
readonly TH: readonly ["buddhist", "gregorian"];
|
|
46
|
-
readonly TJ: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
47
|
-
readonly TM: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
48
|
-
readonly TN: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
49
|
-
readonly TR: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
50
|
-
readonly TW: readonly ["gregorian", "roc", "chinese"];
|
|
51
|
-
readonly UZ: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
52
|
-
readonly XK: readonly ["gregorian", "islamic-civil", "islamic-tbla"];
|
|
53
|
-
readonly YE: readonly ["gregorian", "islamic", "islamic-civil", "islamic-tbla"];
|
|
54
|
-
};
|
|
55
|
-
export type CalendarsKey = keyof typeof calendars;
|
package/calendars.generated.js
DELETED
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
/* @generated */
|
|
2
|
-
// prettier-ignore
|
|
3
|
-
export const calendars = {
|
|
4
|
-
"001": ["gregorian"],
|
|
5
|
-
"AE": [
|
|
6
|
-
"gregorian",
|
|
7
|
-
"islamic-umalqura",
|
|
8
|
-
"islamic",
|
|
9
|
-
"islamic-civil",
|
|
10
|
-
"islamic-tbla"
|
|
11
|
-
],
|
|
12
|
-
"AF": [
|
|
13
|
-
"persian",
|
|
14
|
-
"gregorian",
|
|
15
|
-
"islamic",
|
|
16
|
-
"islamic-civil",
|
|
17
|
-
"islamic-tbla"
|
|
18
|
-
],
|
|
19
|
-
"AL": [
|
|
20
|
-
"gregorian",
|
|
21
|
-
"islamic-civil",
|
|
22
|
-
"islamic-tbla"
|
|
23
|
-
],
|
|
24
|
-
"AZ": [
|
|
25
|
-
"gregorian",
|
|
26
|
-
"islamic-civil",
|
|
27
|
-
"islamic-tbla"
|
|
28
|
-
],
|
|
29
|
-
"BD": [
|
|
30
|
-
"gregorian",
|
|
31
|
-
"islamic",
|
|
32
|
-
"islamic-civil",
|
|
33
|
-
"islamic-tbla"
|
|
34
|
-
],
|
|
35
|
-
"BH": [
|
|
36
|
-
"gregorian",
|
|
37
|
-
"islamic-umalqura",
|
|
38
|
-
"islamic",
|
|
39
|
-
"islamic-civil",
|
|
40
|
-
"islamic-tbla"
|
|
41
|
-
],
|
|
42
|
-
"CN": ["gregorian", "chinese"],
|
|
43
|
-
"CX": ["gregorian", "chinese"],
|
|
44
|
-
"DJ": [
|
|
45
|
-
"gregorian",
|
|
46
|
-
"islamic",
|
|
47
|
-
"islamic-civil",
|
|
48
|
-
"islamic-tbla"
|
|
49
|
-
],
|
|
50
|
-
"DZ": [
|
|
51
|
-
"gregorian",
|
|
52
|
-
"islamic",
|
|
53
|
-
"islamic-civil",
|
|
54
|
-
"islamic-tbla"
|
|
55
|
-
],
|
|
56
|
-
"EG": [
|
|
57
|
-
"gregorian",
|
|
58
|
-
"coptic",
|
|
59
|
-
"islamic",
|
|
60
|
-
"islamic-civil",
|
|
61
|
-
"islamic-tbla"
|
|
62
|
-
],
|
|
63
|
-
"EH": [
|
|
64
|
-
"gregorian",
|
|
65
|
-
"islamic",
|
|
66
|
-
"islamic-civil",
|
|
67
|
-
"islamic-tbla"
|
|
68
|
-
],
|
|
69
|
-
"ER": [
|
|
70
|
-
"gregorian",
|
|
71
|
-
"islamic",
|
|
72
|
-
"islamic-civil",
|
|
73
|
-
"islamic-tbla"
|
|
74
|
-
],
|
|
75
|
-
"ET": ["gregorian", "ethiopic"],
|
|
76
|
-
"HK": ["gregorian", "chinese"],
|
|
77
|
-
"ID": [
|
|
78
|
-
"gregorian",
|
|
79
|
-
"islamic",
|
|
80
|
-
"islamic-civil",
|
|
81
|
-
"islamic-tbla"
|
|
82
|
-
],
|
|
83
|
-
"IL": [
|
|
84
|
-
"gregorian",
|
|
85
|
-
"hebrew",
|
|
86
|
-
"islamic",
|
|
87
|
-
"islamic-civil",
|
|
88
|
-
"islamic-tbla"
|
|
89
|
-
],
|
|
90
|
-
"IN": ["gregorian", "indian"],
|
|
91
|
-
"IQ": [
|
|
92
|
-
"gregorian",
|
|
93
|
-
"islamic",
|
|
94
|
-
"islamic-civil",
|
|
95
|
-
"islamic-tbla"
|
|
96
|
-
],
|
|
97
|
-
"IR": [
|
|
98
|
-
"persian",
|
|
99
|
-
"gregorian",
|
|
100
|
-
"islamic",
|
|
101
|
-
"islamic-civil",
|
|
102
|
-
"islamic-tbla"
|
|
103
|
-
],
|
|
104
|
-
"JO": [
|
|
105
|
-
"gregorian",
|
|
106
|
-
"islamic",
|
|
107
|
-
"islamic-civil",
|
|
108
|
-
"islamic-tbla"
|
|
109
|
-
],
|
|
110
|
-
"JP": ["gregorian", "japanese"],
|
|
111
|
-
"KM": [
|
|
112
|
-
"gregorian",
|
|
113
|
-
"islamic",
|
|
114
|
-
"islamic-civil",
|
|
115
|
-
"islamic-tbla"
|
|
116
|
-
],
|
|
117
|
-
"KR": ["gregorian", "dangi"],
|
|
118
|
-
"KW": [
|
|
119
|
-
"gregorian",
|
|
120
|
-
"islamic-umalqura",
|
|
121
|
-
"islamic",
|
|
122
|
-
"islamic-civil",
|
|
123
|
-
"islamic-tbla"
|
|
124
|
-
],
|
|
125
|
-
"LB": [
|
|
126
|
-
"gregorian",
|
|
127
|
-
"islamic",
|
|
128
|
-
"islamic-civil",
|
|
129
|
-
"islamic-tbla"
|
|
130
|
-
],
|
|
131
|
-
"LY": [
|
|
132
|
-
"gregorian",
|
|
133
|
-
"islamic",
|
|
134
|
-
"islamic-civil",
|
|
135
|
-
"islamic-tbla"
|
|
136
|
-
],
|
|
137
|
-
"MA": [
|
|
138
|
-
"gregorian",
|
|
139
|
-
"islamic",
|
|
140
|
-
"islamic-civil",
|
|
141
|
-
"islamic-tbla"
|
|
142
|
-
],
|
|
143
|
-
"MO": ["gregorian", "chinese"],
|
|
144
|
-
"MR": [
|
|
145
|
-
"gregorian",
|
|
146
|
-
"islamic",
|
|
147
|
-
"islamic-civil",
|
|
148
|
-
"islamic-tbla"
|
|
149
|
-
],
|
|
150
|
-
"MV": [
|
|
151
|
-
"gregorian",
|
|
152
|
-
"islamic-civil",
|
|
153
|
-
"islamic-tbla"
|
|
154
|
-
],
|
|
155
|
-
"MY": [
|
|
156
|
-
"gregorian",
|
|
157
|
-
"islamic",
|
|
158
|
-
"islamic-civil",
|
|
159
|
-
"islamic-tbla"
|
|
160
|
-
],
|
|
161
|
-
"NE": [
|
|
162
|
-
"gregorian",
|
|
163
|
-
"islamic",
|
|
164
|
-
"islamic-civil",
|
|
165
|
-
"islamic-tbla"
|
|
166
|
-
],
|
|
167
|
-
"OM": [
|
|
168
|
-
"gregorian",
|
|
169
|
-
"islamic",
|
|
170
|
-
"islamic-civil",
|
|
171
|
-
"islamic-tbla"
|
|
172
|
-
],
|
|
173
|
-
"PK": [
|
|
174
|
-
"gregorian",
|
|
175
|
-
"islamic",
|
|
176
|
-
"islamic-civil",
|
|
177
|
-
"islamic-tbla"
|
|
178
|
-
],
|
|
179
|
-
"PS": [
|
|
180
|
-
"gregorian",
|
|
181
|
-
"islamic",
|
|
182
|
-
"islamic-civil",
|
|
183
|
-
"islamic-tbla"
|
|
184
|
-
],
|
|
185
|
-
"QA": [
|
|
186
|
-
"gregorian",
|
|
187
|
-
"islamic-umalqura",
|
|
188
|
-
"islamic",
|
|
189
|
-
"islamic-civil",
|
|
190
|
-
"islamic-tbla"
|
|
191
|
-
],
|
|
192
|
-
"SA": [
|
|
193
|
-
"gregorian",
|
|
194
|
-
"islamic-umalqura",
|
|
195
|
-
"islamic",
|
|
196
|
-
"islamic-rgsa"
|
|
197
|
-
],
|
|
198
|
-
"SD": [
|
|
199
|
-
"gregorian",
|
|
200
|
-
"islamic",
|
|
201
|
-
"islamic-civil",
|
|
202
|
-
"islamic-tbla"
|
|
203
|
-
],
|
|
204
|
-
"SG": ["gregorian", "chinese"],
|
|
205
|
-
"SY": [
|
|
206
|
-
"gregorian",
|
|
207
|
-
"islamic",
|
|
208
|
-
"islamic-civil",
|
|
209
|
-
"islamic-tbla"
|
|
210
|
-
],
|
|
211
|
-
"TD": [
|
|
212
|
-
"gregorian",
|
|
213
|
-
"islamic",
|
|
214
|
-
"islamic-civil",
|
|
215
|
-
"islamic-tbla"
|
|
216
|
-
],
|
|
217
|
-
"TH": ["buddhist", "gregorian"],
|
|
218
|
-
"TJ": [
|
|
219
|
-
"gregorian",
|
|
220
|
-
"islamic-civil",
|
|
221
|
-
"islamic-tbla"
|
|
222
|
-
],
|
|
223
|
-
"TM": [
|
|
224
|
-
"gregorian",
|
|
225
|
-
"islamic-civil",
|
|
226
|
-
"islamic-tbla"
|
|
227
|
-
],
|
|
228
|
-
"TN": [
|
|
229
|
-
"gregorian",
|
|
230
|
-
"islamic",
|
|
231
|
-
"islamic-civil",
|
|
232
|
-
"islamic-tbla"
|
|
233
|
-
],
|
|
234
|
-
"TR": [
|
|
235
|
-
"gregorian",
|
|
236
|
-
"islamic-civil",
|
|
237
|
-
"islamic-tbla"
|
|
238
|
-
],
|
|
239
|
-
"TW": [
|
|
240
|
-
"gregorian",
|
|
241
|
-
"roc",
|
|
242
|
-
"chinese"
|
|
243
|
-
],
|
|
244
|
-
"UZ": [
|
|
245
|
-
"gregorian",
|
|
246
|
-
"islamic-civil",
|
|
247
|
-
"islamic-tbla"
|
|
248
|
-
],
|
|
249
|
-
"XK": [
|
|
250
|
-
"gregorian",
|
|
251
|
-
"islamic-civil",
|
|
252
|
-
"islamic-tbla"
|
|
253
|
-
],
|
|
254
|
-
"YE": [
|
|
255
|
-
"gregorian",
|
|
256
|
-
"islamic",
|
|
257
|
-
"islamic-civil",
|
|
258
|
-
"islamic-tbla"
|
|
259
|
-
]
|
|
260
|
-
};
|