node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
MIT License
Copyright (c) 2023 FormatJS
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,3 @@
# Intl ListFormat
We've migrated the docs to https://formatjs.io/docs/polyfills/intl-listformat.

View File

@@ -0,0 +1,72 @@
import { ListPatternLocaleData, ListPatternFieldsData, LiteralPart } from '@formatjs/ecma402-abstract';
export interface IntlListFormatOptions {
/**
* The locale matching algorithm to use.
* Possible values are "lookup" and "best fit"; the default is "best fit".
* For information about this option, see
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation.
*/
localeMatcher?: 'best fit' | 'lookup';
/**
* The format of output message.
* Possible values are :
* - "conjunction" that stands for "and"-based lists (default, e.g., "A, B, and C")
* - "disjunction" that stands for "or"-based lists (e.g., "A, B, or C").
* - "unit" stands for lists of values with units (e.g., "5 pounds, 12 ounces").
*/
type?: 'conjunction' | 'disjunction' | 'unit';
/**
* The length of the formatted message.
* Possible values are:
* - "long" (default, e.g., "A, B, and C");
* - "short" (e.g., "A, B, C"), or
* - "narrow" (e.g., "A B C").
* When style is "short" or "narrow", "unit" is the only allowed value for the type option.
*/
style?: 'long' | 'short' | 'narrow';
}
export interface ResolvedIntlListFormatOptions {
/**
* A string with a BCP 47 language tag, or an array of such strings.
* For the general form and interpretation of the locales argument,
* see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation) page.
*/
locale: string;
/**
* The format of output message.
* Possible values are :
* - "conjunction" that stands for "and"-based lists (default, e.g., "A, B, and C")
* - "disjunction" that stands for "or"-based lists (e.g., "A, B, or C").
* - "unit" stands for lists of values with units (e.g., "5 pounds, 12 ounces").
*/
type: 'conjunction' | 'disjunction' | 'unit';
/**
* The length of the formatted message.
* Possible values are:
* - "long" (default, e.g., "A, B, and C");
* - "short" (e.g., "A, B, C"), or
* - "narrow" (e.g., "A B C").
* When style is "short" or "narrow", "unit" is the only allowed value for the type option.
*/
style: 'long' | 'short' | 'narrow';
}
export type Part<T = string> = LiteralPart | ElementPart | ElementPart<T>;
export interface ElementPart<T = string> {
type: 'element';
value: T;
}
export default class ListFormat {
constructor(locales?: string | string[], options?: IntlListFormatOptions);
format(elements: string[]): string;
formatToParts(elements: string[]): Part[];
resolvedOptions(): ResolvedIntlListFormatOptions;
static supportedLocalesOf(locales: string | string[], options?: Pick<IntlListFormatOptions, 'localeMatcher'>): string[];
static __addLocaleData(...data: ListPatternLocaleData[]): void;
static localeData: Record<string, ListPatternFieldsData | undefined>;
private static availableLocales;
private static __defaultLocale;
private static getDefaultLocale;
private static relevantExtensionKeys;
static polyfilled: boolean;
private static readonly __INTERNAL_SLOT_MAP__;
}

214
server/node_modules/@formatjs/intl-listformat/index.js generated vendored Normal file
View File

