From a2157f9848bc79ffc44c2819f4b3fe4ea9605fc2 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 23 Feb 2026 14:09:35 +0100 Subject: [PATCH 1/3] Ignore "menu" attributes in locale display names --- bin/import-cldr-data | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bin/import-cldr-data b/bin/import-cldr-data index 990f5a8..0f29992 100755 --- a/bin/import-cldr-data +++ b/bin/import-cldr-data @@ -497,12 +497,18 @@ abstract class LocaleDisplayName extends Processor $data = array(); $xpath = new DOMXPath($doc); $xElementList = $xpath->query($this->getXPathSelector()); + $expectedKeys = array(); foreach ($xElementList as $xElement) { $type = (string) $xElement->getAttribute('type'); if ($type === '') { throw new RuntimeException('Missing type attribute'); } $key = str_replace('_', '-', $type); + $menu = (string) $xElement->getAttribute('menu'); + if ($menu !== '') { + $expectedKeys[] = $key; + continue; + } $alt = (string) $xElement->getAttribute('alt'); if ($alt !== '') { $key = "{$key}-alt-{$alt}"; @@ -512,6 +518,11 @@ abstract class LocaleDisplayName extends Processor } $data[$key] = (string) $xElement->textContent; } + foreach (array_unique($expectedKeys) as $expectedKey) { + if (!isset($data[$expectedKey])) { + throw new RuntimeException("Missing expected key {$expectedKey}"); + } + } if ($data === array()) { throw new RuntimeException('No elements found'); } From 2f54e46bfc41f6c32987cbe3ecc5c21b5bc43e94 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 23 Feb 2026 14:10:05 +0100 Subject: [PATCH 2/3] Ignore script tags listed in plural rules (why are even there?) --- bin/import-cldr-data | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/bin/import-cldr-data b/bin/import-cldr-data index 0f29992..e810c92 100755 --- a/bin/import-cldr-data +++ b/bin/import-cldr-data @@ -390,11 +390,23 @@ class Plurals extends Processor 'root' => '', ); $unrecognizedLocaleCodes = array(); + $m = null; foreach ($xPluralRulesList as $xPluralRules) { $locales = preg_split('/\s+/', (string) $xPluralRules->getAttribute('locales'), -1, PREG_SPLIT_NO_EMPTY); if ($locales === array()) { throw new RuntimeException('No locales found in pluralRules element'); } + $localesWithScript = array(); + foreach ($locales as $locale) { + if (preg_match('/^([a-z]{2,3})[_\-][A-Z][a-z]{3}$/', $locale, $m)) { + $localesWithScript[$locale] = $m[1]; + } + } + $missingLocales = array_diff($localesWithScript, $locales); + if ($missingLocales !== array()) { + throw new RuntimeException("Found locales with script without matching locales without script:-\n" . implode("\n- ", $missingLocales)); + } + $locales = array_diff($locales, array_keys($localesWithScript)); $elements = array( 'pluralRule-count-zero' => null, 'pluralRule-count-one' => null, From f110b0dfb6d4943094cad8f79e2628e249c65a29 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 23 Feb 2026 14:10:45 +0100 Subject: [PATCH 3/3] Update CLDR data from 47 to 48.1 --- gh-pages/public/data/versions.json | 1 + gh-pages/public/data/versions/48.1.json | 3610 +++++++++++++++++++ gh-pages/public/data/versions/48.1.min.json | 1 + src/cldr-data/main/en-US/languages.json | 24 +- src/cldr-data/main/en-US/scripts.json | 6 +- src/cldr-data/main/en-US/territories.json | 6 +- src/cldr-data/supplemental/plurals.json | 22 +- 7 files changed, 3655 insertions(+), 15 deletions(-) create mode 100644 gh-pages/public/data/versions/48.1.json create mode 100644 gh-pages/public/data/versions/48.1.min.json diff --git a/gh-pages/public/data/versions.json b/gh-pages/public/data/versions.json index 6151d1c..bb7fe31 100644 --- a/gh-pages/public/data/versions.json +++ b/gh-pages/public/data/versions.json @@ -1,4 +1,5 @@ [ + "48.1", "47", "46.1", "45", diff --git a/gh-pages/public/data/versions/48.1.json b/gh-pages/public/data/versions/48.1.json new file mode 100644 index 0000000..df08f66 --- /dev/null +++ b/gh-pages/public/data/versions/48.1.json @@ -0,0 +1,3610 @@ +{ + "af": { + "name": "Afrikaans", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))" + }, + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))" + }, + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "blo": { + "name": "Anii", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : 2", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91 ? 0 : n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92 ? 1 : ((n % 10 == 3 || n % 10 == 4) || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99) ? 2 : n != 0 && n % 1000000 == 0 ? 3 : 4", + "php": "(n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) ? 0 : ((n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) ? 1 : ((((n % 10 == 3 || n % 10 == 4) || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))" + }, + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formulas": { + "standard": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "php": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formulas": { + "standard": "n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "csw": { + "name": "Swampy Cree", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cv": { + "name": "Chuvash", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : 2", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n == 3 ? 3 : n == 6 ? 4 : 5", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))" + }, + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formulas": { + "standard": "n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3", + "php": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formulas": { + "standard": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "php": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formulas": { + "standard": "(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : n >= 3 && n <= 6 ? 2 : n >= 7 && n <= 10 ? 3 : 4", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))" + }, + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formulas": { + "standard": "(n == 1 || n == 11) ? 0 : (n == 2 || n == 12) ? 1 : (n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3", + "php": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formulas": { + "standard": "n % 10 == 1 ? 0 : n % 10 == 2 ? 1 : (n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3", + "php": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formulas": { + "standard": "n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3", + "php": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ie": { + "name": "Interlingue", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formulas": { + "standard": "n % 10 != 1 || n % 100 == 11", + "php": "n % 10 != 1 || n % 100 == 11" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kok": { + "name": "Konkani", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : 2", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : (n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000 ? 2 : (n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81) ? 4 : 5", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))" + }, + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formulas": { + "standard": "n == 0 ? 0 : n == 1 ? 1 : 2", + "php": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lld": { + "name": "Dolomitic Ladin", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ln": { + "name": "Lingala", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formulas": { + "standard": "n % 10 == 1 && (n % 100 < 11 || n % 100 > 19) ? 0 : n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19) ? 1 : 2", + "php": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formulas": { + "standard": "n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 ? 0 : n % 10 == 1 && n % 100 != 11 ? 1 : 2", + "php": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formulas": { + "standard": "n % 10 != 1 || n % 100 == 11", + "php": "n % 10 != 1 || n % 100 == 11" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : n == 0 || n % 100 >= 3 && n % 100 <= 10 ? 2 : n % 100 >= 11 && n % 100 <= 19 ? 3 : 4", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))" + }, + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formulas": { + "standard": "n == 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formulas": { + "standard": "n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 ? 0 : n % 10 == 1 && n % 100 != 11 ? 1 : 2", + "php": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formulas": { + "standard": "(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formulas": { + "standard": "n == 1 ? 0 : n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "sd": { + "name": "Sindhi", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sgs": { + "name": "Samogitian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n == 2 ? 1 : n != 2 && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19) ? 2 : 3", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n == 2) ? 1 : ((n != 2 && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "two": "2", + "few": "3~9, 22~29, 32, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formulas": { + "standard": "n == 0 || n == 1 ? 0 : n >= 2 && n <= 10 ? 1 : 2", + "php": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formulas": { + "standard": "n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formulas": { + "standard": "n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3", + "php": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))" + }, + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formulas": { + "standard": "n == 1 ? 0 : n == 2 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formulas": { + "standard": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "php": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formulas": { + "standard": "n >= 2 && (n < 11 || n > 99)", + "php": "n >= 2 && (n < 11 || n > 99)" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formulas": { + "standard": "n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2", + "php": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formulas": { + "standard": "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2", + "php": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)" + }, + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formulas": { + "standard": "n != 1", + "php": "n != 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formulas": { + "standard": "0", + "php": "0" + }, + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formulas": { + "standard": "n > 1", + "php": "n > 1" + }, + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/48.1.min.json b/gh-pages/public/data/versions/48.1.min.json new file mode 100644 index 0000000..c5e350c --- /dev/null +++ b/gh-pages/public/data/versions/48.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5","php":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))"},"plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5","php":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))"},"plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"blo":{"name":"Anii","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : 2","php":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91 ? 0 : n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92 ? 1 : ((n % 10 == 3 || n % 10 == 4) || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99) ? 2 : n != 0 && n % 1000000 == 0 ? 3 : 4","php":"(n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) ? 0 : ((n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) ? 1 : ((((n % 10 == 3 || n % 10 == 4) || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))"},"plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formulas":{"standard":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","php":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)"},"plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formulas":{"standard":"n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2","php":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"csw":{"name":"Swampy Cree","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"cv":{"name":"Chuvash","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : 2","php":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n == 3 ? 3 : n == 6 ? 4 : 5","php":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))"},"plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formulas":{"standard":"n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3","php":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formulas":{"standard":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","php":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)"},"plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formulas":{"standard":"(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : n >= 3 && n <= 6 ? 2 : n >= 7 && n <= 10 ? 3 : 4","php":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))"},"plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formulas":{"standard":"(n == 1 || n == 11) ? 0 : (n == 2 || n == 12) ? 1 : (n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3","php":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formulas":{"standard":"n % 10 == 1 ? 0 : n % 10 == 2 ? 1 : (n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3","php":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formulas":{"standard":"n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3","php":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ie":{"name":"Interlingue","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formulas":{"standard":"n % 10 != 1 || n % 100 == 11","php":"n % 10 != 1 || n % 100 == 11"},"plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kok":{"name":"Konkani","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : 2","php":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : (n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000 ? 2 : (n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81) ? 4 : 5","php":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))"},"plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formulas":{"standard":"n == 0 ? 0 : n == 1 ? 1 : 2","php":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lld":{"name":"Dolomitic Ladin","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ln":{"name":"Lingala","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formulas":{"standard":"n % 10 == 1 && (n % 100 < 11 || n % 100 > 19) ? 0 : n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19) ? 1 : 2","php":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formulas":{"standard":"n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 ? 0 : n % 10 == 1 && n % 100 != 11 ? 1 : 2","php":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formulas":{"standard":"n % 10 != 1 || n % 100 == 11","php":"n % 10 != 1 || n % 100 == 11"},"plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : n == 0 || n % 100 >= 3 && n % 100 <= 10 ? 2 : n % 100 >= 11 && n % 100 <= 19 ? 3 : 4","php":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))"},"plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formulas":{"standard":"n == 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formulas":{"standard":"n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 ? 0 : n % 10 == 1 && n % 100 != 11 ? 1 : 2","php":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)"},"plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formulas":{"standard":"(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formulas":{"standard":"n == 1 ? 0 : n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"sd":{"name":"Sindhi","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sgs":{"name":"Samogitian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n == 2 ? 1 : n != 2 && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19) ? 2 : 3","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n == 2) ? 1 : ((n != 2 && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","two":"2","few":"3~9, 22~29, 32, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formulas":{"standard":"n == 0 || n == 1 ? 0 : n >= 2 && n <= 10 ? 1 : 2","php":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formulas":{"standard":"n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2","php":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formulas":{"standard":"n % 100 == 1 ? 0 : n % 100 == 2 ? 1 : (n % 100 == 3 || n % 100 == 4) ? 2 : 3","php":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))"},"plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formulas":{"standard":"n == 1 ? 0 : n == 2 ? 1 : 2","php":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)"},"plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formulas":{"standard":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","php":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)"},"plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formulas":{"standard":"n >= 2 && (n < 11 || n > 99)","php":"n >= 2 && (n < 11 || n > 99)"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formulas":{"standard":"n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : 2","php":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)"},"plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formulas":{"standard":"n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2","php":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)"},"plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formulas":{"standard":"n != 1","php":"n != 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formulas":{"standard":"0","php":"0"},"plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formulas":{"standard":"n > 1","php":"n > 1"},"plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/src/cldr-data/main/en-US/languages.json b/src/cldr-data/main/en-US/languages.json index af3114a..f0e56ad 100644 --- a/src/cldr-data/main/en-US/languages.json +++ b/src/cldr-data/main/en-US/languages.json @@ -3,7 +3,7 @@ "en-US": { "identity": { "version": { - "_cldrVersion": "47" + "_cldrVersion": "48.1" }, "language": "en", "territory": "US" @@ -88,6 +88,7 @@ "bo": "Tibetan", "bpy": "Bishnupriya", "bqi": "Bakhtiari", + "bqi-alt-variant": "Luri Bakhtiari", "br": "Breton", "bra": "Braj", "brh": "Brahui", @@ -126,8 +127,8 @@ "co": "Corsican", "cop": "Coptic", "cps": "Capiznon", - "cr": "Cree", "cr-alt-long": "Woods Cree", + "cr": "Cree", "crg": "Michif", "crh": "Crimean Tatar", "crj": "Southern East Cree", @@ -245,9 +246,9 @@ "haw": "Hawaiian", "hax": "Southern Haida", "he": "Hebrew", + "hi-Latn-alt-variant": "Hinglish", "hi": "Hindi", "hi-Latn": "Hindi (Latin)", - "hi-Latn-alt-variant": "Hinglish", "hif": "Fiji Hindi", "hil": "Hiligaynon", "hit": "Hittite", @@ -300,6 +301,7 @@ "kcg": "Tyap", "kde": "Makonde", "kea": "Kabuverdianu", + "kek": "Qʼeqchiʼ", "ken": "Kenyang", "kfo": "Koro", "kg": "Kongo", @@ -340,8 +342,8 @@ "kw": "Cornish", "kwk": "Kwakʼwala", "kxv": "Kuvi", - "ky": "Kyrgyz", "ky-alt-variant": "Kirghiz", + "ky": "Kyrgyz", "la": "Latin", "lad": "Ladino", "lag": "Langi", @@ -463,6 +465,7 @@ "ojs": "Oji-Cree", "ojw": "Western Ojibwa", "oka": "Okanagan", + "oka-alt-variant": "Colville Salish", "om": "Oromo", "or": "Odia", "os": "Ossetic", @@ -482,6 +485,7 @@ "pfl": "Palatine German", "phn": "Phoenician", "pi": "Pali", + "pi-alt-variant": "Pāli", "pis": "Pijin", "pl": "Polish", "pms": "Piedmontese", @@ -554,15 +558,15 @@ "slh": "Southern Lushootseed", "sli": "Lower Silesian", "sly": "Selayar", + "smj-alt-menu": "Sami, Lule", + "smn-alt-menu": "Sami, Inari", + "sms-alt-menu": "Sami, Skolt", "sm": "Samoan", - "sma": "Southern Sami", "sma-alt-menu": "Sami, Southern", + "sma": "Southern Sami", "smj": "Lule Sami", - "smj-alt-menu": "Sami, Lule", "smn": "Inari Sami", - "smn-alt-menu": "Sami, Inari", "sms": "Skolt Sami", - "sms-alt-menu": "Sami, Skolt", "sn": "Shona", "snk": "Soninke", "so": "Somali", @@ -604,7 +608,7 @@ "tig": "Tigre", "tiv": "Tiv", "tk": "Turkmen", - "tkl": "Tokelau", + "tkl": "Tokelauan", "tkr": "Tsakhur", "tl": "Tagalog", "tlh": "Klingon", @@ -682,8 +686,8 @@ "zea": "Zeelandic", "zen": "Zenaga", "zgh": "Standard Moroccan Tamazight", - "zh": "Chinese", "zh-alt-long": "Mandarin Chinese", + "zh": "Chinese", "zh-alt-menu": "Chinese, Mandarin", "zh-Hans": "Simplified Chinese", "zh-Hans-alt-long": "Simplified Mandarin Chinese", diff --git a/src/cldr-data/main/en-US/scripts.json b/src/cldr-data/main/en-US/scripts.json index 1c7fd62..4e6cd8a 100644 --- a/src/cldr-data/main/en-US/scripts.json +++ b/src/cldr-data/main/en-US/scripts.json @@ -3,7 +3,7 @@ "en-US": { "identity": { "version": { - "_cldrVersion": "47" + "_cldrVersion": "48.1" }, "language": "en", "territory": "US" @@ -25,6 +25,7 @@ "Bass": "Bassa Vah", "Batk": "Batak", "Beng": "Bangla", + "Berf": "Beria Erfe", "Bhks": "Bhaiksuki", "Blis": "Blissymbols", "Bopo": "Bopomofo", @@ -173,6 +174,7 @@ "Shaw": "Shavian", "Shrd": "Sharada", "Sidd": "Siddham", + "Sidt": "Sidetic", "Sind": "Khudawadi", "Sinh": "Sinhala", "Sogd": "Sogdian", @@ -193,6 +195,7 @@ "Taml": "Tamil", "Tang": "Tangut", "Tavt": "Tai Viet", + "Tayo": "Tai Yo", "Telu": "Telugu", "Teng": "Tengwar", "Tfng": "Tifinagh", @@ -203,6 +206,7 @@ "Tirh": "Tirhuta", "Tnsa": "Tangsa", "Todr": "Todhri", + "Tols": "Tolong Siki", "Toto": "Toto", "Tutg": "Tulu-Tigalari", "Ugar": "Ugaritic", diff --git a/src/cldr-data/main/en-US/territories.json b/src/cldr-data/main/en-US/territories.json index 1949611..ff28d3b 100644 --- a/src/cldr-data/main/en-US/territories.json +++ b/src/cldr-data/main/en-US/territories.json @@ -3,7 +3,7 @@ "en-US": { "identity": { "version": { - "_cldrVersion": "47" + "_cldrVersion": "48.1" }, "language": "en", "territory": "US" @@ -58,8 +58,8 @@ "AW": "Aruba", "AX": "Åland Islands", "AZ": "Azerbaijan", - "BA": "Bosnia & Herzegovina", "BA-alt-short": "Bosnia", + "BA": "Bosnia & Herzegovina", "BB": "Barbados", "BD": "Bangladesh", "BE": "Belgium", @@ -247,8 +247,8 @@ "PN": "Pitcairn Islands", "PN-alt-short": "Pitcairn", "PR": "Puerto Rico", - "PS": "Palestinian Territories", "PS-alt-short": "Palestine", + "PS": "Palestinian Territories", "PT": "Portugal", "PW": "Palau", "PY": "Paraguay", diff --git a/src/cldr-data/supplemental/plurals.json b/src/cldr-data/supplemental/plurals.json index 38e4ee1..0b813bc 100644 --- a/src/cldr-data/supplemental/plurals.json +++ b/src/cldr-data/supplemental/plurals.json @@ -1,7 +1,7 @@ { "supplemental": { "version": { - "_cldrVersion": "47" + "_cldrVersion": "48.1" }, "plurals-type-cardinal": { "af": { @@ -144,6 +144,11 @@ "pluralRule-count-one": "n = 0..1 @integer 0, 1 @decimal 0.0, 1.0, 0.00, 1.00, 0.000, 1.000, 0.0000, 1.0000", "pluralRule-count-other": " @integer 2~17, 100, 1000, 10000, 100000, 1000000, … @decimal 0.1~0.9, 1.1~1.7, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" }, + "cv": { + "pluralRule-count-zero": "n = 0 @integer 0 @decimal 0.0, 0.00, 0.000, 0.0000", + "pluralRule-count-one": "n = 1 @integer 1 @decimal 1.0, 1.00, 1.000, 1.0000", + "pluralRule-count-other": " @integer 2~17, 100, 1000, 10000, 100000, 1000000, … @decimal 0.1~0.9, 1.1~1.7, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" + }, "cy": { "pluralRule-count-zero": "n = 0 @integer 0 @decimal 0.0, 0.00, 0.000, 0.0000", "pluralRule-count-one": "n = 1 @integer 1 @decimal 1.0, 1.00, 1.000, 1.0000", @@ -321,6 +326,10 @@ "id": { "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" }, + "ie": { + "pluralRule-count-one": "i = 1 and v = 0 @integer 1", + "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" + }, "ig": { "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" }, @@ -406,6 +415,10 @@ "ko": { "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" }, + "kok": { + "pluralRule-count-one": "i = 0 or n = 1 @integer 0, 1 @decimal 0.0~1.0, 0.00~0.04", + "pluralRule-count-other": " @integer 2~17, 100, 1000, 10000, 100000, 1000000, … @decimal 1.1~2.6, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" + }, "ks": { "pluralRule-count-one": "n = 1 @integer 1 @decimal 1.0, 1.00, 1.000, 1.0000", "pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~0.9, 1.1~1.6, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" @@ -699,6 +712,13 @@ "sg": { "pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" }, + "sgs": { + "pluralRule-count-one": "n % 10 = 1 and n % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, … @decimal 1.0, 21.0, 31.0, 41.0, 51.0, 61.0, 71.0, 81.0, 101.0, 1001.0, …", + "pluralRule-count-two": "n = 2 @integer 2 @decimal 2.0, 2.00, 2.000, 2.0000", + "pluralRule-count-few": "n != 2 and n % 10 = 2..9 and n % 100 != 11..19 @integer 3~9, 22~29, 32, 102, 1002, … @decimal 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 22.0, 102.0, 1002.0, …", + "pluralRule-count-many": "f != 0 @decimal 0.1~0.9, 1.1~1.7, 10.1, 100.1, 1000.1, …", + "pluralRule-count-other": " @integer 0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, … @decimal 0.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …" + }, "sh": { "pluralRule-count-one": "v = 0 and i % 10 = 1 and i % 100 != 11 or f % 10 = 1 and f % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, … @decimal 0.1, 1.1, 2.1, 3.1, 4.1, 5.1, 6.1, 7.1, 10.1, 100.1, 1000.1, …", "pluralRule-count-few": "v = 0 and i % 10 = 2..4 and i % 100 != 12..14 or f % 10 = 2..4 and f % 100 != 12..14 @integer 2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, … @decimal 0.2~0.4, 1.2~1.4, 2.2~2.4, 3.2~3.4, 4.2~4.4, 5.2, 10.2, 100.2, 1000.2, …",