@formatjs/intl-locale 4.2.12 → 5.0.0
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/calendars.generated.js +1 -4
- package/character-orders.generated.js +1 -4
- package/get_internal_slots.js +1 -4
- package/hour-cycles.generated.js +1 -4
- package/index.js +105 -108
- package/numbering-systems.generated.js +1 -4
- package/package.json +11 -5
- package/polyfill-force.js +2 -4
- package/polyfill.iife.js +8281 -20618
- package/polyfill.js +4 -6
- package/preference-data.d.ts +1 -1
- package/preference-data.js +18 -24
- package/should-polyfill.js +2 -5
- package/timezones.generated.js +1 -4
- package/week-data.generated.js +1 -4
- package/lib/calendars.generated.d.ts +0 -55
- package/lib/calendars.generated.js +0 -292
- package/lib/character-orders.generated.d.ts +0 -729
- package/lib/character-orders.generated.js +0 -729
- package/lib/get_internal_slots.d.ts +0 -2
- package/lib/get_internal_slots.js +0 -19
- package/lib/hour-cycles.generated.d.ts +0 -277
- package/lib/hour-cycles.generated.js +0 -1041
- package/lib/index.d.ts +0 -103
- package/lib/index.js +0 -582
- package/lib/numbering-systems.generated.d.ts +0 -728
- package/lib/numbering-systems.generated.js +0 -2299
- package/lib/polyfill-force.d.ts +0 -1
- package/lib/polyfill-force.js +0 -7
- package/lib/polyfill.d.ts +0 -1
- package/lib/polyfill.js +0 -10
- package/lib/preference-data.d.ts +0 -6
- package/lib/preference-data.js +0 -46
- package/lib/should-polyfill.d.ts +0 -1
- package/lib/should-polyfill.js +0 -14
- package/lib/timezones.generated.d.ts +0 -250
- package/lib/timezones.generated.js +0 -966
- package/lib/week-data.generated.d.ts +0 -1299
- package/lib/week-data.generated.js +0 -2073
package/polyfill.js
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var should_polyfill_1 = require("./should-polyfill");
|
|
5
|
-
if ((0, should_polyfill_1.shouldPolyfill)()) {
|
|
1
|
+
import { Locale } from './index.js';
|
|
2
|
+
import { shouldPolyfill } from './should-polyfill.js';
|
|
3
|
+
if (shouldPolyfill()) {
|
|
6
4
|
Object.defineProperty(Intl, 'Locale', {
|
|
7
|
-
value:
|
|
5
|
+
value: Locale,
|
|
8
6
|
writable: true,
|
|
9
7
|
enumerable: false,
|
|
10
8
|
configurable: true,
|
package/preference-data.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WeekInfoInternal } from './week-data.generated';
|
|
1
|
+
import type { WeekInfoInternal } from './week-data.generated.js';
|
|
2
2
|
export { WeekInfoInternal };
|
|
3
3
|
export declare function getCalendarPreferenceDataForRegion(region?: string): string[];
|
|
4
4
|
export declare function getHourCyclesPreferenceDataForLocaleOrRegion(locale: string, region?: string): string[];
|
package/preference-data.js
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var tslib_1 = require("tslib");
|
|
8
|
-
var timezones_generated_1 = require("./timezones.generated");
|
|
9
|
-
var hour_cycles_generated_1 = require("./hour-cycles.generated");
|
|
10
|
-
var calendars_generated_1 = require("./calendars.generated");
|
|
11
|
-
var week_data_generated_1 = require("./week-data.generated");
|
|
12
|
-
function getCalendarPreferenceDataForRegion(region) {
|
|
1
|
+
import { __spreadArray } from "tslib";
|
|
2
|
+
import { timezones } from './timezones.generated.js';
|
|
3
|
+
import { hourCycles } from './hour-cycles.generated.js';
|
|
4
|
+
import { calendars } from './calendars.generated.js';
|
|
5
|
+
import { weekData } from './week-data.generated.js';
|
|
6
|
+
export function getCalendarPreferenceDataForRegion(region) {
|
|
13
7
|
var _region = region ? region.toUpperCase() : null;
|
|
14
|
-
return (
|
|
8
|
+
return (calendars[(_region || '')] || calendars['001']).map(function (c) {
|
|
15
9
|
// Resolve aliases
|
|
16
10
|
// cldr-json/cldr-code v42.0.0-ALPHA3-2
|
|
17
11
|
// https://github.com/unicode-org/cldr-json/blob/42.0.0-ALPHA3-2/cldr-json/cldr-bcp47/bcp47/calendar.json
|
|
@@ -30,23 +24,23 @@ function getCalendarPreferenceDataForRegion(region) {
|
|
|
30
24
|
return c;
|
|
31
25
|
});
|
|
32
26
|
}
|
|
33
|
-
function getHourCyclesPreferenceDataForLocaleOrRegion(locale, region) {
|
|
27
|
+
export function getHourCyclesPreferenceDataForLocaleOrRegion(locale, region) {
|
|
34
28
|
var _locale = locale.toLowerCase();
|
|
35
29
|
var _region = (region ? region.toUpperCase() : '');
|
|
36
|
-
var hourCyclesPreference =
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return
|
|
30
|
+
var hourCyclesPreference = hourCycles[_locale] ||
|
|
31
|
+
hourCycles[_region] ||
|
|
32
|
+
hourCycles["".concat(_locale, "-001")] ||
|
|
33
|
+
hourCycles['001'];
|
|
34
|
+
return __spreadArray([], hourCyclesPreference, true);
|
|
41
35
|
}
|
|
42
|
-
function getTimeZonePreferenceForRegion(region) {
|
|
36
|
+
export function getTimeZonePreferenceForRegion(region) {
|
|
43
37
|
var territory = region.toLowerCase();
|
|
44
|
-
if (
|
|
45
|
-
return
|
|
38
|
+
if (timezones[territory]) {
|
|
39
|
+
return __spreadArray([], timezones[territory], true);
|
|
46
40
|
}
|
|
47
41
|
return [];
|
|
48
42
|
}
|
|
49
|
-
function getWeekDataForRegion(region) {
|
|
43
|
+
export function getWeekDataForRegion(region) {
|
|
50
44
|
var _region = (region ? region.toUpperCase() : '');
|
|
51
|
-
return
|
|
45
|
+
return weekData[_region || '001'] || weekData['001'];
|
|
52
46
|
}
|
package/should-polyfill.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.shouldPolyfill = shouldPolyfill;
|
|
4
1
|
/**
|
|
5
2
|
* https://bugs.chromium.org/p/v8/issues/detail?id=10682
|
|
6
3
|
*/
|
|
@@ -8,10 +5,10 @@ function hasIntlGetCanonicalLocalesBug() {
|
|
|
8
5
|
try {
|
|
9
6
|
return new Intl.Locale('und-x-private').toString() === 'x-private';
|
|
10
7
|
}
|
|
11
|
-
catch (
|
|
8
|
+
catch (_a) {
|
|
12
9
|
return true;
|
|
13
10
|
}
|
|
14
11
|
}
|
|
15
|
-
function shouldPolyfill() {
|
|
12
|
+
export function shouldPolyfill() {
|
|
16
13
|
return !('Locale' in Intl) || hasIntlGetCanonicalLocalesBug();
|
|
17
14
|
}
|
package/timezones.generated.js
CHANGED
package/week-data.generated.js
CHANGED
|
@@ -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;
|
|
@@ -1,292 +0,0 @@
|
|
|
1
|
-
/* @generated */
|
|
2
|
-
// prettier-ignore
|
|
3
|
-
export var calendars = {
|
|
4
|
-
"001": [
|
|
5
|
-
"gregorian"
|
|
6
|
-
],
|
|
7
|
-
"AE": [
|
|
8
|
-
"gregorian",
|
|
9
|
-
"islamic-umalqura",
|
|
10
|
-
"islamic",
|
|
11
|
-
"islamic-civil",
|
|
12
|
-
"islamic-tbla"
|
|
13
|
-
],
|
|
14
|
-
"AF": [
|
|
15
|
-
"persian",
|
|
16
|
-
"gregorian",
|
|
17
|
-
"islamic",
|
|
18
|
-
"islamic-civil",
|
|
19
|
-
"islamic-tbla"
|
|
20
|
-
],
|
|
21
|
-
"AL": [
|
|
22
|
-
"gregorian",
|
|
23
|
-
"islamic-civil",
|
|
24
|
-
"islamic-tbla"
|
|
25
|
-
],
|
|
26
|
-
"AZ": [
|
|
27
|
-
"gregorian",
|
|
28
|
-
"islamic-civil",
|
|
29
|
-
"islamic-tbla"
|
|
30
|
-
],
|
|
31
|
-
"BD": [
|
|
32
|
-
"gregorian",
|
|
33
|
-
"islamic",
|
|
34
|
-
"islamic-civil",
|
|
35
|
-
"islamic-tbla"
|
|
36
|
-
],
|
|
37
|
-
"BH": [
|
|
38
|
-
"gregorian",
|
|
39
|
-
"islamic-umalqura",
|
|
40
|
-
"islamic",
|
|
41
|
-
"islamic-civil",
|
|
42
|
-
"islamic-tbla"
|
|
43
|
-
],
|
|
44
|
-
"CN": [
|
|
45
|
-
"gregorian",
|
|
46
|
-
"chinese"
|
|
47
|
-
],
|
|
48
|
-
"CX": [
|
|
49
|
-
"gregorian",
|
|
50
|
-
"chinese"
|
|
51
|
-
],
|
|
52
|
-
"DJ": [
|
|
53
|
-
"gregorian",
|
|
54
|
-
"islamic",
|
|
55
|
-
"islamic-civil",
|
|
56
|
-
"islamic-tbla"
|
|
57
|
-
],
|
|
58
|
-
"DZ": [
|
|
59
|
-
"gregorian",
|
|
60
|
-
"islamic",
|
|
61
|
-
"islamic-civil",
|
|
62
|
-
"islamic-tbla"
|
|
63
|
-
],
|
|
64
|
-
"EG": [
|
|
65
|
-
"gregorian",
|
|
66
|
-
"coptic",
|
|
67
|
-
"islamic",
|
|
68
|
-
"islamic-civil",
|
|
69
|
-
"islamic-tbla"
|
|
70
|
-
],
|
|
71
|
-
"EH": [
|
|
72
|
-
"gregorian",
|
|
73
|
-
"islamic",
|
|
74
|
-
"islamic-civil",
|
|
75
|
-
"islamic-tbla"
|
|
76
|
-
],
|
|
77
|
-
"ER": [
|
|
78
|
-
"gregorian",
|
|
79
|
-
"islamic",
|
|
80
|
-
"islamic-civil",
|
|
81
|
-
"islamic-tbla"
|
|
82
|
-
],
|
|
83
|
-
"ET": [
|
|
84
|
-
"gregorian",
|
|
85
|
-
"ethiopic"
|
|
86
|
-
],
|
|
87
|
-
"HK": [
|
|
88
|
-
"gregorian",
|
|
89
|
-
"chinese"
|
|
90
|
-
],
|
|
91
|
-
"ID": [
|
|
92
|
-
"gregorian",
|
|
93
|
-
"islamic",
|
|
94
|
-
"islamic-civil",
|
|
95
|
-
"islamic-tbla"
|
|
96
|
-
],
|
|
97
|
-
"IL": [
|
|
98
|
-
"gregorian",
|
|
99
|
-
"hebrew",
|
|
100
|
-
"islamic",
|
|
101
|
-
"islamic-civil",
|
|
102
|
-
"islamic-tbla"
|
|
103
|
-
],
|
|
104
|
-
"IN": [
|
|
105
|
-
"gregorian",
|
|
106
|
-
"indian"
|
|
107
|
-
],
|
|
108
|
-
"IQ": [
|
|
109
|
-
"gregorian",
|
|
110
|
-
"islamic",
|
|
111
|
-
"islamic-civil",
|
|
112
|
-
"islamic-tbla"
|
|
113
|
-
],
|
|
114
|
-
"IR": [
|
|
115
|
-
"persian",
|
|
116
|
-
"gregorian",
|
|
117
|
-
"islamic",
|
|
118
|
-
"islamic-civil",
|
|
119
|
-
"islamic-tbla"
|
|
120
|
-
],
|
|
121
|
-
"JO": [
|
|
122
|
-
"gregorian",
|
|
123
|
-
"islamic",
|
|
124
|
-
"islamic-civil",
|
|
125
|
-
"islamic-tbla"
|
|
126
|
-
],
|
|
127
|
-
"JP": [
|
|
128
|
-
"gregorian",
|
|
129
|
-
"japanese"
|
|
130
|
-
],
|
|
131
|
-
"KM": [
|
|
132
|
-
"gregorian",
|
|
133
|
-
"islamic",
|
|
134
|
-
"islamic-civil",
|
|
135
|
-
"islamic-tbla"
|
|
136
|
-
],
|
|
137
|
-
"KR": [
|
|
138
|
-
"gregorian",
|
|
139
|
-
"dangi"
|
|
140
|
-
],
|
|
141
|
-
"KW": [
|
|
142
|
-
"gregorian",
|
|
143
|
-
"islamic-umalqura",
|
|
144
|
-
"islamic",
|
|
145
|
-
"islamic-civil",
|
|
146
|
-
"islamic-tbla"
|
|
147
|
-
],
|
|
148
|
-
"LB": [
|
|
149
|
-
"gregorian",
|
|
150
|
-
"islamic",
|
|
151
|
-
"islamic-civil",
|
|
152
|
-
"islamic-tbla"
|
|
153
|
-
],
|
|
154
|
-
"LY": [
|
|
155
|
-
"gregorian",
|
|
156
|
-
"islamic",
|
|
157
|
-
"islamic-civil",
|
|
158
|
-
"islamic-tbla"
|
|
159
|
-
],
|
|
160
|
-
"MA": [
|
|
161
|
-
"gregorian",
|
|
162
|
-
"islamic",
|
|
163
|
-
"islamic-civil",
|
|
164
|
-
"islamic-tbla"
|
|
165
|
-
],
|
|
166
|
-
"MO": [
|
|
167
|
-
"gregorian",
|
|
168
|
-
"chinese"
|
|
169
|
-
],
|
|
170
|
-
"MR": [
|
|
171
|
-
"gregorian",
|
|
172
|
-
"islamic",
|
|
173
|
-
"islamic-civil",
|
|
174
|
-
"islamic-tbla"
|
|
175
|
-
],
|
|
176
|
-
"MV": [
|
|
177
|
-
"gregorian",
|
|
178
|
-
"islamic-civil",
|
|
179
|
-
"islamic-tbla"
|
|
180
|
-
],
|
|
181
|
-
"MY": [
|
|
182
|
-
"gregorian",
|
|
183
|
-
"islamic",
|
|
184
|
-
"islamic-civil",
|
|
185
|
-
"islamic-tbla"
|
|
186
|
-
],
|
|
187
|
-
"NE": [
|
|
188
|
-
"gregorian",
|
|
189
|
-
"islamic",
|
|
190
|
-
"islamic-civil",
|
|
191
|
-
"islamic-tbla"
|
|
192
|
-
],
|
|
193
|
-
"OM": [
|
|
194
|
-
"gregorian",
|
|
195
|
-
"islamic",
|
|
196
|
-
"islamic-civil",
|
|
197
|
-
"islamic-tbla"
|
|
198
|
-
],
|
|
199
|
-
"PK": [
|
|
200
|
-
"gregorian",
|
|
201
|
-
"islamic",
|
|
202
|
-
"islamic-civil",
|
|
203
|
-
"islamic-tbla"
|
|
204
|
-
],
|
|
205
|
-
"PS": [
|
|
206
|
-
"gregorian",
|
|
207
|
-
"islamic",
|
|
208
|
-
"islamic-civil",
|
|
209
|
-
"islamic-tbla"
|
|
210
|
-
],
|
|
211
|
-
"QA": [
|
|
212
|
-
"gregorian",
|
|
213
|
-
"islamic-umalqura",
|
|
214
|
-
"islamic",
|
|
215
|
-
"islamic-civil",
|
|
216
|
-
"islamic-tbla"
|
|
217
|
-
],
|
|
218
|
-
"SA": [
|
|
219
|
-
"gregorian",
|
|
220
|
-
"islamic-umalqura",
|
|
221
|
-
"islamic",
|
|
222
|
-
"islamic-rgsa"
|
|
223
|
-
],
|
|
224
|
-
"SD": [
|
|
225
|
-
"gregorian",
|
|
226
|
-
"islamic",
|
|
227
|
-
"islamic-civil",
|
|
228
|
-
"islamic-tbla"
|
|
229
|
-
],
|
|
230
|
-
"SG": [
|
|
231
|
-
"gregorian",
|
|
232
|
-
"chinese"
|
|
233
|
-
],
|
|
234
|
-
"SY": [
|
|
235
|
-
"gregorian",
|
|
236
|
-
"islamic",
|
|
237
|
-
"islamic-civil",
|
|
238
|
-
"islamic-tbla"
|
|
239
|
-
],
|
|
240
|
-
"TD": [
|
|
241
|
-
"gregorian",
|
|
242
|
-
"islamic",
|
|
243
|
-
"islamic-civil",
|
|
244
|
-
"islamic-tbla"
|
|
245
|
-
],
|
|
246
|
-
"TH": [
|
|
247
|
-
"buddhist",
|
|
248
|
-
"gregorian"
|
|
249
|
-
],
|
|
250
|
-
"TJ": [
|
|
251
|
-
"gregorian",
|
|
252
|
-
"islamic-civil",
|
|
253
|
-
"islamic-tbla"
|
|
254
|
-
],
|
|
255
|
-
"TM": [
|
|
256
|
-
"gregorian",
|
|
257
|
-
"islamic-civil",
|
|
258
|
-
"islamic-tbla"
|
|
259
|
-
],
|
|
260
|
-
"TN": [
|
|
261
|
-
"gregorian",
|
|
262
|
-
"islamic",
|
|
263
|
-
"islamic-civil",
|
|
264
|
-
"islamic-tbla"
|
|
265
|
-
],
|
|
266
|
-
"TR": [
|
|
267
|
-
"gregorian",
|
|
268
|
-
"islamic-civil",
|
|
269
|
-
"islamic-tbla"
|
|
270
|
-
],
|
|
271
|
-
"TW": [
|
|
272
|
-
"gregorian",
|
|
273
|
-
"roc",
|
|
274
|
-
"chinese"
|
|
275
|
-
],
|
|
276
|
-
"UZ": [
|
|
277
|
-
"gregorian",
|
|
278
|
-
"islamic-civil",
|
|
279
|
-
"islamic-tbla"
|
|
280
|
-
],
|
|
281
|
-
"XK": [
|
|
282
|
-
"gregorian",
|
|
283
|
-
"islamic-civil",
|
|
284
|
-
"islamic-tbla"
|
|
285
|
-
],
|
|
286
|
-
"YE": [
|
|
287
|
-
"gregorian",
|
|
288
|
-
"islamic",
|
|
289
|
-
"islamic-civil",
|
|
290
|
-
"islamic-tbla"
|
|
291
|
-
]
|
|
292
|
-
};
|