@@ -0,0 +1,214 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
var intl_localematcher_1 = require("@formatjs/intl-localematcher");
function validateInstance(instance, method) {
if (!(instance instanceof ListFormat)) {
throw new TypeError("Method Intl.ListFormat.prototype.".concat(method, " called on incompatible receiver ").concat(String(instance)));
}
}
/**
* https://tc39.es/proposal-intl-list-format/#sec-createstringlistfromiterable
* @param list list
*/
function stringListFromIterable(list) {
if (list === undefined) {
return [];
}
var result = [];
for (var _i = 0, list_1 = list; _i < list_1.length; _i++) {
var el = list_1[_i];
if (typeof el !== 'string') {
throw new TypeError("array list[".concat(list.indexOf(el), "] is not type String"));
}
result.push(el);
}
return result;
}
function createPartsFromList(internalSlotMap, lf, list) {
var size = list.length;
if (size === 0) {
return [];
}
if (size === 2) {
var pattern = (0, ecma402_abstract_1.getInternalSlot)(internalSlotMap, lf, 'templatePair');
var first = { type: 'element', value: list[0] };
var second = { type: 'element', value: list[1] };
return deconstructPattern(pattern, { '0': first, '1': second });
}
var last = {
type: 'element',
value: list[size - 1],
};
var parts = last;
var i = size - 2;
while (i >= 0) {
var pattern = void 0;
if (i === 0) {
pattern = (0, ecma402_abstract_1.getInternalSlot)(internalSlotMap, lf, 'templateStart');
}
else if (i < size - 2) {
pattern = (0, ecma402_abstract_1.getInternalSlot)(internalSlotMap, lf, 'templateMiddle');
}
else {
pattern = (0, ecma402_abstract_1.getInternalSlot)(internalSlotMap, lf, 'templateEnd');
}
var head = { type: 'element', value: list[i] };
parts = deconstructPattern(pattern, { '0': head, '1': parts });
i--;
}
return parts;
}
function deconstructPattern(pattern, placeables) {
var patternParts = (0, ecma402_abstract_1.PartitionPattern)(pattern);
var result = [];
for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) {
var patternPart = patternParts_1[_i];
var part = patternPart.type;
if ((0, ecma402_abstract_1.isLiteralPart)(patternPart)) {
result.push({
type: 'literal',
value: patternPart.value,
});
}
else {
(0, ecma402_abstract_1.invariant)(part in placeables, "".concat(part, " is missing from placables"));
var subst = placeables[part];
if (Array.isArray(subst)) {
result.push.apply(result, subst);
}
else {
result.push(subst);
}
}
}
return result;
}
var ListFormat = /** @class */ (function () {
function ListFormat(locales, options) {
// test262/test/intl402/ListFormat/constructor/constructor/newtarget-undefined.js
// Cannot use `new.target` bc of IE11 & TS transpiles it to something else
var newTarget = this && this instanceof ListFormat ? this.constructor : void 0;
if (!newTarget) {
throw new TypeError("Intl.ListFormat must be called with 'new'");
}
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'initializedListFormat', true);
var requestedLocales = (0, ecma402_abstract_1.CanonicalizeLocaleList)(locales);
var opt = Object.create(null);
var opts = (0, ecma402_abstract_1.GetOptionsObject)(options);
var matcher = (0, ecma402_abstract_1.GetOption)(opts, 'localeMatcher', 'string', ['best fit', 'lookup'], 'best fit');
opt.localeMatcher = matcher;
var localeData = ListFormat.localeData;
var r = (0, intl_localematcher_1.ResolveLocale)(ListFormat.availableLocales, requestedLocales, opt, ListFormat.relevantExtensionKeys, localeData, ListFormat.getDefaultLocale);
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale', r.locale);
var type = (0, ecma402_abstract_1.GetOption)(opts, 'type', 'string', ['conjunction', 'disjunction', 'unit'], 'conjunction');
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type', type);
var style = (0, ecma402_abstract_1.GetOption)(opts, 'style', 'string', ['long', 'short', 'narrow'], 'long');
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style', style);
var dataLocale = r.dataLocale;
var dataLocaleData = localeData[dataLocale];
(0, ecma402_abstract_1.invariant)(!!dataLocaleData, "Missing locale data for ".concat(dataLocale));
var dataLocaleTypes = dataLocaleData[type];
var templates = dataLocaleTypes[style];
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templatePair', templates.pair);
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateStart', templates.start);
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateMiddle', templates.middle);
(0, ecma402_abstract_1.setInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateEnd', templates.end);
}
ListFormat.prototype.format = function (elements) {
validateInstance(this, 'format');
var result = '';
var parts = createPartsFromList(ListFormat.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements));
if (!Array.isArray(parts)) {
return parts.value;
}
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
var p = parts_1[_i];
result += p.value;
}
return result;
};
ListFormat.prototype.formatToParts = function (elements) {
validateInstance(this, 'format');
var parts = createPartsFromList(ListFormat.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements));
if (!Array.isArray(parts)) {
return [parts];
}
var result = [];
for (var _i = 0, parts_2 = parts; _i < parts_2.length; _i++) {
var part = parts_2[_i];
result.push(tslib_1.__assign({}, part));
}
return result;
};
ListFormat.prototype.resolvedOptions = function () {
validateInstance(this, 'resolvedOptions');
return {
locale: (0, ecma402_abstract_1.getInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'),
type: (0, ecma402_abstract_1.getInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type'),
style: (0, ecma402_abstract_1.getInternalSlot)(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style'),
};
};
ListFormat.supportedLocalesOf = function (locales, options) {
// test262/test/intl402/ListFormat/constructor/supportedLocalesOf/result-type.js
return (0, ecma402_abstract_1.SupportedLocales)(ListFormat.availableLocales, (0, ecma402_abstract_1.CanonicalizeLocaleList)(locales), options);
};
ListFormat.__addLocaleData = function () {
var data = [];
for (var _i = 0; _i < arguments.length; _i++) {
data[_i] = arguments[_i];
}
for (var _a = 0, data_1 = data; _a < data_1.length; _a++) {
var _b = data_1[_a], d = _b.data, locale = _b.locale;
var minimizedLocale = new Intl.Locale(locale)
.minimize()
.toString();
ListFormat.localeData[locale] = ListFormat.localeData[minimizedLocale] = d;
ListFormat.availableLocales.add(minimizedLocale);
ListFormat.availableLocales.add(locale);
if (!ListFormat.__defaultLocale) {
ListFormat.__defaultLocale = minimizedLocale;
}
}
};
ListFormat.getDefaultLocale = function () {
return ListFormat.__defaultLocale;
};
ListFormat.localeData = {};
ListFormat.availableLocales = new Set();
ListFormat.__defaultLocale = '';
ListFormat.relevantExtensionKeys = [];
ListFormat.polyfilled = true;
ListFormat.__INTERNAL_SLOT_MAP__ = new WeakMap();
return ListFormat;
}());
exports.default = ListFormat;
try {
// IE11 does not have Symbol
if (typeof Symbol !== 'undefined') {
Object.defineProperty(ListFormat.prototype, Symbol.toStringTag, {
value: 'Intl.ListFormat',
writable: false,
enumerable: false,
configurable: true,
});
}
// https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/length.js
Object.defineProperty(ListFormat.prototype.constructor, 'length', {
value: 0,
writable: false,
enumerable: false,
configurable: true,
});
// https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/supportedLocalesOf/length.js
Object.defineProperty(ListFormat.supportedLocalesOf, 'length', {
value: 1,
writable: false,
enumerable: false,
configurable: true,
});
}
catch (e) {
// Meta fix so we're test262-compliant, not important
}

View File

@@ -0,0 +1,72 @@
import { ListPatternLocaleData, ListPatternFieldsData, LiteralPart } from '@formatjs/ecma402-abstract';
export interface IntlListFormatOptions {
/**
* The locale matching algorithm to use.
* Possible values are "lookup" and "best fit"; the default is "best fit".
* For information about this option, see
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation.
*/
localeMatcher?: 'best fit' | 'lookup';
/**
* The format of output message.
* Possible values are :
* - "conjunction" that stands for "and"-based lists (default, e.g., "A, B, and C")
* - "disjunction" that stands for "or"-based lists (e.g., "A, B, or C").
* - "unit" stands for lists of values with units (e.g., "5 pounds, 12 ounces").
*/
type?: 'conjunction' | 'disjunction' | 'unit';
/**
* The length of the formatted message.
* Possible values are:
* - "long" (default, e.g., "A, B, and C");
* - "short" (e.g., "A, B, C"), or
* - "narrow" (e.g., "A B C").
* When style is "short" or "narrow", "unit" is the only allowed value for the type option.
*/
style?: 'long' | 'short' | 'narrow';
}
export interface ResolvedIntlListFormatOptions {
/**
* A string with a BCP 47 language tag, or an array of such strings.
* For the general form and interpretation of the locales argument,
* see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation) page.
*/
locale: string;
/**
* The format of output message.
* Possible values are :
* - "conjunction" that stands for "and"-based lists (default, e.g., "A, B, and C")
* - "disjunction" that stands for "or"-based lists (e.g., "A, B, or C").
* - "unit" stands for lists of values with units (e.g., "5 pounds, 12 ounces").
*/
type: 'conjunction' | 'disjunction' | 'unit';
/**
* The length of the formatted message.
* Possible values are:
* - "long" (default, e.g., "A, B, and C");
* - "short" (e.g., "A, B, C"), or
* - "narrow" (e.g., "A B C").
* When style is "short" or "narrow", "unit" is the only allowed value for the type option.
*/
style: 'long' | 'short' | 'narrow';
}
export type Part<T = string> = LiteralPart | ElementPart | ElementPart<T>;
export interface ElementPart<T = string> {
type: 'element';
value: T;
}
export default class ListFormat {
constructor(locales?: string | string[], options?: IntlListFormatOptions);
format(elements: string[]): string;
formatToParts(elements: string[]): Part[];
resolvedOptions(): ResolvedIntlListFormatOptions;
static supportedLocalesOf(locales: string | string[], options?: Pick<IntlListFormatOptions, 'localeMatcher'>): string[];
static __addLocaleData(...data: ListPatternLocaleData[]): void;
static localeData: Record<string, ListPatternFieldsData | undefined>;
private static availableLocales;
private static __defaultLocale;
private static getDefaultLocale;
private static relevantExtensionKeys;
static polyfilled: boolean;
private static readonly __INTERNAL_SLOT_MAP__;
}

View File

@@ -0,0 +1,212 @@
import { __assign } from "tslib";
import { GetOption, setInternalSlot, SupportedLocales, getInternalSlot, PartitionPattern, invariant, isLiteralPart, GetOptionsObject, CanonicalizeLocaleList, } from '@formatjs/ecma402-abstract';
import { ResolveLocale } from '@formatjs/intl-localematcher';
function validateInstance(instance, method) {
if (!(instance instanceof ListFormat)) {
throw new TypeError("Method Intl.ListFormat.prototype.".concat(method, " called on incompatible receiver ").concat(String(instance)));
}
}
/**
* https://tc39.es/proposal-intl-list-format/#sec-createstringlistfromiterable
* @param list list
*/
function stringListFromIterable(list) {
if (list === undefined) {
return [];
}
var result = [];
for (var _i = 0, list_1 = list; _i < list_1.length; _i++) {
var el = list_1[_i];
if (typeof el !== 'string') {
throw new TypeError("array list[".concat(list.indexOf(el), "] is not type String"));
}
result.push(el);
}
return result;
}
function createPartsFromList(internalSlotMap, lf, list) {
var size = list.length;
if (size === 0) {
return [];
}
if (size === 2) {
var pattern = getInternalSlot(internalSlotMap, lf, 'templatePair');
var first = { type: 'element', value: list[0] };
var second = { type: 'element', value: list[1] };
return deconstructPattern(pattern, { '0': first, '1': second });
}
var last = {
type: 'element',
value: list[size - 1],
};
var parts = last;
var i = size - 2;
while (i >= 0) {
var pattern = void 0;
if (i === 0) {
pattern = getInternalSlot(internalSlotMap, lf, 'templateStart');
}
else if (i < size - 2) {
pattern = getInternalSlot(internalSlotMap, lf, 'templateMiddle');
}
else {
pattern = getInternalSlot(internalSlotMap, lf, 'templateEnd');
}
var head = { type: 'element', value: list[i] };
parts = deconstructPattern(pattern, { '0': head, '1': parts });
i--;
}
return parts;
}
function deconstructPattern(pattern, placeables) {
var patternParts = PartitionPattern(pattern);
var result = [];
for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) {
var patternPart = patternParts_1[_i];
var part = patternPart.type;
if (isLiteralPart(patternPart)) {
result.push({
type: 'literal',
value: patternPart.value,
});
}
else {
invariant(part in placeables, "".concat(part, " is missing from placables"));
var subst = placeables[part];
if (Array.isArray(subst)) {
result.push.apply(result, subst);
}
else {
result.push(subst);
}
}
}
return result;
}
var ListFormat = /** @class */ (function () {
function ListFormat(locales, options) {
// test262/test/intl402/ListFormat/constructor/constructor/newtarget-undefined.js
// Cannot use `new.target` bc of IE11 & TS transpiles it to something else
var newTarget = this && this instanceof ListFormat ? this.constructor : void 0;
if (!newTarget) {
throw new TypeError("Intl.ListFormat must be called with 'new'");
}
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'initializedListFormat', true);
var requestedLocales = CanonicalizeLocaleList(locales);
var opt = Object.create(null);
var opts = GetOptionsObject(options);
var matcher = GetOption(opts, 'localeMatcher', 'string', ['best fit', 'lookup'], 'best fit');
opt.localeMatcher = matcher;
var localeData = ListFormat.localeData;
var r = ResolveLocale(ListFormat.availableLocales, requestedLocales, opt, ListFormat.relevantExtensionKeys, localeData, ListFormat.getDefaultLocale);
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale', r.locale);
var type = GetOption(opts, 'type', 'string', ['conjunction', 'disjunction', 'unit'], 'conjunction');
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type', type);
var style = GetOption(opts, 'style', 'string', ['long', 'short', 'narrow'], 'long');
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style', style);
var dataLocale = r.dataLocale;
var dataLocaleData = localeData[dataLocale];
invariant(!!dataLocaleData, "Missing locale data for ".concat(dataLocale));
var dataLocaleTypes = dataLocaleData[type];
var templates = dataLocaleTypes[style];
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templatePair', templates.pair);
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateStart', templates.start);
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateMiddle', templates.middle);
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateEnd', templates.end);
}
ListFormat.prototype.format = function (elements) {
validateInstance(this, 'format');
var result = '';
var parts = createPartsFromList(ListFormat.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements));
if (!Array.isArray(parts)) {
return parts.value;
}
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
var p = parts_1[_i];
result += p.value;
}
return result;
};
ListFormat.prototype.formatToParts = function (elements) {
validateInstance(this, 'format');
var parts = createPartsFromList(ListFormat.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements));
if (!Array.isArray(parts)) {
return [parts];
}
var result = [];
for (var _i = 0, parts_2 = parts; _i < parts_2.length; _i++) {
var part = parts_2[_i];
result.push(__assign({}, part));
}
return result;
};
ListFormat.prototype.resolvedOptions = function () {
validateInstance(this, 'resolvedOptions');
return {
locale: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'),
type: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type'),
style: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style'),
};
};
ListFormat.supportedLocalesOf = function (locales, options) {
// test262/test/intl402/ListFormat/constructor/supportedLocalesOf/result-type.js
return SupportedLocales(ListFormat.availableLocales, CanonicalizeLocaleList(locales), options);
};
ListFormat.__addLocaleData = function () {
var data = [];
for (var _i = 0; _i < arguments.length; _i++) {
data[_i] = arguments[_i];
}
for (var _a = 0, data_1 = data; _a < data_1.length; _a++) {
var _b = data_1[_a], d = _b.data, locale = _b.locale;
var minimizedLocale = new Intl.Locale(locale)
.minimize()
.toString();
ListFormat.localeData[locale] = ListFormat.localeData[minimizedLocale] = d;
ListFormat.availableLocales.add(minimizedLocale);
ListFormat.availableLocales.add(locale);
if (!ListFormat.__defaultLocale) {
ListFormat.__defaultLocale = minimizedLocale;
}
}
};
ListFormat.getDefaultLocale = function () {
return ListFormat.__defaultLocale;
};
ListFormat.localeData = {};
ListFormat.availableLocales = new Set();
ListFormat.__defaultLocale = '';
ListFormat.relevantExtensionKeys = [];
ListFormat.polyfilled = true;
ListFormat.__INTERNAL_SLOT_MAP__ = new WeakMap();
return ListFormat;
}());
export default ListFormat;
try {
// IE11 does not have Symbol
if (typeof Symbol !== 'undefined') {
Object.defineProperty(ListFormat.prototype, Symbol.toStringTag, {
value: 'Intl.ListFormat',
writable: false,
enumerable: false,
configurable: true,
});
}
// https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/length.js
Object.defineProperty(ListFormat.prototype.constructor, 'length', {
value: 0,
writable: false,
enumerable: false,
configurable: true,
});
// https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/supportedLocalesOf/length.js
Object.defineProperty(ListFormat.supportedLocalesOf, 'length', {
value: 1,
writable: false,
enumerable: false,
configurable: true,
});
}
catch (e) {
// Meta fix so we're test262-compliant, not important
}

