@formatjs/intl-displaynames 5.4.2 → 5.4.3
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/package.json +3 -3
- package/polyfill.iife.js +235 -364
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/intl-displaynames",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.3",
|
|
4
4
|
"description": "Polyfill for: https://tc39.es/proposal-intl-displaynames",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"url": "git+https://github.com/formatjs/formatjs.git"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@formatjs/ecma402-abstract": "1.11.
|
|
25
|
-
"@formatjs/intl-localematcher": "0.2.
|
|
24
|
+
"@formatjs/ecma402-abstract": "1.11.4",
|
|
25
|
+
"@formatjs/intl-localematcher": "0.2.25",
|
|
26
26
|
"tslib": "^2.1.0"
|
|
27
27
|
},
|
|
28
28
|
"bugs": {
|
package/polyfill.iife.js
CHANGED
|
@@ -1,359 +1,4 @@
|
|
|
1
1
|
(function() {
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __markAsModule = function(target) {
|
|
9
|
-
return __defProp(target, "__esModule", { value: true });
|
|
10
|
-
};
|
|
11
|
-
var __commonJS = function(cb, mod) {
|
|
12
|
-
return function __require() {
|
|
13
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
var __reExport = function(target, module, copyDefault, desc) {
|
|
17
|
-
if (module && typeof module === "object" || typeof module === "function")
|
|
18
|
-
for (var keys = __getOwnPropNames(module), i = 0, n = keys.length, key; i < n; i++) {
|
|
19
|
-
key = keys[i];
|
|
20
|
-
if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
|
|
21
|
-
__defProp(target, key, { get: function(k) {
|
|
22
|
-
return module[k];
|
|
23
|
-
}.bind(null, key), enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable });
|
|
24
|
-
}
|
|
25
|
-
return target;
|
|
26
|
-
};
|
|
27
|
-
var __toESM = function(module, isNodeMode) {
|
|
28
|
-
return __reExport(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", !isNodeMode && module && module.__esModule ? { get: function() {
|
|
29
|
-
return module.default;
|
|
30
|
-
}, enumerable: true } : { value: module, enumerable: true })), module);
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js
|
|
34
|
-
var require_CanonicalizeLocaleList = __commonJS({
|
|
35
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/CanonicalizeLocaleList.js": function(exports) {
|
|
36
|
-
"use strict";
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.CanonicalizeLocaleList = void 0;
|
|
39
|
-
function CanonicalizeLocaleList2(locales) {
|
|
40
|
-
return Intl.getCanonicalLocales(locales);
|
|
41
|
-
}
|
|
42
|
-
exports.CanonicalizeLocaleList = CanonicalizeLocaleList2;
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js
|
|
47
|
-
var require_utils = __commonJS({
|
|
48
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/utils.js": function(exports) {
|
|
49
|
-
"use strict";
|
|
50
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51
|
-
exports.invariant = exports.UNICODE_EXTENSION_SEQUENCE_REGEX = void 0;
|
|
52
|
-
exports.UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
|
|
53
|
-
function invariant2(condition, message, Err) {
|
|
54
|
-
if (Err === void 0) {
|
|
55
|
-
Err = Error;
|
|
56
|
-
}
|
|
57
|
-
if (!condition) {
|
|
58
|
-
throw new Err(message);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
exports.invariant = invariant2;
|
|
62
|
-
}
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js
|
|
66
|
-
var require_BestAvailableLocale = __commonJS({
|
|
67
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestAvailableLocale.js": function(exports) {
|
|
68
|
-
"use strict";
|
|
69
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
70
|
-
exports.BestAvailableLocale = void 0;
|
|
71
|
-
function BestAvailableLocale(availableLocales, locale) {
|
|
72
|
-
var candidate = locale;
|
|
73
|
-
while (true) {
|
|
74
|
-
if (availableLocales.has(candidate)) {
|
|
75
|
-
return candidate;
|
|
76
|
-
}
|
|
77
|
-
var pos = candidate.lastIndexOf("-");
|
|
78
|
-
if (!~pos) {
|
|
79
|
-
return void 0;
|
|
80
|
-
}
|
|
81
|
-
if (pos >= 2 && candidate[pos - 2] === "-") {
|
|
82
|
-
pos -= 2;
|
|
83
|
-
}
|
|
84
|
-
candidate = candidate.slice(0, pos);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
exports.BestAvailableLocale = BestAvailableLocale;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js
|
|
92
|
-
var require_LookupMatcher = __commonJS({
|
|
93
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupMatcher.js": function(exports) {
|
|
94
|
-
"use strict";
|
|
95
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96
|
-
exports.LookupMatcher = void 0;
|
|
97
|
-
var utils_1 = require_utils();
|
|
98
|
-
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
99
|
-
function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
100
|
-
var result = { locale: "" };
|
|
101
|
-
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
102
|
-
var locale = requestedLocales_1[_i];
|
|
103
|
-
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
104
|
-
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
105
|
-
if (availableLocale) {
|
|
106
|
-
result.locale = availableLocale;
|
|
107
|
-
if (locale !== noExtensionLocale) {
|
|
108
|
-
result.extension = locale.slice(noExtensionLocale.length + 1, locale.length);
|
|
109
|
-
}
|
|
110
|
-
return result;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
result.locale = getDefaultLocale();
|
|
114
|
-
return result;
|
|
115
|
-
}
|
|
116
|
-
exports.LookupMatcher = LookupMatcher;
|
|
117
|
-
}
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js
|
|
121
|
-
var require_BestFitMatcher = __commonJS({
|
|
122
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/BestFitMatcher.js": function(exports) {
|
|
123
|
-
"use strict";
|
|
124
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125
|
-
exports.BestFitMatcher = void 0;
|
|
126
|
-
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
127
|
-
var utils_1 = require_utils();
|
|
128
|
-
function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
129
|
-
var minimizedAvailableLocaleMap = {};
|
|
130
|
-
var availableLocaleMap = {};
|
|
131
|
-
var canonicalizedLocaleMap = {};
|
|
132
|
-
var minimizedAvailableLocales = /* @__PURE__ */ new Set();
|
|
133
|
-
availableLocales.forEach(function(locale2) {
|
|
134
|
-
var minimizedLocale = new Intl.Locale(locale2).minimize().toString();
|
|
135
|
-
var canonicalizedLocale = Intl.getCanonicalLocales(locale2)[0] || locale2;
|
|
136
|
-
minimizedAvailableLocaleMap[minimizedLocale] = locale2;
|
|
137
|
-
availableLocaleMap[locale2] = locale2;
|
|
138
|
-
canonicalizedLocaleMap[canonicalizedLocale] = locale2;
|
|
139
|
-
minimizedAvailableLocales.add(minimizedLocale);
|
|
140
|
-
minimizedAvailableLocales.add(locale2);
|
|
141
|
-
minimizedAvailableLocales.add(canonicalizedLocale);
|
|
142
|
-
});
|
|
143
|
-
var foundLocale;
|
|
144
|
-
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
145
|
-
var l = requestedLocales_1[_i];
|
|
146
|
-
if (foundLocale) {
|
|
147
|
-
break;
|
|
148
|
-
}
|
|
149
|
-
var noExtensionLocale = l.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
150
|
-
if (availableLocales.has(noExtensionLocale)) {
|
|
151
|
-
foundLocale = noExtensionLocale;
|
|
152
|
-
break;
|
|
153
|
-
}
|
|
154
|
-
if (minimizedAvailableLocales.has(noExtensionLocale)) {
|
|
155
|
-
foundLocale = noExtensionLocale;
|
|
156
|
-
break;
|
|
157
|
-
}
|
|
158
|
-
var locale = new Intl.Locale(noExtensionLocale);
|
|
159
|
-
var maximizedRequestedLocale = locale.maximize().toString();
|
|
160
|
-
var minimizedRequestedLocale = locale.minimize().toString();
|
|
161
|
-
if (minimizedAvailableLocales.has(minimizedRequestedLocale)) {
|
|
162
|
-
foundLocale = minimizedRequestedLocale;
|
|
163
|
-
break;
|
|
164
|
-
}
|
|
165
|
-
foundLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(minimizedAvailableLocales, maximizedRequestedLocale);
|
|
166
|
-
}
|
|
167
|
-
if (!foundLocale) {
|
|
168
|
-
return { locale: getDefaultLocale() };
|
|
169
|
-
}
|
|
170
|
-
return {
|
|
171
|
-
locale: availableLocaleMap[foundLocale] || canonicalizedLocaleMap[foundLocale] || minimizedAvailableLocaleMap[foundLocale] || foundLocale
|
|
172
|
-
};
|
|
173
|
-
}
|
|
174
|
-
exports.BestFitMatcher = BestFitMatcher;
|
|
175
|
-
}
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js
|
|
179
|
-
var require_UnicodeExtensionValue = __commonJS({
|
|
180
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/UnicodeExtensionValue.js": function(exports) {
|
|
181
|
-
"use strict";
|
|
182
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
183
|
-
exports.UnicodeExtensionValue = void 0;
|
|
184
|
-
var utils_1 = require_utils();
|
|
185
|
-
function UnicodeExtensionValue(extension, key) {
|
|
186
|
-
(0, utils_1.invariant)(key.length === 2, "key must have 2 elements");
|
|
187
|
-
var size = extension.length;
|
|
188
|
-
var searchValue = "-".concat(key, "-");
|
|
189
|
-
var pos = extension.indexOf(searchValue);
|
|
190
|
-
if (pos !== -1) {
|
|
191
|
-
var start = pos + 4;
|
|
192
|
-
var end = start;
|
|
193
|
-
var k = start;
|
|
194
|
-
var done = false;
|
|
195
|
-
while (!done) {
|
|
196
|
-
var e = extension.indexOf("-", k);
|
|
197
|
-
var len = void 0;
|
|
198
|
-
if (e === -1) {
|
|
199
|
-
len = size - k;
|
|
200
|
-
} else {
|
|
201
|
-
len = e - k;
|
|
202
|
-
}
|
|
203
|
-
if (len === 2) {
|
|
204
|
-
done = true;
|
|
205
|
-
} else if (e === -1) {
|
|
206
|
-
end = size;
|
|
207
|
-
done = true;
|
|
208
|
-
} else {
|
|
209
|
-
end = e;
|
|
210
|
-
k = e + 1;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
return extension.slice(start, end);
|
|
214
|
-
}
|
|
215
|
-
searchValue = "-".concat(key);
|
|
216
|
-
pos = extension.indexOf(searchValue);
|
|
217
|
-
if (pos !== -1 && pos + 3 === size) {
|
|
218
|
-
return "";
|
|
219
|
-
}
|
|
220
|
-
return void 0;
|
|
221
|
-
}
|
|
222
|
-
exports.UnicodeExtensionValue = UnicodeExtensionValue;
|
|
223
|
-
}
|
|
224
|
-
});
|
|
225
|
-
|
|
226
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js
|
|
227
|
-
var require_ResolveLocale = __commonJS({
|
|
228
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/ResolveLocale.js": function(exports) {
|
|
229
|
-
"use strict";
|
|
230
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
231
|
-
exports.ResolveLocale = void 0;
|
|
232
|
-
var LookupMatcher_1 = require_LookupMatcher();
|
|
233
|
-
var BestFitMatcher_1 = require_BestFitMatcher();
|
|
234
|
-
var utils_1 = require_utils();
|
|
235
|
-
var UnicodeExtensionValue_1 = require_UnicodeExtensionValue();
|
|
236
|
-
function ResolveLocale2(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
|
|
237
|
-
var matcher = options.localeMatcher;
|
|
238
|
-
var r;
|
|
239
|
-
if (matcher === "lookup") {
|
|
240
|
-
r = (0, LookupMatcher_1.LookupMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
241
|
-
} else {
|
|
242
|
-
r = (0, BestFitMatcher_1.BestFitMatcher)(availableLocales, requestedLocales, getDefaultLocale);
|
|
243
|
-
}
|
|
244
|
-
var foundLocale = r.locale;
|
|
245
|
-
var result = { locale: "", dataLocale: foundLocale };
|
|
246
|
-
var supportedExtension = "-u";
|
|
247
|
-
for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
|
|
248
|
-
var key = relevantExtensionKeys_1[_i];
|
|
249
|
-
(0, utils_1.invariant)(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
|
|
250
|
-
var foundLocaleData = localeData[foundLocale];
|
|
251
|
-
(0, utils_1.invariant)(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
|
|
252
|
-
var keyLocaleData = foundLocaleData[key];
|
|
253
|
-
(0, utils_1.invariant)(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
|
|
254
|
-
var value = keyLocaleData[0];
|
|
255
|
-
(0, utils_1.invariant)(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
|
|
256
|
-
var supportedExtensionAddition = "";
|
|
257
|
-
if (r.extension) {
|
|
258
|
-
var requestedValue = (0, UnicodeExtensionValue_1.UnicodeExtensionValue)(r.extension, key);
|
|
259
|
-
if (requestedValue !== void 0) {
|
|
260
|
-
if (requestedValue !== "") {
|
|
261
|
-
if (~keyLocaleData.indexOf(requestedValue)) {
|
|
262
|
-
value = requestedValue;
|
|
263
|
-
supportedExtensionAddition = "-".concat(key, "-").concat(value);
|
|
264
|
-
}
|
|
265
|
-
} else if (~requestedValue.indexOf("true")) {
|
|
266
|
-
value = "true";
|
|
267
|
-
supportedExtensionAddition = "-".concat(key);
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
if (key in options) {
|
|
272
|
-
var optionsValue = options[key];
|
|
273
|
-
(0, utils_1.invariant)(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
|
|
274
|
-
if (~keyLocaleData.indexOf(optionsValue)) {
|
|
275
|
-
if (optionsValue !== value) {
|
|
276
|
-
value = optionsValue;
|
|
277
|
-
supportedExtensionAddition = "";
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
result[key] = value;
|
|
282
|
-
supportedExtension += supportedExtensionAddition;
|
|
283
|
-
}
|
|
284
|
-
if (supportedExtension.length > 2) {
|
|
285
|
-
var privateIndex = foundLocale.indexOf("-x-");
|
|
286
|
-
if (privateIndex === -1) {
|
|
287
|
-
foundLocale = foundLocale + supportedExtension;
|
|
288
|
-
} else {
|
|
289
|
-
var preExtension = foundLocale.slice(0, privateIndex);
|
|
290
|
-
var postExtension = foundLocale.slice(privateIndex, foundLocale.length);
|
|
291
|
-
foundLocale = preExtension + supportedExtension + postExtension;
|
|
292
|
-
}
|
|
293
|
-
foundLocale = Intl.getCanonicalLocales(foundLocale)[0];
|
|
294
|
-
}
|
|
295
|
-
result.locale = foundLocale;
|
|
296
|
-
return result;
|
|
297
|
-
}
|
|
298
|
-
exports.ResolveLocale = ResolveLocale2;
|
|
299
|
-
}
|
|
300
|
-
});
|
|
301
|
-
|
|
302
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js
|
|
303
|
-
var require_LookupSupportedLocales = __commonJS({
|
|
304
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/abstract/LookupSupportedLocales.js": function(exports) {
|
|
305
|
-
"use strict";
|
|
306
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
307
|
-
exports.LookupSupportedLocales = void 0;
|
|
308
|
-
var utils_1 = require_utils();
|
|
309
|
-
var BestAvailableLocale_1 = require_BestAvailableLocale();
|
|
310
|
-
function LookupSupportedLocales2(availableLocales, requestedLocales) {
|
|
311
|
-
var subset = [];
|
|
312
|
-
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
313
|
-
var locale = requestedLocales_1[_i];
|
|
314
|
-
var noExtensionLocale = locale.replace(utils_1.UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
315
|
-
var availableLocale = (0, BestAvailableLocale_1.BestAvailableLocale)(availableLocales, noExtensionLocale);
|
|
316
|
-
if (availableLocale) {
|
|
317
|
-
subset.push(availableLocale);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
return subset;
|
|
321
|
-
}
|
|
322
|
-
exports.LookupSupportedLocales = LookupSupportedLocales2;
|
|
323
|
-
}
|
|
324
|
-
});
|
|
325
|
-
|
|
326
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js
|
|
327
|
-
var require_intl_localematcher = __commonJS({
|
|
328
|
-
"bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/index.js": function(exports) {
|
|
329
|
-
"use strict";
|
|
330
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
331
|
-
exports.ResolveLocale = exports.LookupSupportedLocales = exports.match = void 0;
|
|
332
|
-
var CanonicalizeLocaleList_1 = require_CanonicalizeLocaleList();
|
|
333
|
-
var ResolveLocale_1 = require_ResolveLocale();
|
|
334
|
-
function match2(requestedLocales, availableLocales, defaultLocale, opts) {
|
|
335
|
-
var locales = availableLocales.reduce(function(all, l) {
|
|
336
|
-
all.add(l);
|
|
337
|
-
return all;
|
|
338
|
-
}, /* @__PURE__ */ new Set());
|
|
339
|
-
return (0, ResolveLocale_1.ResolveLocale)(locales, (0, CanonicalizeLocaleList_1.CanonicalizeLocaleList)(requestedLocales), {
|
|
340
|
-
localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
|
|
341
|
-
}, [], {}, function() {
|
|
342
|
-
return defaultLocale;
|
|
343
|
-
}).locale;
|
|
344
|
-
}
|
|
345
|
-
exports.match = match2;
|
|
346
|
-
var LookupSupportedLocales_1 = require_LookupSupportedLocales();
|
|
347
|
-
Object.defineProperty(exports, "LookupSupportedLocales", { enumerable: true, get: function() {
|
|
348
|
-
return LookupSupportedLocales_1.LookupSupportedLocales;
|
|
349
|
-
} });
|
|
350
|
-
var ResolveLocale_2 = require_ResolveLocale();
|
|
351
|
-
Object.defineProperty(exports, "ResolveLocale", { enumerable: true, get: function() {
|
|
352
|
-
return ResolveLocale_2.ResolveLocale;
|
|
353
|
-
} });
|
|
354
|
-
}
|
|
355
|
-
});
|
|
356
|
-
|
|
357
2
|
// node_modules/tslib/tslib.es6.js
|
|
358
3
|
var __assign = function() {
|
|
359
4
|
__assign = Object.assign || function __assign2(t) {
|
|
@@ -481,8 +126,238 @@
|
|
|
481
126
|
}
|
|
482
127
|
}
|
|
483
128
|
|
|
129
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/CanonicalizeLocaleList.js
|
|
130
|
+
function CanonicalizeLocaleList2(locales) {
|
|
131
|
+
return Intl.getCanonicalLocales(locales);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/utils.js
|
|
135
|
+
var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi;
|
|
136
|
+
function invariant2(condition, message, Err) {
|
|
137
|
+
if (Err === void 0) {
|
|
138
|
+
Err = Error;
|
|
139
|
+
}
|
|
140
|
+
if (!condition) {
|
|
141
|
+
throw new Err(message);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/BestAvailableLocale.js
|
|
146
|
+
function BestAvailableLocale(availableLocales, locale) {
|
|
147
|
+
var candidate = locale;
|
|
148
|
+
while (true) {
|
|
149
|
+
if (availableLocales.has(candidate)) {
|
|
150
|
+
return candidate;
|
|
151
|
+
}
|
|
152
|
+
var pos = candidate.lastIndexOf("-");
|
|
153
|
+
if (!~pos) {
|
|
154
|
+
return void 0;
|
|
155
|
+
}
|
|
156
|
+
if (pos >= 2 && candidate[pos - 2] === "-") {
|
|
157
|
+
pos -= 2;
|
|
158
|
+
}
|
|
159
|
+
candidate = candidate.slice(0, pos);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/LookupMatcher.js
|
|
164
|
+
function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
165
|
+
var result = { locale: "" };
|
|
166
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
167
|
+
var locale = requestedLocales_1[_i];
|
|
168
|
+
var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
169
|
+
var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale);
|
|
170
|
+
if (availableLocale) {
|
|
171
|
+
result.locale = availableLocale;
|
|
172
|
+
if (locale !== noExtensionLocale) {
|
|
173
|
+
result.extension = locale.slice(noExtensionLocale.length + 1, locale.length);
|
|
174
|
+
}
|
|
175
|
+
return result;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
result.locale = getDefaultLocale();
|
|
179
|
+
return result;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/BestFitMatcher.js
|
|
183
|
+
function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) {
|
|
184
|
+
var minimizedAvailableLocaleMap = {};
|
|
185
|
+
var availableLocaleMap = {};
|
|
186
|
+
var canonicalizedLocaleMap = {};
|
|
187
|
+
var minimizedAvailableLocales = /* @__PURE__ */ new Set();
|
|
188
|
+
availableLocales.forEach(function(locale2) {
|
|
189
|
+
var minimizedLocale = new Intl.Locale(locale2).minimize().toString();
|
|
190
|
+
var canonicalizedLocale = Intl.getCanonicalLocales(locale2)[0] || locale2;
|
|
191
|
+
minimizedAvailableLocaleMap[minimizedLocale] = locale2;
|
|
192
|
+
availableLocaleMap[locale2] = locale2;
|
|
193
|
+
canonicalizedLocaleMap[canonicalizedLocale] = locale2;
|
|
194
|
+
minimizedAvailableLocales.add(minimizedLocale);
|
|
195
|
+
minimizedAvailableLocales.add(locale2);
|
|
196
|
+
minimizedAvailableLocales.add(canonicalizedLocale);
|
|
197
|
+
});
|
|
198
|
+
var foundLocale;
|
|
199
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
200
|
+
var l = requestedLocales_1[_i];
|
|
201
|
+
if (foundLocale) {
|
|
202
|
+
break;
|
|
203
|
+
}
|
|
204
|
+
var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
205
|
+
if (availableLocales.has(noExtensionLocale)) {
|
|
206
|
+
foundLocale = noExtensionLocale;
|
|
207
|
+
break;
|
|
208
|
+
}
|
|
209
|
+
if (minimizedAvailableLocales.has(noExtensionLocale)) {
|
|
210
|
+
foundLocale = noExtensionLocale;
|
|
211
|
+
break;
|
|
212
|
+
}
|
|
213
|
+
var locale = new Intl.Locale(noExtensionLocale);
|
|
214
|
+
var maximizedRequestedLocale = locale.maximize().toString();
|
|
215
|
+
var minimizedRequestedLocale = locale.minimize().toString();
|
|
216
|
+
if (minimizedAvailableLocales.has(minimizedRequestedLocale)) {
|
|
217
|
+
foundLocale = minimizedRequestedLocale;
|
|
218
|
+
break;
|
|
219
|
+
}
|
|
220
|
+
foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale);
|
|
221
|
+
}
|
|
222
|
+
if (!foundLocale) {
|
|
223
|
+
return { locale: getDefaultLocale() };
|
|
224
|
+
}
|
|
225
|
+
return {
|
|
226
|
+
locale: availableLocaleMap[foundLocale] || canonicalizedLocaleMap[foundLocale] || minimizedAvailableLocaleMap[foundLocale] || foundLocale
|
|
227
|
+
};
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/UnicodeExtensionValue.js
|
|
231
|
+
function UnicodeExtensionValue(extension, key) {
|
|
232
|
+
invariant2(key.length === 2, "key must have 2 elements");
|
|
233
|
+
var size = extension.length;
|
|
234
|
+
var searchValue = "-".concat(key, "-");
|
|
235
|
+
var pos = extension.indexOf(searchValue);
|
|
236
|
+
if (pos !== -1) {
|
|
237
|
+
var start = pos + 4;
|
|
238
|
+
var end = start;
|
|
239
|
+
var k = start;
|
|
240
|
+
var done = false;
|
|
241
|
+
while (!done) {
|
|
242
|
+
var e = extension.indexOf("-", k);
|
|
243
|
+
var len = void 0;
|
|
244
|
+
if (e === -1) {
|
|
245
|
+
len = size - k;
|
|
246
|
+
} else {
|
|
247
|
+
len = e - k;
|
|
248
|
+
}
|
|
249
|
+
if (len === 2) {
|
|
250
|
+
done = true;
|
|
251
|
+
} else if (e === -1) {
|
|
252
|
+
end = size;
|
|
253
|
+
done = true;
|
|
254
|
+
} else {
|
|
255
|
+
end = e;
|
|
256
|
+
k = e + 1;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
return extension.slice(start, end);
|
|
260
|
+
}
|
|
261
|
+
searchValue = "-".concat(key);
|
|
262
|
+
pos = extension.indexOf(searchValue);
|
|
263
|
+
if (pos !== -1 && pos + 3 === size) {
|
|
264
|
+
return "";
|
|
265
|
+
}
|
|
266
|
+
return void 0;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/ResolveLocale.js
|
|
270
|
+
function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) {
|
|
271
|
+
var matcher = options.localeMatcher;
|
|
272
|
+
var r;
|
|
273
|
+
if (matcher === "lookup") {
|
|
274
|
+
r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale);
|
|
275
|
+
} else {
|
|
276
|
+
r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale);
|
|
277
|
+
}
|
|
278
|
+
var foundLocale = r.locale;
|
|
279
|
+
var result = { locale: "", dataLocale: foundLocale };
|
|
280
|
+
var supportedExtension = "-u";
|
|
281
|
+
for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) {
|
|
282
|
+
var key = relevantExtensionKeys_1[_i];
|
|
283
|
+
invariant2(foundLocale in localeData, "Missing locale data for ".concat(foundLocale));
|
|
284
|
+
var foundLocaleData = localeData[foundLocale];
|
|
285
|
+
invariant2(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data ".concat(key, " must be an object"));
|
|
286
|
+
var keyLocaleData = foundLocaleData[key];
|
|
287
|
+
invariant2(Array.isArray(keyLocaleData), "keyLocaleData for ".concat(key, " must be an array"));
|
|
288
|
+
var value = keyLocaleData[0];
|
|
289
|
+
invariant2(typeof value === "string" || value === null, "value must be string or null but got ".concat(typeof value, " in key ").concat(key));
|
|
290
|
+
var supportedExtensionAddition = "";
|
|
291
|
+
if (r.extension) {
|
|
292
|
+
var requestedValue = UnicodeExtensionValue(r.extension, key);
|
|
293
|
+
if (requestedValue !== void 0) {
|
|
294
|
+
if (requestedValue !== "") {
|
|
295
|
+
if (~keyLocaleData.indexOf(requestedValue)) {
|
|
296
|
+
value = requestedValue;
|
|
297
|
+
supportedExtensionAddition = "-".concat(key, "-").concat(value);
|
|
298
|
+
}
|
|
299
|
+
} else if (~requestedValue.indexOf("true")) {
|
|
300
|
+
value = "true";
|
|
301
|
+
supportedExtensionAddition = "-".concat(key);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
if (key in options) {
|
|
306
|
+
var optionsValue = options[key];
|
|
307
|
+
invariant2(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null");
|
|
308
|
+
if (~keyLocaleData.indexOf(optionsValue)) {
|
|
309
|
+
if (optionsValue !== value) {
|
|
310
|
+
value = optionsValue;
|
|
311
|
+
supportedExtensionAddition = "";
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
result[key] = value;
|
|
316
|
+
supportedExtension += supportedExtensionAddition;
|
|
317
|
+
}
|
|
318
|
+
if (supportedExtension.length > 2) {
|
|
319
|
+
var privateIndex = foundLocale.indexOf("-x-");
|
|
320
|
+
if (privateIndex === -1) {
|
|
321
|
+
foundLocale = foundLocale + supportedExtension;
|
|
322
|
+
} else {
|
|
323
|
+
var preExtension = foundLocale.slice(0, privateIndex);
|
|
324
|
+
var postExtension = foundLocale.slice(privateIndex, foundLocale.length);
|
|
325
|
+
foundLocale = preExtension + supportedExtension + postExtension;
|
|
326
|
+
}
|
|
327
|
+
foundLocale = Intl.getCanonicalLocales(foundLocale)[0];
|
|
328
|
+
}
|
|
329
|
+
result.locale = foundLocale;
|
|
330
|
+
return result;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/abstract/LookupSupportedLocales.js
|
|
334
|
+
function LookupSupportedLocales(availableLocales, requestedLocales) {
|
|
335
|
+
var subset = [];
|
|
336
|
+
for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) {
|
|
337
|
+
var locale = requestedLocales_1[_i];
|
|
338
|
+
var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, "");
|
|
339
|
+
var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale);
|
|
340
|
+
if (availableLocale) {
|
|
341
|
+
subset.push(availableLocale);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
return subset;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// bazel-out/darwin-fastbuild/bin/packages/intl-localematcher/lib/index.js
|
|
348
|
+
function match(requestedLocales, availableLocales, defaultLocale, opts) {
|
|
349
|
+
var locales = availableLocales.reduce(function(all, l) {
|
|
350
|
+
all.add(l);
|
|
351
|
+
return all;
|
|
352
|
+
}, /* @__PURE__ */ new Set());
|
|
353
|
+
return ResolveLocale(locales, CanonicalizeLocaleList2(requestedLocales), {
|
|
354
|
+
localeMatcher: (opts === null || opts === void 0 ? void 0 : opts.algorithm) || "best fit"
|
|
355
|
+
}, [], {}, function() {
|
|
356
|
+
return defaultLocale;
|
|
357
|
+
}).locale;
|
|
358
|
+
}
|
|
359
|
+
|
|
484
360
|
// bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js
|
|
485
|
-
var import_intl_localematcher = __toESM(require_intl_localematcher());
|
|
486
361
|
function SupportedLocales(availableLocales, requestedLocales, options) {
|
|
487
362
|
var matcher = "best fit";
|
|
488
363
|
if (options !== void 0) {
|
|
@@ -490,9 +365,9 @@
|
|
|
490
365
|
matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
|
|
491
366
|
}
|
|
492
367
|
if (matcher === "best fit") {
|
|
493
|
-
return
|
|
368
|
+
return LookupSupportedLocales(availableLocales, requestedLocales);
|
|
494
369
|
}
|
|
495
|
-
return
|
|
370
|
+
return LookupSupportedLocales(availableLocales, requestedLocales);
|
|
496
371
|
}
|
|
497
372
|
|
|
498
373
|
// bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/abstract/CanonicalCodeForDisplayNames.js
|
|
@@ -528,7 +403,6 @@
|
|
|
528
403
|
}
|
|
529
404
|
|
|
530
405
|
// bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/index.js
|
|
531
|
-
var import_intl_localematcher2 = __toESM(require_intl_localematcher());
|
|
532
406
|
var DisplayNames = function() {
|
|
533
407
|
function DisplayNames2(locales, options) {
|
|
534
408
|
var _newTarget = this.constructor;
|
|
@@ -541,7 +415,7 @@
|
|
|
541
415
|
var localeData = DisplayNames2.localeData;
|
|
542
416
|
var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit");
|
|
543
417
|
opt.localeMatcher = matcher;
|
|
544
|
-
var r =
|
|
418
|
+
var r = ResolveLocale(DisplayNames2.availableLocales, requestedLocales, opt, [], DisplayNames2.localeData, DisplayNames2.getDefaultLocale);
|
|
545
419
|
var style = GetOption(options, "style", "string", ["narrow", "short", "long"], "long");
|
|
546
420
|
setSlot(this, "style", style);
|
|
547
421
|
var type = GetOption(options, "type", "string", ["language", "currency", "region", "script"], void 0);
|
|
@@ -674,9 +548,6 @@
|
|
|
674
548
|
}
|
|
675
549
|
}
|
|
676
550
|
|
|
677
|
-
// bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/should-polyfill.js
|
|
678
|
-
var import_intl_localematcher3 = __toESM(require_intl_localematcher());
|
|
679
|
-
|
|
680
551
|
// bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/supported-locales.js
|
|
681
552
|
var supportedLocales = ["af-NA", "af", "agq", "ak", "am", "ar-AE", "ar-BH", "ar-DJ", "ar-DZ", "ar-EG", "ar-EH", "ar-ER", "ar-IL", "ar-IQ", "ar-JO", "ar-KM", "ar-KW", "ar-LB", "ar-LY", "ar-MA", "ar-MR", "ar-OM", "ar-PS", "ar-QA", "ar-SA", "ar-SD", "ar-SO", "ar-SS", "ar-SY", "ar-TD", "ar-TN", "ar-YE", "ar", "as", "asa", "ast", "az-Cyrl", "az-Latn", "az", "bas", "be-tarask", "be", "bem", "bez", "bg", "bm", "bn-IN", "bn", "bo-IN", "bo", "br", "brx", "bs-Cyrl", "bs-Latn", "bs", "ca-AD", "ca-ES-valencia", "ca-FR", "ca-IT", "ca", "ccp-IN", "ccp", "ce", "ceb", "cgg", "chr", "ckb-IR", "ckb", "cs", "cy", "da-GL", "da", "dav", "de-AT", "de-BE", "de-CH", "de-IT", "de-LI", "de-LU", "de", "dje", "doi", "dsb", "dua", "dyo", "dz", "ebu", "ee-TG", "ee", "el-CY", "el", "en-001", "en-150", "en-AE", "en-AG", "en-AI", "en-AS", "en-AT", "en-AU", "en-BB", "en-BE", "en-BI", "en-BM", "en-BS", "en-BW", "en-BZ", "en-CA", "en-CC", "en-CH", "en-CK", "en-CM", "en-CX", "en-CY", "en-DE", "en-DG", "en-DK", "en-DM", "en-ER", "en-FI", "en-FJ", "en-FK", "en-FM", "en-GB", "en-GD", "en-GG", "en-GH", "en-GI", "en-GM", "en-GU", "en-GY", "en-HK", "en-IE", "en-IL", "en-IM", "en-IN", "en-IO", "en-JE", "en-JM", "en-KE", "en-KI", "en-KN", "en-KY", "en-LC", "en-LR", "en-LS", "en-MG", "en-MH", "en-MO", "en-MP", "en-MS", "en-MT", "en-MU", "en-MW", "en-MY", "en-NA", "en-NF", "en-NG", "en-NL", "en-NR", "en-NU", "en-NZ", "en-PG", "en-PH", "en-PK", "en-PN", "en-PR", "en-PW", "en-RW", "en-SB", "en-SC", "en-SD", "en-SE", "en-SG", "en-SH", "en-SI", "en-SL", "en-SS", "en-SX", "en-SZ", "en-TC", "en-TK", "en-TO", "en-TT", "en-TV", "en-TZ", "en-UG", "en-UM", "en-VC", "en-VG", "en-VI", "en-VU", "en-WS", "en-ZA", "en-ZM", "en-ZW", "en", "eo", "es-419", "es-AR", "es-BO", "es-BR", "es-BZ", "es-CL", "es-CO", "es-CR", "es-CU", "es-DO", "es-EA", "es-EC", "es-GQ", "es-GT", "es-HN", "es-IC", "es-MX", "es-NI", "es-PA", "es-PE", "es-PH", "es-PR", "es-PY", "es-SV", "es-US", "es-UY", "es-VE", "es", "et", "eu", "ewo", "fa-AF", "fa", "ff-Adlm-BF", "ff-Adlm-CM", "ff-Adlm-GH", "ff-Adlm-GM", "ff-Adlm-GW", "ff-Adlm-LR", "ff-Adlm-MR", "ff-Adlm-NE", "ff-Adlm-NG", "ff-Adlm-SL", "ff-Adlm-SN", "ff-Adlm", "ff-Latn-BF", "ff-Latn-CM", "ff-Latn-GH", "ff-Latn-GM", "ff-Latn-GN", "ff-Latn-GW", "ff-Latn-LR", "ff-Latn-MR", "ff-Latn-NE", "ff-Latn-NG", "ff-Latn-SL", "ff-Latn", "ff", "fi", "fil", "fo-DK", "fo", "fr-BE", "fr-BF", "fr-BI", "fr-BJ", "fr-BL", "fr-CA", "fr-CD", "fr-CF", "fr-CG", "fr-CH", "fr-CI", "fr-CM", "fr-DJ", "fr-DZ", "fr-GA", "fr-GF", "fr-GN", "fr-GP", "fr-GQ", "fr-HT", "fr-KM", "fr-LU", "fr-MA", "fr-MC", "fr-MF", "fr-MG", "fr-ML", "fr-MQ", "fr-MR", "fr-MU", "fr-NC", "fr-NE", "fr-PF", "fr-PM", "fr-RE", "fr-RW", "fr-SC", "fr-SN", "fr-SY", "fr-TD", "fr-TG", "fr-TN", "fr-VU", "fr-WF", "fr-YT", "fr", "fur", "fy", "ga-GB", "ga", "gd", "gl", "gsw-FR", "gsw-LI", "gsw", "gu", "guz", "gv", "ha-GH", "ha-NE", "ha", "haw", "he", "hi", "hr-BA", "hr", "hsb", "hu", "hy", "ia", "id", "ig", "ii", "is", "it-CH", "it-SM", "it-VA", "it", "ja", "jgo", "jmc", "jv", "ka", "kab", "kam", "kde", "kea", "kgp", "khq", "ki", "kk", "kkj", "kl", "kln", "km", "kn", "ko-KP", "ko", "kok", "ks-Arab", "ks", "ksb", "ksf", "ksh", "ku", "kw", "ky", "lag", "lb", "lg", "lkt", "ln-AO", "ln-CF", "ln-CG", "ln", "lo", "lrc-IQ", "lrc", "lt", "lu", "luo", "luy", "lv", "mai", "mas-TZ", "mas", "mer", "mfe", "mg", "mgh", "mgo", "mi", "mk", "ml", "mn", "mni-Beng", "mni", "mr", "ms-BN", "ms-ID", "ms-SG", "ms", "mt", "mua", "my", "mzn", "naq", "nb-SJ", "nb", "nd", "nds-NL", "nds", "ne-IN", "ne", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", "nl-SR", "nl-SX", "nl", "nmg", "nn", "nnh", "no", "nus", "nyn", "om-KE", "om", "or", "os-RU", "os", "pa-Arab", "pa-Guru", "pa", "pcm", "pl", "ps-PK", "ps", "pt-AO", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "pt", "qu-BO", "qu-EC", "qu", "rm", "rn", "ro-MD", "ro", "rof", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-UA", "ru", "rw", "rwk", "sa", "sah", "saq", "sat-Olck", "sat", "sbp", "sc", "sd-Arab", "sd-Deva", "sd", "se-FI", "se-SE", "se", "seh", "ses", "sg", "shi-Latn", "shi-Tfng", "shi", "si", "sk", "sl", "smn", "sn", "so-DJ", "so-ET", "so-KE", "so", "sq-MK", "sq-XK", "sq", "sr-Cyrl-BA", "sr-Cyrl-ME", "sr-Cyrl-XK", "sr-Cyrl", "sr-Latn-BA", "sr-Latn-ME", "sr-Latn-XK", "sr-Latn", "sr", "su-Latn", "su", "sv-AX", "sv-FI", "sv", "sw-CD", "sw-KE", "sw-UG", "sw", "ta-LK", "ta-MY", "ta-SG", "ta", "te", "teo-KE", "teo", "tg", "th", "ti-ER", "ti", "tk", "to", "tr-CY", "tr", "tt", "twq", "tzm", "ug", "uk", "und", "ur-IN", "ur", "uz-Arab", "uz-Cyrl", "uz-Latn", "uz", "vai-Latn", "vai-Vaii", "vai", "vi", "vun", "wae", "wo", "xh", "xog", "yav", "yi", "yo-BJ", "yo", "yrl-CO", "yrl-VE", "yrl", "yue-Hans", "yue-Hant", "yue", "zgh", "zh-Hans-HK", "zh-Hans-MO", "zh-Hans-SG", "zh-Hans", "zh-Hant-HK", "zh-Hant-MO", "zh-Hant", "zh", "zu"];
|
|
682
553
|
|
|
@@ -714,7 +585,7 @@
|
|
|
714
585
|
locale = "en";
|
|
715
586
|
}
|
|
716
587
|
if (_shouldPolyfillWithoutLocale() || !supportedLocalesOf(locale)) {
|
|
717
|
-
return
|
|
588
|
+
return match([locale], supportedLocales, "en");
|
|
718
589
|
}
|
|
719
590
|
}
|
|
720
591
|
|