View File

@@ -0,0 +1 @@
export {};

View File

@@ -0,0 +1,7 @@
import ListFormat from './';
Object.defineProperty(Intl, 'ListFormat', {
value: ListFormat,
writable: true,
enumerable: false,
configurable: true,
});

View File

@@ -0,0 +1 @@
export {};

View File

@@ -0,0 +1,10 @@
import ListFormat from './';
import { shouldPolyfill } from './should-polyfill';
if (shouldPolyfill()) {
Object.defineProperty(Intl, 'ListFormat', {
value: ListFormat,
writable: true,
enumerable: false,
configurable: true,
});
}

View File

@@ -0,0 +1 @@
export declare function shouldPolyfill(locale?: string): string | undefined;

View File

@@ -0,0 +1,16 @@
import { match } from '@formatjs/intl-localematcher';
import { supportedLocales } from './supported-locales.generated';
function supportedLocalesOf(locale) {
if (!locale) {
return true;
}
var locales = Array.isArray(locale) ? locale : [locale];
return (Intl.ListFormat.supportedLocalesOf(locales).length ===
locales.length);
}
export function shouldPolyfill(locale) {
if (locale === void 0) { locale = 'en'; }
if (!('ListFormat' in Intl) || !supportedLocalesOf(locale)) {
return locale ? match([locale], supportedLocales, 'en') : undefined;
}
}

View File

@@ -0,0 +1 @@
export declare const supportedLocales: string[];

View File

@@ -0,0 +1 @@
export var supportedLocales = ["af", "af-NA", "agq", "ak", "am", "ar", "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", "as", "asa", "ast", "az", "az-Cyrl", "az-Latn", "bas", "be", "be-tarask", "bem", "bez", "bg", "bm", "bn", "bn-IN", "bo", "bo-IN", "br", "brx", "bs", "bs-Cyrl", "bs-Latn", "ca", "ca-AD", "ca-ES-valencia", "ca-FR", "ca-IT", "ccp", "ccp-IN", "ce", "ceb", "cgg", "chr", "ckb", "ckb-IR", "cs", "cy", "da", "da-GL", "dav", "de", "de-AT", "de-BE", "de-CH", "de-IT", "de-LI", "de-LU", "dje", "doi", "dsb", "dua", "dyo", "dz", "ebu", "ee", "ee-TG", "el", "el-CY", "en", "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", "eo", "es", "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", "et", "eu", "ewo", "fa", "fa-AF", "ff", "ff-Adlm", "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-Latn", "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", "fi", "fil", "fo", "fo-DK", "fr", "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", "fur", "fy", "ga", "ga-GB", "gd", "gl", "gsw", "gsw-FR", "gsw-LI", "gu", "guz", "gv", "ha", "ha-GH", "ha-NE", "haw", "he", "hi", "hr", "hr-BA", "hsb", "hu", "hy", "ia", "id", "ig", "ii", "is", "it", "it-CH", "it-SM", "it-VA", "ja", "jgo", "jmc", "jv", "ka", "kab", "kam", "kde", "kea", "kgp", "khq", "ki", "kk", "kkj", "kl", "kln", "km", "kn", "ko", "ko-KP", "kok", "ks", "ks-Arab", "ksb", "ksf", "ksh", "ku", "kw", "ky", "lag", "lb", "lg", "lkt", "ln", "ln-AO", "ln-CF", "ln-CG", "lo", "lrc", "lrc-IQ", "lt", "lu", "luo", "luy", "lv", "mai", "mas", "mas-TZ", "mer", "mfe", "mg", "mgh", "mgo", "mi", "mk", "ml", "mn", "mni", "mni-Beng", "mr", "ms", "ms-BN", "ms-ID", "ms-SG", "mt", "mua", "my", "mzn", "naq", "nb", "nb-SJ", "nd", "nds", "nds-NL", "ne", "ne-IN", "nl", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", "nl-SR", "nl-SX", "nmg", "nn", "nnh", "no", "nus", "nyn", "om", "om-KE", "or", "os", "os-RU", "pa", "pa-Arab", "pa-Guru", "pcm", "pl", "ps", "ps-PK", "pt", "pt-AO", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "qu", "qu-BO", "qu-EC", "rm", "rn", "ro", "ro-MD", "rof", "ru", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-UA", "rw", "rwk", "sa", "sah", "saq", "sat", "sat-Olck", "sbp", "sc", "sd", "sd-Arab", "sd-Deva", "se", "se-FI", "se-SE", "seh", "ses", "sg", "shi", "shi-Latn", "shi-Tfng", "si", "sk", "sl", "smn", "sn", "so", "so-DJ", "so-ET", "so-KE", "sq", "sq-MK", "sq-XK", "sr", "sr-Cyrl", "sr-Cyrl-BA", "sr-Cyrl-ME", "sr-Cyrl-XK", "sr-Latn", "sr-Latn-BA", "sr-Latn-ME", "sr-Latn-XK", "su", "su-Latn", "sv", "sv-AX", "sv-FI", "sw", "sw-CD", "sw-KE", "sw-UG", "ta", "ta-LK", "ta-MY", "ta-SG", "te", "teo", "teo-KE", "tg", "th", "ti", "ti-ER", "tk", "to", "tr", "tr-CY", "tt", "twq", "tzm", "ug", "uk", "und", "ur", "ur-IN", "uz", "uz-Arab", "uz-Cyrl", "uz-Latn", "vai", "vai-Latn", "vai-Vaii", "vi", "vun", "wae", "wo", "xh", "xog", "yav", "yi", "yo", "yo-BJ", "yrl", "yrl-CO", "yrl-VE", "yue", "yue-Hans", "yue-Hant", "zgh", "zh", "zh-Hans", "zh-Hans-HK", "zh-Hans-MO", "zh-Hans-SG", "zh-Hant", "zh-Hant-HK", "zh-Hant-MO", "zu"];

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
}
}
},
"locale": "af-NA"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} of {1}",
"middle": "{0}, {1}",
"pair": "{0} of {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} en {1}",
"middle": "{0}, {1}",
"pair": "{0} en {1}",
"start": "{0}, {1}"
}
}
},
"locale": "af"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "agq"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "ak"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, እና {1}",
"middle": "{0}፣ {1}",
"pair": "{0} እና {1}",
"start": "{0}፣ {1}"
},
"narrow": {
"end": "{0}, እና {1}",
"middle": "{0}፣ {1}",
"pair": "{0} እና {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, እና {1}",
"middle": "{0}፣ {1}",
"pair": "{0} እና {1}",
"start": "{0}፣ {1}"
}
},
"disjunction": {
"long": {
"end": "{0}፣ ወይም {1}",
"middle": "{0}፣ {1}",
"pair": "{0} ወይም {1}",
"start": "{0}፣ {1}"
},
"narrow": {
"end": "{0}፣ ወይም {1}",
"middle": "{0}፣ {1}",
"pair": "{0} ወይም {1}",
"start": "{0}፣ {1}"
},
"short": {
"end": "{0}፣ ወይም {1}",
"middle": "{0}፣ {1}",
"pair": "{0} ወይም {1}",
"start": "{0}፣ {1}"
}
},
"unit": {
"long": {
"end": "{0}፣ {1}",
"middle": "{0}፣ {1}",
"pair": "{0}፣ {1}",
"start": "{0}፣ {1}"
},
"narrow": {
"end": "{0} {1}",
"middle": "{0}፣ {1}",
"pair": "{0} {1}",
"start": "{0}፣ {1}"
},
"short": {
"end": "{0}፣ {1}",
"middle": "{0}፣ {1}",
"pair": "{0}፣ {1}",
"start": "{0}፣ {1}"
}
}
},
"locale": "am"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-AE"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-BH"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-DJ"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-DZ"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-EG"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-EH"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-ER"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-IL"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-IQ"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-JO"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-KM"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-KW"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-LB"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-LY"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-MA"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-MR"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-OM"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-PS"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-QA"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-SA"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-SD"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-SO"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-SS"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-SY"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-TD"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-TN"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar-YE"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
}
},
"disjunction": {
"long": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"narrow": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
},
"short": {
"end": "{0} أو {1}",
"middle": "{0} أو {1}",
"pair": "{0} أو {1}",
"start": "{0} أو {1}"
}
},
"unit": {
"long": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
},
"narrow": {
"end": "{0} و{1}",
"middle": "{0} و{1}",
"pair": "{0} و{1}",
"start": "{0} و{1}"
},
"short": {
"end": "{0}، و{1}",
"middle": "{0}، و{1}",
"pair": "{0} و{1}",
"start": "{0}، و{1}"
}
}
},
"locale": "ar"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} আৰু {1}",
"middle": "{0}, {1}",
"pair": "{0} আৰু {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} আৰু {1}",
"middle": "{0}, {1}",
"pair": "{0} আৰু {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} বা {1}",
"middle": "{0}, {1}",
"pair": "{0} বা {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} বা {1}",
"middle": "{0}, {1}",
"pair": "{0} বা {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} বা {1}",
"middle": "{0}, {1}",
"pair": "{0} বা {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "as"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "asa"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} o {1}",
"middle": "{0}, {1}",
"pair": "{0} o {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} o {1}",
"middle": "{0}, {1}",
"pair": "{0} o {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} o {1}",
"middle": "{0}, {1}",
"pair": "{0} o {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} y {1}",
"middle": "{0}, {1}",
"pair": "{0} y {1}",
"start": "{0}, {1}"
}
}
},
"locale": "ast"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "az-Cyrl"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} və {1}",
"middle": "{0}, {1}",
"pair": "{0} və {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} və {1}",
"middle": "{0}, {1}",
"pair": "{0} və {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0} yaxud {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0}, yaxud {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0}, yaxud {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "az-Latn"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} və {1}",
"middle": "{0}, {1}",
"pair": "{0} və {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} və {1}",
"middle": "{0}, {1}",
"pair": "{0} və {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0} yaxud {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0}, yaxud {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, yaxud {1}",
"middle": "{0}, {1}",
"pair": "{0}, yaxud {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "az"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "bas"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
},
"narrow": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
},
"short": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
}
}
},
"locale": "be-tarask"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} і {1}",
"middle": "{0}, {1}",
"pair": "{0} і {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0} ці {1}",
"middle": "{0}, {1}",
"pair": "{0} ці {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
},
"narrow": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
},
"short": {
"end": "{0} {1}",
"middle": "{0} {1}",
"pair": "{0} {1}",
"start": "{0} {1}"
}
}
},
"locale": "be"
})
}

View File

@@ -0,0 +1 @@
export {}

View File

@@ -0,0 +1,69 @@
/* @generated */
// prettier-ignore
if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') {
Intl.ListFormat.__addLocaleData({
"data": {
"conjunction": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
},
"disjunction": {
"long": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, or {1}",
"middle": "{0}, {1}",
"pair": "{0} or {1}",
"start": "{0}, {1}"
}
},
"unit": {
"long": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"narrow": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
},
"short": {
"end": "{0}, {1}",
"middle": "{0}, {1}",
"pair": "{0}, {1}",
"start": "{0}, {1}"
}
}
},
"locale": "bem"
})
}

Some files were not shown because too many files have changed in this diff Show More