diff --git a/src/Symfony/Component/HttpKernel/HttpCache/Store.php b/src/Symfony/Component/HttpKernel/HttpCache/Store.php index bf7fd155bd..dec63d4524 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/Store.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/Store.php @@ -175,19 +175,15 @@ class Store implements StoreInterface $key = $this->getCacheKey($request); $storedEnv = $this->persistRequest($request); - // write the response body to the entity store if this is the original response - if (!$response->headers->has('X-Content-Digest')) { - $digest = $this->generateContentDigest($response); + $digest = $this->generateContentDigest($response); + $response->headers->set('X-Content-Digest', $digest); - if (!$this->save($digest, $response->getContent())) { - throw new \RuntimeException('Unable to store the entity.'); - } + if (!$this->save($digest, $response->getContent(), false)) { + throw new \RuntimeException('Unable to store the entity.'); + } - $response->headers->set('X-Content-Digest', $digest); - - if (!$response->headers->has('Transfer-Encoding')) { - $response->headers->set('Content-Length', \strlen($response->getContent())); - } + if (!$response->headers->has('Transfer-Encoding')) { + $response->headers->set('Content-Length', \strlen($response->getContent())); } // read existing cache entries, remove non-varying, and add this one to the list @@ -346,10 +342,14 @@ class Store implements StoreInterface /** * Save data for the given key. */ - private function save(string $key, string $data): bool + private function save(string $key, string $data, bool $overwrite = true): bool { $path = $this->getPath($key); + if (!$overwrite && file_exists($path)) { + return true; + } + if (isset($this->locks[$key])) { $fp = $this->locks[$key]; @ftruncate($fp, 0); diff --git a/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php b/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php index 6e56dbe0bb..b17cc0a44f 100644 --- a/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php @@ -97,6 +97,27 @@ class StoreTest extends TestCase $this->assertEquals('en9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', $res['x-content-digest'][0]); } + public function testDoesNotTrustXContentDigestFromUpstream() + { + $response = new Response('test', 200, ['X-Content-Digest' => 'untrusted-from-elsewhere']); + + $cacheKey = $this->store->write($this->request, $response); + $entries = $this->getStoreMetadata($cacheKey); + list(, $res) = $entries[0]; + + $this->assertEquals('en9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', $res['x-content-digest'][0]); + $this->assertEquals('en9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', $response->headers->get('X-Content-Digest')); + } + + public function testWritesResponseEvenIfXContentDigestIsPresent() + { + // Prime the store + $this->store->write($this->request, new Response('test', 200, ['X-Content-Digest' => 'untrusted-from-elsewhere'])); + + $response = $this->store->lookup($this->request); + $this->assertNotNull($response); + } + public function testFindsAStoredEntryWithLookup() { $this->storeSimpleEntry(); diff --git a/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php index 601fe5ba42..e7c28bc24f 100644 --- a/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php @@ -82,7 +82,6 @@ class CurrencyDataGenerator extends AbstractDataGenerator if (isset($localeBundle['Currencies']) && null !== $localeBundle['Currencies']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => $this->generateSymbolNamePairs($localeBundle), ]; @@ -102,7 +101,6 @@ class CurrencyDataGenerator extends AbstractDataGenerator $rootBundle = $reader->read($tempDir, 'root'); return [ - 'Version' => $rootBundle['Version'], 'Names' => $this->generateSymbolNamePairs($rootBundle), ]; } @@ -112,7 +110,6 @@ class CurrencyDataGenerator extends AbstractDataGenerator */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, string $tempDir): ?array { - $rootBundle = $reader->read($tempDir, 'root'); $supplementalDataBundle = $reader->read($tempDir, 'supplementalData'); $numericCodesBundle = $reader->read($tempDir, 'currencyNumericCodes'); @@ -121,7 +118,6 @@ class CurrencyDataGenerator extends AbstractDataGenerator sort($this->currencyCodes); $data = [ - 'Version' => $rootBundle['Version'], 'Currencies' => $this->currencyCodes, 'Meta' => $this->generateCurrencyMeta($supplementalDataBundle), 'Alpha3ToNumeric' => $this->generateAlpha3ToNumericMapping($numericCodesBundle, $this->currencyCodes), diff --git a/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php index 2af1b0682b..79328afcfa 100644 --- a/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php @@ -143,7 +143,6 @@ class LanguageDataGenerator extends AbstractDataGenerator } } $data = [ - 'Version' => $localeBundle['Version'], 'Names' => $names, 'LocalizedNames' => $localizedNames, ]; @@ -167,7 +166,6 @@ class LanguageDataGenerator extends AbstractDataGenerator */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, string $tempDir): ?array { - $rootBundle = $reader->read($tempDir, 'root'); $metadataBundle = $reader->read($tempDir, 'metadata'); $this->languageCodes = array_unique($this->languageCodes); @@ -175,7 +173,6 @@ class LanguageDataGenerator extends AbstractDataGenerator sort($this->languageCodes); return [ - 'Version' => $rootBundle['Version'], 'Languages' => $this->languageCodes, 'Alpha3Languages' => $this->generateAlpha3Codes($this->languageCodes, $metadataBundle), 'Alpha2ToAlpha3' => $this->generateAlpha2ToAlpha3Mapping($metadataBundle), diff --git a/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php index 87d64c5f43..066cc5fb9d 100644 --- a/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php @@ -116,7 +116,6 @@ class RegionDataGenerator extends AbstractDataGenerator // isset() on \ResourceBundle returns true even if the value is null if (isset($localeBundle['Countries']) && null !== $localeBundle['Countries']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => $this->generateRegionNames($localeBundle), ]; @@ -141,7 +140,6 @@ class RegionDataGenerator extends AbstractDataGenerator */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, string $tempDir): ?array { - $rootBundle = $reader->read($tempDir, 'root'); $metadataBundle = $reader->read($tempDir, 'metadata'); $this->regionCodes = array_unique($this->regionCodes); @@ -153,7 +151,6 @@ class RegionDataGenerator extends AbstractDataGenerator asort($alpha3ToAlpha2); return [ - 'Version' => $rootBundle['Version'], 'Regions' => $this->regionCodes, 'Alpha2ToAlpha3' => $alpha2ToAlpha3, 'Alpha3ToAlpha2' => $alpha3ToAlpha2, diff --git a/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php index 33424f0853..9c26284507 100644 --- a/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php @@ -69,7 +69,6 @@ class ScriptDataGenerator extends AbstractDataGenerator // isset() on \ResourceBundle returns true even if the value is null if (isset($localeBundle['Scripts']) && null !== $localeBundle['Scripts']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => array_diff_key(iterator_to_array($localeBundle['Scripts']), self::$blacklist), ]; @@ -94,14 +93,11 @@ class ScriptDataGenerator extends AbstractDataGenerator */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, string $tempDir): ?array { - $rootBundle = $reader->read($tempDir, 'root'); - $this->scriptCodes = array_unique($this->scriptCodes); sort($this->scriptCodes); return [ - 'Version' => $rootBundle['Version'], 'Scripts' => $this->scriptCodes, ]; } diff --git a/src/Symfony/Component/Intl/Data/Generator/TimezoneDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/TimezoneDataGenerator.php index 29728141d3..54101f442b 100644 --- a/src/Symfony/Component/Intl/Data/Generator/TimezoneDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/TimezoneDataGenerator.php @@ -94,7 +94,6 @@ class TimezoneDataGenerator extends AbstractDataGenerator } $data = [ - 'Version' => $localeBundle['Version'], 'Names' => $this->generateZones($reader, $tempDir, $displayLocale), 'Meta' => self::generateZoneMetadata($localeBundle), ]; @@ -131,7 +130,6 @@ class TimezoneDataGenerator extends AbstractDataGenerator $rootBundle = $reader->read($tempDir, 'root'); return [ - 'Version' => $rootBundle['Version'], 'Meta' => self::generateZoneMetadata($rootBundle), ]; } @@ -149,7 +147,6 @@ class TimezoneDataGenerator extends AbstractDataGenerator ksort($this->zoneToCountryMapping); $data = [ - 'Version' => $rootBundle['Version'], 'Zones' => $this->zoneIds, 'ZoneToCountry' => $this->zoneToCountryMapping, 'CountryToZone' => self::generateCountryToZoneMapping($this->zoneToCountryMapping), diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index 73bf41d4d7..eaea3179b4 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -256,7 +256,7 @@ final class Intl */ public static function getIcuStubVersion(): string { - return '66.1'; + return '67.1'; } /** diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af.json b/src/Symfony/Component/Intl/Resources/data/currencies/af.json index 904aed5806..ad9dd0adbd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json b/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json index af0bcb9939..80d7d91022 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ak.json b/src/Symfony/Component/Intl/Resources/data/currencies/ak.json index c9c5c193f6..3fda6628e4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ak.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/am.json b/src/Symfony/Component/Intl/Resources/data/currencies/am.json index f5bd0840ca..d91b43ce3b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/am.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/am.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -239,7 +238,7 @@ ], "HRK": [ "HRK", - "HRK" + "የክሮሽያ ኩና" ], "HTG": [ "HTG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index 92e0f602b0..eb92f7d3b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json index 531af78eb0..757f788c40 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json index 53bd5cd88c..bd15fe0e07 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json index 7ee6f3bc8e..436e8343d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KMF": [ "CF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json index 357702ad7f..39a9e52e23 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SDG": [ "SDG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json index c9633b6388..5d30235cad 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SOS": [ "S", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json index 2358cf3375..f12b27d5ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/as.json b/src/Symfony/Component/Intl/Resources/data/currencies/as.json index 62f15dd112..96c069b895 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/as.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/as.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az.json b/src/Symfony/Component/Intl/Resources/data/currencies/az.json index 3fc0b41e42..bfb1630ea9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/az.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/az.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json index 99e463b788..d72c07face 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AZN": [ "₼", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/be.json b/src/Symfony/Component/Intl/Resources/data/currencies/be.json index 116cada512..fbd1b96fb2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/be.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/be.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 77909c04b3..b0b51d9340 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index 05729c5ee4..9bfa213c2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json index 7127fce6f4..72a96d8ecf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json index 0f0f31c85c..4e294cb088 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json index b9096e92b3..6f52c7362f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/br.json b/src/Symfony/Component/Intl/Resources/data/currencies/br.json index 0fc540af42..6ce73130ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/br.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/br.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index 984d91f9dc..055f332050 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json index 0ad689f906..0c83fe2ee4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 7e5fc8b680..c1c84817d2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json index 1decc8a6ea..e822b63fb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "FRF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ce.json b/src/Symfony/Component/Intl/Resources/data/currencies/ce.json index ecfcc18222..d5c288cb4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ce.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json index 959510d9a0..be53478efb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json index 8b3e3b4141..73053d4d36 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index 075ff1dedd..c383ce4fd1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/da.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/da.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index 66ad7fb629..6d262054a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json index ea72d8efe8..e3989b79e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BYN": [ "BYN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json index b0dc8ca476..4aab0a6ef4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "EUR": [ "EUR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json index 0f3132c66e..9b6fc75e35 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "LUF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/dz.json b/src/Symfony/Component/Intl/Resources/data/currencies/dz.json index 00e6c88f8f..603abc20a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/dz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json index bf3f82d730..226c65012e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/el.json b/src/Symfony/Component/Intl/Resources/data/currencies/el.json index 13fc181bdd..9718ea5ce7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/el.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/el.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en.json b/src/Symfony/Component/Intl/Resources/data/currencies/en.json index f32b82d016..9325f4073c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json index d37c96ed93..010620e9d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BYB": [ "BYB", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json index 7eb0ad8c5f..58e94d6ed2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json index 5ea9359c88..a89627119c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json index 51e1bac8f2..6607a7db9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json index 4d3f097fd9..0922529b16 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BBD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json index 87b2d2043e..a68ea1f3ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BIF": [ "FBu", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json index 1fd5003916..09d4eb291c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BMD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json index 8266e60355..22f0027835 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BSD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json index fa20ef2fc8..8554e213cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BWP": [ "P", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json index 67ab88d490..8496eb1c8a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json index 1e4243327c..150ed1cb23 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json index 756b6cf69e..b424714ead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json index 54561ac3b3..c611e55d3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json index a2ff768d8c..6680f62a45 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json index 9a3cd36e96..13fe2a9139 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "FJD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json index f0dc3a4c60..96eefd5d54 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "FKP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json index 50442161df..6b1d072c83 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json index f1d1c00f4b..62f9766028 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json index 90c7c864f9..5cf8b52bb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json index 067174a8b6..a9c0269de9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GMD": [ "D", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json index da20dd2969..192573e6f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GYD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json index 50442161df..6b1d072c83 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_IN.json index 3694aaa6fb..7a10cb8887 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "VEF": [ "VEF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json index 50442161df..6b1d072c83 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json index 67554526ae..7e42e5332b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "JMD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json index 25b94ef9f6..447899d10a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json index 1f174cc260..22aa62231a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KYD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json index 82b50eae11..87cfdd4f84 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "LRD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json index 4bcf6b6d84..28a11694c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json index df23a8c9f6..ce7516f94d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MGA": [ "Ar", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json index 0f35dcacb7..e48649daf6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json index 592b54aa88..b844451ee9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json index 2ec72cc182..3c399fee18 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MUR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json index f8199ad275..a5ef36ef60 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MWK": [ "MK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json index 1793b1390a..4b4d67325d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json index 0214cbea39..ae26836fee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json index fdcc6dfd08..07914c9931 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NGN": [ "₦", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json index 10911e7ac9..6eb3c968c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json index 756b6cf69e..b424714ead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json index 756b6cf69e..b424714ead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json index 599d79c3f5..2c6d519180 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PGK": [ "K", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json index aa79fcb8a3..cb92d5512d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PHP": [ "₱", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json index 3dbb247ebb..28702ae511 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PKR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json index 756b6cf69e..b424714ead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json index 9dfb4655eb..08b4d5cdac 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json index 546fe54617..9ef69fdf94 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SBD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json index 069772bd47..0fba89ab4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SCR": [ "SR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json index 9ef9ff516d..7952cc1362 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SEK": [ "kr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json index 8726a0b683..c49afaf76e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SGD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json index a8dcb8b205..9d9bc5aa68 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json index 57dabc442f..c9cf972754 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SLL": [ "Le", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json index 4472e69329..b7986782e4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json index 1900377d50..d73eb7d9fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json index 02fd9082be..1f83da589b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SZL": [ "E", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json index 756b6cf69e..b424714ead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json index e4a0fcc612..f47bc78dcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "TOP": [ "T$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json index bf735349a1..fc74cd4d53 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "TTD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json index 3ff72c4b97..48e0c69a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json index fd3380adf2..00244c270c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "TZS": [ "TSh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json index 4309d6f4cd..7b6958f0d2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "UGX": [ "USh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json index 42a4fef364..e008b0e224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json index 10911e7ac9..6eb3c968c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json index 5ffd99a1eb..0d613d87e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "WST": [ "WS$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json index 4bcf6b6d84..28a11694c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json index b1da438859..7f892929aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ZMW": [ "K", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es.json b/src/Symfony/Component/Intl/Resources/data/currencies/es.json index 41420b28ba..6382a4860b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json index eb2f82deff..dde2e21631 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CAD": [ "CAD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json index a0063d9729..4ee42e615c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ARS": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json index 3098ef4b28..639913ac26 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BOB": [ "Bs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json index 8bb96d37cd..14ec2a17b5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json index bab949eb0a..36bc7d5ebd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json index cab702cef4..3b143b69c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CLP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json index 61d1db1e07..e21ac17716 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "COP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json index 936dafb5ac..a33a15b502 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CRC": [ "₡", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json index bf435c4469..efdf125a48 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CUP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json index 8fcb9ae862..b54086b867 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DOP": [ "RD$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json index 79cd1708ff..289ada5a33 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json index 2fbe79196b..493376a7f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "XAF": [ "FCFA", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json index 87363aac39..c8ec58ba18 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GTQ": [ "Q", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json index 3a55a8fd14..7f33ba1972 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "HNL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json index 58e03068e7..2270e23d0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BDT": [ "BDT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json index bfa33ca3cb..84e3221e2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NIO": [ "C$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json index f649a00138..a7d42624f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PAB": [ "B\/.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json index 90f45fa1c3..5601c57826 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PEN": [ "S\/", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json index 5b03fdca3b..a5006bed2b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PHP": [ "₱", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json index 79cd1708ff..289ada5a33 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json index aa397972f5..b00d9ec342 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PYG": [ "Gs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json index 79cd1708ff..289ada5a33 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json index 3e0d66545b..8e15b2b9b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BDT": [ "BDT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json index 6c405ee7e5..dfcf24e126 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "USD": [ "US$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json index 43c743c58b..22c28eceae 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "VEF": [ "Bs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/et.json b/src/Symfony/Component/Intl/Resources/data/currencies/et.json index 9ea44017a6..7de6cfe66c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/et.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/et.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json index b37feb6db7..49b8178144 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index 9461bf1ddb..0ad9badd62 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -453,6 +452,10 @@ "LTL", "لیتاس لیتوانی" ], + "LTT": [ + "LTT", + "تالوناس لیتوانی" + ], "LUF": [ "LUF", "فرانک لوکزامبورگ" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json index 0f646d734a..a83109f2c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff.json index 61193b59e4..f2f2e0b35f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm.json new file mode 100644 index 0000000000..2600eff18c --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm.json @@ -0,0 +1,632 @@ +{ + "Names": { + "AED": [ + "AED", + "𞤁𞤭𞤪𞤸𞤢𞤥𞤵 𞤋𞤥𞤢𞥄𞤪𞤢𞤼𞤭𞤲𞤳𞤮" + ], + "AFN": [ + "AFN", + "𞤀𞤬𞤿𞤢𞤲𞤭 𞤀𞤬𞤿𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "ALL": [ + "ALL", + "𞤂𞤫𞤳 𞤀𞤤𞤦𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "AMD": [ + "AMD", + "𞤁𞤢𞤪𞤢𞤥𞤵 𞤀𞤪𞤥𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "ANG": [ + "ANG", + "𞤊𞤵𞤤𞤮𞤪𞤭𞤲 𞤀𞤲𞤼𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "AOA": [ + "AOA", + "𞤑𞤵𞤱𞤢𞤲𞥁𞤢 𞤀𞤲𞤺𞤮𞤤𞤢𞤲𞤳𞤮" + ], + "ARS": [ + "ARS", + "𞤆𞤫𞤧𞤮 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢" + ], + "AUD": [ + "A$", + "𞤁𞤢𞤤𞤢 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "AWG": [ + "AWG", + "𞤊𞤵𞤤𞤮𞤪𞤭𞤲 𞤀𞤪𞤵𞤦𞤢𞤲𞤳𞤮" + ], + "AZN": [ + "AZN", + "𞤃𞤢𞤲𞤢𞥄𞤼𞤵 𞤀𞥁𞤫𞤪𞤦𞤢𞤴𞤶𞤢𞤲𞤳𞤮" + ], + "BAM": [ + "BAM", + "𞤃𞤢𞤪𞤳 𞤄𞤮𞤧𞤲𞤭𞤴𞤢-𞤖𞤫𞤪𞤶𞤫𞤺𞤮𞤾𞤭𞤲𞤳𞤮 𞤱𞤢𞤴𞤤𞤮𞤼𞤮𞥅𞤯𞤭" + ], + "BBD": [ + "BBD", + "𞤁𞤢𞤤𞤢 𞤄𞤢𞤪𞤦𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "BDT": [ + "BDT", + "𞤚𞤢𞤪𞤢 𞤄𞤢𞤲𞤺𞤭𞤤𞤢𞤣𞤫𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "BGN": [ + "BGN", + "𞤂𞤫𞥅𞤾 𞤄𞤭𞤤𞤺𞤢𞤪𞤭𞤲𞤳𞤮" + ], + "BHD": [ + "BHD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤄𞤢𞤸𞤢𞤪𞤢𞥄𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "BIF": [ + "BIF", + "𞤊𞤢𞤪𞤢𞤲 𞤄𞤵𞤪𞤵𞤲𞤣𞤭𞤲𞤳𞤮" + ], + "BMD": [ + "BMD", + "𞤁𞤢𞤤𞤢 𞤄𞤫𞤪𞤥𞤵𞤣𞤢𞥄𞤲" + ], + "BND": [ + "BND", + "𞤁𞤢𞤤𞤢 𞤄𞤵𞤪𞤲𞤫𞤴𞤢𞤲𞤳𞤮" + ], + "BOB": [ + "BOB", + "𞤄𞤮𞤤𞤭𞤾𞤭𞤴𞤢𞤲𞤮 𞤄𞤮𞤤𞤭𞤾𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "BRL": [ + "R$", + "𞤈𞤭𞤴𞤢𞤤 𞤄𞤪𞤢𞤧𞤭𞤤𞤴𞤢𞤲𞤳𞤮" + ], + "BSD": [ + "BSD", + "𞤁𞤢𞤤𞤢 𞤄𞤢𞤸𞤢𞤥𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "BTN": [ + "BTN", + "𞤐𞤘𞤵𞤤𞤼𞤵𞤪𞤵𞤥𞤵 𞤄𞤵𞤼𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "BWP": [ + "BWP", + "𞤆𞤵𞤤𞤢 𞤄𞤮𞤼𞤵𞤧𞤱𞤢𞤲𞤢𞤲𞤳𞤮" + ], + "BYN": [ + "BYN", + "𞤈𞤵𞥅𞤦𞤮𞤤 𞤄𞤫𞤤𞤢𞤪𞤭𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "BZD": [ + "BZD", + "𞤁𞤢𞤤𞤢 𞤄𞤫𞤤𞤭𞥅𞤧" + ], + "CAD": [ + "CA$", + "𞤁𞤢𞤤𞤢 𞤑𞤢𞤲𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "CDF": [ + "CDF", + "𞤊𞤢𞤪𞤢𞤲 𞤑𞤮𞤲𞤺𞤮𞤲𞤳𞤮" + ], + "CHF": [ + "CHF", + "𞤊𞤢𞤪𞤢𞤲 𞤅𞤵𞤱𞤭𞥅𞤧" + ], + "CLP": [ + "CLP", + "𞤆𞤫𞤧𞤮 𞤕𞤭𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "CNH": [ + "CNH", + "𞤒𞤵𞤱𞤢𞤲 𞤕𞤢𞤴𞤲𞤭𞤲𞤳𞤮 (𞤺𞤢𞥄𞤲𞤭𞤲𞤳𞤮)" + ], + "CNY": [ + "CN¥", + "𞤒𞤵𞤱𞤢𞤲 𞤕𞤢𞤴𞤲𞤭𞤲𞤳𞤮" + ], + "COP": [ + "COP", + "𞤆𞤫𞤧𞤮 𞤑𞤮𞤤𞤮𞤥𞤦𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "CRC": [ + "CRC", + "𞤑𞤮𞤤𞤮𞥅𞤲 𞤑𞤮𞤧𞤼𞤢 𞤈𞤭𞤳𞤢𞤲" + ], + "CUC": [ + "CUC", + "𞤆𞤫𞤧𞤮 𞤑𞤵𞤦𞤢𞤲𞤳𞤮 𞤏𞤢𞤴𞤤𞤮𞤼𞤮𞥅𞤲𞥋𞤺𞤮" + ], + "CUP": [ + "CUP", + "𞤆𞤫𞤧𞤮 𞤑𞤵𞤦𞤢𞤲𞤳𞤮" + ], + "CVE": [ + "CVE", + "𞤉𞤧𞤳𞤵𞤣𞤮 𞤑𞤢𞤨-𞤜𞤫𞥅𞤪𞤣𞤢𞤲𞤳𞤮" + ], + "CZK": [ + "CZK", + "𞤑𞤮𞤪𞤵𞤲𞤢 𞤕𞤫𞥅𞤳𞤭𞤲𞤳𞤮" + ], + "DJF": [ + "DJF", + "𞤊𞤢𞤪𞤢𞤲 𞤔𞤭𞤦𞤵𞤼𞤭𞤲𞤳𞤮" + ], + "DKK": [ + "DKK", + "𞤑𞤮𞤪𞤲𞤫 𞤁𞤢𞤲𞤭𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "DOP": [ + "DOP", + "𞤆𞤫𞤧𞤮 𞤁𞤮𞤥𞤭𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "DZD": [ + "DZD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤀𞤤𞤶𞤢𞤪𞤭𞤲𞤳𞤮" + ], + "EGP": [ + "EGP", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤃𞤭𞤧𞤭𞤪𞤢𞤲𞤳𞤮" + ], + "ERN": [ + "ERN", + "𞤐𞤢𞤳𞤬𞤢 𞤉𞤪𞤭𞤼𞤫𞤪𞤭𞤲𞤳𞤮" + ], + "ETB": [ + "ETB", + "𞤄𞤭𞤪 𞤖𞤢𞤦𞤢𞤧𞤭𞤲𞤳𞤮" + ], + "EUR": [ + "€", + "𞤒𞤵𞤪𞤮𞥅" + ], + "FJD": [ + "FJD", + "𞤁𞤢𞤤𞤢 𞤊𞤭𞤶𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "FKP": [ + "FKP", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤊𞤢𞤤𞤳𞤵𞤤𞤢𞤲𞤣𞤭𞤳𞤮" + ], + "GBP": [ + "£", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤄𞤪𞤭𞤼𞤭𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "GEL": [ + "GEL", + "𞤂𞤢𞥄𞤪𞤭 𞤔𞤮𞤪𞤶𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "GHS": [ + "GHS", + "𞤅𞤭𞤣𞤭 𞤘𞤢𞤲𞤢𞤲𞤳𞤮" + ], + "GIP": [ + "GIP", + "𞤆𞤢𞤱𞤲𞥋𞤣𞤵 𞤔𞤭𞤤𞤦𞤪𞤢𞤤𞤼𞤢𞤪" + ], + "GMD": [ + "GMD", + "𞤁𞤢𞤤𞤢𞤧𞤭 𞤘𞤢𞤥𞤦𞤭𞤲𞤳𞤮" + ], + "GNF": [ + "FG", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "GTQ": [ + "GTQ", + "𞤑𞤫𞤼𞤵𞥁𞤢𞤤 𞤘𞤵𞤱𞤢𞤼𞤫𞤥𞤢𞤤𞤢𞤲𞤳𞤮" + ], + "GYD": [ + "GYD", + "𞤁𞤢𞤤𞤢 𞤘𞤵𞤴𞤢𞤲𞤫𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "HKD": [ + "HK$", + "𞤁𞤢𞤤𞤢 𞤖𞤮𞤲𞤳𞤮𞤲" + ], + "HNL": [ + "HNL", + "𞤂𞤫𞤥𞤨𞤭𞤪𞤢 𞤖𞤮𞤲𞤣𞤵𞤪𞤢𞤲𞤳𞤮" + ], + "HRK": [ + "HRK", + "𞤑𞤵𞤲𞤢 𞤑𞤵𞤪𞤢𞥄𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "HTG": [ + "HTG", + "𞤘𞤵𞥅𞤪𞤣𞤫 𞤖𞤢𞤴𞤼𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "HUF": [ + "HUF", + "𞤊𞤮𞤪𞤭𞤲𞤼𞤵 𞤖𞤵𞤲𞤺𞤢𞤪𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "IDR": [ + "IDR", + "𞤈𞤵𞤨𞤭𞤴𞤢 𞤋𞤲𞤣𞤮𞤲𞤫𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "ILS": [ + "₪", + "𞤡𞤫𞤳𞤫𞤤 𞤋𞤧𞤪𞤢𞥄𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "INR": [ + "₹", + "𞤈𞤵𞥅𞤨𞤭𞥅 𞤖𞤭𞤲𞤣𞤭𞤧𞤼𞤢𞤲𞤳𞤮" + ], + "IQD": [ + "IQD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤋𞤪𞤢𞥄𞤳𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "IRR": [ + "IRR", + "𞤈𞤭𞤴𞤢𞥄𞤤 𞤋𞤪𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "ISK": [ + "ISK", + "𞤑𞤮𞤪𞤮𞤲𞤢 𞤀𞤴𞤧𞤭𞤤𞤢𞤲𞤣𞤭𞤲𞤳𞤮" + ], + "JMD": [ + "JMD", + "𞤁𞤢𞤤𞤢 𞤔𞤢𞤥𞤢𞤴𞤭𞤲𞤳𞤮" + ], + "JOD": [ + "JOD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤔𞤮𞤪𞤣𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "JPY": [ + "JP¥", + "𞤒𞤫𞤲 𞤔𞤢𞤨𞤢𞤲𞤳𞤮" + ], + "KES": [ + "KES", + "𞤅𞤭𞤤𞤭𞤲 𞤑𞤫𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "KGS": [ + "KGS", + "𞤅𞤮𞤥𞤵 𞤑𞤭𞤪𞤺𞤭𞤧𞤼𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "KHR": [ + "KHR", + "𞤈𞤭𞤴𞤢𞤤 𞤑𞤢𞤥𞤦𞤮𞤣𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "KMF": [ + "KMF", + "𞤊𞤢𞤪𞤢𞤲 𞤑𞤮𞤥𞤮𞤪𞤭𞤲𞤳𞤮" + ], + "KPW": [ + "KPW", + "𞤏𞤮𞤲 𞤁𞤮𞤱𞤣𞤮𞤱𞤪𞤭 𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤳𞤮" + ], + "KRW": [ + "₩", + "𞤱𞤮𞤲 𞤂𞤫𞤴𞤤𞤫𞤴𞤪𞤭 𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤳𞤮" + ], + "KWD": [ + "KWD", + "𞤁𞤋𞤲𞤢𞥄𞤪 𞤑𞤵𞤱𞤢𞤴𞤼𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "KYD": [ + "KYD", + "𞤁𞤢𞤤𞤢 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤑𞤢𞤴𞤥𞤢𞥄𞤲" + ], + "KZT": [ + "KZT", + "𞤚𞤫𞤲𞤺𞤫 𞤑𞤢𞥁𞤢𞤳𞤭𞤧𞤼𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "LAK": [ + "LAK", + "𞤑𞤭𞤨𞤵 𞤂𞤢𞤱𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "LBP": [ + "LBP", + "𞤆𞤢𞤱𞤲𞥋𞤣𞤵 𞤂𞤭𞤦𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "LKR": [ + "LKR", + "𞤈𞤵𞥅𞤨𞤭𞥅 𞤅𞤭𞤪𞤭-𞤂𞤢𞤲𞤳𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "LRD": [ + "LRD", + "𞤁𞤢𞤤𞤢 𞤂𞤭𞤦𞤫𞤪𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "LYD": [ + "LYD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤂𞤭𞤦𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MAD": [ + "MAD", + "𞤁𞤭𞤪𞤸𞤢𞤥𞤵 𞤃𞤮𞤪𞤮𞤳𞤢𞤲𞤳𞤮" + ], + "MDL": [ + "MDL", + "𞤂𞤭𞥅𞤱𞤮 𞤃𞤮𞤤𞤣𞤮𞤾𞤢𞤲𞤳𞤮" + ], + "MGA": [ + "MGA", + "𞤀𞤪𞤭𞤴𞤢𞤪𞤭 𞤃𞤢𞤤𞤺𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "MKD": [ + "MKD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤃𞤢𞤧𞤫𞤣𞤮𞤲𞤭𞤲𞤳𞤮" + ], + "MMK": [ + "MMK", + "𞤑𞤭𞤴𞤢𞤼𞤵 𞤃𞤭𞤴𞤢𞤥𞤢𞤪𞤭𞤲𞤳𞤮" + ], + "MNT": [ + "MNT", + "𞤚𞤵𞤺𞤵𞤪𞤭𞤳𞤵 𞤃𞤮𞤲𞤺𞤮𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MOP": [ + "MOP", + "𞤆𞤢𞤼𞤢𞤳𞤢 𞤃𞤢𞤳𞤢𞤱𞤮𞤴𞤢𞤲𞤳𞤮" + ], + "MRO": [ + "MRO", + "𞤓𞤺𞤭𞤴𞤢 𞤃𞤮𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮 (𞥑𞥙𞥗𞥓 - 𞥒𞥐𞥑𞥗)" + ], + "MRU": [ + "MRU", + "𞤓𞤺𞤭𞤴𞤢 𞤃𞤮𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MUR": [ + "MUR", + "𞤈𞤵𞤨𞤭𞥅 𞤃𞤮𞤪𞤭𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MVR": [ + "MVR", + "𞤈𞤵𞤬𞤭𞤴𞤢𞥄 𞤃𞤢𞤤𞤣𞤭𞤾𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MWK": [ + "MWK", + "𞤑𞤢𞤱𞤢𞤷𞤢 𞤃𞤢𞤤𞤢𞤱𞤭𞤲𞤳𞤮" + ], + "MXN": [ + "MX$", + "𞤆𞤫𞤧𞤮 𞤃𞤫𞤳𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MYR": [ + "MYR", + "𞤈𞤭𞤲𞤺𞤵𞤼𞤵 𞤃𞤢𞤤𞤫𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "MZN": [ + "MZN", + "𞤃𞤫𞤼𞤭𞤳𞤮𞤤 𞤃𞤮𞥁𞤢𞤥𞤦𞤭𞤲𞤳𞤮" + ], + "NAD": [ + "NAD", + "𞤁𞤢𞤤𞤢 𞤐𞤢𞤥𞤭𞤥𞤦𞤭𞤲𞤳𞤮" + ], + "NGN": [ + "𞤐𞤐𞤘", + "𞤐𞤢𞤴𞤪𞤢 𞤐𞤢𞤶𞤭𞤪𞤢𞤴𞤢𞤲𞤳𞤮" + ], + "NIO": [ + "NIO", + "𞤑𞤮𞥅𞤪𞤣𞤮𞤦𞤢 𞤐𞤭𞤳𞤢𞤪𞤢𞤺𞤵𞤱𞤢𞤲𞤳𞤮" + ], + "NOK": [ + "NOK", + "𞤑𞤪𞤮𞤲𞤫 𞤐𞤮𞤪𞤱𞤫𞤶𞤭𞤲𞤳𞤮" + ], + "NPR": [ + "NPR", + "𞤈𞤵𞥅𞤨𞤭𞥅 𞤐𞤫𞤨𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "NZD": [ + "NZ$", + "𞤁𞤢𞤤𞤢 𞤐𞤫𞤱-𞤔𞤭𞤤𞤢𞤲𞤣𞤭𞤲𞤳𞤮" + ], + "OMR": [ + "OMR", + "𞤈𞤭𞤴𞤢𞥄𞤤 𞤌𞤥𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "PAB": [ + "PAB", + "𞤄𞤢𞤤𞤦𞤮𞤱𞤢 𞤆𞤢𞤲𞤢𞤥𞤢𞤴𞤢𞤲𞤳𞤮" + ], + "PEN": [ + "PEN", + "𞤅𞤮𞤤 𞤆𞤫𞤪𞤵𞤲𞤳𞤮" + ], + "PGK": [ + "𞤑𞤆𞤘", + "𞤑𞤭𞤲𞤢 𞤆𞤢𞤨𞤵𞤱𞤢 𞤐𞤫𞤱-𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "PHP": [ + "𞤆𞤆𞤖", + "𞤆𞤭𞤧𞤮 𞤊𞤭𞤤𞤭𞤨𞥆𞤭𞤲𞤳𞤮" + ], + "PKR": [ + "PKR", + "𞤈𞤵𞥅𞤨𞤭𞥅 𞤆𞤢𞤳𞤭𞤧𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "PLN": [ + "PLN", + "𞤔𞤢𞤤𞤮𞤼𞤵 𞤆𞤮𞤤𞤭𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "PYG": [ + "PYG", + "𞤘𞤵𞤱𞤢𞤪𞤢𞤲𞤭 𞤆𞤢𞥄𞤪𞤢𞤺𞤵𞤴𞤫𞤲𞤳𞤮" + ], + "QAR": [ + "QAR", + "𞤈𞤭𞤴𞤢𞥄𞤤 𞤗𞤢𞤼𞤢𞤪𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "RON": [ + "RON", + "𞤂𞤫𞤱𞤵 𞤈𞤮𞤥𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "RSD": [ + "RSD", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤅𞤫𞤪𞤦𞤭𞤲𞤳𞤮" + ], + "RUB": [ + "RUB", + "𞤈𞤵𞥅𞤦𞤮𞤤 𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮" + ], + "RWF": [ + "RWF", + "𞤊𞤢𞤪𞤢𞤲 𞤈𞤵𞤱𞤢𞤲𞤣𞤢𞤲𞤳𞤮" + ], + "SAR": [ + "SAR", + "𞤈𞤭𞤴𞤢𞤤 𞤅𞤢𞤵𞥅𞤣𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "SBD": [ + "SBD", + "𞤁𞤢𞤤𞤢 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤅𞤵𞤤𞤫𞤴𞤥𞤢𞥄𞤲𞤭𞤲𞤳𞤮" + ], + "SCR": [ + "SCR", + "𞤈𞤵𞤨𞤭𞥅 𞤅𞤫𞤴𞤧𞤭𞤤𞤭𞤲𞤳𞤮" + ], + "SDG": [ + "SDG", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤅𞤵𞤣𞤢𞤲𞤳𞤮" + ], + "SEK": [ + "SEK", + "𞤑𞤪𞤮𞤲𞤢 𞤅𞤵𞤱𞤫𞤣𞤭𞤲𞤳𞤮" + ], + "SGD": [ + "SGD", + "𞤁𞤢𞤤𞤢 𞤅𞤭𞤲𞤺𞤢𞤨𞤮𞤪𞤫𞤲𞤳𞤮" + ], + "SHP": [ + "SHP", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤅𞤫𞤲-𞤖𞤫𞤤𞤫𞤲𞤢" + ], + "SLL": [ + "SLL", + "𞤂𞤫𞤴𞤮𞤲 𞤅𞤫𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "SOS": [ + "SOS", + "𞤅𞤭𞤤𞤭𞤲 𞤅𞤮𞤥𞤢𞤤𞤭𞤲𞤳𞤮" + ], + "SRD": [ + "SRD", + "𞤁𞤢𞤤𞤢 𞤅𞤵𞤪𞤵𞤲𞤢𞤥𞤭𞤲𞤳𞤮" + ], + "SSP": [ + "SSP", + "𞤆𞤢𞤱𞤲𞤣𞤵 𞤂𞤫𞤴𞤤𞤫𞤴𞤪𞤭 𞤅𞤵𞤣𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "STN": [ + "STN", + "𞤁𞤮𞤦𞤢𞤪𞤢 𞤅𞤢𞤱𞤮-𞤚𞤮𞤥𞤫 & 𞤆𞤫𞤪𞤫𞤲𞤧𞤭𞤨" + ], + "SYP": [ + "SYP", + "𞤆𞤢𞤱𞤲𞥋𞤣𞤵 𞤅𞤭𞤪𞤢𞤴𞤢𞤲𞤳𞤮" + ], + "SZL": [ + "SZL", + "𞤂𞤭𞤤𞤢𞤲𞤺𞤫𞤲𞤭 𞤅𞤵𞤱𞤢𞤶𞤭" + ], + "THB": [ + "THB", + "𞤄𞤢𞤸𞤼𞤵 𞤚𞤢𞤴𞤤𞤢𞤲𞤣𞤭𞤲𞤳𞤮" + ], + "TJS": [ + "TJS", + "𞤅𞤢𞤥𞤮𞥅𞤲𞤭 𞤚𞤢𞤶𞤭𞤳𞤭𞤧𞤼𞤢𞤲𞤳𞤮" + ], + "TMT": [ + "TMT", + "𞤃𞤢𞤲𞤢𞤼𞤵 𞤚𞤵𞤪𞤳𞤵𞤥𞤫𞤲𞤭𞤧𞤼𞤢𞤲𞤳𞤮" + ], + "TND": [ + "TND", + "𞤁𞤭𞤲𞤢𞥄𞤪 𞤚𞤵𞥅𞤲𞤭𞤧𞤭𞤲𞤳𞤮" + ], + "TOP": [ + "TOP", + "𞤆𞤢𞤢𞤲𞤺𞤢 𞤚𞤮𞤲𞤺𞤢𞤲𞤳𞤮" + ], + "TRY": [ + "TRY", + "𞤂𞤭𞤪𞤢 𞤚𞤵𞤪𞤳𞤭𞤴𞤢𞤲𞤳𞤮" + ], + "TTD": [ + "TTD", + "𞤁𞤢𞤤𞤢 𞤚𞤭𞤪𞤲𞤭𞤣𞤢𞥄𞤣 & 𞤚𞤮𞤦𞤢𞤺𞤮" + ], + "TWD": [ + "NT$", + "𞤁𞤢𞤤𞤢 𞤚𞤢𞤴𞤱𞤢𞥄𞤲𞤳𞤮" + ], + "TZS": [ + "TZS", + "𞤅𞤭𞤤𞤭𞤲 𞤚𞤢𞤲𞥁𞤢𞤲𞤭𞤲𞤳𞤮" + ], + "UAH": [ + "UAH", + "𞤖𞤵𞤪𞤢𞤾𞤫𞤲𞤭𞤴𞤢 𞤒𞤵𞤳𞤫𞤪𞤫𞥅𞤲𞤭𞤲𞤳𞤮" + ], + "UGX": [ + "UGX", + "𞤅𞤭𞤤𞤭𞤲 𞤓𞤺𞤢𞤲𞤣𞤢𞤲𞤳𞤮" + ], + "USD": [ + "US$", + "𞤁𞤢𞤤𞤢 𞤁𞤫𞤲𞤼𞤢𞤤 𞤂𞤢𞤪𞤫 𞤀𞤥𞤫𞤪𞤭𞤳" + ], + "UYU": [ + "UYU", + "𞤆𞤫𞤧𞤮 𞤓𞤪𞤵𞤺𞤵𞤪𞤭𞤲𞤳𞤮" + ], + "UZS": [ + "UZS", + "𞤅𞤮𞤥𞤵 𞤓𞥁𞤦𞤫𞤳𞤭𞤧𞤼𞤢𞤲𞤳𞤮" + ], + "VEF": [ + "VEF", + "𞤄𞤮𞤤𞤭𞤾𞤢𞥄𞤪 𞤜𞤫𞤲𞤭𞥅𞤧𞤫𞤤𞤢𞤲𞤳𞤮 (𞥒𞥐𞥐𞥘 - 𞥒𞥐𞥑𞥘)" + ], + "VES": [ + "VES", + "𞤄𞤮𞤤𞤭𞤾𞤢𞥄𞤪 𞤜𞤫𞤲𞤭𞥅𞤧𞤫𞤤𞤢𞤲𞤳𞤮" + ], + "VND": [ + "₫", + "𞤁𞤮𞤲𞤺𞤵 𞤜𞤭𞤴𞤫𞤼𞤭𞤲𞤢𞤴𞤢𞤲𞤳𞤮" + ], + "VUV": [ + "VUV", + "𞤜𞤢𞤼𞤵 𞤜𞤢𞤲𞤵𞤴𞤢𞤲𞤳𞤮" + ], + "WST": [ + "WST", + "𞤚𞤢𞤤𞤢 𞤅𞤢𞤥𞤮𞤱𞤢𞤴𞤢𞤲𞤳𞤮" + ], + "XAF": [ + "𞤊𞤅𞤊𞤀", + "𞤊𞤢𞤪𞤢𞤲 𞤚𞤵𞤦𞤮𞥅𞤪𞤭 𞤀𞤬𞤪𞤭𞤳𞤭𞤲𞤳𞤮" + ], + "XCD": [ + "EC$", + "𞤁𞤢𞤤𞤢 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞤪𞤭𞤦𞤭𞤴𞤢" + ], + "XOF": [ + "𞤅𞤊𞤀", + "𞤊𞤢𞤪𞤢𞤲 𞤅𞤊𞤀 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤢" + ], + "XPF": [ + "CFPF", + "𞤊𞤢𞤪𞤢𞤲 𞤅𞤊𞤆" + ], + "YER": [ + "YER", + "𞤈𞤭𞤴𞤢𞥄𞤤 𞤒𞤫𞤥𞤫𞤲𞤭𞤲𞤳𞤮" + ], + "ZAR": [ + "ZAR", + "𞤈𞤢𞤲𞤣𞤭 𞤂𞤫𞤴𞤤𞤫𞤴𞤪𞤭 𞤀𞤬𞤪𞤭𞤳𞤢𞤲𞤳𞤮" + ], + "ZMW": [ + "ZMW", + "𞤑𞤢𞤱𞤢𞤧𞤢 𞤟𞤢𞤥𞤦𞤭𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_BF.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_BF.json new file mode 100644 index 0000000000..95d2226942 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_BF.json @@ -0,0 +1,8 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_CM.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_CM.json new file mode 100644 index 0000000000..95d2226942 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_CM.json @@ -0,0 +1,8 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GH.json new file mode 100644 index 0000000000..8a30211506 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GH.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GHS": [ + "GH₵", + "𞤅𞤭𞤣𞤭 𞤘𞤢𞤲𞤢𞤲𞤳𞤮" + ], + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GM.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GM.json new file mode 100644 index 0000000000..5d841b5a9a --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GM.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GMD": [ + "D", + "𞤁𞤢𞤤𞤢𞤧𞤭 𞤘𞤢𞤥𞤦𞤭𞤲𞤳𞤮" + ], + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GW.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GW.json new file mode 100644 index 0000000000..95d2226942 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GW.json @@ -0,0 +1,8 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_LR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_LR.json new file mode 100644 index 0000000000..23ba5cd8ad --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_LR.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "LRD": [ + "$", + "𞤁𞤢𞤤𞤢 𞤂𞤭𞤦𞤫𞤪𞤭𞤴𞤢𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_MR.json new file mode 100644 index 0000000000..113bb405bd --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_MR.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "MRU": [ + "UM", + "𞤓𞤺𞤭𞤴𞤢 𞤃𞤮𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NE.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NE.json new file mode 100644 index 0000000000..95d2226942 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NE.json @@ -0,0 +1,8 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NG.json new file mode 100644 index 0000000000..51b605bc4c --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NG.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "NGN": [ + "₦", + "𞤐𞤢𞤴𞤪𞤢 𞤐𞤢𞤶𞤭𞤪𞤢𞤴𞤢𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SL.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SL.json new file mode 100644 index 0000000000..d1caed04d0 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SL.json @@ -0,0 +1,12 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ], + "SLL": [ + "Le", + "𞤂𞤫𞤴𞤮𞤲 𞤅𞤫𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SN.json new file mode 100644 index 0000000000..95d2226942 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SN.json @@ -0,0 +1,8 @@ +{ + "Names": { + "GNF": [ + "GNF", + "𞤊𞤢𞤪𞤢𞤲 𞤘𞤭𞤲𞤫𞤲𞤳𞤮" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json index 2c526d97a2..62c8493a04 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GNF": [ "FG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GH.json index 6af1ef3811..d5abb3afb8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GM.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GM.json index c72dad59c3..abe43825d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GMD": [ "D", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GN.json index 2c526d97a2..62c8493a04 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_GN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GNF": [ "FG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_LR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_LR.json index e88262cf52..5bd0d4c646 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_LR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_LR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "LRD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_MR.json index 80fdd4b81e..c2cbe4bd1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_MR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MRU": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_NG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_NG.json index 66ac4b2557..b59ff76943 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_NG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_NG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NGN": [ "₦", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_SL.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_SL.json index 81dd91e125..7997e60a14 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_SL.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_Latn_SL.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SLL": [ "Le", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json index 80fdd4b81e..c2cbe4bd1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MRU": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json index 14ecc6ffdd..a1e1ca9575 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index 83aa90be07..a303baa699 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json index 4bab06e041..72749f25f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr.json index 5aefbf44d9..0bb85517b5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json index 2f5576e4e3..7724b02902 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BIF": [ "FBu", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json index 1da34ed90f..17448477ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ARS": [ "ARS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json index 57b570b1e5..cab84b9485 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CDF": [ "FC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json index 7d92246649..da0d48b920 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json index 5f30c2afa2..36d5fd0af9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DZD": [ "DA", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json index 86947c3a62..32b9b3f4a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GNF": [ "FG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json index 265c3d4a73..8b9b571fb4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "HTG": [ "G", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json index ac26dc1ad6..a0bbdb6bbf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KMF": [ "CF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json index d13c5ad691..884b26fd8d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "FRF": [ "FRF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json index 1401ef06ce..5628d6e7de 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MGA": [ "Ar", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json index 425c01aa43..e6369458e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MRU": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json index 08fe126048..a1a4c1c41c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MUR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json index 8cdf4b5636..df231e1657 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json index a4bc53ebb7..3a85ff66b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SCR": [ "SR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json index 8c5f3b6506..c5bbf5b31e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SYP": [ "LS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json index ab639ef5e9..764e95ec9b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "TND": [ "DT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json index 156efcb6c5..0279dcd7a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json index f284629363..a470b99f6f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json index 7b74e5f93f..72a0733f46 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -71,7 +70,7 @@ ], "ATS": [ "ATS", - "ATS" + "Scilling na hOstaire" ], "AUD": [ "A$", @@ -111,7 +110,7 @@ ], "BEC": [ "BEC", - "BEC" + "Franc na Beilge (inmhalartaithe)" ], "BEF": [ "BEF", @@ -119,7 +118,7 @@ ], "BEL": [ "BEL", - "BEL" + "Franc na Beilge (airgeadais)" ], "BGL": [ "BGL", @@ -249,10 +248,6 @@ "CLP", "Peso na Sile" ], - "CNH": [ - "CNH", - "CNH" - ], "CNY": [ "CN¥", "Yuan na Síne" @@ -299,7 +294,7 @@ ], "DDM": [ "DDM", - "DDM" + "Marc Ghearmáin an Oirthir" ], "DEM": [ "DEM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index e323444968..4717906f0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index adbc9b6879..dab05e6817 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index 1086aad00d..0990a9b61f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json index a46198678d..b38d2987f8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json @@ -1,18 +1,61 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", "Kuɗin Haɗaɗɗiyar Daular Larabawa" ], + "AFN": [ + "AFN", + "Afghani na kasar Afghanistan" + ], + "ALL": [ + "ALL", + "Kudin Albanian" + ], + "AMD": [ + "AMD", + "Kudin Armenian" + ], + "ANG": [ + "ANG", + "Antillean Guilder na ƙasar Netherlands" + ], "AOA": [ "AOA", "Kuɗin Angola" ], + "ARS": [ + "ARS", + "Peso na ƙasar Argentina" + ], "AUD": [ "A$", "Dalar Ostareliya" ], + "AWG": [ + "AWG", + "Florin na yankin Aruba" + ], + "AZN": [ + "AZN", + "Kudin Azerbaijani" + ], + "BAM": [ + "BAM", + "Kudaden Bosnia da Harzegovina" + ], + "BBD": [ + "BBD", + "Dalar ƙasar Barbados" + ], + "BDT": [ + "BDT", + "Taka na kasar Bangladesh" + ], + "BGN": [ + "BGN", + "Kudin Bulgeria" + ], "BHD": [ "BHD", "Kuɗin Baharan" @@ -21,14 +64,42 @@ "BIF", "Kuɗin Burundi" ], + "BMD": [ + "BMD", + "Dalar ƙasar Bermuda" + ], + "BND": [ + "BND", + "Kudin Brunei" + ], + "BOB": [ + "BOB", + "Boloviano na ƙasar Bolivia" + ], "BRL": [ "R$", "Ril Kudin Birazil" ], + "BSD": [ + "BSD", + "Dalar ƙasar Bahamas" + ], + "BTN": [ + "BTN", + "Ngultrum na kasar Bhutan" + ], "BWP": [ "BWP", "Kuɗin Baswana" ], + "BYN": [ + "BYN", + "Kudin Belarusian" + ], + "BZD": [ + "BZD", + "Dalar ƙasar Belize" + ], "CAD": [ "CA$", "Dalar Kanada" @@ -41,18 +112,54 @@ "CHF", "Kuɗin Suwizalan" ], + "CLP": [ + "CLP", + "Peso na ƙasar Chile" + ], + "CNH": [ + "CNH", + "Yuan na ƙasar Sin (na wajen ƙasa)" + ], "CNY": [ "CN¥", "Yuwan kasar Sin" ], + "COP": [ + "COP", + "Peso na ƙasar Columbia" + ], + "CRC": [ + "CRC", + "Colón na kasar Costa Rica" + ], + "CUC": [ + "CUC", + "Peso mai fuska biyu na ƙasar Cuba" + ], + "CUP": [ + "CUP", + "Peso na ƙasar Cuba" + ], "CVE": [ "CVE", "Kuɗin Tsibiran Kap Barde" ], + "CZK": [ + "CZK", + "Kudin Czech" + ], "DJF": [ "DJF", "Kuɗin Jibuti" ], + "DKK": [ + "DKK", + "Krone na ƙasar Denmark" + ], + "DOP": [ + "DOP", + "Peso na jamhuriyar Dominica" + ], "DZD": [ "DZD", "Kuɗin Aljeriya" @@ -73,26 +180,106 @@ "€", "Yuro" ], + "FJD": [ + "FJD", + "Dalar Fiji" + ], + "FKP": [ + "FKP", + "Fam na ƙasar Tsibirai na Falkland" + ], "GBP": [ "£", "Fam na Ingila" ], + "GEL": [ + "GEL", + "Kudin Georgian" + ], "GHC": [ "GHC", "Cedi" ], + "GHS": [ + "GHS", + "Kudin Ghana" + ], + "GIP": [ + "GIP", + "Kudin Gibraltar" + ], "GMD": [ "GMD", "Kuɗin Gambiya" ], + "GNF": [ + "GNF", + "Kudin Guinean" + ], "GNS": [ "GNS", "Kuɗin Gini" ], + "GTQ": [ + "GTQ", + "Quetzal na ƙasar Guatemala" + ], + "GYD": [ + "GYD", + "Dalar Guyana" + ], + "HKD": [ + "HK$", + "Dalar Hong Kong" + ], + "HNL": [ + "HNL", + "Lempira na ƙasar Honduras" + ], + "HRK": [ + "HRK", + "Kudin Croatian" + ], + "HTG": [ + "HTG", + "Gourde na ƙasar Haiti" + ], + "HUF": [ + "HUF", + "Kudin Hungarian" + ], + "IDR": [ + "IDR", + "Rupiah na ƙasar Indonesia" + ], + "ILS": [ + "₪", + "Sabbin Kudin Shekel" + ], "INR": [ "₹", "Kuɗin Indiya" ], + "IQD": [ + "IQD", + "Dinarin Iraqi" + ], + "IRR": [ + "IRR", + "Riyal na kasar Iran" + ], + "ISK": [ + "ISK", + "Króna na ƙasar Iceland" + ], + "JMD": [ + "JMD", + "Dalar Jamaica" + ], + "JOD": [ + "JOD", + "Dinarin Jordanian" + ], "JPY": [ "¥", "Yen kasar Japan" @@ -101,10 +288,50 @@ "KES", "Sulen Kenya" ], + "KGS": [ + "KGS", + "Som na ƙasar Kyrgystani" + ], + "KHR": [ + "KHR", + "Riel na ƙasar Cambodia" + ], "KMF": [ "KMF", "Kuɗin Kwamoras" ], + "KPW": [ + "KPW", + "Won na ƙasar Koreya ta Arewa" + ], + "KRW": [ + "₩", + "Won na Koreya ta Kudu" + ], + "KWD": [ + "KWD", + "Dinarin Kuwaiti" + ], + "KYD": [ + "KYD", + "Dalar ƙasar Tsibirai na Cayman" + ], + "KZT": [ + "KZT", + "Tenge na ƙasar Kazkhstan" + ], + "LAK": [ + "LAK", + "Kudin Laotian" + ], + "LBP": [ + "LBP", + "Kudin Lebanese" + ], + "LKR": [ + "LKR", + "Rupee na kasar Sri Lanka" + ], "LRD": [ "LRD", "Dalar Laberiya" @@ -121,10 +348,30 @@ "MAD", "Kuɗin Maroko" ], + "MDL": [ + "MDL", + "kudaden Moldova" + ], "MGA": [ "MGA", "Kuɗin Madagaskar" ], + "MKD": [ + "MKD", + "Dinarin Macedonian" + ], + "MMK": [ + "MMK", + "Kudin Myanmar" + ], + "MNT": [ + "MNT", + "Tugrik na Mongolia" + ], + "MOP": [ + "MOP", + "Pataca na ƙasar Macao" + ], "MRO": [ "MRO", "Kuɗin Moritaniya (1973–2017)" @@ -137,14 +384,30 @@ "MUR", "Kuɗin Moritus" ], + "MVR": [ + "MVR", + "Rufiyaa na kasar Maldives" + ], "MWK": [ "MWK", "Kuɗin Malawi" ], + "MXN": [ + "MX$", + "Peso na ƙasar Mexico" + ], + "MYR": [ + "MYR", + "Kudin Malaysian" + ], "MZM": [ "MZM", "Kuɗin Mozambik" ], + "MZN": [ + "MZN", + "Metical na ƙasar Mozambique" + ], "NAD": [ "NAD", "Dalar Namibiya" @@ -153,6 +416,66 @@ "₦", "Nairar Najeriya" ], + "NIO": [ + "NIO", + "Córdoba na ƙasar Nicaragua" + ], + "NOK": [ + "NOK", + "Krone na ƙasar Norway" + ], + "NPR": [ + "NPR", + "Rupee na Nepal" + ], + "NZD": [ + "NZ$", + "Dalar New Zealand" + ], + "OMR": [ + "OMR", + "Riyal din Omani" + ], + "PAB": [ + "PAB", + "Balboa na ƙasar Panama" + ], + "PEN": [ + "PEN", + "Sol na ƙasar Peru" + ], + "PGK": [ + "PGK", + "Kina na ƙasar Papua Sabon Guinea" + ], + "PHP": [ + "PHP", + "Kudin Philippine" + ], + "PKR": [ + "PKR", + "Rupee na kasar Pakistan" + ], + "PLN": [ + "PLN", + "Kudaden Polish" + ], + "PYG": [ + "PYG", + "Guarani na ƙasar Paraguay" + ], + "QAR": [ + "QAR", + "Riyal din Qatari" + ], + "RON": [ + "RON", + "Kudin Romanian" + ], + "RSD": [ + "RSD", + "Dinar Serbian" + ], "RUB": [ "RUB", "Ruble kasar Rasha" @@ -165,6 +488,10 @@ "SAR", "Riyal" ], + "SBD": [ + "SBD", + "Dalar Tsibirai na Solomon" + ], "SCR": [ "SCR", "Kuɗin Saishal" @@ -173,6 +500,14 @@ "SDG", "Fam kin Sudan" ], + "SEK": [ + "SEK", + "Krona na ƙasar Sweden" + ], + "SGD": [ + "SGD", + "Dilar Singapore" + ], "SHP": [ "SHP", "Fam kin San Helena" @@ -185,6 +520,14 @@ "SOS", "Sulen Somaliya" ], + "SRD": [ + "SRD", + "Dalar ƙasar Suriname" + ], + "SSP": [ + "SSP", + "Fam na Kudancin Sudan" + ], "STD": [ "STD", "Kuɗin Sawo Tome da Paransip (1977–2017)" @@ -193,18 +536,54 @@ "STN", "Kuɗin Sawo Tome da Paransip" ], + "SYP": [ + "SYP", + "Kudin Syrian" + ], "SZL": [ "SZL", "Kuɗin Lilangeni" ], + "THB": [ + "THB", + "Baht na ƙasar Thailand" + ], + "TJS": [ + "TJS", + "Somoni na ƙasar Tajikistan" + ], + "TMT": [ + "TMT", + "Manat na ƙasar Turkmenistan" + ], "TND": [ "TND", "Kuɗin Tunisiya" ], + "TOP": [ + "TOP", + "Paʼanga na ƙasar Tonga" + ], + "TRY": [ + "TRY", + "Kudin Turkish" + ], + "TTD": [ + "TTD", + "Dalar ƙasar Trinidad da Tobago" + ], + "TWD": [ + "NT$", + "Sabuwar Dalar Taiwan" + ], "TZS": [ "TZS", "Sulen Tanzaniya" ], + "UAH": [ + "UAH", + "Kudin Ukrainian" + ], "UGX": [ "UGX", "Sule Yuganda" @@ -213,14 +592,50 @@ "$", "Dalar Amirka" ], + "UYU": [ + "UYU", + "Peso na ƙasar Uruguay" + ], + "UZS": [ + "UZS", + "Som na ƙasar Uzbekistan" + ], + "VES": [ + "VES", + "Bolívar na ƙasar Venezuela" + ], + "VND": [ + "₫", + "Kudin Vietnamese" + ], + "VUV": [ + "VUV", + "Vatu da ƙasar Vanuatu" + ], + "WST": [ + "WST", + "Tala na ƙasar Samoa" + ], "XAF": [ "FCFA", "Kuɗin Sefa na Afirka Ta Tsakiya" ], + "XCD": [ + "EC$", + "Dalar Gabashin Caribbean" + ], "XOF": [ "CFA", "Kuɗin Sefa na Afirka Ta Yamma" ], + "XPF": [ + "CFPF", + "kudin CFP Franc" + ], + "YER": [ + "YER", + "Riyal din Yemeni" + ], "ZAR": [ "ZAR", "Kuɗin Afirka Ta Kudu" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json index 6af1ef3811..5fc43a93e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json @@ -1,9 +1,8 @@ { - "Version": "36.1", "Names": { "GHS": [ "GH₵", - "GHS" + "Kudin Ghana" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/he.json b/src/Symfony/Component/Intl/Resources/data/currencies/he.json index 5fe1074c73..351b312436 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/he.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/he.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index 83ecc20731..5772f6f9e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index be467a8cab..db1d584e2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json index 236e78a394..c0077305e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BAM": [ "KM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json index ae13d6ef6f..e0e11abccb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -17,6 +16,10 @@ "AFN", "afgán afghani" ], + "ALK": [ + "ALK", + "albán lek (1946–1965)" + ], "ALL": [ "ALL", "albán lek" @@ -85,6 +88,10 @@ "BAM", "bosznia-hercegovinai konvertibilis márka" ], + "BAN": [ + "BAN", + "bosznia-hercegovinai új dínár (1994–1997)" + ], "BBD": [ "BBD", "barbadosi dollár" @@ -109,10 +116,18 @@ "BGL", "Bolgár kemény leva" ], + "BGM": [ + "BGM", + "bolgár szocialista leva" + ], "BGN": [ "BGN", "bolgár új leva" ], + "BGO": [ + "BGO", + "bolgár leva (1879–1952)" + ], "BHD": [ "BHD", "bahreini dinár" @@ -581,6 +596,10 @@ "MAF", "Marokkói frank" ], + "MDC": [ + "MDC", + "moldáv kupon" + ], "MDL": [ "MDL", "moldován lei" @@ -597,6 +616,10 @@ "MKD", "macedon dínár" ], + "MKN": [ + "MKN", + "macedón dénár (1992–1993)" + ], "MLF": [ "MLF", "Mali frank" @@ -1045,6 +1068,10 @@ "YUN", "Jugoszláv konvertibilis dínár" ], + "YUR": [ + "YUR", + "jugoszláv reformált dinár (1992–1993)" + ], "ZAL": [ "ZAL", "Dél-afrikai rand (pénzügyi)" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index 5d023065ec..9d411fb089 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -123,7 +122,7 @@ ], "CNH": [ "CNH", - "CNH" + "չինական օֆշորային յուան" ], "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ia.json b/src/Symfony/Component/Intl/Resources/data/currencies/ia.json index 65ac44e1c4..8210711aa6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ia.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ALL": [ "ALL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/id.json b/src/Symfony/Component/Intl/Resources/data/currencies/id.json index 39deb096af..f61f248e5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/id.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/id.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json index 56be0256ea..b7bff08811 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json @@ -1,14 +1,101 @@ { - "Version": "36.1", "Names": { + "AED": [ + "AED", + "Ego Dirham obodo United Arab Emirates" + ], + "AFN": [ + "AFN", + "Ego Afghani Obodo Afghanistan" + ], + "ALL": [ + "ALL", + "Ego Lek Obodo Albania" + ], + "AMD": [ + "AMD", + "Ego Dram obodo Armenia" + ], + "ANG": [ + "ANG", + "Ego Antillean Guilder obodo Netherlands" + ], + "AOA": [ + "AOA", + "Ego Kwanza obodo Angola" + ], + "ARS": [ + "ARS", + "Ego Peso obodo Argentina" + ], + "AUD": [ + "A$", + "Ego Dollar obodo Australia" + ], + "AWG": [ + "AWG", + "Ego Florin obodo Aruba" + ], + "AZN": [ + "AZN", + "Ego Manat obodo Azerbaijan" + ], + "BAM": [ + "BAM", + "Akara mgbanwe ego obodo Bosnia-Herzegovina" + ], + "BBD": [ + "BBD", + "Ego Dollar obodo Barbados" + ], + "BDT": [ + "BDT", + "Ego Taka obodo Bangladesh" + ], + "BGN": [ + "BGN", + "Ego Lev mba Bulgaria" + ], + "BHD": [ + "BHD", + "Ego Dinar Obodo Bahrain" + ], + "BIF": [ + "BIF", + "Ego Franc obodo Burundi" + ], "BMD": [ "BMD", "Dollar Bermuda" ], + "BND": [ + "BND", + "Ego Dollar obodo Brunei" + ], + "BOB": [ + "BOB", + "Ego Boliviano obodo Bolivia" + ], "BRL": [ "R$", "Real Brazil" ], + "BSD": [ + "BSD", + "Ego Dollar Obodo Bahamas" + ], + "BTN": [ + "BTN", + "Ego Ngultrum obodo Bhutan" + ], + "BWP": [ + "BWP", + "Ego Pula obodo Bostwana" + ], + "BYN": [ + "BYN", + "Ego Ruble mba Belarus" + ], "BZD": [ "BZD", "Dollar Belize" @@ -17,49 +104,521 @@ "CA$", "Dollar Canada" ], + "CDF": [ + "CDF", + "Ego Franc obodo Congo" + ], + "CHF": [ + "CHF", + "Ego Franc mba Switzerland" + ], + "CLP": [ + "CLP", + "Ego Peso obodo Chile" + ], + "CNH": [ + "CNH", + "Ego Yuan Obodo China (ndị bi na mmiri)" + ], "CNY": [ "CN¥", "Yuan China" ], + "COP": [ + "COP", + "Ego Peso obodo Columbia" + ], + "CRC": [ + "CRC", + "Ego Colón obodo Costa Rica" + ], + "CUC": [ + "CUC", + "Ego Peso e nwere ike ịgbanwe nke obodo Cuba" + ], + "CUP": [ + "CUP", + "Ego Peso obodo Cuba" + ], "CVE": [ "CVE", "Escudo Caboverdiano" ], + "CZK": [ + "CZK", + "Ego Koruna obodo Czech" + ], + "DJF": [ + "DJF", + "Ego Franc obodo Djibouti" + ], + "DKK": [ + "DKK", + "Ego Krone Obodo Denmark" + ], + "DOP": [ + "DOP", + "Ego Peso Obodo Dominica" + ], + "DZD": [ + "DZD", + "Ego Dinar Obodo Algeria" + ], + "EGP": [ + "EGP", + "Ego Pound obodo Egypt" + ], + "ERN": [ + "ERN", + "Ego Nakfa obodo Eritrea" + ], + "ETB": [ + "ETB", + "Ego Birr obodo Ethiopia" + ], "EUR": [ "€", "Euro" ], + "FJD": [ + "FJD", + "Ego Dollar obodo Fiji" + ], + "FKP": [ + "FKP", + "Ego Pound obodo Falkland Islands" + ], "GBP": [ "£", "Pound British" ], + "GEL": [ + "GEL", + "Ego Lari Obodo Georgia" + ], + "GHS": [ + "GHS", + "Ego Cedi obodo Ghana" + ], + "GIP": [ + "GIP", + "Ego Pound obodo Gibraltar" + ], + "GMD": [ + "GMD", + "Ego Dalasi obodo Gambia" + ], + "GNF": [ + "GNF", + "Ego Franc obodo Guinea" + ], + "GTQ": [ + "GTQ", + "Ego Quetzal obodo Guatemala" + ], + "GYD": [ + "GYD", + "Ego Dollar obodo Guyana" + ], + "HKD": [ + "HK$", + "Ego Dollar Obodo Honk Kong" + ], + "HNL": [ + "HNL", + "Ego Lempira obodo Honduras" + ], + "HRK": [ + "HRK", + "Ego Kuna obodo Croatia" + ], + "HTG": [ + "HTG", + "Ego Gourde obodo Haiti" + ], + "HUF": [ + "HUF", + "Ego Forint obodo Hungary" + ], + "IDR": [ + "IDR", + "Ego Rupiah Obodo Indonesia" + ], + "ILS": [ + "₪", + "Ego Shekel ọhụrụ obodo Israel" + ], "INR": [ "₹", "Rupee India" ], + "IQD": [ + "IQD", + "Ego Dinar obodo Iraq" + ], + "IRR": [ + "IRR", + "Ego Rial obodo Iran" + ], + "ISK": [ + "ISK", + "Ego Króna obodo Iceland" + ], + "JMD": [ + "JMD", + "Ego Dollar obodo Jamaica" + ], + "JOD": [ + "JOD", + "Ego Dinar Obodo Jordan" + ], "JPY": [ "¥", "Yen Japan" ], + "KES": [ + "KES", + "Ego Shilling obodo Kenya" + ], + "KGS": [ + "KGS", + "Ego Som Obodo Kyrgyzstan" + ], + "KHR": [ + "KHR", + "Ego Riel obodo Cambodia" + ], + "KMF": [ + "KMF", + "Ego Franc obodo Comoros" + ], + "KPW": [ + "KPW", + "Ego Won Obodo North Korea" + ], + "KRW": [ + "₩", + "Ego Won Obodo South Korea" + ], + "KWD": [ + "KWD", + "Ego Dinar Obodo Kuwait" + ], + "KYD": [ + "KYD", + "Ego Dollar obodo Cayman Islands" + ], + "KZT": [ + "KZT", + "Ego Tenge obodo Kazakhstani" + ], + "LAK": [ + "LAK", + "Ego Kip Obodo Laos" + ], + "LBP": [ + "LBP", + "Ego Pound obodo Lebanon" + ], + "LKR": [ + "LKR", + "Ego Rupee obodo Sri Lanka" + ], + "LRD": [ + "LRD", + "Ego Dollar obodo Liberia" + ], + "LYD": [ + "LYD", + "Ego Dinar obodo Libya" + ], + "MAD": [ + "MAD", + "Ego Dirham obodo Morocco" + ], + "MDL": [ + "MDL", + "Ego Leu obodo Moldova" + ], + "MGA": [ + "MGA", + "Ego Ariary obodo Madagascar" + ], + "MKD": [ + "MKD", + "Ego Denar Obodo Macedonia" + ], + "MMK": [ + "MMK", + "Ego Kyat obodo Myanmar" + ], + "MNT": [ + "MNT", + "Ego Turgik Obodo Mongolia" + ], + "MOP": [ + "MOP", + "Ego Pataca ndị Obodo Macanese" + ], + "MRU": [ + "MRU", + "Ego Ouguiya Obodo Mauritania" + ], + "MUR": [ + "MUR", + "Ego Rupee obodo Mauritania" + ], + "MVR": [ + "MVR", + "Ego Rufiyaa obodo Moldova" + ], + "MWK": [ + "MWK", + "Ego Kwacha obodo Malawi" + ], + "MXN": [ + "MX$", + "Ego Peso obodo Mexico" + ], + "MYR": [ + "MYR", + "Ego Ringgit obodo Malaysia" + ], + "MZN": [ + "MZN", + "Ego Metical obodo Mozambique" + ], + "NAD": [ + "NAD", + "Ego Dollar obodo Namibia" + ], "NGN": [ "₦", "Naịra" ], + "NIO": [ + "NIO", + "Ego Córodoba obodo Nicaragua" + ], + "NOK": [ + "NOK", + "Ego Krone Obodo Norway" + ], + "NPR": [ + "NPR", + "Ego Rupee obodo Nepal" + ], + "NZD": [ + "NZ$", + "Ego Dollar obodo New Zealand" + ], + "OMR": [ + "OMR", + "Ego Rial obodo Oman" + ], + "PAB": [ + "PAB", + "Ego Balboa obodo Panama" + ], + "PEN": [ + "PEN", + "Ego Sol obodo Peru" + ], + "PGK": [ + "PGK", + "Ego Kina obodo Papua New Guinea" + ], + "PHP": [ + "PHP", + "Ego piso obodo Philippine" + ], + "PKR": [ + "PKR", + "Ego Rupee obodo Pakistan" + ], + "PLN": [ + "PLN", + "Ego Zloty mba Poland" + ], + "PYG": [ + "PYG", + "Ego Guarani obodo Paraguay" + ], + "QAR": [ + "QAR", + "Ego Rial obodo Qatar" + ], + "RON": [ + "RON", + "Ego Leu obodo Romania" + ], + "RSD": [ + "RSD", + "Ego Dinar obodo Serbia" + ], "RUB": [ "RUB", "Ruble Russia" ], + "RWF": [ + "RWF", + "Ego Franc obodo Rwanda" + ], + "SAR": [ + "SAR", + "Ego Riyal obodo Saudi" + ], + "SBD": [ + "SBD", + "Ego Dollar obodo Solomon Islands" + ], + "SCR": [ + "SCR", + "Ego Rupee obodo Seychelles" + ], + "SDG": [ + "SDG", + "Ego Pound obodo Sudan" + ], + "SEK": [ + "SEK", + "Ego Krona Obodo Sweden" + ], + "SGD": [ + "SGD", + "Ego Dollar obodo Singapore" + ], + "SHP": [ + "SHP", + "Ego Pound obodo St Helena" + ], + "SLL": [ + "SLL", + "Ego Leone obodo Sierra Leone" + ], + "SOS": [ + "SOS", + "Ego shilling obodo Somali" + ], "SRD": [ "SRD", "Dollar Surinamese" ], + "SSP": [ + "SSP", + "Ego Pound obodo South Sudan" + ], + "STN": [ + "STN", + "Ego Dobra nke obodo Sāo Tomé na Principe" + ], + "SYP": [ + "SYP", + "Ego Pound obodo Syria" + ], + "SZL": [ + "SZL", + "Ego Lilangeni obodo Swaziland" + ], + "THB": [ + "THB", + "Ego Baht obodo Thai" + ], + "TJS": [ + "TJS", + "Who Somoni obodo Tajikistan" + ], + "TMT": [ + "TMT", + "Ego Manat Obodo Turkmenistan" + ], + "TND": [ + "TND", + "Ego Dinar Obodo Tunisia" + ], + "TOP": [ + "TOP", + "Ego paʻanga obodo Tonga" + ], + "TRY": [ + "TRY", + "Ego Lira obodo Turkey" + ], "TTD": [ "TTD", "Dollar Trinidad & Tobago" ], + "TWD": [ + "NT$", + "Dollar obodo New Taiwan" + ], + "TZS": [ + "TZS", + "Ego Shilling Obodo Tanzania" + ], + "UAH": [ + "UAH", + "Ego Hryvnia obodo Ukraine" + ], + "UGX": [ + "UGX", + "Ego Shilling obodo Uganda" + ], "USD": [ "$", "Dollar US" + ], + "UYU": [ + "UYU", + "Ego Peso obodo Uruguay" + ], + "UZS": [ + "UZS", + "Ego Som obodo Uzbekistan" + ], + "VES": [ + "VES", + "Ego Bolivar obodo Venezuela" + ], + "VND": [ + "₫", + "Ego Dong obodo Vietnam" + ], + "VUV": [ + "VUV", + "Ego Vatu obodo Vanuatu" + ], + "WST": [ + "WST", + "Ego Tala obodo Samoa" + ], + "XAF": [ + "FCFA", + "Ego Franc mba etiti Africa" + ], + "XCD": [ + "EC$", + "Ego Dollar obodo East Carribbean" + ], + "XOF": [ + "CFA", + "Ego CFA Franc obodo West Africa" + ], + "XPF": [ + "CFPF", + "Ego Franc obodo CFP" + ], + "YER": [ + "YER", + "Ego Rial obodo Yemeni" + ], + "ZAR": [ + "ZAR", + "Ego Rand obodo South Africa" + ], + "ZMW": [ + "ZMW", + "Ego Kwacha Obodo Zambia" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json index 3dbdaeabc2..6356f0f6e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/in.json b/src/Symfony/Component/Intl/Resources/data/currencies/in.json index 39deb096af..f61f248e5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/in.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/in.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/is.json b/src/Symfony/Component/Intl/Resources/data/currencies/is.json index bf64dd7c44..4eabd0c6c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/is.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/is.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index 387e2f7019..34c623733f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/it.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/it.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -219,7 +218,7 @@ ], "CNH": [ "CNH", - "CNH" + "renmimbi cinese offshore" ], "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index 5fe1074c73..351b312436 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index a40f4afb27..4a7bab5caa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/jv.json b/src/Symfony/Component/Intl/Resources/data/currencies/jv.json index 33bd761a4d..84ce21a52e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/jv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index bb40d624d6..604440f9a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json index b9e3241e81..a445c9f0c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json index fac3602dad..c650c02d6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json index b8cebbdf41..23707c381e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/km.json b/src/Symfony/Component/Intl/Resources/data/currencies/km.json index db6fbb7a21..56d14e32fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/km.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/km.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json index b06f7eaaf0..ff091f15cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index 62a541fa97..7c93e9aaac 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json index 2f98ab994d..e30b4cfcb7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ku.json b/src/Symfony/Component/Intl/Resources/data/currencies/ku.json index 4639d47bb6..9da69ce6a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ku.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json index 8bd49a6147..dc51901820 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -123,7 +122,7 @@ ], "CNH": [ "CNH", - "CNH" + "Кытай юаны (офшор)" ], "CNY": [ "CN¥", @@ -603,7 +602,7 @@ ], "VES": [ "VES", - "VES" + "Венесуэла боливары" ], "VND": [ "₫", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index 820d1e1d83..ec674dca19 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json index 6721400917..0245093c46 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json index 44924f8389..1f801fb75a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json b/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json index e7c31c8a24..53c93ea33d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AOA": [ "Kz", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json index 17c8029726..da6153f941 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index ab12165a40..1c936935f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json index e77059d7ec..4244946bd9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json index 8823c9ff4a..9a120f6e2b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json index 27e0e79e52..592d6cba76 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Currencies": [ "ADP", "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json index 8436b6ac60..a6711139b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mi.json b/src/Symfony/Component/Intl/Resources/data/currencies/mi.json index e17d956450..c9382d6d43 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mi.json @@ -1,62 +1,13 @@ { - "Version": "36.1", "Names": { - "ANG": [ - "ANG", - "ANG" - ], - "ARS": [ - "ARS", - "ARS" - ], - "AWG": [ - "AWG", - "AWG" - ], - "BBD": [ - "BBD", - "BBD" - ], - "BMD": [ - "BMD", - "BMD" - ], "BRL": [ "R$", "Real Parahi" ], - "BSD": [ - "BSD", - "BSD" - ], - "BZD": [ - "BZD", - "BZD" - ], - "CAD": [ - "CA$", - "CAD" - ], "CNY": [ "CN¥", "Yuan Haina" ], - "CRC": [ - "CRC", - "CRC" - ], - "CUC": [ - "CUC", - "CUC" - ], - "CUP": [ - "CUP", - "CUP" - ], - "DOP": [ - "DOP", - "DOP" - ], "EUR": [ "€", "Euro" @@ -65,65 +16,25 @@ "£", "Pāuna Piritene" ], - "GTQ": [ - "GTQ", - "GTQ" - ], - "HNL": [ - "HNL", - "HNL" - ], - "HTG": [ - "HTG", - "HTG" - ], "INR": [ "₹", "Rupī Iniana" ], - "JMD": [ - "JMD", - "JMD" - ], "JPY": [ "¥", "Yen Hapanihi" ], - "KYD": [ - "KYD", - "KYD" - ], - "MXN": [ - "MX$", - "MXN" - ], - "NIO": [ - "NIO", - "NIO" - ], "NZD": [ "$", "Tāra o Aotearoa" ], - "PAB": [ - "PAB", - "PAB" - ], "RUB": [ "RUB", "Rūpera Ruhiana" ], - "TTD": [ - "TTD", - "TTD" - ], "USD": [ "US$", "Tāra US" - ], - "XCD": [ - "EC$", - "XCD" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index 8db824dcdc..b2212d2c47 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index 208a8a9ef7..39cd7461cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json index 8ba906ddea..f9950542d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json index ed2e341fb0..2f87642b10 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json index 234dc013b9..186ed91452 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json index c36ea2670b..ed24b6ed60 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -175,7 +174,7 @@ ], "ERN": [ "ERN", - "ERN" + "Nakfa Eritrea" ], "ETB": [ "ETB", @@ -361,6 +360,10 @@ "MGA", "Ariary Malagasy" ], + "MGF": [ + "MGF", + "Franc Malagasy" + ], "MKD": [ "MKD", "Denar Macedonia" @@ -405,6 +408,14 @@ "RM", "Ringgit Malaysia" ], + "MZE": [ + "MZE", + "Escudo Mozambique" + ], + "MZM": [ + "MZM", + "Metical Mozambique (1980–2006)" + ], "MZN": [ "MZN", "Metikal Mozambique" @@ -469,6 +480,10 @@ "QAR", "Rial Qatar" ], + "RHD": [ + "RHD", + "Dolar Rhodesia" + ], "RON": [ "RON", "Leu Romania" @@ -585,6 +600,10 @@ "UAH", "Hryvnia Ukraine" ], + "UGS": [ + "UGS", + "Shilling Uganda (1966–1987)" + ], "UGX": [ "UGX", "Syiling Uganda" @@ -652,6 +671,18 @@ "ZMW": [ "ZMW", "Kwacha Zambia" + ], + "ZWD": [ + "ZWD", + "Dolar Zimbabwe (1980–2008)" + ], + "ZWL": [ + "ZWL", + "Dolar Zimbabwe (2009)" + ], + "ZWR": [ + "ZWR", + "Dolar Zimbabwe (2008)" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json index 45ffa45673..57260d8ba8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BND": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms_ID.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms_ID.json new file mode 100644 index 0000000000..f06bbf165a --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms_ID.json @@ -0,0 +1,8 @@ +{ + "Names": { + "IDR": [ + "Rp", + "Rupiah Indonesia" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json index 58b9eb6cde..e8802b3f26 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SGD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json index 020849fca4..728b69e8c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -105,10 +104,6 @@ "BZD", "BZD" ], - "CAD": [ - "CA$", - "CAD" - ], "CDF": [ "CDF", "CDF" @@ -341,10 +336,6 @@ "MRO", "MRO" ], - "MRU": [ - "MRU", - "MRU" - ], "MTL": [ "MTL", "Lira Maltija" @@ -385,10 +376,6 @@ "NIO", "NIO" ], - "NPR": [ - "NPR", - "NPR" - ], "NZD": [ "NZ$", "NZD" @@ -565,10 +552,6 @@ "VEF", "VEF" ], - "VES": [ - "VES", - "VES" - ], "VND": [ "₫", "VND" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/my.json b/src/Symfony/Component/Intl/Resources/data/currencies/my.json index 316990e4a7..ba9418a2f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/my.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/my.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json index 6d9337e1d9..6088983952 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -639,7 +638,7 @@ ], "MCF": [ "MCF", - "MCF" + "monegaskiske franc" ], "MDC": [ "MDC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json index 52ac51393f..209b57959a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json index 01533e35ae..a14b6d40a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json index 226a015e8c..17b20465c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json index 524888726c..00ec74c927 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AWG": [ "Afl.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json index 492b7e6ccc..1edb9f620d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json index f8a487fa8b..5c1b517059 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json index a322428b81..4fa5852761 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SRD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json index f8a487fa8b..5c1b517059 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json index 02f1bd013a..8d836b05b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/no.json b/src/Symfony/Component/Intl/Resources/data/currencies/no.json index 6d9337e1d9..6088983952 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/no.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/no.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -639,7 +638,7 @@ ], "MCF": [ "MCF", - "MCF" + "monegaskiske franc" ], "MDC": [ "MDC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index 0e2bb55f7d..6722a12619 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/om.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/om.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json index 47ff749084..e979d2f95b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/or.json b/src/Symfony/Component/Intl/Resources/data/currencies/or.json index 003d3991a3..6b7f2aea75 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/or.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/or.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os.json b/src/Symfony/Component/Intl/Resources/data/currencies/os.json index 0f56664886..54b681980d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/os.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/os.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json b/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json index 2dd3c87862..0fa6b87be9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pa.json b/src/Symfony/Component/Intl/Resources/data/currencies/pa.json index 2dee6c91d6..64a04a8a5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json index 70f869e58b..9c655b10a7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json index e0afcdc10c..6f68fd0998 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json index fbbcd985a5..6636ede549 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -193,6 +192,14 @@ "FKP", "پاکلېنډ ټاپوګانو پونډ" ], + "GBP": [ + "£", + "برتانوې پونډ" + ], + "GEL": [ + "GEL", + "جارجیاېي لارې" + ], "GHS": [ "GHS", "ګانين سيډي" @@ -245,6 +252,10 @@ "₪", "اسرايلي نيو شيکل" ], + "INR": [ + "₹", + "هندي روپۍ" + ], "IQD": [ "IQD", "عراقي دينار" @@ -305,6 +316,10 @@ "KZT", "قازقستاني ټينج" ], + "LAK": [ + "LAK", + "لاشې کپ" + ], "LBP": [ "LBP", "لبناني پونډ" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps_PK.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps_PK.json index 7b3a29b69c..0f221af439 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ps_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ps_PK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PKR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json index b4ea906f5f..f99d5edc53 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json index a3c5b630c1..753099dbab 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AOA": [ "Kz", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json index 3e763f9f8a..3567c48baa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CVE": [ "​", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json index 08e084d422..09d3ad4fa8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "LUF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json index 2c51f9d066..a3ae56dedd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json index 76fab2b5d9..4a2f4f10e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MZN": [ "MTn", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json index afa4c5babe..9e5737e9e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json index 41e51e8481..51f24a12ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "STN": [ "Db", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json index 8fab0c7950..adae65badb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json index c826aedffb..0fb1f40c6b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BOB": [ "Bs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json index dd7c9cf6ab..bb48b739a3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PEN": [ "PEN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json index 2d7b0bf27f..10e16abff8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json index 67cae3ae33..a39400566f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json index ed2e341fb0..2f87642b10 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json index 1ed8199cef..c98d0d3650 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/root.json b/src/Symfony/Component/Intl/Resources/data/currencies/root.json index de391f8ba3..8c7bb32157 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/root.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/root.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru.json index 205c6e55ec..582718e0d3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json index 638fe706c2..90da192d32 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BYN": [ "Br", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json index 61e3a01547..50bafcbf27 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KGS": [ "сом", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json index a6430abde1..380963c50d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KZT": [ "₸", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json index 46552ffc51..2e12d13962 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rw.json b/src/Symfony/Component/Intl/Resources/data/currencies/rw.json index 619f3e944c..f82eecbdaa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sd.json b/src/Symfony/Component/Intl/Resources/data/currencies/sd.json index 125c666c97..549a8e27f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/currencies/sd_Deva.json new file mode 100644 index 0000000000..392ce0f69e --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sd_Deva.json @@ -0,0 +1,36 @@ +{ + "Names": { + "BRL": [ + "R$", + "बरजिलियन रियलु" + ], + "CNY": [ + "CN¥", + "चीना युआनु" + ], + "EUR": [ + "€", + "यूरो" + ], + "GBP": [ + "£", + "बरतानवी पाउंडु" + ], + "INR": [ + "₹", + "हिंदुस्तानी रुपयो" + ], + "JPY": [ + "¥", + "जापानी येनु" + ], + "RUB": [ + "RUB", + "रशियनु रुबलु" + ], + "USD": [ + "$", + "यूएस जो डॉलल" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se.json b/src/Symfony/Component/Intl/Resources/data/currencies/se.json index c6ef60512d..e5afc727d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/se.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/se.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DKK": [ "Dkr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json b/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json index 439a218513..d9dfe82426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "NOK": [ "Nkr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sg.json b/src/Symfony/Component/Intl/Resources/data/currencies/sg.json index 17b28374b9..b778e312f8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json index 8c29c2097d..1e2d6eee87 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index 2d632a15eb..f06331901f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/si.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/si.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json index c289c5199a..9ab3a7c1e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json index 87d2107b57..f1c488ac83 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json index f8dc423c6f..22e8a48f19 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so.json b/src/Symfony/Component/Intl/Resources/data/currencies/so.json index 7cae03a58a..bc198623dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -25,6 +24,22 @@ "AOA", "Kawansada Angola" ], + "ARA": [ + "ARA", + "Argentine Austral" + ], + "ARL": [ + "ARL", + "Beesada Ley ee Arjentiin (1970–1983)" + ], + "ARM": [ + "ARM", + "Beesada Ley ee Arjentiin (1881–1970)" + ], + "ARP": [ + "ARP", + "Beesada Ley ee Arjentiin (1883–1985)" + ], "ARS": [ "ARS", "Beesada Arjentiin" @@ -41,6 +56,10 @@ "AZN", "Manaata Asarbeyjan" ], + "BAD": [ + "BAD", + "Diinaarka BBosnia-Hersogofina 1.00 konfatibal maakta Bosnia-Hersogofina 1 konfatibal maaka Bosnia-Hersogofina (1992–1994)" + ], "BAM": [ "BAM", "Konfatibal Maakta Bosnia-Hersogofina" @@ -77,6 +96,10 @@ "BOB", "Bolifiyanada Bolifiya" ], + "BOL": [ + "BOL", + "Bolifiyaabka Bolifiyaano(1863–1963)" + ], "BRL": [ "R$", "Realka Barasil" @@ -165,6 +188,10 @@ "DZD", "Dinaarka Aljeriya" ], + "EEK": [ + "EEK", + "Kroonka Estooniya" + ], "EGP": [ "EGP", "Bowndka Masar" @@ -181,6 +208,10 @@ "€", "Yuuroo" ], + "FIM": [ + "FIM", + "Markkada Fiinishka ah" + ], "FJD": [ "FJD", "Doolarka Fiji" @@ -245,6 +276,10 @@ "IDR", "Rubiah Indonesiya" ], + "IEP": [ + "IEP", + "baawnka Ayrishka" + ], "ILS": [ "₪", "Niyuu Shekelka Israaiil" @@ -329,6 +364,10 @@ "LRD", "Doolarka Liberiya" ], + "LVR": [ + "LVR", + "Rubalka Latfiya" + ], "LYD": [ "LYD", "Dinaarka Libya" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json index eeb05f0cbd..da35e99adb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json index c7889e62f3..c42b72e2cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ETB": [ "Br", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json index c95b6b8164..9261c8008f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json index 566dde702c..6da51714cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json b/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json index ac16b9f349..ccb866ab7c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MKD": [ "den", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json index 64f0db662e..04ea949b36 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json index 8c29c2097d..1e2d6eee87 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/su.json b/src/Symfony/Component/Intl/Resources/data/currencies/su.json new file mode 100644 index 0000000000..4d01698b2b --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/su.json @@ -0,0 +1,40 @@ +{ + "Names": { + "BRL": [ + "R$", + "Real Brasil" + ], + "CNY": [ + "CN¥", + "Yuan Tiongkok" + ], + "EUR": [ + "€", + "Euro" + ], + "GBP": [ + "£", + "Pound Inggris" + ], + "IDR": [ + "Rp", + "Rupee Indonésia" + ], + "INR": [ + "₹", + "Rupee India" + ], + "JPY": [ + "¥", + "Yén Jepang" + ], + "RUB": [ + "RUB", + "Rubel Rusia" + ], + "USD": [ + "$", + "Dolar A.S." + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index c66c3c46ca..3c41945790 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", @@ -1033,6 +1032,10 @@ "UYU", "uruguayansk peso" ], + "UYW": [ + "UYW", + "uruguayansk indexenhet för nominell lön" + ], "UZS": [ "UZS", "uzbekisk sum" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index 32d514a903..0fc354a5d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -151,7 +150,7 @@ ], "CZK": [ "CZK", - "CZK" + "koruna ya Jamhuri ya Czech" ], "DJF": [ "DJF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json index 6514995eef..e51f42ac45 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CDF": [ "FC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json index 4109c1128f..5d61b6a65e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json index 6c876d812d..fcc41e708d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "UGX": [ "USh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json index 95bbfd1ecd..ff65fa205d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json index 1f78977932..a361470854 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "LKR": [ "Rs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json index 4a085f45ca..f420cb0cc6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json index 4ece8a9326..0a511bb1ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/te.json b/src/Symfony/Component/Intl/Resources/data/currencies/te.json index a253e255f2..0607992b4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/te.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/te.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json index 5a50eece5e..a6ee711e24 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/th.json b/src/Symfony/Component/Intl/Resources/data/currencies/th.json index b60f800ef2..cb25f46ba3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/th.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/th.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json index 72fab57813..30de2ab6df 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json index d6ad6e4faf..a036982c40 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tk.json b/src/Symfony/Component/Intl/Resources/data/currencies/tk.json index 264d9245eb..03a07cb2ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json index 7bc16d0be8..20dc1d4b25 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index 05eecb5ee6..4d058881fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/to.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/to.json @@ -1,14 +1,9 @@ { - "Version": "36.1", "Names": { "AUD": [ "AUD$", "Tola fakaʻaositelēlia" ], - "BRL": [ - "R$", - "BRL" - ], "FJD": [ "FJD", "Tola fakafisi" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json index 43808ebd59..4e11aec4e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json index 2d12be5891..83b8ae53b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json index d749ab0786..2b30228ce1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json index 43dae80e59..fdb48d3c04 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json index c576763c10..32949cc90f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json index c663ebbad9..e192fc4bcb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CRC": [ "CRC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json index 7c7cb3ed15..91dce09edc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -123,7 +122,7 @@ ], "CNH": [ "CNH", - "CNH" + "Xitoy yuani (ofshor)" ], "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json index d131865fec..c83f1d83d3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AFN": [ "؋", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json index fe1a2fd4ef..4d2b3e7e69 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ANG": [ "ANG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json index 0cfd13ebd2..7474c09cb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json index a8abaeec52..b91a25aacd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/xh.json b/src/Symfony/Component/Intl/Resources/data/currencies/xh.json index 3860ab0871..fe8a3c6cee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/xh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json index e8bf104710..ae12d3a8df 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yo.json b/src/Symfony/Component/Intl/Resources/data/currencies/yo.json index d9a5a36a6d..abc1b38c9b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo.json @@ -1,18 +1,61 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", "Diami ti Awon Orílẹ́ède Arabu" ], + "AFN": [ + "AFN", + "Afugánì Afuganísítàànì" + ], + "ALL": [ + "ALL", + "Lẹ́kẹ̀ Àlìbéníà" + ], + "AMD": [ + "AMD", + "Dírààmù Àmẹ́níà" + ], + "ANG": [ + "ANG", + "Gílídà Netherlands Antillean" + ], "AOA": [ "AOA", "Wansa ti Orílẹ́ède Àngólà" ], + "ARS": [ + "ARS", + "Pẹ́sò Agẹntínà" + ], "AUD": [ "A$", "Dọla ti Orílẹ́ède Ástràlìá" ], + "AWG": [ + "AWG", + "Fuloríìnì Àrúbà" + ], + "AZN": [ + "AZN", + "Mánààtì Àsàbáíjáì" + ], + "BAM": [ + "BAM", + "Àmi Yíyípadà Bosnia-Herzegovina" + ], + "BBD": [ + "BBD", + "Dọ́là Bábádọ̀ọ̀sì" + ], + "BDT": [ + "BDT", + "Tákà Báńgíládẹ̀ẹ̀ṣì" + ], + "BGN": [ + "BGN", + "Owó Lẹ́fì Bọ̀lìgéríà" + ], "BHD": [ "BHD", "Dina ti Orílẹ́ède Báránì" @@ -21,14 +64,42 @@ "BIF", "Faransi ti Orílẹ́ède Bùùrúndì" ], + "BMD": [ + "BMD", + "Dọ́là Bẹ̀múdà" + ], + "BND": [ + "BND", + "Dọ́là Bùrùnéì" + ], + "BOB": [ + "BOB", + "Bọlifiánò Bọ̀lífíà" + ], "BRL": [ "R$", "Owó ti Orílẹ̀-èdè Brazil" ], + "BSD": [ + "BSD", + "Dọ́là Bàhámà" + ], + "BTN": [ + "BTN", + "Ìngọ́tírọ̀mù Bútàànì" + ], "BWP": [ "BWP", "Pula ti Orílẹ́ède Bọ̀tìsúwánà" ], + "BYN": [ + "BYN", + "Rọ́bù Bẹ̀lárùùsì" + ], + "BZD": [ + "BZD", + "Dọ́là Bẹ̀lísè" + ], "CAD": [ "CA$", "Dọla ti Orílẹ́ède Kánádà" @@ -41,18 +112,54 @@ "CHF", "Faransi ti Orílẹ́ède Siwisi" ], + "CLP": [ + "CLP", + "Pẹ́sò Ṣílè" + ], + "CNH": [ + "CNH", + "Yúànì Sháínà" + ], "CNY": [ "CN¥", "Reminibi ti Orílẹ́ède ṣáínà" ], + "COP": [ + "COP", + "Pẹ́sò Kòlóḿbíà" + ], + "CRC": [ + "CRC", + "Kólọ́ọ̀nì Kosita Ríkà" + ], + "CUC": [ + "CUC", + "Pẹ́sò Yíyípadà Kúbà" + ], + "CUP": [ + "CUP", + "Pẹ́sò Kúbà" + ], "CVE": [ "CVE", "Kabofediano ti Orílẹ́ède Esuodo" ], + "CZK": [ + "CZK", + "Koruna Ṣẹ́ẹ̀kì" + ], "DJF": [ "DJF", "Faransi ti Orílẹ́ède Dibouti" ], + "DKK": [ + "DKK", + "Kírónì Dáníṣì" + ], + "DOP": [ + "DOP", + "Pẹ́sò Dòníníkà" + ], "DZD": [ "DZD", "Dina ti Orílẹ́ède Àlùgèríánì" @@ -73,26 +180,106 @@ "€", "owó Yúrò" ], + "FJD": [ + "FJD", + "Dọ́là Fíjì" + ], + "FKP": [ + "FKP", + "Pọ́n-ùn Erékùsù Falkland" + ], "GBP": [ "£", "Pọ́n-ùn ti Orilẹ̀-èdè Gẹ̀ẹ́sì" ], + "GEL": [ + "GEL", + "Lárì Jọ́jíà" + ], "GHC": [ "GHC", "ṣidi ti Orílẹ́ède Gana" ], + "GHS": [ + "GHS", + "Sídì Ghanaian" + ], + "GIP": [ + "GIP", + "Pọ́n-ùn Gibraltar" + ], "GMD": [ "GMD", "Dalasi ti Orílẹ́ède Gamibia" ], + "GNF": [ + "GNF", + "Fírànkì Gíníànì" + ], "GNS": [ "GNS", "Faransi ti Orílẹ́ède Gini" ], + "GTQ": [ + "GTQ", + "Kúẹ́tísààlì Guatimílà" + ], + "GYD": [ + "GYD", + "Dọ́là Gùyánà" + ], + "HKD": [ + "HK$", + "Dọ́là Hong Kong" + ], + "HNL": [ + "HNL", + "Lẹmipírà Ọ́ńdúrà" + ], + "HRK": [ + "HRK", + "Kúnà Croatian" + ], + "HTG": [ + "HTG", + "Gọ́dì Àítì" + ], + "HUF": [ + "HUF", + "Fọ́ríǹtì Họ̀ngérí" + ], + "IDR": [ + "IDR", + "Rúpìyá Indonésíà" + ], + "ILS": [ + "₪", + "Ṣékélì Tuntun Ísírẹ̀ẹ̀lì" + ], "INR": [ "₹", "Rupi ti Orílẹ́ède Indina" ], + "IQD": [ + "IQD", + "Dínárì Ìráákì" + ], + "IRR": [ + "IRR", + "Rial Iranian" + ], + "ISK": [ + "ISK", + "Kòrónà Icelandic" + ], + "JMD": [ + "JMD", + "Dọ́là Jàmáíkà" + ], + "JOD": [ + "JOD", + "Dínárì Jọ́dàànì" + ], "JPY": [ "JP¥", "Yeni ti Orílẹ́ède Japani" @@ -101,10 +288,50 @@ "KES", "ṣiili ti Orílẹ́ède Kenya" ], + "KGS": [ + "KGS", + "Sómú Kirijísítàànì" + ], + "KHR": [ + "KHR", + "Ráyò Kàm̀bọ́díà" + ], "KMF": [ "KMF", "Faransi ti Orílẹ́ède ṣomoriani" ], + "KPW": [ + "KPW", + "Wọ́ọ̀nù Àríwá Kòríà" + ], + "KRW": [ + "₩", + "Wọ́ọ̀nù Gúúsù Kòríà" + ], + "KWD": [ + "KWD", + "Dínárì Kuwaiti" + ], + "KYD": [ + "KYD", + "Dọ́là Erékùsù Cayman" + ], + "KZT": [ + "KZT", + "Tẹngé Kasakísítàànì" + ], + "LAK": [ + "LAK", + "Kíììpù Làótì" + ], + "LBP": [ + "LBP", + "Pọ́n-ùn Lebanese" + ], + "LKR": [ + "LKR", + "Rúpìì Siri Láńkà" + ], "LRD": [ "LRD", "Dọla ti Orílẹ́ède Liberia" @@ -121,10 +348,30 @@ "MAD", "Dirami ti Orílẹ́ède Moroko" ], + "MDL": [ + "MDL", + "Owó Léhù Moldovan" + ], "MGA": [ "MGA", "Faransi ti Orílẹ́ède Malagasi" ], + "MKD": [ + "MKD", + "Dẹ́nà Masidóníà" + ], + "MMK": [ + "MMK", + "Kíyàtì Myanmar" + ], + "MNT": [ + "MNT", + "Túgúrììkì Mòǹgólíà" + ], + "MOP": [ + "MOP", + "Pàtákà Màkáò" + ], "MRO": [ "MRO", "Ouguiya ti Orílẹ́ède Maritania (1973–2017)" @@ -137,14 +384,30 @@ "MUR", "Rupi ti Orílẹ́ède Maritiusi" ], + "MVR": [ + "MVR", + "Rúfìyá Mọ̀lìdífà" + ], "MWK": [ "MWK", "Kaṣa ti Orílẹ́ède Malawi" ], + "MXN": [ + "MX$", + "Pẹ́sò Mẹ́síkò" + ], + "MYR": [ + "MYR", + "Ríngìtì Màléṣíà" + ], "MZM": [ "MZM", "Metika ti Orílẹ́ède Mosamibiki" ], + "MZN": [ + "MZN", + "Mẹ́tíkààlì Mòsáḿbíìkì" + ], "NAD": [ "NAD", "Dọla ti Orílẹ́ède Namibia" @@ -153,6 +416,66 @@ "₦", "Náìrà ti Orílẹ̀-èdè Nàìjíríà" ], + "NIO": [ + "NIO", + "Kọ̀dóbà Naikarágúà" + ], + "NOK": [ + "NOK", + "Kírónì Nọ́ọ́wè" + ], + "NPR": [ + "NPR", + "Rúpìì Nẹ̵́pààlì" + ], + "NZD": [ + "NZ$", + "Dọ́là New Zealand" + ], + "OMR": [ + "OMR", + "Ráyò Omani" + ], + "PAB": [ + "PAB", + "Bálíbóà Pànámà" + ], + "PEN": [ + "PEN", + "Sólì Pèrúù" + ], + "PGK": [ + "PGK", + "Kínà Papua Guinea Tuntun" + ], + "PHP": [ + "PHP", + "Písò Fílípìnì" + ], + "PKR": [ + "PKR", + "Rúpìì Pakisitánì" + ], + "PLN": [ + "PLN", + "Sílọ̀tì Pọ́líṣì" + ], + "PYG": [ + "PYG", + "Gúáránì Párágúwè" + ], + "QAR": [ + "QAR", + "Ráyò Kàtárì" + ], + "RON": [ + "RON", + "Léhù Ròméníà" + ], + "RSD": [ + "RSD", + "Dínárì Sàbíà" + ], "RUB": [ "₽", "Owó ruble ti ilẹ̀ Rọ́ṣíà" @@ -165,6 +488,10 @@ "SAR", "Riya ti Orílẹ́ède Saudi" ], + "SBD": [ + "SBD", + "Dọ́là Erékùsù Sọ́lómọ́nì" + ], "SCR": [ "SCR", "Rupi ti Orílẹ́ède Sayiselesi" @@ -177,6 +504,14 @@ "SDP", "Pọọun ti Orílẹ́ède Sudani" ], + "SEK": [ + "SEK", + "Kòrónà Súwídìn" + ], + "SGD": [ + "SGD", + "Dọ́là Síngápọ̀" + ], "SHP": [ "SHP", "Pọọun ti Orílẹ́ède ̣Elena" @@ -189,6 +524,14 @@ "SOS", "Sile ti Orílẹ́ède Somali" ], + "SRD": [ + "SRD", + "Dọ́là Súrínámì" + ], + "SSP": [ + "SSP", + "Pọ́n-ùn Gúúsù Sùdáànì" + ], "STD": [ "STD", "Dobira ti Orílẹ́ède Sao tome Ati Pirisipe (1977–2017)" @@ -197,18 +540,54 @@ "STN", "Dobira ti Orílẹ́ède Sao tome Ati Pirisipe" ], + "SYP": [ + "SYP", + "Pọ́n-ùn Sírìà" + ], "SZL": [ "SZL", "Lilangeni" ], + "THB": [ + "THB", + "Báàtì Tháì" + ], + "TJS": [ + "TJS", + "Sómónì Tajikístàànì" + ], + "TMT": [ + "TMT", + "Mánààtì Tọkimẹnístàànì" + ], "TND": [ "TND", "Dina ti Orílẹ́ède Tunisia" ], + "TOP": [ + "TOP", + "Pàángà Tóńgà" + ], + "TRY": [ + "TRY", + "Lírà Tọ́kì" + ], + "TTD": [ + "TTD", + "Dọ́là Trinidad & Tobago" + ], + "TWD": [ + "NT$", + "Dọ́là Tàìwánì Tuntun" + ], "TZS": [ "TZS", "Sile ti Orílẹ́ède Tansania" ], + "UAH": [ + "UAH", + "Ọrifiníyà Yukiréníà" + ], "UGX": [ "UGX", "Siile ti Orílẹ́ède Uganda" @@ -217,14 +596,50 @@ "$", "Dọ́là" ], + "UYU": [ + "UYU", + "Pẹ́sò Úrúgúwè" + ], + "UZS": [ + "UZS", + "Sómú Usibẹkísítàànì" + ], + "VES": [ + "VES", + "Bọ̀lífà Fẹnẹsuẹ́là" + ], + "VND": [ + "₫", + "Dáhùn Vietnamese" + ], + "VUV": [ + "VUV", + "Fátù Vanuatu" + ], + "WST": [ + "WST", + "Tálà Sàmóà" + ], "XAF": [ "FCFA", "Faransi ti Orílẹ́ède BEKA" ], + "XCD": [ + "EC$", + "Dọ́là Ilà Oòrùn Karíbíà" + ], "XOF": [ "CFA", "Faransi ti Orílẹ́ède BIKEAO" ], + "XPF": [ + "CFPF", + "Fírànkì CFP" + ], + "YER": [ + "YER", + "Ráyò Yẹ́mẹ̀nì" + ], "ZAR": [ "ZAR", "Randi ti Orílẹ́ède Ariwa Afirika" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json index c4a338af23..27383793cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json @@ -1,18 +1,41 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", "Diami ti Awon Orílɛ́ède Arabu" ], + "ALL": [ + "ALL", + "Lɛ́kɛ̀ Àlìbéníà" + ], + "AMD": [ + "AMD", + "Dírààmù Àmɛ́níà" + ], "AOA": [ "AOA", "Wansa ti Orílɛ́ède Àngólà" ], + "ARS": [ + "ARS", + "Pɛ́sò Agɛntínà" + ], "AUD": [ "A$", "Dɔla ti Orílɛ́ède Ástràlìá" ], + "BBD": [ + "BBD", + "Dɔ́là Bábádɔ̀ɔ̀sì" + ], + "BDT": [ + "BDT", + "Tákà Báńgíládɛ̀ɛ̀shì" + ], + "BGN": [ + "BGN", + "Owó Lɛ́fì Bɔ̀lìgéríà" + ], "BHD": [ "BHD", "Dina ti Orílɛ́ède Báránì" @@ -21,14 +44,42 @@ "BIF", "Faransi ti Orílɛ́ède Bùùrúndì" ], + "BMD": [ + "BMD", + "Dɔ́là Bɛ̀múdà" + ], + "BND": [ + "BND", + "Dɔ́là Bùrùnéì" + ], + "BOB": [ + "BOB", + "Bɔlifiánò Bɔ̀lífíà" + ], "BRL": [ "R$", "Owó ti Orílɛ̀-èdè Brazil" ], + "BSD": [ + "BSD", + "Dɔ́là Bàhámà" + ], + "BTN": [ + "BTN", + "Ìngɔ́tírɔ̀mù Bútàànì" + ], "BWP": [ "BWP", "Pula ti Orílɛ́ède Bɔ̀tìsúwánà" ], + "BYN": [ + "BYN", + "Rɔ́bù Bɛ̀lárùùsì" + ], + "BZD": [ + "BZD", + "Dɔ́là Bɛ̀lísè" + ], "CAD": [ "CA$", "Dɔla ti Orílɛ́ède Kánádà" @@ -41,18 +92,50 @@ "CHF", "Faransi ti Orílɛ́ède Siwisi" ], + "CLP": [ + "CLP", + "Pɛ́sò Shílè" + ], "CNY": [ "CN¥", "Reminibi ti Orílɛ́ède sháínà" ], + "COP": [ + "COP", + "Pɛ́sò Kòlóḿbíà" + ], + "CRC": [ + "CRC", + "Kólɔ́ɔ̀nì Kosita Ríkà" + ], + "CUC": [ + "CUC", + "Pɛ́sò Yíyípadà Kúbà" + ], + "CUP": [ + "CUP", + "Pɛ́sò Kúbà" + ], "CVE": [ "CVE", "Kabofediano ti Orílɛ́ède Esuodo" ], + "CZK": [ + "CZK", + "Koruna Shɛ́ɛ̀kì" + ], "DJF": [ "DJF", "Faransi ti Orílɛ́ède Dibouti" ], + "DKK": [ + "DKK", + "Kírónì Dáníshì" + ], + "DOP": [ + "DOP", + "Pɛ́sò Dòníníkà" + ], "DZD": [ "DZD", "Dina ti Orílɛ́ède Àlùgèríánì" @@ -69,14 +152,30 @@ "ETB", "Biri ti Orílɛ́ède Eutopia" ], + "FJD": [ + "FJD", + "Dɔ́là Fíjì" + ], + "FKP": [ + "FKP", + "Pɔ́n-ùn Erékùsù Falkland" + ], "GBP": [ "£", "Pɔ́n-ùn ti Orilɛ̀-èdè Gɛ̀ɛ́sì" ], + "GEL": [ + "GEL", + "Lárì Jɔ́jíà" + ], "GHC": [ "GHC", "shidi ti Orílɛ́ède Gana" ], + "GIP": [ + "GIP", + "Pɔ́n-ùn Gibraltar" + ], "GMD": [ "GMD", "Dalasi ti Orílɛ́ède Gamibia" @@ -85,10 +184,46 @@ "GNS", "Faransi ti Orílɛ́ède Gini" ], + "GTQ": [ + "GTQ", + "Kúɛ́tísààlì Guatimílà" + ], + "GYD": [ + "GYD", + "Dɔ́là Gùyánà" + ], + "HKD": [ + "HK$", + "Dɔ́là Hong Kong" + ], + "HNL": [ + "HNL", + "Lɛmipírà Ɔ́ńdúrà" + ], + "HTG": [ + "HTG", + "Gɔ́dì Àítì" + ], + "HUF": [ + "HUF", + "Fɔ́ríǹtì Hɔ̀ngérí" + ], + "ILS": [ + "₪", + "Shékélì Tuntun Ísírɛ̀ɛ̀lì" + ], "INR": [ "₹", "Rupi ti Orílɛ́ède Indina" ], + "JMD": [ + "JMD", + "Dɔ́là Jàmáíkà" + ], + "JOD": [ + "JOD", + "Dínárì Jɔ́dàànì" + ], "JPY": [ "JP¥", "Yeni ti Orílɛ́ède Japani" @@ -97,10 +232,34 @@ "KES", "shiili ti Orílɛ́ède Kenya" ], + "KHR": [ + "KHR", + "Ráyò Kàm̀bɔ́díà" + ], "KMF": [ "KMF", "Faransi ti Orílɛ́ède shomoriani" ], + "KPW": [ + "KPW", + "Wɔ́ɔ̀nù Àríwá Kòríà" + ], + "KRW": [ + "₩", + "Wɔ́ɔ̀nù Gúúsù Kòríà" + ], + "KYD": [ + "KYD", + "Dɔ́là Erékùsù Cayman" + ], + "KZT": [ + "KZT", + "Tɛngé Kasakísítàànì" + ], + "LBP": [ + "LBP", + "Pɔ́n-ùn Lebanese" + ], "LRD": [ "LRD", "Dɔla ti Orílɛ́ède Liberia" @@ -121,6 +280,10 @@ "MGA", "Faransi ti Orílɛ́ède Malagasi" ], + "MKD": [ + "MKD", + "Dɛ́nà Masidóníà" + ], "MRO": [ "MRO", "Ouguiya ti Orílɛ́ède Maritania (1973–2017)" @@ -133,14 +296,30 @@ "MUR", "Rupi ti Orílɛ́ède Maritiusi" ], + "MVR": [ + "MVR", + "Rúfìyá Mɔ̀lìdífà" + ], "MWK": [ "MWK", "Kasha ti Orílɛ́ède Malawi" ], + "MXN": [ + "MX$", + "Pɛ́sò Mɛ́síkò" + ], + "MYR": [ + "MYR", + "Ríngìtì Màléshíà" + ], "MZM": [ "MZM", "Metika ti Orílɛ́ède Mosamibiki" ], + "MZN": [ + "MZN", + "Mɛ́tíkààlì Mòsáḿbíìkì" + ], "NAD": [ "NAD", "Dɔla ti Orílɛ́ède Namibia" @@ -149,6 +328,26 @@ "₦", "Náìrà ti Orílɛ̀-èdè Nàìjíríà" ], + "NIO": [ + "NIO", + "Kɔ̀dóbà Naikarágúà" + ], + "NOK": [ + "NOK", + "Kírónì Nɔ́ɔ́wè" + ], + "NPR": [ + "NPR", + "Rúpìì Nɛ̵́pààlì" + ], + "NZD": [ + "NZ$", + "Dɔ́là New Zealand" + ], + "PLN": [ + "PLN", + "Sílɔ̀tì Pɔ́líshì" + ], "RUB": [ "₽", "Owó ruble ti ilɛ̀ Rɔ́shíà" @@ -161,6 +360,10 @@ "SAR", "Riya ti Orílɛ́ède Saudi" ], + "SBD": [ + "SBD", + "Dɔ́là Erékùsù Sɔ́lómɔ́nì" + ], "SCR": [ "SCR", "Rupi ti Orílɛ́ède Sayiselesi" @@ -173,6 +376,10 @@ "SDP", "Pɔɔun ti Orílɛ́ède Sudani" ], + "SGD": [ + "SGD", + "Dɔ́là Síngápɔ̀" + ], "SHP": [ "SHP", "Pɔɔun ti Orílɛ́ède ̣Elena" @@ -181,6 +388,14 @@ "SOS", "Sile ti Orílɛ́ède Somali" ], + "SRD": [ + "SRD", + "Dɔ́là Súrínámì" + ], + "SSP": [ + "SSP", + "Pɔ́n-ùn Gúúsù Sùdáànì" + ], "STD": [ "STD", "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe (1977–2017)" @@ -189,14 +404,38 @@ "STN", "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe" ], + "SYP": [ + "SYP", + "Pɔ́n-ùn Sírìà" + ], + "TMT": [ + "TMT", + "Mánààtì Tɔkimɛnístàànì" + ], "TND": [ "TND", "Dina ti Orílɛ́ède Tunisia" ], + "TRY": [ + "TRY", + "Lírà Tɔ́kì" + ], + "TTD": [ + "TTD", + "Dɔ́là Trinidad & Tobago" + ], + "TWD": [ + "NT$", + "Dɔ́là Tàìwánì Tuntun" + ], "TZS": [ "TZS", "Sile ti Orílɛ́ède Tansania" ], + "UAH": [ + "UAH", + "Ɔrifiníyà Yukiréníà" + ], "UGX": [ "UGX", "Siile ti Orílɛ́ède Uganda" @@ -205,14 +444,34 @@ "$", "Dɔ́là" ], + "UYU": [ + "UYU", + "Pɛ́sò Úrúgúwè" + ], + "UZS": [ + "UZS", + "Sómú Usibɛkísítàànì" + ], + "VES": [ + "VES", + "Bɔ̀lífà Fɛnɛsuɛ́là" + ], "XAF": [ "FCFA", "Faransi ti Orílɛ́ède BEKA" ], + "XCD": [ + "EC$", + "Dɔ́là Ilà Oòrùn Karíbíà" + ], "XOF": [ "CFA", "Faransi ti Orílɛ́ède BIKEAO" ], + "YER": [ + "YER", + "Ráyò Yɛ́mɛ̀nì" + ], "ZAR": [ "ZAR", "Randi ti Orílɛ́ède Ariwa Afirika" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index d87fb74494..2672d0c6c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json index fc52eabf19..d395606443 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -241,10 +240,6 @@ "TZS", "坦桑尼亞先令" ], - "VES": [ - "VES", - "VES" - ], "VUV": [ "VUV", "瓦努阿圖瓦圖" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json index dda3b5355e..1302b87774 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json index f06fa4c3cf..49ed90267c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json index d4fec5421b..083b0a3d46 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json index 3453835bb0..604c7bbf4b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json index fc52eabf19..d395606443 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -241,10 +240,6 @@ "TZS", "坦桑尼亞先令" ], - "VES": [ - "VES", - "VES" - ], "VUV": [ "VUV", "瓦努阿圖瓦圖" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json index 10d0e3e82a..0f5431a403 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json index 10d0e3e82a..0f5431a403 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json index d4fec5421b..083b0a3d46 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json index 04a9fd62d6..f6a7b86b58 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AED": [ "AED", @@ -121,10 +120,6 @@ "CLP", "i-Chilean Peso" ], - "CNH": [ - "CNH", - "CNH" - ], "CNY": [ "CN¥", "i-Chinese Yuan" diff --git a/src/Symfony/Component/Intl/Resources/data/git-info.txt b/src/Symfony/Component/Intl/Resources/data/git-info.txt index 3a5b9f5744..3bec62e2a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/git-info.txt +++ b/src/Symfony/Component/Intl/Resources/data/git-info.txt @@ -2,6 +2,6 @@ Git information =============== URL: https://github.com/unicode-org/icu.git -Revision: 5f681ecbc75898a6484217b322f3883b6d1b2049 -Author: Jeff Genovy -Date: 2020-03-09T17:38:44-07:00 +Revision: 125e29d54990e74845e1546851b5afa3efab06ce +Author: Peter Edberg +Date: 2020-04-15T23:30:01-07:00 diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index 2f1c8cecfa..a214e685bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/af.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/af.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkasies", @@ -92,6 +91,7 @@ "eu": "Baskies", "ewo": "Ewondo", "fa": "Persies", + "fa_AF": "Dari", "ff": "Fulah", "fi": "Fins", "fil": "Filippyns", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ak.json b/src/Symfony/Component/Intl/Resources/data/languages/ak.json index f1f3d04b98..7be59814ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ak.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Akan", "am": "Amarik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/am.json b/src/Symfony/Component/Intl/Resources/data/languages/am.json index a934f769e2..359c69ba35 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/am.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/am.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "አፋርኛ", "ab": "አብሐዚኛ", @@ -134,6 +133,7 @@ "eu": "ባስክኛ", "ewo": "ኤዎንዶ", "fa": "ፐርሺያኛ", + "fa_AF": "ዳሪኛ", "ff": "ፉላህ", "fi": "ፊኒሽ", "fil": "ፊሊፒንኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar.json b/src/Symfony/Component/Intl/Resources/data/languages/ar.json index e2694323fc..cb630bc0de 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "الأفارية", "ab": "الأبخازية", @@ -129,6 +128,7 @@ "eu": "الباسكية", "ewo": "الإيوندو", "fa": "الفارسية", + "fa_AF": "الدارية", "fan": "الفانج", "fat": "الفانتي", "ff": "الفولانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json index 69365536a5..af004505ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "da": "الدنماركية" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json index ed52b664d7..909df81e42 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "المابودونجونية", "gn": "الغورانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json index 9b415e6f53..84e1313831 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "المابودونجونية", "gn": "الغورانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index dd85315b40..e0de58e4e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/as.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/as.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "আফাৰ", "ab": "আবখাজিয়ান", @@ -87,6 +86,7 @@ "eu": "বাস্ক", "ewo": "ইওন্দো", "fa": "ফাৰ্ছী", + "fa_AF": "দাৰি", "ff": "ফুলাহ", "fi": "ফিনিচ", "fil": "ফিলিপিনো", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index e717f971f5..1a52789863 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abxaz", @@ -120,6 +119,7 @@ "eu": "bask", "ewo": "evondo", "fa": "fars", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json index 5fa8ad2f37..5eea713f54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афар", "ab": "абхаз", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/be.json b/src/Symfony/Component/Intl/Resources/data/languages/be.json index 547f1ad264..f9d02291bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/be.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/be.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарская", "ab": "абхазская", @@ -95,6 +94,7 @@ "eu": "баскская", "ewo": "эвонда", "fa": "фарсі", + "fa_AF": "дары", "ff": "фула", "fi": "фінская", "fil": "філіпінская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index 501a8be1ff..c9765a0f1f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарски", "ab": "абхазки", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bm.json b/src/Symfony/Component/Intl/Resources/data/languages/bm.json index 1a1f609102..5cad38d5e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "akankan", "am": "amarikikan", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn.json b/src/Symfony/Component/Intl/Resources/data/languages/bn.json index 632d635f79..55b6dc090c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "আফার", "ab": "আবখাজিয়ান", @@ -120,6 +119,7 @@ "eu": "বাস্ক", "ewo": "ইওন্ডো", "fa": "ফার্সি", + "fa_AF": "দারি", "fan": "ফ্যাঙ্গ", "fat": "ফান্তি", "ff": "ফুলাহ্", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json index ff5d3d976c..e7b3419922 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ksh": "কোলোনিয়ান" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bo.json b/src/Symfony/Component/Intl/Resources/data/languages/bo.json index b0acc66936..f722304295 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bo": "བོད་སྐད་", "dz": "རྫོང་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/br.json b/src/Symfony/Component/Intl/Resources/data/languages/br.json index 18d54a3d7d..b6717a6e97 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/br.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/br.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhazeg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index 955f3ab794..ec93a34250 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarski", "ab": "abhaski", @@ -99,6 +98,7 @@ "dar": "dargva", "dav": "taita", "de": "njemački", + "de_CH": "visoki njemački (Švicarska)", "del": "delaver", "den": "slave", "dgr": "dogrib", @@ -128,6 +128,7 @@ "eu": "baskijski", "ewo": "evondo", "fa": "perzijski", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json index 35b6eff73c..935af3e9de 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарски", "ab": "абказијски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ca.json b/src/Symfony/Component/Intl/Resources/data/languages/ca.json index d6e6b940ee..b0729c4e99 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ca.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "àfar", "ab": "abkhaz", @@ -139,6 +138,7 @@ "ewo": "ewondo", "ext": "extremeny", "fa": "persa", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "ful", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ce.json b/src/Symfony/Component/Intl/Resources/data/languages/ce.json index 9181a8ce8e..77f8a6f13e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ce.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарийн", "ab": "абхазхойн", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index 784ebc3834..733d698345 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarština", "ab": "abcházština", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "extremadurština", "fa": "perština", + "fa_AF": "darí", "fan": "fang", "fat": "fantština", "ff": "fulbština", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index 4d446eab94..d81b997652 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Affareg", "ab": "Abchaseg", @@ -126,6 +125,7 @@ "ewo": "Ewondo", "ext": "Extremadureg", "fa": "Perseg", + "fa_AF": "Dari", "fat": "Ffanti", "ff": "Ffwla", "fi": "Ffinneg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/da.json b/src/Symfony/Component/Intl/Resources/data/languages/da.json index bca161600e..926d836a57 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/da.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/da.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -129,6 +128,7 @@ "eu": "baskisk", "ewo": "ewondo", "fa": "persisk", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index 898aa86a27..7778ddeeb9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abchasisch", @@ -151,6 +150,7 @@ "ewo": "Ewondo", "ext": "Extremadurisch", "fa": "Persisch", + "fa_AF": "Dari", "fan": "Pangwe", "fat": "Fanti", "ff": "Ful", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json b/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json index 5490f0204f..ac159466e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "car": "karibische Sprache", "chb": "Chibcha-Sprache", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json index edfe147067..b5d3ad631d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "Aceh-Sprache", "ach": "Acholi-Sprache", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json b/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json index b4930ef7f8..a454c474c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "be": "Belarussisch" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/dz.json b/src/Symfony/Component/Intl/Resources/data/languages/dz.json index 34ae6b8905..be3424b05c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/dz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ཨ་ཕར་ཁ", "ab": "ཨཱབ་ཁ་ཟི་ཡ་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ee.json b/src/Symfony/Component/Intl/Resources/data/languages/ee.json index f5151b8f8b..7db9dacfec 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ee.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ab": "abkhaziagbe", "af": "afrikaangbe", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/el.json b/src/Symfony/Component/Intl/Resources/data/languages/el.json index 9daf2fbc2f..3c932c6810 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/el.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/el.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Αφάρ", "ab": "Αμπχαζικά", @@ -129,6 +128,7 @@ "eu": "Βασκικά", "ewo": "Εγουόντο", "fa": "Περσικά", + "fa_AF": "Νταρί", "fan": "Φανγκ", "fat": "Φάντι", "ff": "Φουλά", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en.json b/src/Symfony/Component/Intl/Resources/data/languages/en.json index 2bb71958c8..d01f25401a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_001.json b/src/Symfony/Component/Intl/Resources/data/languages/en_001.json index 47bf235b7c..3ae6faf8eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_001.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "mus": "Creek" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json index 6bb7b74ca4..59d1790241 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bn": "Bengali", "frc": "frc", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json b/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json index 5d33f67227..3f0bfad134 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bn": "Bengali", "mfe": "Mauritian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json index 9cb9008bef..0a4b018e73 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": [], "LocalizedNames": { "ar_001": "Modern Standard Arabic", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json index 21eeb2c2d5..242f4edffe 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bn": "Bengali" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json b/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json index b804a10fb3..a7579504fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "mi": "Māori" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eo.json b/src/Symfony/Component/Intl/Resources/data/languages/eo.json index 4c3cb39740..dcd9bda07f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afara", "ab": "abĥaza", @@ -134,7 +133,6 @@ "tr": "turka", "ts": "conga", "tt": "tatara", - "tw": "tw", "ug": "ujgura", "uk": "ukraina", "ur": "urduo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es.json b/src/Symfony/Component/Intl/Resources/data/languages/es.json index 7d378b403b..c6b57e6144 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abjasio", @@ -129,6 +128,7 @@ "eu": "euskera", "ewo": "ewondo", "fa": "persa", + "fa_AF": "darí", "fan": "fang", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json index e3a8e6cb1b..3e33da88ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "achenés", "ady": "adigeo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json b/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json b/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json b/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json index da4bf402e9..7395d0704a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", @@ -29,7 +28,6 @@ "nr": "ndebele meridional", "nso": "sotho septentrional", "pa": "punyabí", - "pcm": "pcm", "shu": "árabe chadiano", "ss": "siswati", "sw": "suajili", @@ -37,7 +35,7 @@ "tet": "tetún", "tn": "setswana", "tyv": "tuviniano", - "wuu": "wuu", + "wuu": "chino wu", "xal": "kalmyk", "zgh": "tamazight marroquí estándar" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json b/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json index e9dec1206d..33b0e4a701 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json b/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json index e9dec1206d..33b0e4a701 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_US.json b/src/Symfony/Component/Intl/Resources/data/languages/es_US.json index fc55fd502e..0cc6543d0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_US.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "alt": "altái meridional", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json b/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json index 66bc57f135..4acd43cdef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/et.json b/src/Symfony/Component/Intl/Resources/data/languages/et.json index 996d17b2b9..47eee9aef0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/et.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/et.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afari", "ab": "abhaasi", @@ -149,6 +148,7 @@ "ewo": "evondo", "ext": "estremenju", "fa": "pärsia", + "fa_AF": "dari", "fan": "fangi", "fat": "fanti", "ff": "fula", @@ -168,7 +168,6 @@ "fur": "friuuli", "fy": "läänefriisi", "ga": "iiri", - "gaa": "gaa", "gag": "gagauusi", "gan": "kani", "gay": "gajo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index 2f9d43da84..8a87aaea5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarera", "ab": "abkhaziera", @@ -88,6 +87,7 @@ "eu": "euskara", "ewo": "ewondera", "fa": "persiera", + "fa_AF": "daria", "ff": "fula", "fi": "finlandiera", "fil": "filipinera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index 1c8bd9b95c..d57220c1b5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "آفاری", "ab": "آبخازی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json index d8f5276165..649aff3ab9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ab": "افریکانس", "as": "اسامی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff.json b/src/Symfony/Component/Intl/Resources/data/languages/ff.json index d5a697ecbf..8d8f4737db 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ff.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Akaan", "am": "Amarik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json new file mode 100644 index 0000000000..500ce55645 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json @@ -0,0 +1,169 @@ +{ + "Names": { + "aa": "𞤢𞤬𞤢𞥄𞤪𞤫", + "af": "𞤀𞤬𞤪𞤭𞤳𞤢𞤲𞤪𞤫", + "ak": "𞤀𞤳𞤢𞤲𞤪𞤫", + "am": "𞤀𞤥𞤸𞤢𞤪𞤭𞥅𞤪𞤫", + "an": "𞤀𞤪𞤢𞤺𞤮𞤲𞤪𞤫", + "anp": "𞤀𞤲𞤺𞤭𞤳𞤢𞥄𞤪𞤫", + "ar": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫", + "arp": "𞤀𞤪𞤢𞤨𞤢𞤸𞤮𞥅𞤪𞤫", + "as": "𞤀𞤧𞤢𞤥𞤫𞥅𞤪𞤫", + "asa": "𞤀𞤧𞤵𞥅𞤪𞤫", + "ast": "𞤀𞤧𞤼𞤵𞤪𞤭𞥅𞤪𞤫", + "av": "𞤀𞤬𞤱𞤢𞤪𞤭𞥅𞤪𞤫", + "awa": "𞤀𞤱𞤢𞤣𞤭𞥅𞤪𞤫", + "ay": "𞤀𞤴𞤥𞤢𞤪𞤢𞥄𞤪𞤫", + "az": "𞤀𞤶𞤢𞤪𞤦𞤢𞤴𞤭𞤶𞤢𞤲𞤭𞥅𞤪𞤫", + "ba": "𞤄𞤢𞤧𞤳𞤭𞥅𞤪𞤫", + "ban": "𞤄𞤢𞥄𞤤𞤭𞥅𞤪𞤫", + "bas": "𞤄𞤢𞤧𞤢𞥄𞤪𞤫", + "be": "𞤄𞤫𞤤𞤢𞤪𞤭𞥅𞤧𞤭𞥅𞤪𞤫", + "bem": "𞤄𞤫𞤥𞤦𞤢𞥄𞤪𞤫", + "bez": "𞤄𞤫𞤲𞤢𞥄𞤪𞤫", + "bg": "𞤄𞤭𞤤𞤺𞤢𞥄𞤪𞤫", + "bho": "𞤄𞤮𞤧𞤨𞤵𞤪𞤭𞥅𞤪𞤫", + "bi": "𞤄𞤭𞤧𞤤𞤢𞤥𞤢𞥄𞤪𞤫", + "bin": "𞤄𞤭𞤲𞤭𞥅𞤪𞤫", + "bm": "𞤄𞤢𞤥𞤦𞤢𞤪𞤢𞥄𞤪𞤫", + "bn": "𞤄𞤫𞤲𞤺𞤢𞤤𞤭𞥅𞤪𞤫", + "br": "𞤄𞤫𞤪𞤫𞤼𞤮𞤲𞤪𞤫", + "brx": "𞤄𞤮𞤣𞤮𞥅𞤪𞤫", + "bs": "𞤄𞤮𞤧𞤲𞤭𞤴𞤢𞥄𞤪𞤫", + "bug": "𞤄𞤵𞤺𞤭𞤧𞤢𞥄𞤪𞤫", + "byn": "𞤄𞤭𞤤𞤭𞤲𞤪𞤫", + "ca": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫", + "ce": "𞤕𞤫𞤷𞤫𞤲𞤪𞤫", + "ceb": "𞤅𞤫𞤦𞤱𞤢𞤲𞤮𞥅𞤪𞤫", + "cgg": "𞤕𞤭𞤺𞤢𞥄𞤪𞤫", + "ch": "𞤕𞤢𞤥𞤮𞤪𞤮𞥅𞤪𞤫", + "chk": "𞤕𞤵𞥅𞤳𞤵𞥅𞤪𞤫", + "cho": "𞤕𞤢𞤸𞤼𞤢𞥄𞤪𞤫", + "chr": "𞤕𞤫𞥅𞤪𞤮𞤳𞤭𞥅𞤪𞤫", + "chy": "𞤅𞤢𞥄𞤴𞤢𞤲𞤪𞤫", + "ckb": "𞤑𞤵𞤪𞤣𞤵𞥅𞤪𞤫", + "co": "𞤑𞤮𞤪𞤧𞤭𞤳𞤢𞥄𞤪𞤫", + "cs": "𞤕𞤫𞤳𞤧𞤭𞤲𞤢𞥄𞤪𞤫", + "cy": "𞤘𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "da": "𞤁𞤢𞥄𞤲𞤭𞤧𞤳𞤮𞥅𞤪𞤫", + "dak": "𞤁𞤢𞤳𞤮𞤼𞤢𞥄𞤪𞤫", + "dar": "𞤁𞤢𞤪𞤺𞤭𞤲𞤢𞥄𞤪𞤫", + "de": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "de_AT": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤢𞤥𞤧𞤭𞤱𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "de_CH": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤅𞤵𞤱𞤭𞤧𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤮𞥅𞤱𞤵𞤲𞥋𞤣𞤫", + "dje": "𞤔𞤢𞤪𞤥𞤢𞥄𞤪𞤫", + "dua": "𞤁𞤵𞤱𞤢𞤤𞤢𞥄𞤪𞤫", + "dv": "𞤁𞤭𞥅𞤬𞤫𞤸𞤭𞥅𞤪𞤫", + "dyo": "𞤔𞤮𞥅𞤤𞤢𞥄𞤪𞤫", + "dz": "𞤄𞤵𞥅𞤼𞤢𞤲𞤪𞤫", + "dzg": "𞤁𞤢𞤶𞤢𞤺𞤢𞥄𞤪𞤫", + "en": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫", + "en_AU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_CA": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤑𞤢𞤲𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_GB": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤄𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_US": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤀𞤥𞤭𞤪𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "es": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "es_419": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤥𞤭𞤪𞤭𞤳 𞤂𞤢𞤼𞤭𞤲𞤭𞤴𞤢", + "es_ES": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤪𞤮𞤦𞤢", + "es_MX": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤃𞤫𞤳𞤧𞤭𞤳", + "eu": "𞤄𞤢𞤧𞤳𞤢𞤪𞤢𞥄𞤪𞤫", + "ff": "𞤆𞤵𞤤𞤢𞤪", + "fr": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫", + "fr_CA": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 𞤑𞤢𞤲𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "fr_CH": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 𞤅𞤵𞤱𞤭𞤧𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "fy": "𞤊𞤭𞤪𞤭𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢", + "ga": "𞤋𞤪𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫", + "hi": "𞤖𞤭𞤲𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "hr": "𞤑𞤮𞤪𞤮𞤱𞤢𞤧𞤭𞥅𞤪𞤫", + "hy": "𞤀𞤪𞤥𞤫𞤲𞤭𞥅𞤪𞤫", + "ia": "𞤉𞤲𞤼𞤫𞤪𞤤𞤭𞤺𞤢𞥄𞤪𞤫", + "id": "𞤉𞤲𞤣𞤮𞤲𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "ilo": "𞤋𞤤𞤮𞤳𞤮𞥅𞤪𞤫", + "inh": "𞤋𞤲𞤺𞤮𞤧𞤫𞥅𞤪𞤫", + "it": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "iu": "𞤋𞤲𞤵𞤳𞤼𞤫𞥅𞤪𞤫", + "ja": "𞤔𞤢𞤨𞤮𞤲𞤫𞥅𞤪𞤫", + "jgo": "𞤐𞤺𞤮𞤥𞤦𞤢𞥄𞤪𞤫", + "jmc": "𞤃𞤢𞤳𞤢𞤥𞤫𞥅𞤪𞤫", + "jv": "𞤔𞤢𞥄𞤱𞤢𞤫𞥅𞤪𞤫", + "kaj": "𞤑𞤢𞤶𞤫𞥅𞤪𞤫", + "kde": "𞤃𞤢𞤳𞤮𞤲𞤣𞤫𞥅𞤪𞤫", + "ko": "𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤪𞤫", + "ksf": "𞤄𞤢𞤬𞤭𞤴𞤢𞥄𞤪𞤫", + "kw": "𞤑𞤮𞤪𞤲𞤭𞥅𞤪𞤫", + "lus": "𞤃𞤭𞤧𞤮𞥅𞤪𞤫", + "mad": "𞤃𞤢𞤣𞤵𞤪𞤫𞥅𞤪𞤫", + "mag": "𞤃𞤢𞤺𞤢𞤸𞤭𞥅𞤪𞤫", + "mai": "𞤃𞤢𞤴𞤭𞤼𞤭𞤤𞤭𞥅𞤪𞤫", + "mak": "𞤃𞤢𞤳𞤢𞤧𞤢𞤪𞤢𞥄𞤪𞤫", + "mas": "𞤃𞤢𞤧𞤢𞤴𞤭𞥅𞤪𞤫", + "mdf": "𞤃𞤮𞤳𞤧𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "men": "𞤃𞤫𞤲𞤣𞤫𞥅𞤪𞤫", + "mer": "𞤃𞤫𞤪𞤵𞥅𞤪𞤫", + "mfe": "𞤃𞤮𞤪𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "mg": "𞤃𞤢𞤤𞤢𞤺𞤢𞤧𞤭𞥅𞤪𞤫", + "mgh": "𞤃𞤢𞤳𞤵𞤱𞤢𞥄𞤪𞤫", + "mgo": "𞤃𞤫𞤼𞤢𞥄𞤪𞤫", + "mh": "𞤃𞤢𞤪𞤧𞤢𞤤𞤫𞥅𞤪𞤫", + "mk": "𞤃𞤢𞤧𞤫𞤣𞤮𞤲𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "ml": "𞤃𞤢𞤤𞤢𞤴𞤢𞤤𞤢𞤥𞤪𞤫", + "mn": "𞤃𞤮𞤲𞤺𞤮𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "mni": "𞤃𞤢𞤲𞤭𞤨𞤵𞥅𞤪𞤫", + "moh": "𞤃𞤮𞥅𞤸𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "mos": "𞤃𞤮𞥅𞤧𞤭𞥅𞤪𞤫", + "ms": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫", + "mt": "𞤃𞤢𞤤𞤼𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "mua": "𞤃𞤵𞤲𞤣𞤢𞤲𞤪𞤫", + "mul": "𞤍𞤫𞤲𞤯𞤫 𞤅𞤫𞤪𞤼𞤵𞤯𞤫", + "mus": "𞤃𞤵𞤧𞤳𞤮𞤳𞤭𞥅𞤪𞤫", + "mwl": "𞤃𞤭𞤪𞤢𞤲𞤣𞤫𞥅𞤪𞤫", + "my": "𞤄𞤵𞤪𞤥𞤢𞥄𞤪𞤫", + "na": "𞤐𞤢𞤱𞤵𞤪𞤵𞤲𞤳𞤮𞥅𞤪𞤫", + "nap": "𞤐𞤢𞥄𞤨𞤮𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "naq": "𞤐𞤢𞤥𞤢𞥄𞤪𞤫", + "ne": "𞤐𞤫𞤨𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "new": "𞤐𞤫𞤱𞤢𞤪𞤭𞥅𞤪𞤫", + "ng": "𞤐𞤣𞤮𞤲𞤺𞤢𞥄𞤪𞤫", + "nia": "𞤙𞤢𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "nl": "𞤁𞤮𞥅𞤷𞤪𞤫", + "nl_BE": "𞤊𞤭𞤤𞤢𞤥𞤢𞤲𞤪𞤫", + "nnh": "𞤐𞤶𞤢𞤥𞤦𞤵𞥅𞤪𞤫", + "nqo": "𞤐𞤳𞤮𞥅𞤪𞤫", + "nv": "𞤐𞤢𞤬𞤱𞤢𞤸𞤮𞥅𞤪𞤫", + "pl": "𞤆𞤮𞤤𞤢𞤲𞤣𞤭𞥅𞤪𞤫", + "pt": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫", + "pt_BR": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤄𞤪𞤫𞥁𞤭𞤤", + "pt_PT": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤆𞤮𞤪𞤼𞤭𞤺𞤢𞥄𞤤", + "ru": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "rup": "𞤀𞤪𞤮𞤥𞤢𞤲𞤭𞥅𞤪𞤫", + "smn": "𞤋𞤲𞤢𞤪𞤭𞤧𞤳𞤢𞤤𞤭𞥅𞤪𞤫", + "sq": "𞤀𞤤𞤦𞤢𞤲𞤭𞥅𞤪𞤫", + "swb": "𞤑𞤮𞤥𞤮𞤪𞤭𞥅𞤪𞤫", + "th": "𞤚𞤢𞤴𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫", + "tr": "𞤚𞤵𞥅𞤪𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "ug": "𞤓𞥅𞤴𞤺𞤵𞥅𞤪𞤫", + "und": "𞤍𞤫𞤲𞤺𞤢𞤤 𞤢𞤧-𞤢𞤲𞤣𞤢𞥄𞤲𞤺𞤢𞤤", + "ur": "𞤓𞤪𞤣𞤵𞥅𞤪𞤫", + "uz": "𞤓𞥅𞤧𞤦𞤫𞤳𞤪𞤫", + "vai": "𞤾𞤢𞥄𞤴𞤪𞤫", + "ve": "𞤏𞤫𞤲𞤣𞤢𞥄𞤪𞤫", + "vi": "𞤏𞤭𞤴𞤫𞤼𞤲𞤢𞤥𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "vo": "𞤏𞤮𞤤𞤢𞤨𞤵𞤳𞤪𞤫", + "vun": "𞤏𞤵𞤲𞤶𞤮𞥅𞤪𞤫", + "wa": "𞤏𞤢𞥄𞤤𞤮𞤲𞤳𞤮𞥅𞤪𞤫", + "wae": "𞤏𞤢𞤤𞤧𞤫𞥅𞤪𞤫", + "wal": "𞤏𞤮𞥅𞤤𞤢𞤴𞤼𞤢𞥄𞤪𞤫", + "war": "𞤏𞤢𞤪𞤢𞤴𞤫𞥅𞤪𞤫", + "wo": "𞤏𞤮𞤤𞤮𞤬𞤪𞤫", + "xh": "𞤑𞤮𞥅𞤧𞤢𞥄𞤪𞤫", + "yav": "𞤒𞤢𞤲𞤺𞤦𞤫𞥅𞤪𞤫", + "ybb": "𞤒𞤫𞤥𞤦𞤢𞥄𞤪𞤫", + "yi": "𞤒𞤭𞤣𞤭𞤧𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "yo": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫", + "yue": "𞤑𞤢𞤲𞤼𞤮𞤲𞤫𞥅𞤪𞤫", + "zh": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "zh_Hans": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤫𞤱𞤭𞥅𞤲𞥋𞤣𞤫", + "zh_Hant": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤢𞤱𞤢𞥄𞤲𞥋𞤣𞤫", + "zu": "𞥁𞤵𞤤𞤵𞥅𞤪𞤫" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fi.json b/src/Symfony/Component/Intl/Resources/data/languages/fi.json index c6baea59bd..99de06898b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abhaasi", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "extremadura", "fa": "persia", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fo.json b/src/Symfony/Component/Intl/Resources/data/languages/fo.json index 4f9327c1d6..7b08583cd5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhasiskt", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 9ee8ffd76c..4e4c7a2f6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhaze", @@ -151,6 +150,7 @@ "ewo": "éwondo", "ext": "estrémègne", "fa": "persan", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "peul", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json index 7559132b9b..d341bb6783 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "frp": "franco-provençal", "goh": "ancien haut-allemand", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json index 46b3530fe8..4bb987020b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ady": "adygué", "ang": "vieil anglais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json index cb73af7c94..303eb0ad7e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "gu": "goudjrati", "pdc": "allemand de Pennsylvanie", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fy.json b/src/Symfony/Component/Intl/Resources/data/languages/fy.json index 626aff3231..03d2e6ca04 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abchazysk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ga.json b/src/Symfony/Component/Intl/Resources/data/languages/ga.json index 9ad0406f14..f80b3ed783 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ga.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afáiris", "ab": "Abcáisis", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index fc8509d841..c2886f3b19 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abchasais", @@ -148,6 +147,7 @@ "ewo": "Ewondo", "ext": "Cànan na h-Extremadura", "fa": "Peirsis", + "fa_AF": "Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gl.json b/src/Symfony/Component/Intl/Resources/data/languages/gl.json index 6a803a7571..4b56dfdeae 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhazo", @@ -48,6 +47,7 @@ "bug": "buginés", "byn": "blin", "ca": "catalán", + "ccp": "chakma", "ce": "checheno", "ceb": "cebuano", "cgg": "kiga", @@ -90,6 +90,7 @@ "eu": "éuscaro", "ewo": "ewondo", "fa": "persa", + "fa_AF": "dari", "ff": "fula", "fi": "finés", "fil": "filipino", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index eae6bdf77b..549b0c3b64 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "અફાર", "ab": "અબખાજિયન", @@ -126,6 +125,7 @@ "eu": "બાસ્ક", "ewo": "ઇવોન્ડો", "fa": "ફારસી", + "fa_AF": "ડારી", "fan": "ફેંગ", "fat": "ફન્ટી", "ff": "ફુલાહ", @@ -169,7 +169,6 @@ "gwi": "ગ્વિચ’ઇન", "ha": "હૌસા", "hai": "હૈડા", - "hak": "hak", "haw": "હવાઇયન", "he": "હીબ્રુ", "hi": "હિન્દી", @@ -180,7 +179,6 @@ "ho": "હિરી મોટૂ", "hr": "ક્રોએશિયન", "hsb": "અપર સોર્બિયન", - "hsn": "hsn", "ht": "હૈતિઅન ક્રેઓલે", "hu": "હંગેરિયન", "hup": "હૂપા", @@ -315,7 +313,6 @@ "myv": "એર્ઝયા", "mzn": "મઝાન્દેરાની", "na": "નાઉરૂ", - "nan": "nan", "nap": "નેપોલિટાન", "naq": "નમા", "nb": "નોર્વેજિયન બોકમાલ", @@ -488,7 +485,6 @@ "was": "વાશો", "wbp": "વાર્લ્પીરી", "wo": "વોલોફ", - "wuu": "wuu", "xal": "કાલ્મિક", "xh": "ખોસા", "xog": "સોગા", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gv.json b/src/Symfony/Component/Intl/Resources/data/languages/gv.json index 4684ba267f..9e859a9f15 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "gv": "Gaelg" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ha.json b/src/Symfony/Component/Intl/Resources/data/languages/ha.json index 979bdb4537..b1e72560a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Afirkanci", "agq": "Aghem", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json b/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json index 2e05ee5de2..44239f583b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "eo": "Dʼan\/Ƴar Kabilar Andalus", "te": "Dʼan\/Ƴar Kabilar Telug" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 639d2598f5..612dcead54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/he.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/he.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -130,6 +129,7 @@ "eu": "בסקית", "ewo": "אוונדו", "fa": "פרסית", + "fa_AF": "דארי", "fan": "פנג", "fat": "פאנטי", "ff": "פולה", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 70e9a9379b..69d4e7ba35 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", @@ -121,6 +120,7 @@ "eu": "बास्क", "ewo": "इवोन्डो", "fa": "फ़ारसी", + "fa_AF": "दारी", "fan": "फैन्ग", "fat": "फन्टी", "ff": "फुलाह", @@ -302,7 +302,7 @@ "myv": "एर्ज़या", "mzn": "माज़न्देरानी", "na": "नाउरू", - "nan": "nan", + "nan": "मिन नान", "nap": "नीपोलिटन", "naq": "नामा", "nb": "नॉर्वेजियाई बोकमाल", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index d9e6873e63..8052a21afd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarski", "ab": "abhaski", @@ -129,6 +128,7 @@ "eu": "baskijski", "ewo": "ewondo", "fa": "perzijski", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index a3c2ae2405..fa8cc0c901 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abház", @@ -129,6 +128,7 @@ "eu": "baszk", "ewo": "evondo", "fa": "perzsa", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index 4616a1573c..990105dc9a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "աֆարերեն", "ab": "աբխազերեն", @@ -55,6 +54,7 @@ "bug": "բուգիերեն", "byn": "բիլին", "ca": "կատալաներեն", + "ccp": "չակմա", "ce": "չեչեներեն", "ceb": "սեբուերեն", "cgg": "չիգա", @@ -99,6 +99,7 @@ "eu": "բասկերեն", "ewo": "էվոնդո", "fa": "պարսկերեն", + "fa_AF": "դարի", "ff": "ֆուլահ", "fi": "ֆիններեն", "fil": "ֆիլիպիներեն", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ia.json b/src/Symfony/Component/Intl/Resources/data/languages/ia.json index 8916a23a1b..3f941a141e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ia.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhazo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/id.json b/src/Symfony/Component/Intl/Resources/data/languages/id.json index 4c3949362c..92e60c3e06 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/id.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/id.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkhaz", @@ -139,6 +138,7 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persia", + "fa_AF": "Persia Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ig.json b/src/Symfony/Component/Intl/Resources/data/languages/ig.json index 45bb4282be..ca4d2f26e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ig.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Akan", "am": "Amariikị", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ii.json b/src/Symfony/Component/Intl/Resources/data/languages/ii.json index 42285fbe33..3021358778 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ii.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "de": "ꄓꇩꉙ", "en": "ꑱꇩꉙ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/in.json b/src/Symfony/Component/Intl/Resources/data/languages/in.json index 4c3949362c..92e60c3e06 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/in.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/in.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkhaz", @@ -139,6 +138,7 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persia", + "fa_AF": "Persia Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index b058ee7f4b..d0c71f0293 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/is.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/is.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afár", "ab": "abkasíska", @@ -123,6 +122,7 @@ "eu": "baskneska", "ewo": "evondó", "fa": "persneska", + "fa_AF": "darí", "fan": "fang", "fat": "fantí", "ff": "fúla", @@ -164,7 +164,6 @@ "gwi": "gvísín", "ha": "hása", "hai": "haída", - "hak": "hak", "haw": "havaíska", "he": "hebreska", "hi": "hindí", @@ -174,7 +173,6 @@ "ho": "hírímótú", "hr": "króatíska", "hsb": "hásorbneska", - "hsn": "hsn", "ht": "haítíska", "hu": "ungverska", "hup": "húpa", @@ -307,7 +305,6 @@ "myv": "ersja", "mzn": "masanderaní", "na": "nárúska", - "nan": "nan", "nap": "napólíska", "naq": "nama", "nb": "norskt bókmál", @@ -478,7 +475,6 @@ "was": "vasjó", "wbp": "varlpiri", "wo": "volof", - "wuu": "wuu", "xal": "kalmúkska", "xh": "sósa", "xog": "sóga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index 373f08a5b6..ad4da2e41c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/it.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/it.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abcaso", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "estremegno", "fa": "persiano", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index 639d2598f5..612dcead54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/iw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -130,6 +129,7 @@ "eu": "בסקית", "ewo": "אוונדו", "fa": "פרסית", + "fa_AF": "דארי", "fan": "פנג", "fat": "פאנטי", "ff": "פולה", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index 47ac41c38c..30d9776d09 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ja.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "アファル語", "ab": "アブハズ語", @@ -151,6 +150,7 @@ "ewo": "エウォンド語", "ext": "エストレマドゥーラ語", "fa": "ペルシア語", + "fa_AF": "ダリー語", "fan": "ファング語", "fat": "ファンティー語", "ff": "フラ語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/jv.json b/src/Symfony/Component/Intl/Resources/data/languages/jv.json index 4a5c7b72a3..91e2400692 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/jv.json @@ -1,7 +1,6 @@ { - "Version": "36.1", "Names": { - "af": "af", + "af": "Afrika", "agq": "Aghem", "ak": "Akan", "am": "Amharik", @@ -10,9 +9,8 @@ "asa": "Asu", "ast": "Asturia", "az": "Azerbaijan", - "ban": "ban", "bas": "Basaa", - "be": "be", + "be": "Belarus", "bem": "Bemba", "bez": "Bena", "bg": "Bulgaria", @@ -21,7 +19,7 @@ "bo": "Tibet", "br": "Breton", "brx": "Bodo", - "bs": "bs", + "bs": "Bosnia lan Hercegovina", "ca": "Katala", "ccp": "Chakma", "ce": "Chechen", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 8d6d505a7e..6c773a96b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ka.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "აფარი", "ab": "აფხაზური", @@ -115,6 +114,7 @@ "eu": "ბასკური", "ewo": "ევონდო", "fa": "სპარსული", + "fa_AF": "დარი", "ff": "ფულა", "fi": "ფინური", "fil": "ფილიპინური", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ki.json b/src/Symfony/Component/Intl/Resources/data/languages/ki.json index 110cdc8511..45b61ea037 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ki.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Kiakan", "am": "Kiamhari", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kk.json b/src/Symfony/Component/Intl/Resources/data/languages/kk.json index 85a6abac2b..12645438a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афар тілі", "ab": "абхаз тілі", @@ -88,6 +87,7 @@ "eu": "баск тілі", "ewo": "эвондо тілі", "fa": "парсы тілі", + "fa_AF": "дари тілі", "ff": "фула тілі", "fi": "фин тілі", "fil": "филиппин тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kl.json b/src/Symfony/Component/Intl/Resources/data/languages/kl.json index b7ca6525e0..33d69f2cb5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "kl": "kalaallisut" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/km.json b/src/Symfony/Component/Intl/Resources/data/languages/km.json index d980a25faf..c0c870802e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/km.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/km.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "អាហ្វារ", "ab": "អាប់ខាហ៊្សាន", @@ -89,6 +88,7 @@ "eu": "បាសខ៍", "ewo": "អ៊ីវ៉ុនដូ", "fa": "ភឺសៀន", + "fa_AF": "ដារី", "ff": "ហ្វ៊ូឡា", "fi": "ហ្វាំងឡង់", "fil": "ហ្វីលីពីន", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kn.json b/src/Symfony/Component/Intl/Resources/data/languages/kn.json index e12dcb5727..820b65caac 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ಅಫಾರ್", "ab": "ಅಬ್ಖಾಜಿಯನ್", @@ -120,6 +119,7 @@ "eu": "ಬಾಸ್ಕ್", "ewo": "ಇವಾಂಡೋ", "fa": "ಪರ್ಶಿಯನ್", + "fa_AF": "ದರಿ", "fan": "ಫಾಂಗ್", "fat": "ಫಾಂಟಿ", "ff": "ಫುಲಾ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ko.json b/src/Symfony/Component/Intl/Resources/data/languages/ko.json index 04b3cb222c..56b38931d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ko.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "아파르어", "ab": "압카즈어", @@ -134,6 +133,7 @@ "eu": "바스크어", "ewo": "이원도어", "fa": "페르시아어", + "fa_AF": "다리어", "fan": "팡그어", "fat": "판티어", "ff": "풀라어", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ks.json b/src/Symfony/Component/Intl/Resources/data/languages/ks.json index 7a3ad4b390..bfe4233481 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ks.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "اَفار", "ab": "اَبخازِیان", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ku.json b/src/Symfony/Component/Intl/Resources/data/languages/ku.json index a4eba1c98e..24fab42c99 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ku.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarî", "ab": "abxazî", @@ -30,7 +29,6 @@ "br": "bretonî", "bs": "bosnî", "bug": "bugî", - "byn": "byn", "ca": "katalanî", "ce": "çeçenî", "ceb": "sebwanoyî", @@ -68,7 +66,6 @@ "fy": "frîsî", "ga": "îrî", "gd": "gaelîka skotî", - "gez": "gez", "gil": "kîrîbatî", "gl": "galîsî", "gn": "guwaranî", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kw.json b/src/Symfony/Component/Intl/Resources/data/languages/kw.json index b3ce103fed..d434956cbe 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "kw": "kernewek" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ky.json b/src/Symfony/Component/Intl/Resources/data/languages/ky.json index 2c075d0798..4e85fecacf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ky.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарча", "ab": "абхазча", @@ -88,6 +87,7 @@ "eu": "баскча", "ewo": "эвондочо", "fa": "фарсча", + "fa_AF": "дари", "ff": "фулача", "fi": "финче", "fil": "филипинче", @@ -234,7 +234,6 @@ "myv": "эрзянча", "mzn": "мазандераниче", "na": "науруча", - "nan": "nan", "nap": "неополитанча", "naq": "намача", "nb": "норвежче (букмал)", @@ -368,7 +367,6 @@ "war": "варайча", "wbp": "ворлпириче", "wo": "уолофчо", - "wuu": "wuu", "xal": "калмыкча", "xh": "косача", "xog": "согача", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index 094ad22c5d..02a75aef44 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abchasesch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lg.json b/src/Symfony/Component/Intl/Resources/data/languages/lg.json index 1f13934d3b..9de85d6946 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Lu-akaani", "am": "Lu-amhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ln.json b/src/Symfony/Component/Intl/Resources/data/languages/ln.json index 23034c99fa..ab0ef352b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ln.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "akan", "am": "liamariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lo.json b/src/Symfony/Component/Intl/Resources/data/languages/lo.json index 982a585f6e..2d2899f592 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ອະຟາ", "ab": "ແອບຄາຊຽນ", @@ -69,6 +68,7 @@ "car": "ຄາຣິບ", "cay": "ຄາຢູກາ", "cch": "ອາດແຊມ", + "ccp": "Chakma", "ce": "ຊີເຄນ", "ceb": "ຊີບູໂນ", "cgg": "ຊີກາ", @@ -127,6 +127,7 @@ "eu": "ບັສກີ", "ewo": "ອີວອນດູ", "fa": "ເປີຊຽນ", + "fa_AF": "ດາຣີ", "fan": "ແຟງ", "fat": "ແຟນຕີ", "ff": "ຟູລາ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lt.json b/src/Symfony/Component/Intl/Resources/data/languages/lt.json index 266e5b8bf4..4c5451430f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarų", "ab": "abchazų", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lu.json b/src/Symfony/Component/Intl/Resources/data/languages/lu.json index 3e38cf8e5b..6a6f3b723c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Liakan", "am": "Liamhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lv.json b/src/Symfony/Component/Intl/Resources/data/languages/lv.json index 305d7003df..2724fdb6d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afāru", "ab": "abhāzu", @@ -128,6 +127,7 @@ "eu": "basku", "ewo": "evondu", "fa": "persiešu", + "fa_AF": "darī", "fan": "fangu", "fat": "fantu", "ff": "fulu", @@ -198,7 +198,7 @@ "iu": "inuītu", "ja": "japāņu", "jbo": "ložbans", - "jgo": "jgo", + "jgo": "ngomba", "jmc": "mačamu", "jpr": "jūdpersiešu", "jrb": "jūdarābu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/meta.json b/src/Symfony/Component/Intl/Resources/data/languages/meta.json index 55165e8aea..d4e2e5a389 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/meta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Languages": [ "aa", "ab", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mg.json b/src/Symfony/Component/Intl/Resources/data/languages/mg.json index 81edfe1c6c..fd227e990a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Akan", "am": "Amharika", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mi.json b/src/Symfony/Component/Intl/Resources/data/languages/mi.json index 64495859ce..9de9d7ed8f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "de": "Tiamana", "en": "Ingarihi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index c571489512..653706430a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарски", "ab": "апхаски", @@ -150,6 +149,7 @@ "ewo": "евондо", "ext": "екстремадурски", "fa": "персиски", + "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фула", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ml.json b/src/Symfony/Component/Intl/Resources/data/languages/ml.json index 036b56e9e7..adcb231f40 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ml.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "അഫാർ", "ab": "അബ്‌ഖാസിയൻ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mn.json b/src/Symfony/Component/Intl/Resources/data/languages/mn.json index f579398f3f..dc0b09f7ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афар", "ab": "абхаз", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index df66972186..cb3ea535c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abhază", @@ -129,6 +128,7 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index dd0a19d504..50faf1e2fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "अफार", "ab": "अबखेजियन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ms.json b/src/Symfony/Component/Intl/Resources/data/languages/ms.json index a413776bcf..9bfb8ac79a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ms.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkhazia", @@ -111,6 +110,7 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Parsi", + "fa_AF": "Dari", "ff": "Fulah", "fi": "Finland", "fil": "Filipina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mt.json b/src/Symfony/Component/Intl/Resources/data/languages/mt.json index e6690bd1c4..64a171e4b0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkażjan", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/my.json b/src/Symfony/Component/Intl/Resources/data/languages/my.json index ff4f5de738..cd144bfa35 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/my.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/my.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "အာဖာ", "ab": "အဘ်ခါဇီရာ", @@ -94,6 +93,7 @@ "eu": "ဘာစ်ခ်", "ewo": "အီဝန်ဒို", "fa": "ပါရှန်", + "fa_AF": "ဒါရီ", "ff": "ဖူလာ", "fi": "ဖင်လန်", "fil": "ဖိလစ်ပိုင်", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index 6d242afa03..c9712981ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "ekstremaduransk", "fa": "persisk", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulfulde", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nd.json b/src/Symfony/Component/Intl/Resources/data/languages/nd.json index eea3f588a0..69877375ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "isi-Akhani", "am": "isi-Amaharikhi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ne.json b/src/Symfony/Component/Intl/Resources/data/languages/ne.json index 2e784cc8e5..eef5aeb7f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ne.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "अफार", "ab": "अब्खाजियाली", @@ -148,6 +147,7 @@ "ewo": "इवोन्डो", "ext": "एक्सट्रेमादुराली", "fa": "फारसी", + "fa_AF": "दारी", "fan": "फाङ", "fat": "फान्टी", "ff": "फुलाह", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 547a0f78ec..51190c7416 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abchazisch", @@ -151,6 +150,7 @@ "ewo": "Ewondo", "ext": "Extremeens", "fa": "Perzisch", + "fa_AF": "Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nn.json b/src/Symfony/Component/Intl/Resources/data/languages/nn.json index 4bbe83f4a2..e969086054 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/no.json b/src/Symfony/Component/Intl/Resources/data/languages/no.json index 6d242afa03..c9712981ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/no.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/no.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "ekstremaduransk", "fa": "persisk", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulfulde", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index 1e150eab11..f32af2b01e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/om.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/om.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Afrikoota", "am": "Afaan Sidaamaa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/or.json b/src/Symfony/Component/Intl/Resources/data/languages/or.json index 089f7ac464..d5571a2912 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/or.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/or.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ଅଫାର୍", "ab": "ଆବ୍ଖାଜିଆନ୍", @@ -119,6 +118,7 @@ "eu": "ବାସ୍କ୍ୱି", "ewo": "ଇୱୋଣ୍ଡୋ", "fa": "ପର୍ସିଆନ୍", + "fa_AF": "ଦାରି", "fan": "ଫାଙ୍ଗ", "fat": "ଫାଣ୍ଟି", "ff": "ଫୁଲାହ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/os.json b/src/Symfony/Component/Intl/Resources/data/languages/os.json index 8de3b9411f..115ba6cce3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/os.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/os.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ab": "абхазаг", "ady": "адыгейаг", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pa.json b/src/Symfony/Component/Intl/Resources/data/languages/pa.json index 74d6df08c0..287f4f01cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ਅਫ਼ਾਰ", "ab": "ਅਬਖਾਜ਼ੀਅਨ", @@ -91,6 +90,7 @@ "eu": "ਬਾਸਕ", "ewo": "ਇਵੋਂਡੋ", "fa": "ਫ਼ਾਰਸੀ", + "fa_AF": "ਦਾਰੀ", "ff": "ਫੁਲਾਹ", "fi": "ਫਿਨਿਸ਼", "fil": "ਫਿਲੀਪਿਨੋ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json index 98a8c8857f..065e44c82e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "pa": "پنجابی" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pl.json b/src/Symfony/Component/Intl/Resources/data/languages/pl.json index 393aa3d87e..85f06e197c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abchaski", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "estremadurski", "fa": "perski", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps.json b/src/Symfony/Component/Intl/Resources/data/languages/ps.json index d1a1fea430..d950b776af 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ps.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "افري", "ab": "ابخازي", @@ -88,6 +87,7 @@ "eu": "باسکي", "ewo": "اوونڊو", "fa": "فارسي", + "fa_AF": "دری (افغانستان)", "ff": "فولاح", "fi": "فینلنډي", "fil": "فلیپیني", @@ -98,7 +98,6 @@ "fur": "فرائیلیین", "fy": "لوېديځ فريشي", "ga": "ائيرلېنډي", - "gaa": "gaa", "gd": "سکاټلېنډي ګېلک", "gez": "ګیز", "gil": "گلبرتي", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps_PK.json b/src/Symfony/Component/Intl/Resources/data/languages/ps_PK.json index 60034ee3e9..4b4460a454 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ps_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ps_PK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "dsb": "لوړے سربي", "fo": "فاروئے", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index e46c3405a6..36c07bda97 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abcázio", @@ -129,6 +128,7 @@ "eu": "basco", "ewo": "ewondo", "fa": "persa", + "fa_AF": "dari", "fan": "fangue", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json index dccd821a8e..dec51bc403 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "africanês", "alt": "altai do sul", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index d51885d760..e8578f1f79 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/qu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Afrikaans Simi", "agq": "Aghem Simi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rm.json b/src/Symfony/Component/Intl/Resources/data/languages/rm.json index d6bacf9a0b..ec2acbd143 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abchasian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rn.json b/src/Symfony/Component/Intl/Resources/data/languages/rn.json index 6c36ea1e61..e95c0ac6c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Igikani", "am": "Ikimuhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro.json b/src/Symfony/Component/Intl/Resources/data/languages/ro.json index df66972186..cb3ea535c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abhază", @@ -129,6 +128,7 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json index 27b5d8285a..04558fcd40 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "wal": "wolaytta" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ru.json b/src/Symfony/Component/Intl/Resources/data/languages/ru.json index 2efd137e0c..9220640ce2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ru.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарский", "ab": "абхазский", @@ -129,6 +128,7 @@ "eu": "баскский", "ewo": "эвондо", "fa": "персидский", + "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фулах", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rw.json b/src/Symfony/Component/Intl/Resources/data/languages/rw.json index bbdd4f29fd..3797cee28b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Ikinyafurikaneri", "am": "Inyamuhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sd.json b/src/Symfony/Component/Intl/Resources/data/languages/sd.json index b3b4434982..20c3431ae4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "افار", "ab": "ابقازیان", @@ -87,6 +86,7 @@ "eu": "باسڪي", "ewo": "اوانڊو", "fa": "فارسي", + "fa_AF": "دري", "ff": "فلاهه", "fi": "فنش", "fil": "فلپائني", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json new file mode 100644 index 0000000000..29eb71c2bd --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json @@ -0,0 +1,24 @@ +{ + "Names": { + "de": "जर्मन", + "de_AT": "आसट्रियन जो जर्मन", + "de_CH": "स्विसु हाई जर्मनु", + "en": "अंगरेज़ी", + "en_AU": "ऑसटेलियन अंगरेज़ी", + "en_CA": "केनेडियन अंगरेज़ी", + "es": "स्पेनिश", + "es_419": "लैटिणु अमिरिकी स्पेन वारो", + "es_ES": "यूरोपियन स्पेनी", + "es_MX": "मैक्सिकन स्पेनिश", + "fr": "फ़्रांस जी ॿोली", + "it": "इटालियनु", + "ja": "जापानीज़", + "pt": "पुर्तगीज़", + "pt_PT": ".यूरोपी पुर्तगीज़", + "ru": "रशियनु", + "sd": "सिन्धी", + "und": "अणवाकुफु भाषा", + "zh": "चीनी(लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ", + "zh_Hant": "रवायती चीनी" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se.json b/src/Symfony/Component/Intl/Resources/data/languages/se.json index 015168f187..daf143ca86 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/se.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/se.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "acehgiella", "af": "afrikánsagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json b/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json index e06211d3ee..112800b987 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ace": "ačehgiella", "be": "vilgesruoššagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sg.json b/src/Symfony/Component/Intl/Resources/data/languages/sg.json index d92d547479..40f0a9188c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Akâan", "am": "Amarîki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh.json b/src/Symfony/Component/Intl/Resources/data/languages/sh.json index ff0d8e7328..c7b327a942 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarski", "ab": "abhaski", @@ -61,6 +60,7 @@ "cad": "kado", "car": "karipski", "cch": "atsam", + "ccp": "čakma", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -119,6 +119,7 @@ "eu": "baskijski", "ewo": "evondo", "fa": "persijski", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json index f8f7ff78df..3b2c7c7c4e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index d29401ed17..5861284613 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/si.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/si.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "අෆාර්", "ab": "ඇබ්කාසියානු", @@ -89,6 +88,7 @@ "eu": "බාස්ක්", "ewo": "එවොන්ඩො", "fa": "පර්සියානු", + "fa_AF": "ඩාරි", "ff": "ෆුලාහ්", "fi": "ෆින්ලන්ත", "fil": "පිලිපීන", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index c98bb9e195..9a4d63baee 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarčina", "ab": "abcházčina", @@ -129,6 +128,7 @@ "eu": "baskičtina", "ewo": "ewondo", "fa": "perzština", + "fa_AF": "daríjčina", "fan": "fangčina", "fat": "fanti", "ff": "fulbčina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index deb80a55a0..15ec8c62eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarščina", "ab": "abhaščina", @@ -119,6 +118,7 @@ "eu": "baskovščina", "ewo": "evondovščina", "fa": "perzijščina", + "fa_AF": "darijščina", "fan": "fangijščina", "fat": "fantijščina", "ff": "fulščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sn.json b/src/Symfony/Component/Intl/Resources/data/languages/sn.json index ec18aebe73..52600e1d7d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "chiAkani", "am": "chiAmaric", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/so.json b/src/Symfony/Component/Intl/Resources/data/languages/so.json index d0c112f2f7..de5e1ea753 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/so.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/so.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Afrikaanka", "agq": "Ageem", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index ba05547bc6..210b262add 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sq.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarisht", "ab": "abkazisht", @@ -88,6 +87,7 @@ "eu": "baskisht", "ewo": "euondoisht", "fa": "persisht", + "fa_AF": "darisht", "ff": "fulaisht", "fi": "finlandisht", "fil": "filipinisht", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr.json b/src/Symfony/Component/Intl/Resources/data/languages/sr.json index 9a6e9fa6b4..deeae79946 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарски", "ab": "абхаски", @@ -61,6 +60,7 @@ "cad": "кадо", "car": "карипски", "cch": "атсам", + "ccp": "чакма", "ce": "чеченски", "ceb": "себуански", "cgg": "чига", @@ -119,6 +119,7 @@ "eu": "баскијски", "ewo": "евондо", "fa": "персијски", + "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фула", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json index 25b713aebb..cd29309c63 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json index 25b713aebb..cd29309c63 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json index 4d0dc08d2f..87cec60327 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json index 57c53a88b5..01d0bf0806 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bm": "бамананкан", "bn": "бангла", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json index ff0d8e7328..c7b327a942 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afarski", "ab": "abhaski", @@ -61,6 +60,7 @@ "cad": "kado", "car": "karipski", "cch": "atsam", + "ccp": "čakma", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -119,6 +119,7 @@ "eu": "baskijski", "ewo": "evondo", "fa": "persijski", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json index f8f7ff78df..3b2c7c7c4e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json index 8a09947045..6db9afa2a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json index 6c2b84b31a..9eb849a843 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bm": "bamanankan", "bn": "bangla", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json index 8a09947045..6db9afa2a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json index 57c53a88b5..01d0bf0806 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "bm": "бамананкан", "bn": "бангла", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/su.json b/src/Symfony/Component/Intl/Resources/data/languages/su.json new file mode 100644 index 0000000000..18d2fdd06c --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/languages/su.json @@ -0,0 +1,30 @@ +{ + "Names": { + "de": "Jérman", + "de_AT": "Jérman Austria", + "de_CH": "Jérman Swiss Luhur", + "en": "Inggris", + "en_AU": "Inggris Australia", + "en_CA": "Inggris Kanada", + "en_GB": "Inggris Inggris", + "en_US": "Inggris Amerika", + "es": "Spanyol", + "es_419": "Spanyol Amérika Latin", + "es_ES": "Spanyol Éropa", + "es_MX": "Spanyol Méksiko", + "fr": "Prancis", + "fr_CA": "Prancis Kanada", + "fr_CH": "Prancis Swiss", + "it": "Italia", + "ja": "Jepang", + "pt": "Portugis", + "pt_BR": "Portugis Brasil", + "pt_PT": "Portugis Éropa", + "ru": "Rusia", + "su": "Basa Sunda", + "und": "Teu Dipikaterang", + "zh": "Tiongkok", + "zh_Hans": "Tiongkok Sederhana", + "zh_Hant": "Tiongkok Tradisional" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv.json b/src/Symfony/Component/Intl/Resources/data/languages/sv.json index 287ee377be..8482a1af4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abchaziska", @@ -151,6 +150,7 @@ "ewo": "ewondo", "ext": "extremaduriska", "fa": "persiska", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw.json b/src/Symfony/Component/Intl/Resources/data/languages/sw.json index e30e7a05c7..eb7b1428c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Kiafar", "ab": "Kiabkhazi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json index 9259346211..87ad6a4b9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "ak": "Kiakan", "arq": "Kiarabu cha Aljeria", @@ -17,7 +16,6 @@ "ky": "Kikirigizi", "lam": "Kilamba", "li": "Kilimburgi", - "mak": "mak", "mdf": "Kimoksha", "mic": "Kimikmaki", "mk": "Kimasedonia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json index fd6a68e6ea..0ada1fbe0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "arq": "Kiarabu cha Aljeria", "as": "Kiasamisi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index 8bd41ae616..abef9f6f1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "அஃபார்", "ab": "அப்காஜியான்", @@ -123,6 +122,7 @@ "eu": "பாஸ்க்", "ewo": "எவோன்டோ", "fa": "பெர்ஷியன்", + "fa_AF": "தாரி", "fan": "ஃபேங்க்", "fat": "ஃபான்டி", "ff": "ஃபுலா", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/te.json b/src/Symfony/Component/Intl/Resources/data/languages/te.json index 6520ddf746..fa70361a67 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/te.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/te.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", @@ -123,6 +122,7 @@ "eu": "బాస్క్యూ", "ewo": "ఎవోండొ", "fa": "పర్షియన్", + "fa_AF": "డారి", "fan": "ఫాంగ్", "fat": "ఫాంటి", "ff": "ఫ్యుల", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tg.json b/src/Symfony/Component/Intl/Resources/data/languages/tg.json index 1d1040ee78..5acf7848c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "африкаанс", "am": "амҳарӣ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index d5352f7a13..2656ef181a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/th.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/th.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "อะฟาร์", "ab": "อับฮาเซีย", @@ -151,6 +150,7 @@ "ewo": "อีวันโด", "ext": "เอกซ์เตรมาดูรา", "fa": "เปอร์เซีย", + "fa_AF": "ดารี", "fan": "ฟอง", "fat": "ฟันติ", "ff": "ฟูลาห์", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ti.json b/src/Symfony/Component/Intl/Resources/data/languages/ti.json index 200d320af0..57ebe6fe20 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ti.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "አፍሪቃንሰኛ", "am": "አምሐረኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tk.json b/src/Symfony/Component/Intl/Resources/data/languages/tk.json index 04ded2c8bf..95895ab56c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar dili", "ab": "abhaz dili", @@ -87,6 +86,7 @@ "eu": "bask dili", "ewo": "ewondo dili", "fa": "pars dili", + "fa_AF": "dari dili", "ff": "fula dili", "fi": "fin dili", "fil": "filippin dili", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index d489e08ece..4eacac9a68 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abkhazian", @@ -89,6 +88,7 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persian", + "fa_AF": "Dari", "ff": "Fulah", "fi": "Finnish", "fil": "Filipino", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/to.json b/src/Symfony/Component/Intl/Resources/data/languages/to.json index 1c38e65cba..3f37f1e553 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/to.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/to.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "lea fakaʻafāla", "ab": "lea fakaʻapakasia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tr.json b/src/Symfony/Component/Intl/Resources/data/languages/tr.json index 7c91af6232..a6161e5eea 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Afar", "ab": "Abhazca", @@ -151,6 +150,7 @@ "ewo": "Ewondo", "ext": "Ekstremadura Dili", "fa": "Farsça", + "fa_AF": "Darice", "fan": "Fang", "fat": "Fanti", "ff": "Fula dili", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tt.json b/src/Symfony/Component/Intl/Resources/data/languages/tt.json index b68a7b83cc..419aef9e03 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "африкаанс", "am": "амхар", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ug.json b/src/Symfony/Component/Intl/Resources/data/languages/ug.json index 14ec75f3f2..f0cbda008f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ug.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "ئافارچە", "ab": "ئابخازچە", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uk.json b/src/Symfony/Component/Intl/Resources/data/languages/uk.json index 8bdfc660a1..a217d72d71 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарська", "ab": "абхазька", @@ -139,6 +138,7 @@ "eu": "баскська", "ewo": "евондо", "fa": "перська", + "fa_AF": "дарі", "fan": "фанг", "fat": "фанті", "ff": "фула", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index c20a166ba9..bad0c19cfd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "افار", "ab": "ابقازیان", @@ -89,6 +88,7 @@ "eu": "باسکی", "ewo": "ایوانڈو", "fa": "فارسی", + "fa_AF": "دری", "ff": "فولہ", "fi": "فینیش", "fil": "فلیپینو", @@ -115,7 +115,6 @@ "gv": "مینکس", "gwi": "گوئچ ان", "ha": "ہؤسا", - "hak": "hak", "haw": "ہوائی", "he": "عبرانی", "hi": "ہندی", @@ -123,7 +122,6 @@ "hmn": "ہمانگ", "hr": "کراتی", "hsb": "اپر سربیائی", - "hsn": "hsn", "ht": "ہیتی", "hu": "ہنگیرین", "hup": "ہیوپا", @@ -238,7 +236,6 @@ "myv": "ارزیا", "mzn": "مزندرانی", "na": "ناؤرو", - "nan": "nan", "nap": "نیاپولیٹن", "naq": "ناما", "nb": "نارویجین بوکمل", @@ -373,7 +370,6 @@ "war": "وارے", "wbp": "وارلپیری", "wo": "وولوف", - "wuu": "wuu", "xal": "کالمیک", "xh": "ژوسا", "xog": "سوگا", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json index 081f7369aa..0ada72ddc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "awa": "اودھی", "ckb": "سورانی کردی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index fe3fb66bdb..a2bc956cab 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "afar", "ab": "abxaz", @@ -88,6 +87,7 @@ "eu": "bask", "ewo": "evondo", "fa": "fors", + "fa_AF": "dari", "ff": "fula", "fi": "fincha", "fil": "filipincha", @@ -113,7 +113,6 @@ "gv": "men", "gwi": "gvichin", "ha": "xausa", - "hak": "hak", "haw": "gavaycha", "he": "ivrit", "hi": "hind", @@ -121,7 +120,6 @@ "hmn": "xmong", "hr": "xorvat", "hsb": "yuqori sorb", - "hsn": "hsn", "ht": "gaityan", "hu": "venger", "hup": "xupa", @@ -234,7 +232,6 @@ "myv": "erzya", "mzn": "mozandaron", "na": "nauru", - "nan": "nan", "nap": "neapolitan", "naq": "nama", "nb": "norveg-bokmal", @@ -365,7 +362,6 @@ "war": "varay", "wbp": "valbiri", "wo": "volof", - "wuu": "wuu", "xal": "qalmoq", "xh": "kxosa", "xog": "soga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json index 44a1ac8c26..ae69f427d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "fa": "دری", "ps": "پشتو", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json index 36266ea4dd..d7190bc837 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "афарча", "ab": "абхазча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/vi.json b/src/Symfony/Component/Intl/Resources/data/languages/vi.json index 81b2a492bd..a205a34dd7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/vi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", @@ -148,6 +147,7 @@ "ewo": "Tiếng Ewondo", "ext": "Tiếng Extremadura", "fa": "Tiếng Ba Tư", + "fa_AF": "Tiếng Dari", "fan": "Tiếng Fang", "fat": "Tiếng Fanti", "ff": "Tiếng Fulah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/wo.json b/src/Symfony/Component/Intl/Resources/data/languages/wo.json index 8e287c75b0..0e8bb0749e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/wo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Afrikaans", "am": "Amharik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/xh.json b/src/Symfony/Component/Intl/Resources/data/languages/xh.json index 80629d8a2b..150a648679 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/xh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "xh": "isiXhosa" }, diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yi.json b/src/Symfony/Component/Intl/Resources/data/languages/yi.json index 538e5e306c..fed60cc295 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "אַפֿאַר", "af": "אַפֿריקאַנס", @@ -121,7 +120,6 @@ "sk": "סלאוואַקיש", "sl": "סלאוועניש", "sli": "אונטער שלעזיש", - "sly": "sly", "sm": "סאַמאאַניש", "sn": "שאנאַ", "so": "סאמאַליש", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo.json b/src/Symfony/Component/Intl/Resources/data/languages/yo.json index 42d93d4e52..0aeb8bb1d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "af": "Èdè Afrikani", "ak": "Èdè Akani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json index 184dbd1069..5b5ee46168 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "da": "Èdè Ilɛ̀ Denmark", "en": "Èdè Gɛ̀ɛ́sì", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index 0140046aa5..ac2637fcc8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "阿法尔语", "ab": "阿布哈西亚语", @@ -129,6 +128,7 @@ "eu": "巴斯克语", "ewo": "旺杜语", "fa": "波斯语", + "fa_AF": "达里语", "fan": "芳格语", "fat": "芳蒂语", "ff": "富拉语", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json index 93bdbf724d..5351788f54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json index 64ce98772a..08a1eb51ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "阿法文", "ab": "阿布哈茲文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json index 93bdbf724d..5351788f54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 039ef101bd..4144b53107 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "aa": "isi-Afar", "ab": "isi-Abkhazian", @@ -89,6 +88,7 @@ "eu": "isi-Basque", "ewo": "isi-Ewondo", "fa": "isi-Persian", + "fa_AF": "isi-Dari", "ff": "isi-Fulah", "fi": "isi-Finnish", "fil": "isi-Filipino", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ak.json b/src/Symfony/Component/Intl/Resources/data/locales/ak.json index 66da6c265a..33f752307f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ak.json @@ -245,6 +245,7 @@ "ko_KR": "Korea kasa (Anaafo Koria)", "ms": "Malay kasa", "ms_BN": "Malay kasa (Brunae)", + "ms_ID": "Malay kasa (Indɔnehyia)", "ms_MY": "Malay kasa (Malehyia)", "ms_SG": "Malay kasa (Singapɔ)", "my": "Bɛɛmis kasa", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bm.json b/src/Symfony/Component/Intl/Resources/data/locales/bm.json index 95841671d1..f40d96f82d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bm.json @@ -247,6 +247,7 @@ "ko_KR": "korekan (Worodugu Kore)", "ms": "malɛzikan", "ms_BN": "malɛzikan (Burinɛyi)", + "ms_ID": "malɛzikan (Ɛndonezi)", "ms_MY": "malɛzikan (Malɛzi)", "ms_SG": "malɛzikan (Sɛngapuri)", "my": "birimanikan", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index dcbea32b76..d1f4d733ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -327,6 +327,8 @@ "ko_KP": "ཀོ་རི་ཡཱན་ཁ། (བྱང་ ཀོ་རི་ཡ།)", "ko_KR": "ཀོ་རི་ཡཱན་ཁ། (ལྷོ་ ཀོ་རི་ཡ།)", "ks": "ཀཱཤ་མི་རི་ཁ", + "ks_Arab": "ཀཱཤ་མི་རི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ།)", + "ks_Arab_IN": "ཀཱཤ་མི་རི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ་, རྒྱ་གར།)", "ks_IN": "ཀཱཤ་མི་རི་ཁ། (རྒྱ་གར།)", "ku": "ཀར་ཌིཤ་ཁ", "ku_TR": "ཀར་ཌིཤ་ཁ། (ཊཱར་ཀི།)", @@ -351,6 +353,7 @@ "mr_IN": "མ་ར་ཐི་ཁ། (རྒྱ་གར།)", "ms": "མ་ལེ་ཁ", "ms_BN": "མ་ལེ་ཁ། (བྷྲུ་ནའི།)", + "ms_ID": "མ་ལེ་ཁ། (ཨིན་ཌོ་ནེ་ཤི་ཡ།)", "ms_MY": "མ་ལེ་ཁ། (མ་ལེ་ཤི་ཡ།)", "ms_SG": "མ་ལེ་ཁ། (སིང་ག་པོར།)", "mt": "མཱལ་ཊ་ཁ", @@ -419,6 +422,10 @@ "ru_RU": "ཨུ་རུ་སུའི་ཁ། (ཨུ་རུ་སུ།)", "ru_UA": "ཨུ་རུ་སུའི་ཁ། (ཡུ་ཀརེན།)", "sd": "སིན་དཱི་ཁ", + "sd_Arab": "སིན་དཱི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ།)", + "sd_Arab_PK": "སིན་དཱི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ་, པ་ཀི་སཏཱན།)", + "sd_Deva": "སིན་དཱི་ཁ། (དེ་ཝ་ན་ག་རི་ཡིག་གུ།)", + "sd_Deva_IN": "སིན་དཱི་ཁ། (དེ་ཝ་ན་ག་རི་ཡིག་གུ་, རྒྱ་གར།)", "sd_PK": "སིན་དཱི་ཁ། (པ་ཀི་སཏཱན།)", "si": "སིང་ཧ་ལ་ཁ", "si_LK": "སིང་ཧ་ལ་ཁ། (ཤྲཱི་ལང་ཀ།)", @@ -445,6 +452,10 @@ "sr_Latn_RS": "སཱར་བྷི་ཡཱན་ཁ། (ལེ་ཊིན་ཡིག་གུ་, སཱར་བྷི་ཡ།)", "sr_ME": "སཱར་བྷི་ཡཱན་ཁ། (མོན་ཊི་ནེག་རོ།)", "sr_RS": "སཱར་བྷི་ཡཱན་ཁ། (སཱར་བྷི་ཡ།)", + "su": "སཱུན་ད་ནིས་ཁ", + "su_ID": "སཱུན་ད་ནིས་ཁ། (ཨིན་ཌོ་ནེ་ཤི་ཡ།)", + "su_Latn": "སཱུན་ད་ནིས་ཁ། (ལེ་ཊིན་ཡིག་གུ།)", + "su_Latn_ID": "སཱུན་ད་ནིས་ཁ། (ལེ་ཊིན་ཡིག་གུ་, ཨིན་ཌོ་ནེ་ཤི་ཡ།)", "sv": "སུའི་ཌིཤ་ཁ", "sv_AX": "སུའི་ཌིཤ་ཁ། (ཨ་ལནཌ་གླིང་ཚོམ།)", "sv_FI": "སུའི་ཌིཤ་ཁ། (ཕིན་ལེནཌ།)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ee.json b/src/Symfony/Component/Intl/Resources/data/locales/ee.json index 2ea994f90a..8e585ad3e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -328,6 +328,8 @@ "ko_KP": "Koreagbe (Dziehe Korea nutome)", "ko_KR": "Koreagbe (Anyiehe Korea nutome)", "ks": "kashmirgbe", + "ks_Arab": "kashmirgbe (Arabiagbeŋɔŋlɔ)", + "ks_Arab_IN": "kashmirgbe (Arabiagbeŋɔŋlɔ, India nutome)", "ks_IN": "kashmirgbe (India nutome)", "ku": "kurdiagbe", "ku_TR": "kurdiagbe (Tɛki nutome)", @@ -359,6 +361,7 @@ "mr_IN": "marathiagbe (India nutome)", "ms": "malaygbe", "ms_BN": "malaygbe (Brunei nutome)", + "ms_ID": "malaygbe (Indonesia nutome)", "ms_MY": "malaygbe (Malaysia nutome)", "ms_SG": "malaygbe (Singapɔr nutome)", "mt": "maltagbe", @@ -433,6 +436,10 @@ "rw": "ruwandagbe", "rw_RW": "ruwandagbe (Rwanda nutome)", "sd": "sindhgbe", + "sd_Arab": "sindhgbe (Arabiagbeŋɔŋlɔ)", + "sd_Arab_PK": "sindhgbe (Arabiagbeŋɔŋlɔ, Pakistan nutome)", + "sd_Deva": "sindhgbe (devanagarigbeŋɔŋlɔ)", + "sd_Deva_IN": "sindhgbe (devanagarigbeŋɔŋlɔ, India nutome)", "sd_PK": "sindhgbe (Pakistan nutome)", "se": "dziehe samigbe", "se_FI": "dziehe samigbe (Finland nutome)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eo.json b/src/Symfony/Component/Intl/Resources/data/locales/eo.json index d99f8817d4..743df138ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eo.json @@ -334,6 +334,7 @@ "mr_IN": "marata (Hindujo)", "ms": "malaja", "ms_BN": "malaja (Brunejo)", + "ms_ID": "malaja (Indonezio)", "ms_MY": "malaja (Malajzio)", "ms_SG": "malaja (Singapuro)", "mt": "malta", @@ -422,6 +423,8 @@ "sq_AL": "albana (Albanujo)", "sr": "serba", "sr_BA": "serba (Bosnio-Hercegovino)", + "su": "sunda", + "su_ID": "sunda (Indonezio)", "sv": "sveda", "sv_FI": "sveda (Finnlando)", "sv_SE": "sveda (Svedujo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff.json b/src/Symfony/Component/Intl/Resources/data/locales/ff.json index 70a523a070..7604b0e98c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ff.json @@ -250,6 +250,7 @@ "ko_KR": "Koreere (Koree Worgo)", "ms": "Malayeere", "ms_BN": "Malayeere (Burnaay)", + "ms_ID": "Malayeere (Enndonesii)", "ms_MY": "Malayeere (Malesii)", "ms_SG": "Malayeere (Sinngapuur)", "my": "Burmeese", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json new file mode 100644 index 0000000000..ac9ac7bfb6 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json @@ -0,0 +1,382 @@ +{ + "Names": { + "af": "𞤀𞤬𞤪𞤭𞤳𞤢𞤲𞤪𞤫", + "af_NA": "𞤀𞤬𞤪𞤭𞤳𞤢𞤲𞤪𞤫 (𞤐𞤢𞤥𞤭𞥅𞤦𞤭𞤴𞤢𞥄)", + "af_ZA": "𞤀𞤬𞤪𞤭𞤳𞤢𞤲𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", + "ak": "𞤀𞤳𞤢𞤲𞤪𞤫", + "ak_GH": "𞤀𞤳𞤢𞤲𞤪𞤫 (𞤘𞤢𞤲𞤢)", + "am": "𞤀𞤥𞤸𞤢𞤪𞤭𞥅𞤪𞤫", + "am_ET": "𞤀𞤥𞤸𞤢𞤪𞤭𞥅𞤪𞤫 (𞤀𞤦𞤢𞤧𞤭𞤲𞤭𞥅)", + "ar": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫", + "ar_AE": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Emiraat Araab Denntuɗe)", + "ar_BH": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Bahreyn)", + "ar_DJ": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤔𞤭𞤦𞤵𞥅𞤼𞤭)", + "ar_DZ": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤀𞤤𞤶𞤢𞤪𞤭𞥅)", + "ar_EG": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤃𞤭𞤧𞤭𞤪𞤢)", + "ar_EH": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤅𞤢𞥄𞤸𞤢𞤪𞤢 𞤖𞤭𞥅𞤲𞤢𞥄𞤪𞤭)", + "ar_ER": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤉𞤪𞤭𞥅𞤼𞤫𞤪𞤫)", + "ar_IL": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Israa’iila)", + "ar_IQ": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Iraak)", + "ar_JO": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Jordani)", + "ar_KM": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤑𞤮𞤥𞤮𞥅𞤪𞤮)", + "ar_KW": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Kuweyti)", + "ar_LB": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Libaa)", + "ar_LY": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤂𞤭𞤦𞤭𞤴𞤢𞥄)", + "ar_MA": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤃𞤢𞤪𞤮𞥅𞤳)", + "ar_MR": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤃𞤮𞤪𞤼𞤢𞤲𞤭𞥅)", + "ar_OM": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Omaan)", + "ar_PS": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Palestiin Sisjordani e Gaasaa)", + "ar_QA": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Kataar)", + "ar_SA": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Arabii Sawdit)", + "ar_SD": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤅𞤵𞤣𞤢𞥄𞤲)", + "ar_SO": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤅𞤵𞥅𞤥𞤢𞥄𞤤𞤭)", + "ar_SS": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤅𞤵𞤣𞤢𞥄𞤲 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", + "ar_SY": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Sirii)", + "ar_TD": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤕𞤢𞥄𞤣)", + "ar_TN": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤚𞤵𞤲𞤭𞥅𞤧𞤢)", + "ar_YE": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Yemen)", + "as": "𞤀𞤧𞤢𞤥𞤫𞥅𞤪𞤫", + "as_IN": "𞤀𞤧𞤢𞤥𞤫𞥅𞤪𞤫 (Enndo)", + "az": "𞤀𞤶𞤢𞤪𞤦𞤢𞤴𞤭𞤶𞤢𞤲𞤭𞥅𞤪𞤫", + "az_AZ": "𞤀𞤶𞤢𞤪𞤦𞤢𞤴𞤭𞤶𞤢𞤲𞤭𞥅𞤪𞤫 (Ajerbayjaan)", + "be": "𞤄𞤫𞤤𞤢𞤪𞤭𞥅𞤧𞤭𞥅𞤪𞤫", + "be_BY": "𞤄𞤫𞤤𞤢𞤪𞤭𞥅𞤧𞤭𞥅𞤪𞤫 (Belaruus)", + "bg": "𞤄𞤭𞤤𞤺𞤢𞥄𞤪𞤫", + "bg_BG": "𞤄𞤭𞤤𞤺𞤢𞥄𞤪𞤫 (Bulgarii)", + "bm": "𞤄𞤢𞤥𞤦𞤢𞤪𞤢𞥄𞤪𞤫", + "bm_ML": "𞤄𞤢𞤥𞤦𞤢𞤪𞤢𞥄𞤪𞤫 (𞤃𞤢𞥄𞤤𞤭)", + "bn": "𞤄𞤫𞤲𞤺𞤢𞤤𞤭𞥅𞤪𞤫", + "bn_BD": "𞤄𞤫𞤲𞤺𞤢𞤤𞤭𞥅𞤪𞤫 (Banglaadees)", + "bn_IN": "𞤄𞤫𞤲𞤺𞤢𞤤𞤭𞥅𞤪𞤫 (Enndo)", + "br": "𞤄𞤫𞤪𞤫𞤼𞤮𞤲𞤪𞤫", + "br_FR": "𞤄𞤫𞤪𞤫𞤼𞤮𞤲𞤪𞤫 (𞤊𞤢𞤪𞤢𞤲𞤧𞤭)", + "bs": "𞤄𞤮𞤧𞤲𞤭𞤴𞤢𞥄𞤪𞤫", + "bs_BA": "𞤄𞤮𞤧𞤲𞤭𞤴𞤢𞥄𞤪𞤫 (Bosnii Hersegowiin)", + "ca": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫", + "ca_AD": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫 (Anndoora)", + "ca_ES": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫 (𞤋𞤧𞤨𞤢𞤲𞤭𞤴𞤢)", + "ca_FR": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫 (𞤊𞤢𞤪𞤢𞤲𞤧𞤭)", + "ca_IT": "𞤑𞤢𞤼𞤢𞤤𞤢𞤲𞤪𞤫 (Itali)", + "ce": "𞤕𞤫𞤷𞤫𞤲𞤪𞤫", + "ce_RU": "𞤕𞤫𞤷𞤫𞤲𞤪𞤫 (Riisii)", + "cs": "𞤕𞤫𞤳𞤧𞤭𞤲𞤢𞥄𞤪𞤫", + "cs_CZ": "𞤕𞤫𞤳𞤧𞤭𞤲𞤢𞥄𞤪𞤫 (Ndenndaandi Cek)", + "cy": "𞤘𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "cy_GB": "𞤘𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Laamateeri Rentundi)", + "da": "𞤁𞤢𞥄𞤲𞤭𞤧𞤳𞤮𞥅𞤪𞤫", + "da_DK": "𞤁𞤢𞥄𞤲𞤭𞤧𞤳𞤮𞥅𞤪𞤫 (Danmark)", + "da_GL": "𞤁𞤢𞥄𞤲𞤭𞤧𞤳𞤮𞥅𞤪𞤫 (Gorwendland)", + "de": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "de_AT": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Otiriis)", + "de_BE": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Beljik)", + "de_CH": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Suwiis)", + "de_DE": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Almaañ)", + "de_IT": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Itali)", + "de_LI": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Lincenstayn)", + "de_LU": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Liksembuur)", + "dz": "𞤄𞤵𞥅𞤼𞤢𞤲𞤪𞤫", + "dz_BT": "𞤄𞤵𞥅𞤼𞤢𞤲𞤪𞤫 (Butaan)", + "en": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫", + "en_AE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Emiraat Araab Denntuɗe)", + "en_AG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Antiguwaa e Barbudaa)", + "en_AI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Anngiyaa)", + "en_AS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Samowa Amerik)", + "en_AT": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Otiriis)", + "en_AU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Ostaraalii)", + "en_BB": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Barbadoos)", + "en_BE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Beljik)", + "en_BI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤄𞤵𞤪𞤵𞤲𞤣𞤭)", + "en_BM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Bermudaa)", + "en_BS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Bahamaas)", + "en_BW": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (‮𞤄𞤮𞤼𞤧𞤵𞤱𞤢𞥄𞤲𞤢)", + "en_BZ": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Beliise)", + "en_CA": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤑𞤢𞤲𞤢𞤣𞤢𞥄)", + "en_CH": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Suwiis)", + "en_CK": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Kuuk)", + "en_CM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤑𞤢𞤥𞤢𞤪𞤵𞥅𞤲)", + "en_CY": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Siipar)", + "en_DE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Almaañ)", + "en_DK": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Danmark)", + "en_DM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Dominika)", + "en_ER": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤉𞤪𞤭𞥅𞤼𞤫𞤪𞤫)", + "en_FI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Fenland)", + "en_FJ": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Fijji)", + "en_FK": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Falkland)", + "en_FM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Mikoronesii)", + "en_GB": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Laamateeri Rentundi)", + "en_GD": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Garnaad)", + "en_GG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤘𞤢𞤴𞤪𞤢𞤲𞤧𞤭𞥅)", + "en_GH": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤘𞤢𞤲𞤢)", + "en_GI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤔𞤭𞤦𞤪𞤢𞤤𞤼𞤢𞥄)", + "en_GM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤘𞤢𞤥𞤦𞤭𞤴𞤢)", + "en_GU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Guwam)", + "en_GY": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Giyaan)", + "en_IE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Irlannda)", + "en_IL": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Israa’iila)", + "en_IN": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Enndo)", + "en_IO": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤚𞤵𞤥𞤦𞤫𞤪𞤫 𞤄𞤪𞤭𞤼𞤢𞤲𞤭𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭)", + "en_JM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Jamayka)", + "en_KE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤑𞤫𞤲𞤭𞤴𞤢𞥄)", + "en_KI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Kiribari)", + "en_KN": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Sent Kits e Newis)", + "en_KY": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Kaymaa)", + "en_LC": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Sent Lusiyaa)", + "en_LR": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤂𞤢𞤦𞤭𞤪𞤭𞤴𞤢𞥄)", + "en_LS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤂𞤫𞤧𞤮𞤼𞤮𞥅)", + "en_MG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤃𞤢𞤣𞤢𞤺𞤢𞤧𞤳𞤢𞥄𞤪)", + "en_MH": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Marsaal)", + "en_MP": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Mariyaana Rewo)", + "en_MS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Monseraat)", + "en_MT": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Malte)", + "en_MU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤃𞤮𞤪𞤭𞥅𞤧𞤭)", + "en_MW": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤃𞤢𞤤𞤢𞤱𞤭𞥅)", + "en_MY": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Malesii)", + "en_NA": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤐𞤢𞤥𞤭𞥅𞤦𞤭𞤴𞤢𞥄)", + "en_NF": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Norfolk)", + "en_NG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", + "en_NL": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Nederlannda)", + "en_NR": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Nawuru)", + "en_NU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Niuwe)", + "en_NZ": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Nuwel Selannda)", + "en_PG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Papuwaa Nuwel Gine)", + "en_PH": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Filipiin)", + "en_PK": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Pakistaan)", + "en_PN": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Pitkern)", + "en_PR": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Porto Rikoo)", + "en_PW": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Palawu)", + "en_RW": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤈𞤵𞤱𞤢𞤲𞤣𞤢𞥄)", + "en_SB": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Solomon)", + "en_SC": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤅𞤫𞤴𞤭𞤧𞤫𞤤)", + "en_SD": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤅𞤵𞤣𞤢𞥄𞤲)", + "en_SE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Suweed)", + "en_SG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Sinngapuur)", + "en_SH": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤅𞤫𞤲-𞤖𞤫𞤤𞤫𞤲𞤢𞥄)", + "en_SI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Slowenii)", + "en_SL": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤅𞤢𞤪𞤢𞤤𞤮𞤲)", + "en_SS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤅𞤵𞤣𞤢𞥄𞤲 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", + "en_SZ": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤉𞤧𞤱𞤢𞤼𞤭𞤲𞤭)", + "en_TC": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Turke e Keikoos)", + "en_TK": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Tokelaaw)", + "en_TO": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Tonngaa)", + "en_TT": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Tirnidaad e Tobaago)", + "en_TV": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Tuwaluu)", + "en_TZ": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤚𞤢𞤲𞤧𞤢𞤲𞤭𞥅)", + "en_UG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤓𞤺𞤢𞤲𞤣𞤢𞥄)", + "en_US": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Dowlaaji Dentuɗi Amerik)", + "en_VC": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (See Weesaa e Garnadiin)", + "en_VG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (duuɗe kecce britanii)", + "en_VI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Duuɗe Kecce Amerik)", + "en_VU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Wanuwaatuu)", + "en_WS": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Samowaa)", + "en_ZA": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", + "en_ZM": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤟𞤢𞤥𞤦𞤭𞤴𞤢)", + "en_ZW": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤟𞤭𞤥𞤦𞤢𞥄𞤥𞤵𞤴𞤢)", + "es": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "es_AR": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Arjantiin)", + "es_BO": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Boliwii)", + "es_BR": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Beresiil)", + "es_BZ": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Beliise)", + "es_CL": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Cilii)", + "es_CO": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Kolombiya)", + "es_CR": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Kosta Rikaa)", + "es_CU": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Kubaa)", + "es_DO": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Ndenndanndi Dominika)", + "es_EA": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (𞤅𞤭𞤼𞥆𞤢 & 𞤃𞤫𞤤𞤭𞤤𞤢)", + "es_EC": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Ekuwatoor)", + "es_ES": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (𞤋𞤧𞤨𞤢𞤲𞤭𞤴𞤢)", + "es_GQ": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (𞤘𞤭𞤲𞤫 𞤕𞤢𞤳𞤢𞤲𞤼𞤫𞥅𞤪𞤭)", + "es_GT": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Gwaatemalaa)", + "es_HN": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Onnduraas)", + "es_IC": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (𞤅𞤵𞤪𞤭𞥅𞤪𞤫-𞤑𞤢𞤲𞤢𞤪𞤭𞥅)", + "es_MX": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Meksik)", + "es_NI": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Nikaraguwaa)", + "es_PA": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Panamaa)", + "es_PE": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Peru)", + "es_PH": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Filipiin)", + "es_PR": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Porto Rikoo)", + "es_PY": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Paraguwaay)", + "es_SV": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (El Salwador)", + "es_US": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Dowlaaji Dentuɗi Amerik)", + "es_UY": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Uruguwaay)", + "es_VE": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Wenesuwelaa)", + "eu": "𞤄𞤢𞤧𞤳𞤢𞤪𞤢𞥄𞤪𞤫", + "eu_ES": "𞤄𞤢𞤧𞤳𞤢𞤪𞤢𞥄𞤪𞤫 (𞤋𞤧𞤨𞤢𞤲𞤭𞤴𞤢)", + "ff": "𞤆𞤵𞤤𞤢𞤪", + "ff_Adlm": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃)", + "ff_Adlm_BF": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤄𞤵𞤪𞤳𞤭𞤲𞤢 𞤊𞤢𞤧𞤮𞥅)", + "ff_Adlm_CM": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤑𞤢𞤥𞤢𞤪𞤵𞥅𞤲)", + "ff_Adlm_GH": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤘𞤢𞤲𞤢)", + "ff_Adlm_GM": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤘𞤢𞤥𞤦𞤭𞤴𞤢)", + "ff_Adlm_GN": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤘𞤭𞤲𞤫)", + "ff_Adlm_GW": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤘𞤭𞤲𞤫-𞤄𞤭𞤧𞤢𞤱𞤮𞥅)", + "ff_Adlm_LR": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤂𞤢𞤦𞤭𞤪𞤭𞤴𞤢𞥄)", + "ff_Adlm_MR": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤃𞤮𞤪𞤼𞤢𞤲𞤭𞥅)", + "ff_Adlm_NE": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤐𞤭𞥅𞤶𞤫𞤪)", + "ff_Adlm_NG": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", + "ff_Adlm_SL": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤅𞤢𞤪𞤢𞤤𞤮𞤲)", + "ff_Adlm_SN": "𞤆𞤵𞤤𞤢𞤪 (𞤀𞤁𞤂𞤢𞤃⹁ 𞤅𞤫𞤲𞤫𞤺𞤢𞥄𞤤)", + "ff_CM": "𞤆𞤵𞤤𞤢𞤪 (𞤑𞤢𞤥𞤢𞤪𞤵𞥅𞤲)", + "ff_GN": "𞤆𞤵𞤤𞤢𞤪 (𞤘𞤭𞤲𞤫)", + "ff_MR": "𞤆𞤵𞤤𞤢𞤪 (𞤃𞤮𞤪𞤼𞤢𞤲𞤭𞥅)", + "ff_SN": "𞤆𞤵𞤤𞤢𞤪 (𞤅𞤫𞤲𞤫𞤺𞤢𞥄𞤤)", + "fr": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫", + "fr_BE": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Beljik)", + "fr_BF": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤄𞤵𞤪𞤳𞤭𞤲𞤢 𞤊𞤢𞤧𞤮𞥅)", + "fr_BI": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤄𞤵𞤪𞤵𞤲𞤣𞤭)", + "fr_BJ": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤄𞤫𞤲𞤫𞤲)", + "fr_CA": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤢𞤲𞤢𞤣𞤢𞥄)", + "fr_CD": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤮𞤲𞤺𞤮 - 𞤑𞤭𞤲𞤧𞤢𞤧𞤢)", + "fr_CF": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭)", + "fr_CG": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤮𞤲𞤺𞤮 - 𞤄𞤪𞤢𞥁𞤢𞤾𞤭𞤤)", + "fr_CH": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Suwiis)", + "fr_CI": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤮𞤼𞤣𞤭𞤾𞤢𞥄𞤪)", + "fr_CM": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤢𞤥𞤢𞤪𞤵𞥅𞤲)", + "fr_DJ": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤔𞤭𞤦𞤵𞥅𞤼𞤭)", + "fr_DZ": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤀𞤤𞤶𞤢𞤪𞤭𞥅)", + "fr_FR": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤊𞤢𞤪𞤢𞤲𞤧𞤭)", + "fr_GA": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤘𞤢𞤦𞤮𞤲)", + "fr_GF": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Giyaan Farayse)", + "fr_GN": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤘𞤭𞤲𞤫)", + "fr_GP": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Gwaadalup)", + "fr_GQ": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤘𞤭𞤲𞤫 𞤕𞤢𞤳𞤢𞤲𞤼𞤫𞥅𞤪𞤭)", + "fr_HT": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Haytii)", + "fr_KM": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤑𞤮𞤥𞤮𞥅𞤪𞤮)", + "fr_LU": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Liksembuur)", + "fr_MA": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤢𞤪𞤮𞥅𞤳)", + "fr_MC": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤮𞤲𞤢𞤳𞤮𞥅)", + "fr_MG": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤢𞤣𞤢𞤺𞤢𞤧𞤳𞤢𞥄𞤪)", + "fr_ML": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤢𞥄𞤤𞤭)", + "fr_MQ": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Martinik)", + "fr_MR": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤮𞤪𞤼𞤢𞤲𞤭𞥅)", + "fr_MU": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤮𞤪𞤭𞥅𞤧𞤭)", + "fr_NC": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Nuwel Kaledonii)", + "fr_NE": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤐𞤭𞥅𞤶𞤫𞤪)", + "fr_PF": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Polinesii Farayse)", + "fr_PM": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (See Piyeer e Mikeloo)", + "fr_RE": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤈𞤫𞥅𞤲𞤭𞤴𞤮𞤲)", + "fr_RW": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤈𞤵𞤱𞤢𞤲𞤣𞤢𞥄)", + "fr_SC": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤅𞤫𞤴𞤭𞤧𞤫𞤤)", + "fr_SN": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤅𞤫𞤲𞤫𞤺𞤢𞥄𞤤)", + "fr_SY": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Sirii)", + "fr_TD": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤕𞤢𞥄𞤣)", + "fr_TG": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤚𞤮𞤺𞤮)", + "fr_TN": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤚𞤵𞤲𞤭𞥅𞤧𞤢)", + "fr_VU": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Wanuwaatuu)", + "fr_WF": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (Walis e Futuna)", + "fr_YT": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 (𞤃𞤢𞤴𞤮𞥅𞤼𞤵)", + "fy": "𞤊𞤭𞤪𞤭𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢", + "fy_NL": "𞤊𞤭𞤪𞤭𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢 (Nederlannda)", + "ga": "𞤋𞤪𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫", + "ga_GB": "𞤋𞤪𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫 (Laamateeri Rentundi)", + "ga_IE": "𞤋𞤪𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫 (Irlannda)", + "ha_GH": "Hawsaŋkoore (𞤘𞤢𞤲𞤢)", + "ha_NE": "Hawsaŋkoore (𞤐𞤭𞥅𞤶𞤫𞤪)", + "ha_NG": "Hawsaŋkoore (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", + "hi": "𞤖𞤭𞤲𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "hi_IN": "𞤖𞤭𞤲𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Enndo)", + "hr": "𞤑𞤮𞤪𞤮𞤱𞤢𞤧𞤭𞥅𞤪𞤫", + "hr_BA": "𞤑𞤮𞤪𞤮𞤱𞤢𞤧𞤭𞥅𞤪𞤫 (Bosnii Hersegowiin)", + "hr_HR": "𞤑𞤮𞤪𞤮𞤱𞤢𞤧𞤭𞥅𞤪𞤫 (Korwasii)", + "hy": "𞤀𞤪𞤥𞤫𞤲𞤭𞥅𞤪𞤫", + "hy_AM": "𞤀𞤪𞤥𞤫𞤲𞤭𞥅𞤪𞤫 (Armenii)", + "ia": "𞤉𞤲𞤼𞤫𞤪𞤤𞤭𞤺𞤢𞥄𞤪𞤫", + "id": "𞤉𞤲𞤣𞤮𞤲𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "id_ID": "𞤉𞤲𞤣𞤮𞤲𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Enndonesii)", + "ig_NG": "Igiboore (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", + "it": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "it_CH": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Suwiis)", + "it_IT": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Itali)", + "it_SM": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (See Maree)", + "it_VA": "𞤋𞤼𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Dowla Waticaan)", + "ja": "𞤔𞤢𞤨𞤮𞤲𞤫𞥅𞤪𞤫", + "ja_JP": "𞤔𞤢𞤨𞤮𞤲𞤫𞥅𞤪𞤫 (Sapoo)", + "jv": "𞤔𞤢𞥄𞤱𞤢𞤫𞥅𞤪𞤫", + "jv_ID": "𞤔𞤢𞥄𞤱𞤢𞤫𞥅𞤪𞤫 (Enndonesii)", + "ko": "𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤪𞤫", + "ko_KP": "𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤪𞤫 (Koree Rewo)", + "ko_KR": "𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞤲𞤪𞤫 (Koree Worgo)", + "kw": "𞤑𞤮𞤪𞤲𞤭𞥅𞤪𞤫", + "kw_GB": "𞤑𞤮𞤪𞤲𞤭𞥅𞤪𞤫 (Laamateeri Rentundi)", + "mg": "𞤃𞤢𞤤𞤢𞤺𞤢𞤧𞤭𞥅𞤪𞤫", + "mg_MG": "𞤃𞤢𞤤𞤢𞤺𞤢𞤧𞤭𞥅𞤪𞤫 (𞤃𞤢𞤣𞤢𞤺𞤢𞤧𞤳𞤢𞥄𞤪)", + "mk": "𞤃𞤢𞤧𞤫𞤣𞤮𞤲𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "ml": "𞤃𞤢𞤤𞤢𞤴𞤢𞤤𞤢𞤥𞤪𞤫", + "ml_IN": "𞤃𞤢𞤤𞤢𞤴𞤢𞤤𞤢𞤥𞤪𞤫 (Enndo)", + "mn": "𞤃𞤮𞤲𞤺𞤮𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "mn_MN": "𞤃𞤮𞤲𞤺𞤮𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Monngolii)", + "ms": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫", + "ms_BN": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫 (Burnaay)", + "ms_ID": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫 (Enndonesii)", + "ms_MY": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫 (Malesii)", + "ms_SG": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫 (Sinngapuur)", + "mt": "𞤃𞤢𞤤𞤼𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "mt_MT": "𞤃𞤢𞤤𞤼𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Malte)", + "my": "𞤄𞤵𞤪𞤥𞤢𞥄𞤪𞤫", + "my_MM": "𞤄𞤵𞤪𞤥𞤢𞥄𞤪𞤫 (Miyamaar)", + "ne": "𞤐𞤫𞤨𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "ne_IN": "𞤐𞤫𞤨𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Enndo)", + "ne_NP": "𞤐𞤫𞤨𞤢𞤤𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Nepaal)", + "nl": "𞤁𞤮𞥅𞤷𞤪𞤫", + "nl_AW": "𞤁𞤮𞥅𞤷𞤪𞤫 (Aruuba)", + "nl_BE": "𞤁𞤮𞥅𞤷𞤪𞤫 (Beljik)", + "nl_NL": "𞤁𞤮𞥅𞤷𞤪𞤫 (Nederlannda)", + "nl_SR": "𞤁𞤮𞥅𞤷𞤪𞤫 (Surinaam)", + "pl": "𞤆𞤮𞤤𞤢𞤲𞤣𞤭𞥅𞤪𞤫", + "pl_PL": "𞤆𞤮𞤤𞤢𞤲𞤣𞤭𞥅𞤪𞤫 (𞤆𞤮𞤤𞤢𞤲𞤣)", + "pt": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫", + "pt_AO": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤀𞤲𞤺𞤮𞤤𞤢𞥄)", + "pt_BR": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (Beresiil)", + "pt_CH": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (Suwiis)", + "pt_CV": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤑𞤢𞥄𞤦𞤮 𞤜𞤫𞤪𞤣𞤫)", + "pt_GQ": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤘𞤭𞤲𞤫 𞤕𞤢𞤳𞤢𞤲𞤼𞤫𞥅𞤪𞤭)", + "pt_GW": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤘𞤭𞤲𞤫-𞤄𞤭𞤧𞤢𞤱𞤮𞥅)", + "pt_LU": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (Liksembuur)", + "pt_MZ": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤃𞤮𞤧𞤢𞤥𞤦𞤭𞥅𞤳)", + "pt_PT": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (Purtugaal)", + "pt_ST": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (𞤅𞤢𞤱𞤵 𞤚𞤵𞤥𞤫𞥅 & 𞤆𞤫𞤪𞤫𞤲𞤧𞤭𞤨𞤫)", + "pt_TL": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 (Timoor Fuɗnaange)", + "ru": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "ru_BY": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Belaruus)", + "ru_KG": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Kirgistaan)", + "ru_KZ": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Kasakstaan)", + "ru_MD": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Moldawii)", + "ru_RU": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Riisii)", + "ru_UA": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Ukereen)", + "rw_RW": "Ruwaanndeere (𞤈𞤵𞤱𞤢𞤲𞤣𞤢𞥄)", + "so_DJ": "Somalii (𞤔𞤭𞤦𞤵𞥅𞤼𞤭)", + "so_ET": "Somalii (𞤀𞤦𞤢𞤧𞤭𞤲𞤭𞥅)", + "so_KE": "Somalii (𞤑𞤫𞤲𞤭𞤴𞤢𞥄)", + "so_SO": "Somalii (𞤅𞤵𞥅𞤥𞤢𞥄𞤤𞤭)", + "sq": "𞤀𞤤𞤦𞤢𞤲𞤭𞥅𞤪𞤫", + "sq_AL": "𞤀𞤤𞤦𞤢𞤲𞤭𞥅𞤪𞤫 (Albanii)", + "th": "𞤚𞤢𞤴𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫", + "th_TH": "𞤚𞤢𞤴𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫 (Taylannda)", + "tr": "𞤚𞤵𞥅𞤪𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "tr_CY": "𞤚𞤵𞥅𞤪𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Siipar)", + "tr_TR": "𞤚𞤵𞥅𞤪𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Turkii)", + "ug": "𞤓𞥅𞤴𞤺𞤵𞥅𞤪𞤫", + "ug_CN": "𞤓𞥅𞤴𞤺𞤵𞥅𞤪𞤫 (Siin)", + "ur": "𞤓𞤪𞤣𞤵𞥅𞤪𞤫", + "ur_IN": "𞤓𞤪𞤣𞤵𞥅𞤪𞤫 (Enndo)", + "ur_PK": "𞤓𞤪𞤣𞤵𞥅𞤪𞤫 (Pakistaan)", + "uz": "𞤓𞥅𞤧𞤦𞤫𞤳𞤪𞤫", + "uz_AF": "𞤓𞥅𞤧𞤦𞤫𞤳𞤪𞤫 (Afganistaan)", + "uz_UZ": "𞤓𞥅𞤧𞤦𞤫𞤳𞤪𞤫 (Usbekistaan)", + "vi": "𞤏𞤭𞤴𞤫𞤼𞤲𞤢𞤥𞤭𞤲𞤳𞤮𞥅𞤪𞤫", + "vi_VN": "𞤏𞤭𞤴𞤫𞤼𞤲𞤢𞤥𞤭𞤲𞤳𞤮𞥅𞤪𞤫 (Wiyetnaam)", + "wo": "𞤏𞤮𞤤𞤮𞤬𞤪𞤫", + "wo_SN": "𞤏𞤮𞤤𞤮𞤬𞤪𞤫 (𞤅𞤫𞤲𞤫𞤺𞤢𞥄𞤤)", + "xh": "𞤑𞤮𞥅𞤧𞤢𞥄𞤪𞤫", + "xh_ZA": "𞤑𞤮𞥅𞤧𞤢𞥄𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", + "yi": "𞤒𞤭𞤣𞤭𞤧𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "yo": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫", + "yo_BJ": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫 (𞤄𞤫𞤲𞤫𞤲)", + "yo_NG": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫 (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", + "zh": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "zh_CN": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Siin)", + "zh_SG": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Sinngapuur)", + "zh_TW": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Taywaan)", + "zu": "𞥁𞤵𞤤𞤵𞥅𞤪𞤫", + "zu_ZA": "𞥁𞤵𞤤𞤵𞥅𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json index 33bd3f9d3f..247e21ae05 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json @@ -34,6 +34,8 @@ "kl": "kalaallisut", "kl_GL": "kalaallisut (Groenland)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabe)", + "ks_Arab_IN": "kashmiri (arabe, Inde)", "ks_IN": "kashmiri (Inde)", "lu": "luba-katanga", "lu_CD": "luba-katanga (Congo-Kinshasa)", @@ -44,6 +46,8 @@ "nl_SX": "néerlandais (Saint-Martin [Pays-Bas])", "pt_TL": "portugais (Timor-Leste)", "ru_BY": "russe (Bélarus)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, Inde)", "sv_AX": "suédois (îles d’Åland)", "zh_Hans": "chinois (idéogrammes han simplifiés)", "zh_Hans_CN": "chinois (idéogrammes han simplifiés, Chine)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index d1948f0781..f2e3e6d836 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -14,6 +14,7 @@ "ar_DJ": "Larabci (Jibuti)", "ar_DZ": "Larabci (Aljeriya)", "ar_EG": "Larabci (Misira)", + "ar_EH": "Larabci (Yammacin Sahara)", "ar_ER": "Larabci (Eritireya)", "ar_IL": "Larabci (Iziraʼila)", "ar_IQ": "Larabci (Iraƙi)", @@ -117,6 +118,7 @@ "en_CX": "Turanci (Tsibirin Kirsmati)", "en_CY": "Turanci (Sifurus)", "en_DE": "Turanci (Jamus)", + "en_DG": "Turanci (Tsibirn Diego Garcia)", "en_DK": "Turanci (Danmark)", "en_DM": "Turanci (Dominika)", "en_ER": "Turanci (Eritireya)", @@ -126,15 +128,19 @@ "en_FM": "Turanci (Mikuronesiya)", "en_GB": "Turanci (Biritaniya)", "en_GD": "Turanci (Girnada)", + "en_GG": "Turanci (Yankin Guernsey)", "en_GH": "Turanci (Gana)", "en_GI": "Turanci (Jibaraltar)", "en_GM": "Turanci (Gambiya)", "en_GU": "Turanci (Gwam)", "en_GY": "Turanci (Guyana)", + "en_HK": "Turanci (Hong Kong Babban Birnin Kasar Chana)", "en_IE": "Turanci (Ayalan)", "en_IL": "Turanci (Iziraʼila)", + "en_IM": "Turanci (Isle na Mutum)", "en_IN": "Turanci (Indiya)", "en_IO": "Turanci (Yankin Birtaniya Na Tekun Indiya)", + "en_JE": "Turanci (Kasar Jersey)", "en_JM": "Turanci (Jamaika)", "en_KE": "Turanci (Kenya)", "en_KI": "Turanci (Kiribati)", @@ -145,6 +151,7 @@ "en_LS": "Turanci (Lesoto)", "en_MG": "Turanci (Madagaskar)", "en_MH": "Turanci (Tsibiran Marshal)", + "en_MO": "Turanci (Babban Birnin Mulki na Chana)", "en_MP": "Turanci (Tsibiran Mariyana Na Arewa)", "en_MS": "Turanci (Manserati)", "en_MT": "Turanci (Malta)", @@ -183,6 +190,7 @@ "en_TV": "Turanci (Tubalu)", "en_TZ": "Turanci (Tanzaniya)", "en_UG": "Turanci (Yuganda)", + "en_UM": "Turanci (Rukunin Tsibirin U.S)", "en_US": "Turanci (Amurka)", "en_VC": "Turanci (San Binsan Da Girnadin)", "en_VG": "Turanci (Tsibirin Birjin Na Birtaniya)", @@ -205,11 +213,13 @@ "es_CR": "Sifaniyanci (Kwasta Rika)", "es_CU": "Sifaniyanci (Kyuba)", "es_DO": "Sifaniyanci (Jamhuriyar Dominika)", + "es_EA": "Sifaniyanci (Ceuta & Melilla)", "es_EC": "Sifaniyanci (Ekwador)", "es_ES": "Sifaniyanci (Sipen)", "es_GQ": "Sifaniyanci (Gini Ta Ikwaita)", "es_GT": "Sifaniyanci (Gwatamala)", "es_HN": "Sifaniyanci (Honduras)", + "es_IC": "Sifaniyanci (Canary Islands)", "es_MX": "Sifaniyanci (Makasiko)", "es_NI": "Sifaniyanci (Nikaraguwa)", "es_PA": "Sifaniyanci (Panama)", @@ -250,6 +260,7 @@ "fi_FI": "Yaren mutanen Finland (Finlan)", "fo": "Faroese", "fo_DK": "Faroese (Danmark)", + "fo_FO": "Faroese (Tsibirai na Faroe)", "fr": "Faransanci", "fr_BE": "Faransanci (Belgiyom)", "fr_BF": "Faransanci (Burkina Faso)", @@ -309,6 +320,7 @@ "gu": "Gujarati", "gu_IN": "Gujarati (Indiya)", "gv": "Manx", + "gv_IM": "Manx (Isle na Mutum)", "ha": "Hausa", "ha_GH": "Hausa (Gana)", "ha_NE": "Hausa (Nijar)", @@ -359,6 +371,8 @@ "ko_KP": "Harshen Koreya (Koriya Ta Arewa)", "ko_KR": "Harshen Koreya (Koriya Ta Kudu)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (Larabci)", + "ks_Arab_IN": "Kashmiri (Larabci, Indiya)", "ks_IN": "Kashmiri (Indiya)", "ku": "Kurdanci", "ku_TR": "Kurdanci (Turkiyya)", @@ -397,6 +411,7 @@ "mr_IN": "Kʼabilan Marathi (Indiya)", "ms": "Harshen Malai", "ms_BN": "Harshen Malai (Burune)", + "ms_ID": "Harshen Malai (Indunusiya)", "ms_MY": "Harshen Malai (Malaisiya)", "ms_SG": "Harshen Malai (Singapur)", "mt": "Harshen Maltis", @@ -405,6 +420,7 @@ "my_MM": "Burmanci (Burma, Miyamar)", "nb": "Norwegian Bokmål", "nb_NO": "Norwegian Bokmål (Norwe)", + "nb_SJ": "Norwegian Bokmål (Svalbard da Jan Mayen)", "nd": "North Ndebele", "nd_ZW": "North Ndebele (Zimbabuwe)", "ne": "Nepali", @@ -448,6 +464,7 @@ "pt_GQ": "Harshen Fotugis (Gini Ta Ikwaita)", "pt_GW": "Harshen Fotugis (Gini Bisau)", "pt_LU": "Harshen Fotugis (Lukusambur)", + "pt_MO": "Harshen Fotugis (Babban Birnin Mulki na Chana)", "pt_MZ": "Harshen Fotugis (Mozambik)", "pt_PT": "Harshen Fotugis (Portugal)", "pt_ST": "Harshen Fotugis (Sawo Tome Da Paransip)", @@ -473,6 +490,10 @@ "rw": "Kiniyaruwanda", "rw_RW": "Kiniyaruwanda (Ruwanda)", "sd": "Sindiyanci", + "sd_Arab": "Sindiyanci (Larabci)", + "sd_Arab_PK": "Sindiyanci (Larabci, Pakistan)", + "sd_Deva": "Sindiyanci (Devanagari)", + "sd_Deva_IN": "Sindiyanci (Devanagari, Indiya)", "sd_PK": "Sindiyanci (Pakistan)", "se": "Northern Sami", "se_FI": "Northern Sami (Finlan)", @@ -496,19 +517,28 @@ "sq": "Albanian", "sq_AL": "Albanian (Albaniya)", "sq_MK": "Albanian (Macedonia ta Arewa)", + "sq_XK": "Albanian (Kasar Kosovo)", "sr": "Sabiyan", "sr_BA": "Sabiyan (Bosniya Harzagobina)", "sr_Cyrl": "Sabiyan (Cyrillic)", "sr_Cyrl_BA": "Sabiyan (Cyrillic, Bosniya Harzagobina)", "sr_Cyrl_ME": "Sabiyan (Cyrillic, Mantanegara)", "sr_Cyrl_RS": "Sabiyan (Cyrillic, Sabiya)", + "sr_Cyrl_XK": "Sabiyan (Cyrillic, Kasar Kosovo)", "sr_Latn": "Sabiyan (Latin)", "sr_Latn_BA": "Sabiyan (Latin, Bosniya Harzagobina)", "sr_Latn_ME": "Sabiyan (Latin, Mantanegara)", "sr_Latn_RS": "Sabiyan (Latin, Sabiya)", + "sr_Latn_XK": "Sabiyan (Latin, Kasar Kosovo)", "sr_ME": "Sabiyan (Mantanegara)", "sr_RS": "Sabiyan (Sabiya)", + "sr_XK": "Sabiyan (Kasar Kosovo)", + "su": "Sudananci", + "su_ID": "Sudananci (Indunusiya)", + "su_Latn": "Sudananci (Latin)", + "su_Latn_ID": "Sudananci (Latin, Indunusiya)", "sv": "Harshen Suwedan", + "sv_AX": "Harshen Suwedan (Tsibirai na Åland)", "sv_FI": "Harshen Suwedan (Finlan)", "sv_SE": "Harshen Suwedan (Suwedan)", "sw": "Harshen Suwahili", @@ -568,11 +598,17 @@ "yo_NG": "Yarbanci (Najeriya)", "zh": "Harshen Sinanci", "zh_CN": "Harshen Sinanci (Sin)", + "zh_HK": "Harshen Sinanci (Hong Kong Babban Birnin Kasar Chana)", "zh_Hans": "Harshen Sinanci (Sauƙaƙaƙƙen)", "zh_Hans_CN": "Harshen Sinanci (Sauƙaƙaƙƙen, Sin)", + "zh_Hans_HK": "Harshen Sinanci (Sauƙaƙaƙƙen, Hong Kong Babban Birnin Kasar Chana)", + "zh_Hans_MO": "Harshen Sinanci (Sauƙaƙaƙƙen, Babban Birnin Mulki na Chana)", "zh_Hans_SG": "Harshen Sinanci (Sauƙaƙaƙƙen, Singapur)", "zh_Hant": "Harshen Sinanci (Na gargajiya)", + "zh_Hant_HK": "Harshen Sinanci (Na gargajiya, Hong Kong Babban Birnin Kasar Chana)", + "zh_Hant_MO": "Harshen Sinanci (Na gargajiya, Babban Birnin Mulki na Chana)", "zh_Hant_TW": "Harshen Sinanci (Na gargajiya, Taiwan)", + "zh_MO": "Harshen Sinanci (Babban Birnin Mulki na Chana)", "zh_SG": "Harshen Sinanci (Singapur)", "zh_TW": "Harshen Sinanci (Taiwan)", "zu": "Harshen Zulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ki.json b/src/Symfony/Component/Intl/Resources/data/locales/ki.json index f439120cc1..bd985ce970 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ki.json @@ -247,6 +247,7 @@ "ko_KR": "Kikorea (Korea Kusini)", "ms": "Kimalesia", "ms_BN": "Kimalesia (Brunei)", + "ms_ID": "Kimalesia (Indonesia)", "ms_MY": "Kimalesia (Malesia)", "ms_SG": "Kimalesia (Singapoo)", "my": "Kiburma", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index 6b94b25a9c..62634ea511 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -362,6 +362,8 @@ "ko_KP": "کوریَن (شُمٲلی کورِیا)", "ko_KR": "کوریَن (جنوٗبی کورِیا)", "ks": "کٲشُر", + "ks_Arab": "کٲشُر (اَربی)", + "ks_Arab_IN": "کٲشُر (اَربی, ہِندوستان)", "ks_IN": "کٲشُر (ہِندوستان)", "ku": "کُردِش", "ku_TR": "کُردِش (تُرکی)", @@ -399,6 +401,7 @@ "mr_IN": "مَرٲٹھۍ (ہِندوستان)", "ms": "مَلَے", "ms_BN": "مَلَے (بُرنٔے)", + "ms_ID": "مَلَے (اِنڑونیشِیا)", "ms_MY": "مَلَے (مَلیشِیا)", "ms_SG": "مَلَے (سِنگاپوٗر)", "mt": "مَلتیٖس", @@ -477,6 +480,10 @@ "rw": "کِنیاوِندا", "rw_RW": "کِنیاوِندا (روٗوانڈا)", "sd": "سِندی", + "sd_Arab": "سِندی (اَربی)", + "sd_Arab_PK": "سِندی (اَربی, پاکِستان)", + "sd_Deva": "سِندی (دیوناگری)", + "sd_Deva_IN": "سِندی (دیوناگری, ہِندوستان)", "sd_PK": "سِندی (پاکِستان)", "se": "شُمٲلی سَمی", "se_FI": "شُمٲلی سَمی (فِنلینڑ)", @@ -513,6 +520,10 @@ "sr_Latn_RS": "سٔربِیَن (لیٹِن, سَربِیا)", "sr_ME": "سٔربِیَن (موٹونیگِریو)", "sr_RS": "سٔربِیَن (سَربِیا)", + "su": "سَنڈَنیٖز", + "su_ID": "سَنڈَنیٖز (اِنڑونیشِیا)", + "su_Latn": "سَنڈَنیٖز (لیٹِن)", + "su_Latn_ID": "سَنڈَنیٖز (لیٹِن, اِنڑونیشِیا)", "sv": "سویٖڈِش", "sv_AX": "سویٖڈِش (ایلینڑ جٔزیٖرٕ)", "sv_FI": "سویٖڈِش (فِنلینڑ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lg.json b/src/Symfony/Component/Intl/Resources/data/locales/lg.json index 3937d29830..79799492e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lg.json @@ -247,6 +247,7 @@ "lg_UG": "Luganda (Yuganda)", "ms": "Lumalayi", "ms_BN": "Lumalayi (Burunayi)", + "ms_ID": "Lumalayi (Yindonezya)", "ms_MY": "Lumalayi (Malezya)", "ms_SG": "Lumalayi (Singapowa)", "my": "Lubbama", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ln.json b/src/Symfony/Component/Intl/Resources/data/locales/ln.json index 3ed687b2e1..f6349e383a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ln.json @@ -251,6 +251,7 @@ "ln_CG": "lingála (Kongo)", "ms": "limalezi", "ms_BN": "limalezi (Brineyi)", + "ms_ID": "limalezi (Indonezi)", "ms_MY": "limalezi (Malezi)", "ms_SG": "limalezi (Singapurɛ)", "my": "libilimá", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lu.json b/src/Symfony/Component/Intl/Resources/data/locales/lu.json index 20b2ae4b2a..442b229c2d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lu.json @@ -245,6 +245,7 @@ "lu_CD": "Tshiluba (Ditunga wa Kongu)", "ms": "Limalezia", "ms_BN": "Limalezia (Brineyi)", + "ms_ID": "Limalezia (Indonezi)", "ms_MY": "Limalezia (Malezi)", "ms_SG": "Limalezia (Singapure)", "ne": "nepali", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index 9104fa86ac..89d1d94dc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/meta.json @@ -242,6 +242,19 @@ "fa_AF", "fa_IR", "ff", + "ff_Adlm", + "ff_Adlm_BF", + "ff_Adlm_CM", + "ff_Adlm_GH", + "ff_Adlm_GM", + "ff_Adlm_GN", + "ff_Adlm_GW", + "ff_Adlm_LR", + "ff_Adlm_MR", + "ff_Adlm_NE", + "ff_Adlm_NG", + "ff_Adlm_SL", + "ff_Adlm_SN", "ff_CM", "ff_GN", "ff_Latn", @@ -379,6 +392,8 @@ "ko_KP", "ko_KR", "ks", + "ks_Arab", + "ks_Arab_IN", "ks_IN", "ku", "ku_TR", @@ -418,6 +433,7 @@ "mr_IN", "ms", "ms_BN", + "ms_ID", "ms_MY", "ms_SG", "mt", @@ -499,6 +515,10 @@ "rw", "rw_RW", "sd", + "sd_Arab", + "sd_Arab_PK", + "sd_Deva", + "sd_Deva_IN", "sd_PK", "se", "se_FI", @@ -548,6 +568,10 @@ "sr_RS", "sr_XK", "sr_YU", + "su", + "su_ID", + "su_Latn", + "su_Latn_ID", "sv", "sv_AX", "sv_FI", @@ -641,12 +665,14 @@ "in_ID": "id_ID", "iw": "he", "iw_IL": "he_IL", + "ks_IN": "ks_Arab_IN", "mo": "ro", "no": "nb", "no_NO": "nb_NO", "no_NO_NY": "nn_NO", "pa_IN": "pa_Guru_IN", "pa_PK": "pa_Arab_PK", + "sd_PK": "sd_Arab_PK", "sh": "sr_Latn", "sh_BA": "sr_Latn_BA", "sh_CS": "sr_Latn_RS", @@ -661,6 +687,7 @@ "sr_RS": "sr_Cyrl_RS", "sr_XK": "sr_Cyrl_XK", "sr_YU": "sr_Cyrl_RS", + "su_ID": "su_Latn_ID", "tl": "fil", "tl_PH": "fil_PH", "uz_AF": "uz_Arab_AF", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mg.json b/src/Symfony/Component/Intl/Resources/data/locales/mg.json index c6ba587dd4..1999768012 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mg.json @@ -247,6 +247,7 @@ "mg_MG": "Malagasy (Madagasikara)", "ms": "Malay", "ms_BN": "Malay (Brunei)", + "ms_ID": "Malay (Indonezia)", "ms_MY": "Malay (Malaizia)", "ms_SG": "Malay (Singaporo)", "my": "Birmana", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nd.json b/src/Symfony/Component/Intl/Resources/data/locales/nd.json index 6a59cd7da6..61cb7f4df8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nd.json @@ -245,6 +245,7 @@ "ko_KR": "isi-Koriya (South Korea)", "ms": "isi-Malayi", "ms_BN": "isi-Malayi (Brunei)", + "ms_ID": "isi-Malayi (Indonesiya)", "ms_MY": "isi-Malayi (Malezhiya)", "ms_SG": "isi-Malayi (Singapore)", "my": "isi-Burma", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/om.json b/src/Symfony/Component/Intl/Resources/data/locales/om.json index dc89f7b3db..24d80a8cdc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/om.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/om.json @@ -96,6 +96,8 @@ "sq": "Afaan Albaniyaa", "sr": "Afaan Serbiya", "sr_Latn": "Afaan Serbiya (Latin)", + "su": "Afaan Sudaanii", + "su_Latn": "Afaan Sudaanii (Latin)", "sv": "Afaan Suwidiin", "sw": "Suwahilii", "sw_KE": "Suwahilii (Keeniyaa)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/locales/pa_Arab.json index 3f16fec4b9..f11e87aecd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa_Arab.json @@ -1,6 +1,8 @@ { "Names": { "en_PK": "ਅੰਗਰੇਜ਼ੀ (پاکستان)", + "ks_Arab": "ਕਸ਼ਮੀਰੀ (عربی)", + "ks_Arab_IN": "ਕਸ਼ਮੀਰੀ (عربی, ਭਾਰਤ)", "pa": "پنجابی", "pa_Arab": "پنجابی (عربی)", "pa_Arab_PK": "پنجابی (عربی, پاکستان)", @@ -9,6 +11,8 @@ "pa_IN": "پنجابی (ਭਾਰਤ)", "pa_PK": "پنجابی (پاکستان)", "ps_PK": "ਪਸ਼ਤੋ (پاکستان)", + "sd_Arab": "ਸਿੰਧੀ (عربی)", + "sd_Arab_PK": "ਸਿੰਧੀ (عربی, پاکستان)", "sd_PK": "ਸਿੰਧੀ (پاکستان)", "ur_PK": "ਉਰਦੂ (پاکستان)", "uz_Arab": "ਉਜ਼ਬੇਕ (عربی)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index fbe2dbb8c4..6987418052 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -365,6 +365,8 @@ "ko_KP": "corean (Corea dal Nord)", "ko_KR": "corean (Corea dal Sid)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arab)", + "ks_Arab_IN": "kashmiri (arab, India)", "ks_IN": "kashmiri (India)", "ku": "curd", "ku_TR": "curd (Tirchia)", @@ -402,6 +404,7 @@ "mr_IN": "marathi (India)", "ms": "malaic", "ms_BN": "malaic (Brunei)", + "ms_ID": "malaic (Indonesia)", "ms_MY": "malaic (Malaisia)", "ms_SG": "malaic (Singapur)", "mt": "maltais", @@ -479,6 +482,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arab)", + "sd_Arab_PK": "sindhi (arab, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "sami dal nord", "se_FI": "sami dal nord (Finlanda)", @@ -515,6 +522,10 @@ "sr_Latn_RS": "serb (latin, Serbia)", "sr_ME": "serb (Montenegro)", "sr_RS": "serb (Serbia)", + "su": "sundanais", + "su_ID": "sundanais (Indonesia)", + "su_Latn": "sundanais (latin)", + "su_Latn_ID": "sundanais (latin, Indonesia)", "sv": "svedais", "sv_AX": "svedais (Inslas Aland)", "sv_FI": "svedais (Finlanda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rn.json b/src/Symfony/Component/Intl/Resources/data/locales/rn.json index bfb924b37e..a66eb522bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rn.json @@ -245,6 +245,7 @@ "ko_KR": "Ikinyakoreya (Koreya y’amajepfo)", "ms": "Ikinyamaleziya", "ms_BN": "Ikinyamaleziya (Buruneyi)", + "ms_ID": "Ikinyamaleziya (Indoneziya)", "ms_MY": "Ikinyamaleziya (Maleziya)", "ms_SG": "Ikinyamaleziya (Singapuru)", "my": "Ikinyabirimaniya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rw.json b/src/Symfony/Component/Intl/Resources/data/locales/rw.json index 1d4dde9079..08950f6618 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rw.json @@ -83,6 +83,7 @@ "sq": "Icyalubaniya", "sq_MK": "Icyalubaniya (Masedoniya y’Amajyaruguru)", "sr": "Igiseribe", + "su": "Inyesudani", "sv": "Igisuweduwa", "sw": "Igiswahili", "ta": "Igitamili", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json new file mode 100644 index 0000000000..b5dd4bd5f1 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json @@ -0,0 +1,311 @@ +{ + "Names": { + "as_IN": "آسامي (भारत)", + "az_Cyrl": "آزربائيجاني (सिरिलिक)", + "az_Cyrl_AZ": "آزربائيجاني (सिरिलिक, آذربائيجان)", + "az_Latn": "آزربائيجاني (लैटिन)", + "az_Latn_AZ": "آزربائيجاني (लैटिन, آذربائيجان)", + "bn_IN": "بنگلا (भारत)", + "bo_CN": "تبيتائي (चाइना)", + "bo_IN": "تبيتائي (भारत)", + "br_FR": "بريٽن (फ़्रांस)", + "bs_Cyrl": "بوسنيائي (सिरिलिक)", + "bs_Cyrl_BA": "بوسنيائي (सिरिलिक, بوسنیا اور هرزیگوینا)", + "bs_Latn": "بوسنيائي (लैटिन)", + "bs_Latn_BA": "بوسنيائي (लैटिन, بوسنیا اور هرزیگوینا)", + "ca_FR": "ڪيٽالان (फ़्रांस)", + "ca_IT": "ڪيٽالان (इटली)", + "ce_RU": "چیچن (रशिया)", + "cy_GB": "ويلش (यूनाइटेड किंगडम)", + "de": "जर्मन", + "de_AT": "जर्मन (آشٽريا)", + "de_BE": "जर्मन (بيلجيم)", + "de_CH": "जर्मन (سوئزرلينڊ)", + "de_DE": "जर्मन (जर्मनी)", + "de_IT": "जर्मन (इटली)", + "de_LI": "जर्मन (لچي ٽينسٽين)", + "de_LU": "जर्मन (لیگزمبرگ)", + "en": "अंगरेज़ी", + "en_AE": "अंगरेज़ी (متحده عرب امارات)", + "en_AG": "अंगरेज़ी (انٽيگئا و بربودا)", + "en_AI": "अंगरेज़ी (انگويلا)", + "en_AS": "अंगरेज़ी (آمريڪي ساموا)", + "en_AT": "अंगरेज़ी (آشٽريا)", + "en_AU": "अंगरेज़ी (آسٽريليا)", + "en_BB": "अंगरेज़ी (باربڊوس)", + "en_BE": "अंगरेज़ी (بيلجيم)", + "en_BI": "अंगरेज़ी (برونڊي)", + "en_BM": "अंगरेज़ी (برمودا)", + "en_BS": "अंगरेज़ी (بهاماس)", + "en_BW": "अंगरेज़ी (بوٽسوانا)", + "en_BZ": "अंगरेज़ी (بيليز)", + "en_CA": "अंगरेज़ी (ڪئناڊا)", + "en_CC": "अंगरेज़ी (ڪوڪوس ٻيٽ)", + "en_CH": "अंगरेज़ी (سوئزرلينڊ)", + "en_CK": "अंगरेज़ी (ڪوڪ ٻيٽ)", + "en_CM": "अंगरेज़ी (ڪيمرون)", + "en_CX": "अंगरेज़ी (ڪرسمس ٻيٽ)", + "en_CY": "अंगरेज़ी (سائپرس)", + "en_DE": "अंगरेज़ी (जर्मनी)", + "en_DG": "अंगरेज़ी (ڊئيگو گارسيا)", + "en_DK": "अंगरेज़ी (ڊينمارڪ)", + "en_DM": "अंगरेज़ी (ڊومينيڪا)", + "en_ER": "अंगरेज़ी (ايريٽيريا)", + "en_FI": "अंगरेज़ी (فن لينڊ)", + "en_FJ": "अंगरेज़ी (فجي)", + "en_FK": "अंगरेज़ी (فاڪ لينڊ ٻيٽ)", + "en_FM": "अंगरेज़ी (مائڪرونيشيا)", + "en_GB": "अंगरेज़ी (यूनाइटेड किंगडम)", + "en_GD": "अंगरेज़ी (گرينڊا)", + "en_GG": "अंगरेज़ी (گورنسي)", + "en_GH": "अंगरेज़ी (گهانا)", + "en_GI": "अंगरेज़ी (جبرالٽر)", + "en_GM": "अंगरेज़ी (گيمبيا)", + "en_GU": "अंगरेज़ी (گوام)", + "en_GY": "अंगरेज़ी (گيانا)", + "en_HK": "अंगरेज़ी (هانگ ڪانگ)", + "en_IE": "अंगरेज़ी (آئرلينڊ)", + "en_IL": "अंगरेज़ी (اسرائيل)", + "en_IM": "अंगरेज़ी (انسانن جو ٻيٽ)", + "en_IN": "अंगरेज़ी (भारत)", + "en_IO": "अंगरेज़ी (برطانوي هندي سمنڊ خطو)", + "en_JE": "अंगरेज़ी (جرسي)", + "en_JM": "अंगरेज़ी (جميڪا)", + "en_KE": "अंगरेज़ी (ڪينيا)", + "en_KI": "अंगरेज़ी (ڪرباتي)", + "en_KN": "अंगरेज़ी (سينٽ ڪٽس و نيوس)", + "en_KY": "अंगरेज़ी (ڪي مين ٻيٽ)", + "en_LC": "अंगरेज़ी (سينٽ لوسيا)", + "en_LR": "अंगरेज़ी (لائبیریا)", + "en_LS": "अंगरेज़ी (ليسوٿو)", + "en_MG": "अंगरेज़ी (مداگيسڪر)", + "en_MH": "अंगरेज़ी (مارشل ڀيٽ)", + "en_MO": "अंगरेज़ी (مڪائو SAR چين)", + "en_MP": "अंगरेज़ी (اتر مرينا ٻيٽ)", + "en_MS": "अंगरेज़ी (مونٽسراٽ)", + "en_MT": "अंगरेज़ी (مالٽا)", + "en_MU": "अंगरेज़ी (موريشس)", + "en_MW": "अंगरेज़ी (مالاوي)", + "en_MY": "अंगरेज़ी (ملائيشيا)", + "en_NA": "अंगरेज़ी (نيميبيا)", + "en_NF": "अंगरेज़ी (نورفوڪ ٻيٽ)", + "en_NG": "अंगरेज़ी (نائيجيريا)", + "en_NL": "अंगरेज़ी (نيدرلينڊ)", + "en_NR": "अंगरेज़ी (نائورو)", + "en_NU": "अंगरेज़ी (نووي)", + "en_NZ": "अंगरेज़ी (نيو زيلينڊ)", + "en_PG": "अंगरेज़ी (پاپوا نیو گني)", + "en_PH": "अंगरेज़ी (فلپائن)", + "en_PK": "अंगरेज़ी (پاڪستان)", + "en_PN": "अंगरेज़ी (پٽڪئرن ٻيٽ)", + "en_PR": "अंगरेज़ी (پيوئرٽو ريڪو)", + "en_PW": "अंगरेज़ी (پلائو)", + "en_RW": "अंगरेज़ी (روانڊا)", + "en_SB": "अंगरेज़ी (سولومون ٻيٽَ)", + "en_SC": "अंगरेज़ी (شي شلز)", + "en_SD": "अंगरेज़ी (سوڊان)", + "en_SE": "अंगरेज़ी (سوئيڊن)", + "en_SG": "अंगरेज़ी (سينگاپور)", + "en_SH": "अंगरेज़ी (سينٽ ھيلينا)", + "en_SI": "अंगरेज़ी (سلوینیا)", + "en_SL": "अंगरेज़ी (سيرا ليون)", + "en_SS": "अंगरेज़ी (ڏکڻ سوڊان)", + "en_SX": "अंगरेज़ी (سنٽ مارٽن)", + "en_SZ": "अंगरेज़ी (ايسواٽني)", + "en_TC": "अंगरेज़ी (ترڪ ۽ ڪيڪوس ٻيٽ)", + "en_TK": "अंगरेज़ी (ٽوڪلائو)", + "en_TO": "अंगरेज़ी (ٽونگا)", + "en_TT": "अंगरेज़ी (ٽريني ڊيڊ ۽ ٽوباگو ٻيٽ)", + "en_TV": "अंगरेज़ी (توالو)", + "en_TZ": "अंगरेज़ी (تنزانيا)", + "en_UG": "अंगरेज़ी (يوگنڊا)", + "en_UM": "अंगरेज़ी (آمريڪي ٻاهريون ٻيٽ)", + "en_US": "अंगरेज़ी (अमेरिका)", + "en_VC": "अंगरेज़ी (سینٽ ونسنت ۽ گریناڊینز)", + "en_VG": "अंगरेज़ी (برطانوي ورجن ٻيٽ)", + "en_VI": "अंगरेज़ी (آمريڪي ورجن ٻيٽ)", + "en_VU": "अंगरेज़ी (وينيٽيو)", + "en_WS": "अंगरेज़ी (سموئا)", + "en_ZA": "अंगरेज़ी (ڏکڻ آفريقا)", + "en_ZM": "अंगरेज़ी (زيمبيا)", + "en_ZW": "अंगरेज़ी (زمبابوي)", + "es": "स्पेनिश", + "es_AR": "स्पेनिश (ارجنٽينا)", + "es_BO": "स्पेनिश (بوليويا)", + "es_BR": "स्पेनिश (ब्राजील)", + "es_BZ": "स्पेनिश (بيليز)", + "es_CL": "स्पेनिश (چلي)", + "es_CO": "स्पेनिश (ڪولمبيا)", + "es_CR": "स्पेनिश (ڪوسٽا رڪا)", + "es_CU": "स्पेनिश (ڪيوبا)", + "es_DO": "स्पेनिश (ڊومينيڪن جمهوريه)", + "es_EA": "स्पेनिश (سیوٽا ۽ میلیلا)", + "es_EC": "स्पेनिश (ايڪواڊور)", + "es_ES": "स्पेनिश (اسپين)", + "es_GQ": "स्पेनिश (ايڪوٽوريل گائينا)", + "es_GT": "स्पेनिश (گوئٽي مالا)", + "es_HN": "स्पेनिश (هنڊورس)", + "es_IC": "स्पेनिश (ڪينري ٻيٽ)", + "es_MX": "स्पेनिश (ميڪسيڪو)", + "es_NI": "स्पेनिश (نڪراگوا)", + "es_PA": "स्पेनिश (پناما)", + "es_PE": "स्पेनिश (پيرو)", + "es_PH": "स्पेनिश (فلپائن)", + "es_PR": "स्पेनिश (پيوئرٽو ريڪو)", + "es_PY": "स्पेनिश (پيراگوءِ)", + "es_SV": "स्पेनिश (ال سلواڊور)", + "es_US": "स्पेनिश (अमेरिका)", + "es_UY": "स्पेनिश (يوروگوءِ)", + "es_VE": "स्पेनिश (وينزيلا)", + "ff_Latn": "فلاهه (लैटिन)", + "ff_Latn_BF": "فلاهه (लैटिन, برڪينا فاسو)", + "ff_Latn_CM": "فلاهه (लैटिन, ڪيمرون)", + "ff_Latn_GH": "فلاهه (लैटिन, گهانا)", + "ff_Latn_GM": "فلاهه (लैटिन, گيمبيا)", + "ff_Latn_GN": "فلاهه (लैटिन, گني)", + "ff_Latn_GW": "فلاهه (लैटिन, گني بسائو)", + "ff_Latn_LR": "فلاهه (लैटिन, لائبیریا)", + "ff_Latn_MR": "فلاهه (लैटिन, موريتانيا)", + "ff_Latn_NE": "فلاهه (लैटिन, نائيجر)", + "ff_Latn_NG": "فلاهه (लैटिन, نائيجيريا)", + "ff_Latn_SL": "فلاهه (लैटिन, سيرا ليون)", + "ff_Latn_SN": "فلاهه (लैटिन, سينيگال)", + "fr": "फ़्रांस जी ॿोली", + "fr_BE": "फ़्रांस जी ॿोली (بيلجيم)", + "fr_BF": "फ़्रांस जी ॿोली (برڪينا فاسو)", + "fr_BI": "फ़्रांस जी ॿोली (برونڊي)", + "fr_BJ": "फ़्रांस जी ॿोली (بينن)", + "fr_BL": "फ़्रांस जी ॿोली (سینٽ برٿلیمی)", + "fr_CA": "फ़्रांस जी ॿोली (ڪئناڊا)", + "fr_CD": "फ़्रांस जी ॿोली (ڪانگو -ڪنشاسا)", + "fr_CF": "फ़्रांस जी ॿोली (وچ آفريقي جمهوريه)", + "fr_CG": "फ़्रांस जी ॿोली (ڪانگو - برازاویل)", + "fr_CH": "फ़्रांस जी ॿोली (سوئزرلينڊ)", + "fr_CI": "फ़्रांस जी ॿोली (آئيوري ڪنارو)", + "fr_CM": "फ़्रांस जी ॿोली (ڪيمرون)", + "fr_DJ": "फ़्रांस जी ॿोली (ڊجبيوتي)", + "fr_DZ": "फ़्रांस जी ॿोली (الجيريا)", + "fr_FR": "फ़्रांस जी ॿोली (फ़्रांस)", + "fr_GA": "फ़्रांस जी ॿोली (گبون)", + "fr_GF": "फ़्रांस जी ॿोली (فرانسيسي گيانا)", + "fr_GN": "फ़्रांस जी ॿोली (گني)", + "fr_GP": "फ़्रांस जी ॿोली (گواڊیلوپ)", + "fr_GQ": "फ़्रांस जी ॿोली (ايڪوٽوريل گائينا)", + "fr_HT": "फ़्रांस जी ॿोली (هيٽي)", + "fr_KM": "फ़्रांस जी ॿोली (ڪوموروس)", + "fr_LU": "फ़्रांस जी ॿोली (لیگزمبرگ)", + "fr_MA": "फ़्रांस जी ॿोली (موروڪو)", + "fr_MC": "फ़्रांस जी ॿोली (موناڪو)", + "fr_MF": "फ़्रांस जी ॿोली (سينٽ مارٽن)", + "fr_MG": "फ़्रांस जी ॿोली (مداگيسڪر)", + "fr_ML": "फ़्रांस जी ॿोली (مالي)", + "fr_MQ": "फ़्रांस जी ॿोली (مارتينڪ)", + "fr_MR": "फ़्रांस जी ॿोली (موريتانيا)", + "fr_MU": "फ़्रांस जी ॿोली (موريشس)", + "fr_NC": "फ़्रांस जी ॿोली (نیو ڪالیڊونیا)", + "fr_NE": "फ़्रांस जी ॿोली (نائيجر)", + "fr_PF": "फ़्रांस जी ॿोली (فرانسيسي پولينيشيا)", + "fr_PM": "फ़्रांस जी ॿोली (سینٽ پیئر و میڪوئیلون)", + "fr_RE": "फ़्रांस जी ॿोली (ري يونين)", + "fr_RW": "फ़्रांस जी ॿोली (روانڊا)", + "fr_SC": "फ़्रांस जी ॿोली (شي شلز)", + "fr_SN": "फ़्रांस जी ॿोली (سينيگال)", + "fr_SY": "फ़्रांस जी ॿोली (شام)", + "fr_TD": "फ़्रांस जी ॿोली (چاڊ)", + "fr_TG": "फ़्रांस जी ॿोली (توگو)", + "fr_TN": "फ़्रांस जी ॿोली (تيونيسيا)", + "fr_VU": "फ़्रांस जी ॿोली (وينيٽيو)", + "fr_WF": "फ़्रांस जी ॿोली (والس ۽ فتونا)", + "fr_YT": "फ़्रांस जी ॿोली (مياتي)", + "ga_GB": "آئرش (यूनाइटेड किंगडम)", + "gd_GB": "اسڪاٽش گيلڪ (यूनाइटेड किंगडम)", + "gu_IN": "گجراتي (भारत)", + "hi_IN": "هندي (भारत)", + "ii_CN": "سچوان يي (चाइना)", + "it": "इटालियनु", + "it_CH": "इटालियनु (سوئزرلينڊ)", + "it_IT": "इटालियनु (इटली)", + "it_SM": "इटालियनु (سین مرینو)", + "it_VA": "इटालियनु (ويٽڪين سٽي)", + "ja": "जापानीज़", + "ja_JP": "जापानीज़ (जापान)", + "kn_IN": "ڪناڊا (भारत)", + "ks_Arab": "ڪشميري (अरेबिक)", + "ks_Arab_IN": "ڪشميري (अरेबिक, भारत)", + "ks_IN": "ڪشميري (भारत)", + "kw_GB": "ڪورنش (यूनाइटेड किंगडम)", + "ml_IN": "مليالم (भारत)", + "mr_IN": "مراٺي (भारत)", + "ne_IN": "نيپالي (भारत)", + "or_IN": "اوڊيا (भारत)", + "os_RU": "اوسيٽڪ (रशिया)", + "pa_Arab": "پنجابي (अरेबिक)", + "pa_Arab_PK": "پنجابي (अरेबिक, پاڪستان)", + "pa_Guru_IN": "پنجابي (گرمکي, भारत)", + "pa_IN": "پنجابي (भारत)", + "pt": "पुर्तगीज़", + "pt_AO": "पुर्तगीज़ (انگولا)", + "pt_BR": "पुर्तगीज़ (ब्राजील)", + "pt_CH": "पुर्तगीज़ (سوئزرلينڊ)", + "pt_CV": "पुर्तगीज़ (ڪيپ وردي)", + "pt_GQ": "पुर्तगीज़ (ايڪوٽوريل گائينا)", + "pt_GW": "पुर्तगीज़ (گني بسائو)", + "pt_LU": "पुर्तगीज़ (لیگزمبرگ)", + "pt_MO": "पुर्तगीज़ (مڪائو SAR چين)", + "pt_MZ": "पुर्तगीज़ (موزمبیق)", + "pt_PT": "पुर्तगीज़ (پرتگال)", + "pt_ST": "पुर्तगीज़ (سائو ٽوم ۽ پرنسپیي)", + "pt_TL": "पुर्तगीज़ (تيمور ليستي)", + "ru": "रशियनु", + "ru_BY": "रशियनु (بیلارس)", + "ru_KG": "रशियनु (ڪرغستان)", + "ru_KZ": "रशियनु (قازقستان)", + "ru_MD": "रशियनु (مالدووا)", + "ru_RU": "रशियनु (रशिया)", + "ru_UA": "रशियनु (يوڪرين)", + "sd": "सिन्धी", + "sd_Arab": "सिन्धी (अरेबिक)", + "sd_Arab_PK": "सिन्धी (अरेबिक, پاڪستان)", + "sd_Deva": "सिन्धी (देवनागिरी)", + "sd_Deva_IN": "सिन्धी (देवनागिरी, भारत)", + "sd_PK": "सिन्धी (پاڪستان)", + "sr_Cyrl": "سربيائي (सिरिलिक)", + "sr_Cyrl_BA": "سربيائي (सिरिलिक, بوسنیا اور هرزیگوینا)", + "sr_Cyrl_ME": "سربيائي (सिरिलिक, مونٽي نيگرو)", + "sr_Cyrl_RS": "سربيائي (सिरिलिक, سربيا)", + "sr_Cyrl_XK": "سربيائي (सिरिलिक, ڪوسووو)", + "sr_Latn": "سربيائي (लैटिन)", + "sr_Latn_BA": "سربيائي (लैटिन, بوسنیا اور هرزیگوینا)", + "sr_Latn_ME": "سربيائي (लैटिन, مونٽي نيگرو)", + "sr_Latn_RS": "سربيائي (लैटिन, سربيا)", + "sr_Latn_XK": "سربيائي (लैटिन, ڪوسووو)", + "su_Latn": "سوڊاني (लैटिन)", + "su_Latn_ID": "سوڊاني (लैटिन, انڊونيشيا)", + "ta_IN": "تامل (भारत)", + "te_IN": "تلگو (भारत)", + "tt_RU": "تاتري (रशिया)", + "ug_CN": "يوغور (चाइना)", + "ur_IN": "اردو (भारत)", + "uz_Arab": "ازبڪ (अरेबिक)", + "uz_Arab_AF": "ازبڪ (अरेबिक, افغانستان)", + "uz_Cyrl": "ازبڪ (सिरिलिक)", + "uz_Cyrl_UZ": "ازبڪ (सिरिलिक, ازبڪستان)", + "uz_Latn": "ازبڪ (लैटिन)", + "uz_Latn_UZ": "ازبڪ (लैटिन, ازبڪستان)", + "zh": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ", + "zh_CN": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (चाइना)", + "zh_HK": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (هانگ ڪانگ)", + "zh_Hans": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (सवलो थियण[लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे)", + "zh_Hans_CN": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (सवलो थियण[लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे, चाइना)", + "zh_Hans_HK": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (सवलो थियण[लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे, هانگ ڪانگ)", + "zh_Hans_MO": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (सवलो थियण[लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे, مڪائو SAR چين)", + "zh_Hans_SG": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (सवलो थियण[लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे, سينگاپور)", + "zh_Hant": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (रवायती [लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे ])", + "zh_Hant_HK": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (रवायती [लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे ], هانگ ڪانگ)", + "zh_Hant_MO": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (रवायती [लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे ], مڪائو SAR چين)", + "zh_Hant_TW": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (रवायती [लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे ], تائیوان)", + "zh_MO": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (مڪائو SAR چين)", + "zh_SG": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (سينگاپور)", + "zh_TW": "चीनी[लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ (تائیوان)" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sg.json b/src/Symfony/Component/Intl/Resources/data/locales/sg.json index e85ac4c00b..7edb9816ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sg.json @@ -245,6 +245,7 @@ "ko_KR": "Koreyëen (Korëe tî Mbongo)", "ms": "Malëe", "ms_BN": "Malëe (Brunêi)", + "ms_ID": "Malëe (Ênndonezïi)", "ms_MY": "Malëe (Malezïi)", "ms_SG": "Malëe (Sïngäpûru)", "my": "Miamära, Birimäni", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sn.json b/src/Symfony/Component/Intl/Resources/data/locales/sn.json index 1995f988e2..5ba752a617 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sn.json @@ -244,6 +244,7 @@ "ko_KR": "chiKoria (Korea, South)", "ms": "chiMalay", "ms_BN": "chiMalay (Burunei)", + "ms_ID": "chiMalay (Indonesia)", "ms_MY": "chiMalay (Malaysia)", "ms_SG": "chiMalay (Singapore)", "my": "chiBurma", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/su.json b/src/Symfony/Component/Intl/Resources/data/locales/su.json new file mode 100644 index 0000000000..e8ee0efb8e --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/locales/su.json @@ -0,0 +1,32 @@ +{ + "Names": { + "de": "Jérman", + "de_DE": "Jérman (Jérman)", + "de_IT": "Jérman (Italia)", + "en": "Inggris", + "en_DE": "Inggris (Jérman)", + "en_GB": "Inggris (Inggris Raya)", + "en_IN": "Inggris (India)", + "en_US": "Inggris (Amérika Sarikat)", + "es": "Spanyol", + "es_BR": "Spanyol (Brasil)", + "es_US": "Spanyol (Amérika Sarikat)", + "fr": "Prancis", + "fr_FR": "Prancis (Prancis)", + "it": "Italia", + "it_IT": "Italia (Italia)", + "ja": "Jepang", + "ja_JP": "Jepang (Jepang)", + "pt": "Portugis", + "pt_BR": "Portugis (Brasil)", + "ru": "Rusia", + "ru_RU": "Rusia (Rusia)", + "su": "Basa Sunda", + "su_Latn": "Basa Sunda (Latin)", + "zh": "Tiongkok", + "zh_CN": "Tiongkok (Tiongkok)", + "zh_Hans": "Tiongkok (Sederhana)", + "zh_Hans_CN": "Tiongkok (Sederhana, Tiongkok)", + "zh_Hant": "Tiongkok (Tradisional)" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tg.json b/src/Symfony/Component/Intl/Resources/data/locales/tg.json index 93b8c840b9..af69a46dc5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tg.json @@ -337,6 +337,8 @@ "ko": "кореягӣ", "ko_KP": "кореягӣ (Кореяи Шимолӣ)", "ks": "кашмирӣ", + "ks_Arab": "кашмирӣ (Арабӣ)", + "ks_Arab_IN": "кашмирӣ (Арабӣ, Ҳиндустон)", "ks_IN": "кашмирӣ (Ҳиндустон)", "ku": "курдӣ", "ku_TR": "курдӣ (Туркия)", @@ -364,6 +366,7 @@ "mr_IN": "маратҳӣ (Ҳиндустон)", "ms": "малайӣ", "ms_BN": "малайӣ (Бруней)", + "ms_ID": "малайӣ (Индонезия)", "ms_MY": "малайӣ (Малайзия)", "ms_SG": "малайӣ (Сингапур)", "mt": "малтӣ", @@ -429,6 +432,8 @@ "rw": "киняруанда", "rw_RW": "киняруанда (Руанда)", "sd": "синдӣ", + "sd_Arab": "синдӣ (Арабӣ)", + "sd_Arab_PK": "синдӣ (Арабӣ, Покистон)", "sd_PK": "синдӣ (Покистон)", "se": "самии шимолӣ", "se_FI": "самии шимолӣ (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tt.json b/src/Symfony/Component/Intl/Resources/data/locales/tt.json index 12e90de278..ae05aaab38 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tt.json @@ -333,6 +333,8 @@ "ko": "корея", "ko_KP": "корея (Төньяк Корея)", "ks": "кашмири", + "ks_Arab": "кашмири (гарәп)", + "ks_Arab_IN": "кашмири (гарәп, Индия)", "ks_IN": "кашмири (Индия)", "ku": "көрд", "ku_TR": "көрд (Төркия)", @@ -360,6 +362,7 @@ "mr_IN": "маратхи (Индия)", "ms": "малай", "ms_BN": "малай (Бруней)", + "ms_ID": "малай (Индонезия)", "ms_MY": "малай (Малайзия)", "ms_SG": "малай (Сингапур)", "mt": "мальта", @@ -422,6 +425,8 @@ "rw": "руанда", "rw_RW": "руанда (Руанда)", "sd": "синдһи", + "sd_Arab": "синдһи (гарәп)", + "sd_Arab_PK": "синдһи (гарәп, Пакистан)", "sd_PK": "синдһи (Пакистан)", "se": "төньяк саам", "se_FI": "төньяк саам (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/locales/uz_Arab.json index 54bede996f..6684bbd7f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Arab.json @@ -3,11 +3,15 @@ "fa": "دری", "fa_AF": "دری (افغانستان)", "fa_IR": "دری (Eron)", + "ks_Arab": "kashmircha (عربی)", + "ks_Arab_IN": "kashmircha (عربی, Hindiston)", "pa_Arab": "panjobcha (عربی)", "pa_Arab_PK": "panjobcha (عربی, Pokiston)", "ps": "پشتو", "ps_AF": "پشتو (افغانستان)", "ps_PK": "پشتو (Pokiston)", + "sd_Arab": "sindhi (عربی)", + "sd_Arab_PK": "sindhi (عربی, Pokiston)", "uz": "اوزبیک", "uz_AF": "اوزبیک (افغانستان)", "uz_Arab": "اوزبیک (عربی)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/wo.json b/src/Symfony/Component/Intl/Resources/data/locales/wo.json index 3fc67e3ce4..d99936d3c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/wo.json @@ -333,6 +333,8 @@ "ko": "Koreye", "ko_KP": "Koreye (Kore Noor)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (Araab)", + "ks_Arab_IN": "Kashmiri (Araab, End)", "ks_IN": "Kashmiri (End)", "ku": "Kurdi", "ku_TR": "Kurdi (Tirki)", @@ -360,6 +362,7 @@ "mr_IN": "Marati (End)", "ms": "Malay", "ms_BN": "Malay (Burney)", + "ms_ID": "Malay (Indonesi)", "ms_MY": "Malay (Malesi)", "ms_SG": "Malay (Singapuur)", "mt": "Malt", @@ -424,6 +427,8 @@ "rw": "Kinyarwànda", "rw_RW": "Kinyarwànda (Ruwànda)", "sd": "Sindi", + "sd_Arab": "Sindi (Araab)", + "sd_Arab_PK": "Sindi (Araab, Pakistaŋ)", "sd_PK": "Sindi (Pakistaŋ)", "se": "Penku Sami", "se_FI": "Penku Sami (Finlànd)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yi.json b/src/Symfony/Component/Intl/Resources/data/locales/yi.json index 0eade72386..6a4569977b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -344,6 +344,10 @@ "ru_RU": "רוסיש (רוסלאַנד)", "ru_UA": "רוסיש (אוקראַינע)", "sd": "סינדהי", + "sd_Arab": "סינדהי (אַראַביש)", + "sd_Arab_PK": "סינדהי (אַראַביש, פּאַקיסטאַן)", + "sd_Deva": "סינדהי (דעוואַנאַגאַרי)", + "sd_Deva_IN": "סינדהי (דעוואַנאַגאַרי, אינדיע)", "sd_PK": "סינדהי (פּאַקיסטאַן)", "se": "נארדסאַמיש", "se_FI": "נארדסאַמיש (פֿינלאַנד)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json index 280ad8cd18..476839d45b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json @@ -89,6 +89,15 @@ "es_EC": "西班牙文(厄瓜多爾)", "es_GT": "西班牙文(危地馬拉)", "es_HN": "西班牙文(洪都拉斯)", + "ff_Adlm_BF": "富拉文(富拉文,布基納法索)", + "ff_Adlm_GH": "富拉文(富拉文,加納)", + "ff_Adlm_GM": "富拉文(富拉文,岡比亞)", + "ff_Adlm_GW": "富拉文(富拉文,幾內亞比紹)", + "ff_Adlm_LR": "富拉文(富拉文,利比里亞)", + "ff_Adlm_MR": "富拉文(富拉文,毛里塔尼亞)", + "ff_Adlm_NE": "富拉文(富拉文,尼日爾)", + "ff_Adlm_NG": "富拉文(富拉文,尼日利亞)", + "ff_Adlm_SL": "富拉文(富拉文,塞拉利昂)", "ff_Latn": "富拉文(拉丁字母)", "ff_Latn_BF": "富拉文(拉丁字母,布基納法索)", "ff_Latn_CM": "富拉文(拉丁字母,喀麥隆)", @@ -189,6 +198,8 @@ "sr_Latn_ME": "塞爾維亞文(拉丁字母,黑山)", "sr_Latn_RS": "塞爾維亞文(拉丁字母,塞爾維亞)", "sr_ME": "塞爾維亞文(黑山)", + "su_Latn": "巽他文(拉丁字母)", + "su_Latn_ID": "巽他文(拉丁字母,印尼)", "sw_KE": "史瓦希里文(肯尼亞)", "sw_TZ": "史瓦希里文(坦桑尼亞)", "ta": "泰米爾文", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index 80fb1cb4c5..0a3146c0e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/af.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/af.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Verenigde Arabiese Emirate", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index a1aacb3080..181378fb8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ak.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/am.json b/src/Symfony/Component/Intl/Resources/data/regions/am.json index 8be29674ae..21bc845f5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/am.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/am.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "አንዶራ", "AE": "የተባበሩት ዓረብ ኤምሬትስ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index 37727ed510..30f24a03cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "أندورا", "AE": "الإمارات العربية المتحدة", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json b/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json index ee51cb6af0..0178661e38 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MS": "مونتيسيرات", "UY": "أوروغواي" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json index 248f74cfe1..2d4723f5fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MO": "ماكاو الصينية (منطقة إدارية خاصة)", "MS": "مونتيسيرات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index 5b44f50ba1..6afb06f52e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/as.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/as.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "আন্দোৰা", "AE": "সংযুক্ত আৰব আমিৰাত", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index d84e8f5411..5d1a1727f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/az.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/az.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Birləşmiş Ərəb Əmirlikləri", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json index da45fdc40d..82bf05d4da 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Бирләшмиш Әрәб Әмирликләри", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index c5b6de9c22..f2adb17e0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/be.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/be.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андора", "AE": "Аб’яднаныя Арабскія Эміраты", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index 0d112a1738..30e9d33750 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андора", "AE": "Обединени арабски емирства", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index f6b06d0e08..0028fe5856 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andɔr", "AE": "Arabu mara kafoli", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn.json b/src/Symfony/Component/Intl/Resources/data/regions/bn.json index daaf35b167..e0e1627a00 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "আন্ডোরা", "AE": "সংযুক্ত আরব আমিরাত", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json index c3f8efe974..0dd956bc98 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "UM": "মার্কিন যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo.json b/src/Symfony/Component/Intl/Resources/data/regions/bo.json index 54830071fb..a7db7ce43b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CN": "རྒྱ་ནག", "DE": "འཇར་མན་", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json index 98588d8002..270749c259 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json @@ -1,4 +1,3 @@ { - "Version": "36.1", "Names": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 44bdb40741..de0c8539ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/br.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/br.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirelezhioù Arab Unanet", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 221c1a756f..299d6751d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Ujedinjeni Arapski Emirati", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json index a41cbd23e5..49737045df 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андора", "AE": "Уједињени Арапски Емирати", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ca.json b/src/Symfony/Component/Intl/Resources/data/regions/ca.json index 139c894e90..993b2d1a39 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ca.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirats Àrabs Units", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index ead7d65948..12b187b98b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ce.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Ӏарбийн Цхьанатоьхна Эмираташ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index e7a98fba4f..cbd11e9ea8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Spojené arabské emiráty", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cy.json b/src/Symfony/Component/Intl/Resources/data/regions/cy.json index eb197d1676..6321caa781 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiradau Arabaidd Unedig", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index d8380a496c..20201dd03f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/da.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/da.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "De Forenede Arabiske Emirater", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index 92b65ebb43..ddffba4e84 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Vereinigte Arabische Emirate", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json b/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json index 6330c51857..7e275cddfe 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "SJ": "Svalbard und Jan Mayen" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json b/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json index 3c7daab639..98fb65cda7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BN": "Brunei", "BW": "Botswana", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/dz.json b/src/Symfony/Component/Intl/Resources/data/regions/dz.json index c289ce8ed8..202eff0f21 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/dz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ཨཱན་དོ་ར", "AE": "ཡུ་ནཱའི་ཊེཌ་ ཨ་རབ་ ཨེ་མེ་རེཊས", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index da9e588dd9..df0905fd8a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ee.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra nutome", "AE": "United Arab Emirates nutome", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/el.json b/src/Symfony/Component/Intl/Resources/data/regions/el.json index 7dc8a8e964..99d23f520e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/el.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/el.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Ανδόρα", "AE": "Ηνωμένα Αραβικά Εμιράτα", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index 4a73a48e61..3bf85e1de3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_001.json b/src/Symfony/Component/Intl/Resources/data/regions/en_001.json index 6bc6012632..1c068efea4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en_001.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BL": "St Barthélemy", "KN": "St Kitts & Nevis", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json b/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json index eff29f21f7..46844787b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BL": "St. Barthélemy", "KN": "St. Kitts & Nevis", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index e7c60c28a4..f8fc444da1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andoro", "AE": "Unuiĝintaj Arabaj Emirlandoj", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es.json b/src/Symfony/Component/Intl/Resources/data/regions/es.json index f4063b168f..ee6d03d813 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiratos Árabes Unidos", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json index 6d54daa7d6..3ebadbfc0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia-Herzegovina", "CG": "República del Congo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json index ffa8b9d7e2..84571622a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "EH": "Sahara Occidental", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json index 4b3f7aa46e..9bc367617c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "CI": "Côte d’Ivoire", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json index 9da9e4c46f..5479cc4ba8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "UM": "Islas menores alejadas de EE. UU." } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json index 9da9e4c46f..5479cc4ba8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "UM": "Islas menores alejadas de EE. UU." } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json index fe74142996..581fe05a02 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "CI": "Côte d’Ivoire", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json index b6dc8420a0..4bb0cb7ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia y Herzegovina", "UM": "Islas menores alejadas de EE. UU." diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index 35f230d211..eddc25b136 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/et.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/et.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Araabia Ühendemiraadid", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eu.json b/src/Symfony/Component/Intl/Resources/data/regions/eu.json index f51fab4b1d..6dd2250e7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Arabiar Emirerri Batuak", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index 20c6da348a..6959159250 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "آندورا", "AE": "امارات متحدهٔ عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json index 697edfffe2..864967000c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "اندورا", "AG": "انتیگوا و باربودا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ff.json b/src/Symfony/Component/Intl/Resources/data/regions/ff.json index 68bd9c40dd..4b95dbe672 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ff.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Anndoora", "AE": "Emiraat Araab Denntuɗe", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json new file mode 100644 index 0000000000..6b0a5f48ec --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json @@ -0,0 +1,73 @@ +{ + "Names": { + "AO": "𞤀𞤲𞤺𞤮𞤤𞤢𞥄", + "BF": "𞤄𞤵𞤪𞤳𞤭𞤲𞤢 𞤊𞤢𞤧𞤮𞥅", + "BI": "𞤄𞤵𞤪𞤵𞤲𞤣𞤭", + "BJ": "𞤄𞤫𞤲𞤫𞤲", + "BW": "‮𞤄𞤮𞤼𞤧𞤵𞤱𞤢𞥄𞤲𞤢", + "CA": "𞤑𞤢𞤲𞤢𞤣𞤢𞥄", + "CD": "𞤑𞤮𞤲𞤺𞤮 - 𞤑𞤭𞤲𞤧𞤢𞤧𞤢", + "CF": "𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭", + "CG": "𞤑𞤮𞤲𞤺𞤮 - 𞤄𞤪𞤢𞥁𞤢𞤾𞤭𞤤", + "CI": "𞤑𞤮𞤼𞤣𞤭𞤾𞤢𞥄𞤪", + "CM": "𞤑𞤢𞤥𞤢𞤪𞤵𞥅𞤲", + "CV": "𞤑𞤢𞥄𞤦𞤮 𞤜𞤫𞤪𞤣𞤫", + "DJ": "𞤔𞤭𞤦𞤵𞥅𞤼𞤭", + "DZ": "𞤀𞤤𞤶𞤢𞤪𞤭𞥅", + "EA": "𞤅𞤭𞤼𞥆𞤢 & 𞤃𞤫𞤤𞤭𞤤𞤢", + "EG": "𞤃𞤭𞤧𞤭𞤪𞤢", + "EH": "𞤅𞤢𞥄𞤸𞤢𞤪𞤢 𞤖𞤭𞥅𞤲𞤢𞥄𞤪𞤭", + "ER": "𞤉𞤪𞤭𞥅𞤼𞤫𞤪𞤫", + "ES": "𞤋𞤧𞤨𞤢𞤲𞤭𞤴𞤢", + "ET": "𞤀𞤦𞤢𞤧𞤭𞤲𞤭𞥅", + "FR": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭", + "GA": "𞤘𞤢𞤦𞤮𞤲", + "GG": "𞤘𞤢𞤴𞤪𞤢𞤲𞤧𞤭𞥅", + "GH": "𞤘𞤢𞤲𞤢", + "GI": "𞤔𞤭𞤦𞤪𞤢𞤤𞤼𞤢𞥄", + "GM": "𞤘𞤢𞤥𞤦𞤭𞤴𞤢", + "GN": "𞤘𞤭𞤲𞤫", + "GQ": "𞤘𞤭𞤲𞤫 𞤕𞤢𞤳𞤢𞤲𞤼𞤫𞥅𞤪𞤭", + "GW": "𞤘𞤭𞤲𞤫-𞤄𞤭𞤧𞤢𞤱𞤮𞥅", + "IC": "𞤅𞤵𞤪𞤭𞥅𞤪𞤫-𞤑𞤢𞤲𞤢𞤪𞤭𞥅", + "IO": "𞤚𞤵𞤥𞤦𞤫𞤪𞤫 𞤄𞤪𞤭𞤼𞤢𞤲𞤭𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭", + "KE": "𞤑𞤫𞤲𞤭𞤴𞤢𞥄", + "KM": "𞤑𞤮𞤥𞤮𞥅𞤪𞤮", + "LR": "𞤂𞤢𞤦𞤭𞤪𞤭𞤴𞤢𞥄", + "LS": "𞤂𞤫𞤧𞤮𞤼𞤮𞥅", + "LY": "𞤂𞤭𞤦𞤭𞤴𞤢𞥄", + "MA": "𞤃𞤢𞤪𞤮𞥅𞤳", + "MC": "𞤃𞤮𞤲𞤢𞤳𞤮𞥅", + "MG": "𞤃𞤢𞤣𞤢𞤺𞤢𞤧𞤳𞤢𞥄𞤪", + "ML": "𞤃𞤢𞥄𞤤𞤭", + "MR": "𞤃𞤮𞤪𞤼𞤢𞤲𞤭𞥅", + "MU": "𞤃𞤮𞤪𞤭𞥅𞤧𞤭", + "MW": "𞤃𞤢𞤤𞤢𞤱𞤭𞥅", + "MZ": "𞤃𞤮𞤧𞤢𞤥𞤦𞤭𞥅𞤳", + "NA": "𞤐𞤢𞤥𞤭𞥅𞤦𞤭𞤴𞤢𞥄", + "NE": "𞤐𞤭𞥅𞤶𞤫𞤪", + "NG": "𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄", + "PL": "𞤆𞤮𞤤𞤢𞤲𞤣", + "RE": "𞤈𞤫𞥅𞤲𞤭𞤴𞤮𞤲", + "RW": "𞤈𞤵𞤱𞤢𞤲𞤣𞤢𞥄", + "SC": "𞤅𞤫𞤴𞤭𞤧𞤫𞤤", + "SD": "𞤅𞤵𞤣𞤢𞥄𞤲", + "SH": "𞤅𞤫𞤲-𞤖𞤫𞤤𞤫𞤲𞤢𞥄", + "SL": "𞤅𞤢𞤪𞤢𞤤𞤮𞤲", + "SN": "𞤅𞤫𞤲𞤫𞤺𞤢𞥄𞤤", + "SO": "𞤅𞤵𞥅𞤥𞤢𞥄𞤤𞤭", + "SS": "𞤅𞤵𞤣𞤢𞥄𞤲 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭", + "ST": "𞤅𞤢𞤱𞤵 𞤚𞤵𞤥𞤫𞥅 & 𞤆𞤫𞤪𞤫𞤲𞤧𞤭𞤨𞤫", + "SZ": "𞤉𞤧𞤱𞤢𞤼𞤭𞤲𞤭", + "TD": "𞤕𞤢𞥄𞤣", + "TF": "𞤚𞤵𞤥𞤦𞤫 𞤂𞤫𞤧𞤤𞤫𞤴𞤶𞤫 𞤊𞤪𞤢𞤲𞤧𞤭", + "TG": "𞤚𞤮𞤺𞤮", + "TN": "𞤚𞤵𞤲𞤭𞥅𞤧𞤢", + "TZ": "𞤚𞤢𞤲𞤧𞤢𞤲𞤭𞥅", + "UG": "𞤓𞤺𞤢𞤲𞤣𞤢𞥄", + "YT": "𞤃𞤢𞤴𞤮𞥅𞤼𞤵", + "ZA": "𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭", + "ZM": "𞤟𞤢𞤥𞤦𞤭𞤴𞤢", + "ZW": "𞤟𞤭𞤥𞤦𞤢𞥄𞤥𞤵𞤴𞤢" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fi.json b/src/Symfony/Component/Intl/Resources/data/regions/fi.json index 9b3b433839..240ca25542 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Arabiemiirikunnat", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index a7ba14e482..0d544195c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Sameindu Emirríkini", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index c832602bd3..ef5fad6f7a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorre", "AE": "Émirats arabes unis", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json b/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json index 2790802091..cf740a41e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BN": "Brunei", "GS": "Îles Géorgie du Sud et Sandwich du Sud" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json index b1630a0239..1c6f6aed65 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AX": "îles d’Åland", "BN": "Brunei", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fy.json b/src/Symfony/Component/Intl/Resources/data/regions/fy.json index 39533511e8..c4116a7bb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Verenigde Arabyske Emiraten", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ga.json b/src/Symfony/Component/Intl/Resources/data/regions/ga.json index 567e1be1e8..a296356bf1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ga.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andóra", "AE": "Aontas na nÉimíríochtaí Arabacha", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gd.json b/src/Symfony/Component/Intl/Resources/data/regions/gd.json index fe22429f22..6c075726c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Na h-Iomaratan Arabach Aonaichte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index a5abcdf9cc..c1fb7694bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Os Emiratos Árabes Unidos", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index e8799fd2a0..62a4bae180 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ઍંડોરા", "AE": "યુનાઇટેડ આરબ અમીરાત", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index 8fa5295acf..0d251032ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GB": "Rywvaneth Unys", "IM": "Ellan Vannin" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ha.json b/src/Symfony/Component/Intl/Resources/data/regions/ha.json index 9c4d4a8743..0db4f33b83 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ha.json @@ -1,6 +1,6 @@ { - "Version": "36.1", "Names": { + "AC": "Tsibirin Ascension", "AD": "Andora", "AE": "Haɗaɗɗiyar Daular Larabawa", "AF": "Afaganistan", @@ -15,6 +15,7 @@ "AT": "Ostiriya", "AU": "Ostareliya", "AW": "Aruba", + "AX": "Tsibirai na Åland", "AZ": "Azarbaijan", "BA": "Bosniya Harzagobina", "BB": "Barbadas", @@ -56,14 +57,17 @@ "CY": "Sifurus", "CZ": "Jamhuriyar Cak", "DE": "Jamus", + "DG": "Tsibirn Diego Garcia", "DJ": "Jibuti", "DK": "Danmark", "DM": "Dominika", "DO": "Jamhuriyar Dominika", "DZ": "Aljeriya", + "EA": "Ceuta & Melilla", "EC": "Ekwador", "EE": "Estoniya", "EG": "Misira", + "EH": "Yammacin Sahara", "ER": "Eritireya", "ES": "Sipen", "ET": "Habasha", @@ -71,12 +75,14 @@ "FJ": "Fiji", "FK": "Tsibiran Falkilan", "FM": "Mikuronesiya", + "FO": "Tsibirai na Faroe", "FR": "Faransa", "GA": "Gabon", "GB": "Biritaniya", "GD": "Girnada", "GE": "Jiwarjiya", "GF": "Gini Ta Faransa", + "GG": "Yankin Guernsey", "GH": "Gana", "GI": "Jibaraltar", "GL": "Grinlan", @@ -85,23 +91,28 @@ "GP": "Gwadaluf", "GQ": "Gini Ta Ikwaita", "GR": "Girka", + "GS": "Kudancin Geogia da Kudancin Tsibirin Sandiwic", "GT": "Gwatamala", "GU": "Gwam", "GW": "Gini Bisau", "GY": "Guyana", + "HK": "Hong Kong Babban Birnin Kasar Chana", "HN": "Honduras", "HR": "Kurowaishiya", "HT": "Haiti", "HU": "Hungari", + "IC": "Canary Islands", "ID": "Indunusiya", "IE": "Ayalan", "IL": "Iziraʼila", + "IM": "Isle na Mutum", "IN": "Indiya", "IO": "Yankin Birtaniya Na Tekun Indiya", "IQ": "Iraƙi", "IR": "Iran", "IS": "Aisalan", "IT": "Italiya", + "JE": "Kasar Jersey", "JM": "Jamaika", "JO": "Jordan", "JP": "Jàpân", @@ -138,6 +149,7 @@ "ML": "Mali", "MM": "Burma, Miyamar", "MN": "Mangoliya", + "MO": "Babban Birnin Mulki na Chana", "MP": "Tsibiran Mariyana Na Arewa", "MQ": "Martinik", "MR": "Moritaniya", @@ -190,6 +202,7 @@ "SG": "Singapur", "SH": "San Helena", "SI": "Sulobeniya", + "SJ": "Svalbard da Jan Mayen", "SK": "Sulobakiya", "SL": "Salewo", "SM": "San Marino", @@ -220,6 +233,7 @@ "TZ": "Tanzaniya", "UA": "Yukaran", "UG": "Yuganda", + "UM": "Rukunin Tsibirin U.S", "US": "Amurka", "UY": "Yurigwai", "UZ": "Uzubekistan", @@ -232,6 +246,9 @@ "VU": "Banuwatu", "WF": "Walis Da Futuna", "WS": "Samoa", + "XA": "Gogewar Kwalwa", + "XB": "Gano wani abu ta hanyar amfani da fasaha", + "XK": "Kasar Kosovo", "YE": "Yamal", "YT": "Mayoti", "ZA": "Afirka Ta Kudu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/he.json b/src/Symfony/Component/Intl/Resources/data/regions/he.json index 8f1be781a2..4c804b37dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/he.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/he.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "אנדורה", "AE": "איחוד האמירויות הערביות", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index ceb1790056..5e72deddcc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "एंडोरा", "AE": "संयुक्त अरब अमीरात", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index 152a4af7a6..4628547d3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Ujedinjeni Arapski Emirati", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index a2e4bc6b38..884537fc3e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Egyesült Arab Emírségek", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hy.json b/src/Symfony/Component/Intl/Resources/data/regions/hy.json index 078fca35a6..534d658d50 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Անդորրա", "AE": "Արաբական Միացյալ Էմիրություններ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ia.json b/src/Symfony/Component/Intl/Resources/data/regions/ia.json index 3b0ec546c5..659639fa38 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ia.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiratos Arabe Unite", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/id.json b/src/Symfony/Component/Intl/Resources/data/regions/id.json index 7526d583a5..7f33cd179a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/id.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/id.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Uni Emirat Arab", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index bfc6284f64..6ac3577c5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AG": "Antigua & Barbuda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ii.json b/src/Symfony/Component/Intl/Resources/data/regions/ii.json index e127bd3129..0117144ce7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ii.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BR": "ꀠꑭ", "CN": "ꍏꇩ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/in.json b/src/Symfony/Component/Intl/Resources/data/regions/in.json index 7526d583a5..7f33cd179a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/in.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/in.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Uni Emirat Arab", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index 4ab8e55dff..6fed502c35 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/is.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/is.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Sameinuðu arabísku furstadæmin", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index 9e7a8a0619..e1075514db 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/it.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/it.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirati Arabi Uniti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index 8f1be781a2..4c804b37dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/iw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "אנדורה", "AE": "איחוד האמירויות הערביות", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index 472a6c06bd..284a78a467 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ja.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "アンドラ", "AE": "アラブ首長国連邦", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/jv.json b/src/Symfony/Component/Intl/Resources/data/regions/jv.json index 94e0c2541a..61263737cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/jv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Uni Émirat Arab", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index a9a3664b0f..a36e74ca44 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ka.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ანდორა", "AE": "არაბთა გაერთიანებული საამიროები", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 4721b21eac..3da7764e3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ki.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Falme za Kiarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kk.json b/src/Symfony/Component/Intl/Resources/data/regions/kk.json index 2f20b98096..0cfd452a9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Біріккен Араб Әмірліктері", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kl.json b/src/Symfony/Component/Intl/Resources/data/regions/kl.json index 4ba056cba3..13afcfc18f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GL": "Kalaallit Nunaat" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/km.json b/src/Symfony/Component/Intl/Resources/data/regions/km.json index da13050990..28067be0d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/km.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/km.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "អង់ដូរ៉ា", "AE": "អេមីរ៉ាត​អារ៉ាប់​រួម", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index a8fab17f5b..61c7491639 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ಅಂಡೋರಾ", "AE": "ಯುನೈಟೆಡ್ ಅರಬ್ ಎಮಿರೇಟ್ಸ್", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index 5ca2b39eef..96b0f2c4c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "안도라", "AE": "아랍에미리트", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json b/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json index 4248255f87..300a386086 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "KP": "조선민주주의인민공화국" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ks.json b/src/Symfony/Component/Intl/Resources/data/regions/ks.json index c8fa1154fc..1bee4355c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ks.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "اؠنڑورا", "AE": "مُتحدہ عرَب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ku.json b/src/Symfony/Component/Intl/Resources/data/regions/ku.json index e56b23e170..190de558c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ku.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emîrtiyên Erebî yên Yekbûyî", @@ -128,7 +127,6 @@ "MC": "Monako", "MD": "Moldova", "ME": "Montenegro", - "MF": "MF", "MG": "Madagaskar", "MH": "Giravên Marşal", "MK": "Makedonya", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kw.json b/src/Symfony/Component/Intl/Resources/data/regions/kw.json index 3313ad49e4..0e44c30187 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "GB": "Rywvaneth Unys" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ky.json b/src/Symfony/Component/Intl/Resources/data/regions/ky.json index 219db1c495..663ee2d011 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ky.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Бириккен Араб Эмираттары", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index 19dfafd154..7ec69350d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Vereenegt Arabesch Emirater", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lg.json b/src/Symfony/Component/Intl/Resources/data/regions/lg.json index 1ea6ace3e0..4632723f03 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Emireeti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ln.json b/src/Symfony/Component/Intl/Resources/data/regions/ln.json index e8183cbf3f..ab50f08881 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ln.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorɛ", "AE": "Lɛmila alabo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index d03719d3df..0ce629064a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ອັນດໍຣາ", "AE": "ສະຫະລັດອາຣັບເອມິເຣດ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index 5bcd722357..d9d908daa4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Jungtiniai Arabų Emyratai", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lu.json b/src/Symfony/Component/Intl/Resources/data/regions/lu.json index 5443fad09b..e34e101e2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andore", "AE": "Lemila alabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lv.json b/src/Symfony/Component/Intl/Resources/data/regions/lv.json index b29eeb9a55..12379c80e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Apvienotie Arābu Emirāti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index a7e3bd9ae0..068d057988 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/meta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Regions": [ "AD", "AE", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mg.json b/src/Symfony/Component/Intl/Resources/data/regions/mg.json index 3ffda70e8f..923bc3fedd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirà Arabo mitambatra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mi.json b/src/Symfony/Component/Intl/Resources/data/regions/mi.json index 3996948eb2..9c6d494b69 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BR": "Parahi", "CN": "Haina", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mk.json b/src/Symfony/Component/Intl/Resources/data/regions/mk.json index 5bf2b3da85..9eab889d4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андора", "AE": "Обединети Арапски Емирати", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ml.json b/src/Symfony/Component/Intl/Resources/data/regions/ml.json index dbb623f25c..fbb3d02bb8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ml.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "അൻഡോറ", "AE": "യുണൈറ്റഡ് അറബ് എമിറൈറ്റ്‌സ്", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mn.json b/src/Symfony/Component/Intl/Resources/data/regions/mn.json index fea2c43e04..62e40d78cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Арабын Нэгдсэн Эмирт Улс", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index a852a31b8d..3be2d15156 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiratele Arabe Unite", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index 4d456aafb7..a718ecdd26 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "अँडोरा", "AE": "संयुक्त अरब अमीरात", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index f43a3927bb..0685e6e297 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ms.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiriah Arab Bersatu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mt.json b/src/Symfony/Component/Intl/Resources/data/regions/mt.json index a46f90ef1e..fca49b5b7c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "l-Emirati Għarab Magħquda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/my.json b/src/Symfony/Component/Intl/Resources/data/regions/my.json index 15f024c613..3370a2ac3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/my.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/my.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "အန်ဒိုရာ", "AE": "ယူအေအီး", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index db4d514f1c..ddbf6880fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "De forente arabiske emirater", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index 990cf64568..a76d2fa462 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ne.json b/src/Symfony/Component/Intl/Resources/data/regions/ne.json index 96fae3a66f..9af611419a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ne.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "अन्डोर्रा", "AE": "संयुक्त अरब इमिराट्स", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index 9a78230f28..abd92e29eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Verenigde Arabische Emiraten", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index ca998b2090..e4a7439f01 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Dei sameinte arabiske emirata", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/no.json b/src/Symfony/Component/Intl/Resources/data/regions/no.json index db4d514f1c..ddbf6880fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/no.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/no.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "De forente arabiske emirater", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 13abe3b82b..f92c488ade 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/om.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/om.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BR": "Brazil", "CN": "China", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/or.json b/src/Symfony/Component/Intl/Resources/data/regions/or.json index 2288789bf9..c8ab7f501d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/or.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/or.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ଆଣ୍ଡୋରା", "AE": "ସଂଯୁକ୍ତ ଆରବ ଏମିରେଟସ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index 9cf4834a00..522f861367 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/os.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/os.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BR": "Бразили", "CN": "Китай", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pa.json b/src/Symfony/Component/Intl/Resources/data/regions/pa.json index 5f6be1ca43..dafd9c35cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ਅੰਡੋਰਾ", "AE": "ਸੰਯੁਕਤ ਅਰਬ ਅਮੀਰਾਤ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json index cacbcd241e..c6baa58f61 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PK": "پاکستان" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pl.json b/src/Symfony/Component/Intl/Resources/data/regions/pl.json index 158c7b1432..9d2f8e853f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Zjednoczone Emiraty Arabskie", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ps.json b/src/Symfony/Component/Intl/Resources/data/regions/ps.json index 366beaded7..52728dd0ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ps.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "اندورا", "AE": "متحده عرب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ps_PK.json b/src/Symfony/Component/Intl/Resources/data/regions/ps_PK.json index c7e81fe75d..94d4ee734f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ps_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ps_PK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "PS": "فلسطين سيمے", "TC": "د ترکیے او کیکاسو ټاپو", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt.json b/src/Symfony/Component/Intl/Resources/data/regions/pt.json index 271735a21a..3c47ce0458 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirados Árabes Unidos", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json index 117a17d32e..c1467219a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AM": "Arménia", "AX": "Alanda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/qu.json b/src/Symfony/Component/Intl/Resources/data/regions/qu.json index 5897db159a..2df315b0dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/qu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiratos Árabes Unidos", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index 6e08d2452d..e607527d33 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emirats Arabs Unids", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rn.json b/src/Symfony/Component/Intl/Resources/data/regions/rn.json index 8d2518d950..ab20b91bb4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Leta Zunze Ubumwe z’Abarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro.json b/src/Symfony/Component/Intl/Resources/data/regions/ro.json index a852a31b8d..3be2d15156 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ro.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Emiratele Arabe Unite", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json index ae9c4052bb..14afe5c9aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MM": "Myanmar" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ru.json b/src/Symfony/Component/Intl/Resources/data/regions/ru.json index 2fae1f6d91..27b2b38238 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ru.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "ОАЭ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json b/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json index c7a3198b04..7066a748a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AE": "Объединенные Арабские Эмираты", "BV": "О-в Буве", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rw.json b/src/Symfony/Component/Intl/Resources/data/regions/rw.json index 2c3d6b09cb..27349d87e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MK": "Masedoniya y’Amajyaruguru", "RW": "U Rwanda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sd.json b/src/Symfony/Component/Intl/Resources/data/regions/sd.json index fd57e4772c..600a2ccf1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "اندورا", "AE": "متحده عرب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/regions/sd_Deva.json new file mode 100644 index 0000000000..ebc796d29e --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/regions/sd_Deva.json @@ -0,0 +1,14 @@ +{ + "Names": { + "BR": "ब्राजील", + "CN": "चाइना", + "DE": "जर्मनी", + "FR": "फ़्रांस", + "GB": "यूनाइटेड किंगडम", + "IN": "भारत", + "IT": "इटली", + "JP": "जापान", + "RU": "रशिया", + "US": "अमेरिका" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se.json b/src/Symfony/Component/Intl/Resources/data/regions/se.json index 90f327de00..48e9bb44fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/se.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/se.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Ovttastuvvan Arábaemiráhtat", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json b/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json index f052eb91b4..5d99dc8595 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BA": "Bosnia ja Hercegovina", "KH": "Kamboža", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sg.json b/src/Symfony/Component/Intl/Resources/data/regions/sg.json index eb0a28682e..cb854c27ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andôro", "AE": "Arâbo Emirâti Ôko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh.json b/src/Symfony/Component/Intl/Resources/data/regions/sh.json index b9ff173644..00ec0f4100 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Ujedinjeni Arapski Emirati", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json index 177c2e776c..3b51e765dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/si.json b/src/Symfony/Component/Intl/Resources/data/regions/si.json index 69af5d73a1..a6cc8656fc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/si.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/si.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ඇන්ඩෝරාව", "AE": "එක්සත් අරාබි එමිර් රාජ්‍යය", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index 1d233b377b..941b8ff4b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Spojené arabské emiráty", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index e0d066ebc2..f2815ac415 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Združeni arabski emirati", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sn.json b/src/Symfony/Component/Intl/Resources/data/regions/sn.json index 233be84b5b..2b42480f85 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index d10ec2a0e6..503bdf158e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/so.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/so.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Imaaraadka Carabta ee Midoobay", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sq.json b/src/Symfony/Component/Intl/Resources/data/regions/sq.json index 721ce59c4e..fa2f74b20c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sq.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorrë", "AE": "Emiratet e Bashkuara Arabe", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index e01a9c5827..1ed4b06aab 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андора", "AE": "Уједињени Арапски Емирати", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json index 1dbbf5aff3..d95ffde344 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json index 1dbbf5aff3..d95ffde344 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json index 8461dee0d9..7220e77cd7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json index 5f08e093fb..edec66ba1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CG": "Конго", "CV": "Кабо Верде", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json index b9ff173644..00ec0f4100 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andora", "AE": "Ujedinjeni Arapski Emirati", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json index 177c2e776c..3b51e765dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json index 33df6ef6ec..aa494b8ae0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json index eca2feb718..5960c06a41 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CG": "Kongo", "CV": "Kabo Verde", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json index 33df6ef6ec..aa494b8ae0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json index 5f08e093fb..edec66ba1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "CG": "Конго", "CV": "Кабо Верде", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/su.json b/src/Symfony/Component/Intl/Resources/data/regions/su.json new file mode 100644 index 0000000000..3b9ff0e2b5 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/regions/su.json @@ -0,0 +1,14 @@ +{ + "Names": { + "BR": "Brasil", + "CN": "Tiongkok", + "DE": "Jérman", + "FR": "Prancis", + "GB": "Inggris Raya", + "IN": "India", + "IT": "Italia", + "JP": "Jepang", + "RU": "Rusia", + "US": "Amérika Sarikat" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index c1f9e05ecc..578980c395 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Förenade Arabemiraten", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index 34005e595b..4fc49a4452 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Falme za Kiarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json index 2fdded51ec..c0798f1690 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AF": "Afuganistani", "AZ": "Azabajani", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json index 0a3bd7462c..76353bb6ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AF": "Afghanistani", "AI": "Anguila", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index a4b233b5ae..e405592155 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "அன்டோரா", "AE": "ஐக்கிய அரபு எமிரேட்ஸ்", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index 43d5e0079e..1995c55530 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/te.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/te.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ఆండోరా", "AE": "యునైటెడ్ అరబ్ ఎమిరేట్స్", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tg.json b/src/Symfony/Component/Intl/Resources/data/regions/tg.json index 1675c0a131..be246e59d2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Аморатҳои Муттаҳидаи Араб", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index 5f02dfb598..8dbb0a3d1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/th.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/th.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "อันดอร์รา", "AE": "สหรัฐอาหรับเอมิเรตส์", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ti.json b/src/Symfony/Component/Intl/Resources/data/regions/ti.json index a29f3494be..42cc58e302 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ti.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "አንዶራ", "AE": "ሕቡራት ኢማራት ዓረብ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tk.json b/src/Symfony/Component/Intl/Resources/data/regions/tk.json index d9abc1d255..a46db90c3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Birleşen Arap Emirlikleri", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index df526f2e75..84f2dcf7ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/to.json b/src/Symfony/Component/Intl/Resources/data/regions/to.json index 78f922dc9e..c0c498b0f3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/to.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/to.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ʻAnitola", "AE": "ʻAlepea Fakatahataha", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index 4967924dc3..bf34e4ca51 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Birleşik Arap Emirlikleri", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tt.json b/src/Symfony/Component/Intl/Resources/data/regions/tt.json index a8b5d82c84..18ace2b2d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Берләшкән Гарәп Әмирлекләре", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ug.json b/src/Symfony/Component/Intl/Resources/data/regions/ug.json index 27a6fa2cb1..937b8389dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ug.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "ئاندوررا", "AE": "ئەرەب بىرلەشمە خەلىپىلىكى", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uk.json b/src/Symfony/Component/Intl/Resources/data/regions/uk.json index ec17a67cc4..713123a759 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Обʼєднані Арабські Емірати", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur.json b/src/Symfony/Component/Intl/Resources/data/regions/ur.json index cae9f845f6..694785ac90 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "انڈورا", "AE": "متحدہ عرب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json index 43982ed8b4..302b6fef1d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AX": "جزائر آلینڈ", "BV": "جزیرہ بوویت", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz.json b/src/Symfony/Component/Intl/Resources/data/regions/uz.json index 7aa0267eea..759d44a314 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Birlashgan Arab Amirliklari", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json index 092fc95b42..7e6cbfb368 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AF": "افغانستان" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json index cfe2839cad..a5b1927d69 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Андорра", "AE": "Бирлашган Араб Амирликлари", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/vi.json b/src/Symfony/Component/Intl/Resources/data/regions/vi.json index bbb181364d..8d8ea99725 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/vi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andorra", "AE": "Các Tiểu Vương quốc Ả Rập Thống nhất", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/wo.json b/src/Symfony/Component/Intl/Resources/data/regions/wo.json index eb8a13a682..0432bb8a08 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/wo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Andoor", "AE": "Emira Arab Ini", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/xh.json b/src/Symfony/Component/Intl/Resources/data/regions/xh.json index a6d834ebd1..53ed2bf605 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/xh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "MK": "uMntla Macedonia", "ZA": "eMzantsi Afrika" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yi.json b/src/Symfony/Component/Intl/Resources/data/regions/yi.json index eedcb6ab1d..ae01e9f969 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "אַנדארע", "AF": "אַפֿגהאַניסטאַן", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo.json b/src/Symfony/Component/Intl/Resources/data/regions/yo.json index f8cb819fb2..3ea3b97ef7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Orílẹ́ède Ààndórà", "AE": "Orílẹ́ède Ẹmirate ti Awọn Arabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json index 450e3c3b2c..66bac5abf6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "Orílɛ́ède Ààndórà", "AE": "Orílɛ́ède Ɛmirate ti Awɔn Arabu", @@ -14,6 +13,7 @@ "AT": "Orílɛ́ède Asítíríà", "AU": "Orílɛ́ède Ástràlìá", "AW": "Orílɛ́ède Árúbà", + "AX": "Àwɔn Erékùsù ti Åland", "AZ": "Orílɛ́ède Asɛ́bájánì", "BA": "Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà", "BB": "Orílɛ́ède Bábádósì", @@ -50,6 +50,7 @@ "CY": "Orílɛ́ède Kúrúsì", "CZ": "Orílɛ́ède shɛ́ɛ́kì", "DE": "Orílɛèdè Jámánì", + "DG": "Diego Gashia", "DJ": "Orílɛ́ède Díbɔ́ótì", "DK": "Orílɛ́ède Dɛ́mákì", "DM": "Orílɛ́ède Dòmíníkà", @@ -66,6 +67,7 @@ "FJ": "Orílɛ́ède Fiji", "FK": "Orílɛ́ède Etikun Fakalandi", "FM": "Orílɛ́ède Makoronesia", + "FO": "Àwɔn Erékùsù ti Faroe", "FR": "Orílɛ́ède Faranse", "GA": "Orílɛ́ède Gabon", "GB": "Orílɛ́èdè Gɛ̀ɛ́sì", @@ -80,14 +82,17 @@ "GP": "Orílɛ́ède Gadelope", "GQ": "Orílɛ́ède Ekutoria Gini", "GR": "Orílɛ́ède Geriisi", + "GS": "Gúúsù Georgia àti Gúúsù Àwɔn Erékùsù Sandwich", "GT": "Orílɛ́ède Guatemala", "GU": "Orílɛ́ède Guamu", "GW": "Orílɛ́ède Gene-Busau", "GY": "Orílɛ́ède Guyana", + "HK": "Hong Kong SAR ti Sháìnà", "HN": "Orílɛ́ède Hondurasi", "HR": "Orílɛ́ède Kòróátíà", "HT": "Orílɛ́ède Haati", "HU": "Orílɛ́ède Hungari", + "IC": "Ɛrékùsù Kánárì", "ID": "Orílɛ́ède Indonesia", "IE": "Orílɛ́ède Ailandi", "IL": "Orílɛ́ède Iserɛli", @@ -130,6 +135,7 @@ "ML": "Orílɛ́ède Mali", "MM": "Orílɛ́ède Manamari", "MN": "Orílɛ́ède Mogolia", + "MO": "Macao SAR ti Sháìnà", "MP": "Orílɛ́ède Etikun Guusu Mariana", "MQ": "Orílɛ́ède Matinikuwi", "MR": "Orílɛ́ède Maritania", @@ -209,6 +215,7 @@ "TZ": "Orílɛ́ède Tàǹsáníà", "UA": "Orílɛ́ède Ukarini", "UG": "Orílɛ́ède Uganda", + "UM": "Àwɔn Erékùsù Kékèké Agbègbè US", "US": "Orílɛ̀-èdè Amɛrikà", "UY": "Orílɛ́ède Nruguayi", "UZ": "Orílɛ́ède Nshibɛkisitani", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh.json b/src/Symfony/Component/Intl/Resources/data/regions/zh.json index 8896558061..f34d565a9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "安道尔", "AE": "阿拉伯联合酋长国", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json index ec99eb3646..4ba426d677 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AE": "阿拉伯聯合酋長國", "AG": "安提瓜和巴布達", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json index c7d621b29e..5810cadf7f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "安道爾", "AE": "阿拉伯聯合大公國", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json index ec99eb3646..4ba426d677 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AE": "阿拉伯聯合酋長國", "AG": "安提瓜和巴布達", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zu.json b/src/Symfony/Component/Intl/Resources/data/regions/zu.json index 9ff4577721..d5ac0ab014 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "AD": "i-Andorra", "AE": "i-United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index 0073884721..a7219c64bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/af.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/af.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arabies", "Armn": "Armeens", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/am.json b/src/Symfony/Component/Intl/Resources/data/scripts/am.json index d5b8b92565..b79e81cc67 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/am.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/am.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ዓረብኛ", "Armn": "አርሜንያዊ", @@ -39,6 +38,7 @@ "Thaa": "ታና", "Thai": "ታይ", "Tibt": "ቲቤታን", + "Zmth": "የሂሳብ መግለጫ", "Zsye": "ኢሞጂ", "Zsym": "ምልክቶች", "Zxxx": "ያልተጻፈ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json index fa1d2031f3..0e18d871df 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "العربية", + "Aran": "نستعليق", "Armn": "الأرمينية", "Bali": "البالية", "Batk": "الباتاك", @@ -73,10 +73,12 @@ "Mlym": "الماليالام", "Mong": "المغولية", "Moon": "مون", + "Mtei": "ميتي ماييك", "Mymr": "الميانمار", "Narb": "العربية الشمالية القديمة", "Nkoo": "أنكو", "Ogam": "الأوجهام", + "Olck": "أول تشيكي", "Orkh": "الأورخون", "Orya": "الأوريا", "Osma": "الأوسمانيا", @@ -84,6 +86,7 @@ "Phag": "الفاجسبا", "Phnx": "الفينيقية", "Plrd": "الصوتيات الجماء", + "Qaag": "زوجيي", "Roro": "رنجورنجو", "Runr": "الروني", "Sara": "الساراتي", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/as.json b/src/Symfony/Component/Intl/Resources/data/scripts/as.json index 0a04c506f4..f6c9b1c30e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/as.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/as.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "আৰবী", "Armn": "আৰ্মেনীয়", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az.json b/src/Symfony/Component/Intl/Resources/data/scripts/az.json index d246d0db46..a9cb93f536 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/az.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ərəb", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json index 5aff7ca78e..1664f752ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Cyrl": "Кирил" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/be.json b/src/Symfony/Component/Intl/Resources/data/scripts/be.json index 2073db2f7a..2853e4b17a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/be.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/be.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "арабскае", "Armn": "армянскае", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json index d9b3f79215..414bfef8a7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "арабска", "Armi": "Арамейска", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json index f46621334d..501152c895 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "আরবি", "Armi": "আরমি", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bo.json b/src/Symfony/Component/Intl/Resources/data/scripts/bo.json index 240a93878c..811849d07a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Hans": "རྒྱ་ཡིག་གསར་པ།", "Hant": "རྒྱ་ཡིག་རྙིང་པ།", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/br.json b/src/Symfony/Component/Intl/Resources/data/scripts/br.json index 33bd591875..d557304ef4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/br.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/br.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Adlm": "adlam", "Arab": "arabek", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index 429d75a2a0..7a6033a7e4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json index 77c8c13106..f709fbf310 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json index 87424a6134..0174b6a9a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "adlam", "Afak": "afaka", "Aghb": "albanès caucàsic", "Ahom": "ahom", "Arab": "àrab", + "Aran": "nastaliq", "Armi": "arameu imperial", "Armn": "armeni", "Avst": "avèstic", @@ -124,6 +124,7 @@ "Phnx": "fenici", "Plrd": "pollard miao", "Prti": "parthià inscripcional", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongo-rongo", "Runr": "rúnic", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json index 9dc19bd09d..928ff2ccfe 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Ӏаьрбийн", "Armn": "эрмалойн", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json index 85ab9fd5aa..ee35a08393 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Aghb": "kavkazskoalbánské", "Arab": "arabské", + "Aran": "nastaliq", "Armi": "aramejské (imperiální)", "Armn": "arménské", "Avst": "avestánské", @@ -118,6 +118,7 @@ "Phnx": "fénické", "Plrd": "Pollardova fonetická abeceda", "Prti": "parthské klínové", + "Qaag": "zawgyi", "Rjng": "redžanské", "Roro": "rongorongo", "Runr": "runové", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json index d7f9d0bd5b..3f8796a80a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arabaidd", "Armn": "Armenaidd", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/da.json b/src/Symfony/Component/Intl/Resources/data/scripts/da.json index 4a5b2d5846..778ef5f01c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/da.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/da.json @@ -1,8 +1,8 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Arab": "arabisk", + "Aran": "nastaliq", "Armi": "armi", "Armn": "armensk", "Avst": "avestansk", @@ -113,6 +113,7 @@ "Phnx": "fønikisk", "Plrd": "pollardtegn", "Prti": "prti", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongo-rongo", "Runr": "runer", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/de.json b/src/Symfony/Component/Intl/Resources/data/scripts/de.json index a61ae87b03..10f3d60835 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/de.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/de.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "Afaka", "Aghb": "Kaukasisch-Albanisch", "Arab": "Arabisch", + "Aran": "Nastaliq", "Armn": "Armenisch", "Avst": "Avestisch", "Bali": "Balinesisch", @@ -42,6 +42,7 @@ "Grek": "Griechisch", "Gujr": "Gujarati", "Guru": "Gurmukhi", + "Hanb": "Han mit Bopomofo", "Hang": "Hangul", "Hani": "Chinesisch", "Hano": "Hanunoo", @@ -114,6 +115,7 @@ "Phnx": "Phönizisch", "Plrd": "Pollard Phonetisch", "Prti": "Parthisch", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Roro": "Rongorongo", "Runr": "Runenschrift", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json index ee8dfc5ef6..7fdd05a411 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ཨེ་ར་བིཀ་ཡིག་གུ", "Armn": "ཨར་མི་ནི་ཡཱན་ཡིག་གུ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json index 62327d4601..d4cc067a08 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arabiagbeŋɔŋlɔ", "Armn": "armeniagbeŋɔŋlɔ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/el.json b/src/Symfony/Component/Intl/Resources/data/scripts/el.json index a55a7881c9..b0716d0733 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/el.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/el.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "Αραβικό", + "Aran": "Νασταλίκ", "Armi": "Αυτοκρατορικό Αραμαϊκό", "Armn": "Αρμενικό", "Avst": "Αβεστάν", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en.json b/src/Symfony/Component/Intl/Resources/data/scripts/en.json index e4b9668654..9ca139eb28 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "Adlam", "Afak": "Afaka", "Aghb": "Caucasian Albanian", "Ahom": "Ahom", "Arab": "Arabic", + "Aran": "Nastaliq", "Armi": "Imperial Aramaic", "Armn": "Armenian", "Avst": "Avestan", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json index 41212b08da..ef3616aa6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Beng": "Bengali" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json index 874fbd0535..e5e480496f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Beng": "Bengali", "Orya": "Oriya" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es.json b/src/Symfony/Component/Intl/Resources/data/scripts/es.json index bb07bfab2f..f62e05a952 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "árabe", + "Aran": "nastaliq", "Armn": "armenio", "Avst": "avéstico", "Bali": "balinés", @@ -86,6 +86,7 @@ "Phag": "phags-pa", "Phnx": "fenicio", "Plrd": "Pollard Miao", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongo-rongo", "Runr": "rúnico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json index 0f3e0f4bae..8e8e777671 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json @@ -1,10 +1,10 @@ { - "Version": "36.1", "Names": { "Hanb": "han con bopomofo", "Hrkt": "katakana o hiragana", "Laoo": "lao", "Latn": "latín", - "Mlym": "malayalam" + "Mlym": "malayalam", + "Olck": "ol chiki" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json index 4f09be2e3c..e4ec3edee0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Hanb": "hanb", "Mlym": "malayálam" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json index a1356cb996..564f0ff0ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Hanb": "hanb", "Mlym": "malayálam", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index 000cf6e6d5..d761a15d1b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/et.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/et.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Aghb": "albaani", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json index a0ca644386..4daf7abcd6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabiarra", "Armn": "armeniarra", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fa.json b/src/Symfony/Component/Intl/Resources/data/scripts/fa.json index 298aec7925..b1f1562597 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Aghb": "آلبانیایی قفقازی", "Arab": "عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json index 149b212e83..c8aac9b6aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Mong": "مغلی" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/scripts/ff_Adlm.json new file mode 100644 index 0000000000..7542092666 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ff_Adlm.json @@ -0,0 +1,5 @@ +{ + "Names": { + "Adlm": "𞤀𞤁𞤂𞤢𞤃" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json index 3128014583..2baf54aa5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "fulanin adlam-aakkosto", "Afak": "afaka", "Aghb": "kaukasianalbanialainen", "Ahom": "ahom", "Arab": "arabialainen", + "Aran": "nastaliq", "Armi": "valtakunnanaramealainen", "Armn": "armenialainen", "Avst": "avestalainen", @@ -26,12 +26,14 @@ "Cari": "kaarialainen", "Cham": "tšamilainen", "Cher": "cherokeelainen", + "Chrs": "horemzi", "Cirt": "cirth", "Copt": "koptilainen", "Cprt": "muinaiskyproslainen", "Cyrl": "kyrillinen", "Cyrs": "kyrillinen muinaiskirkkoslaavimuunnelma", "Deva": "devanagari", + "Diak": "dives akuru", "Dogr": "dogri", "Dsrt": "deseret", "Dupl": "Duployén pikakirjoitus", @@ -44,6 +46,7 @@ "Geok": "muinaisgeorgialainen", "Geor": "georgialainen", "Glag": "glagoliittinen", + "Gong": "gondin gunjala", "Gonm": "masaram-gondi", "Goth": "goottilainen", "Gran": "grantha", @@ -61,6 +64,7 @@ "Hira": "hiragana", "Hluw": "anatolialaiset hieroglyfit", "Hmng": "pahawh hmong", + "Hmnp": "hmongin nyiakeng puachue", "Hrkt": "japanin tavumerkistöt", "Hung": "muinaisunkarilainen", "Inds": "induslainen", @@ -74,6 +78,7 @@ "Khar": "kharosthi", "Khmr": "khmeriläinen", "Khoj": "khojki", + "Kits": "kitaanin pieni merkistö", "Knda": "kannadalainen", "Kore": "korealainen", "Kpel": "kpelle", @@ -180,6 +185,7 @@ "Wole": "woleai", "Xpeo": "muinaispersialainen", "Xsux": "sumerilais-akkadilainen nuolenpääkirjoitus", + "Yezi": "jesidi", "Yiii": "yiläinen", "Zanb": "zanabazar-neliökirjaimisto", "Zinh": "peritty", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json index 4df0d2317d..577c4b7c31 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabisk", "Armn": "armenskt", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json index e31fdf60dc..ad5a2e97c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "arabe", + "Aran": "nastaliq", "Armi": "araméen impérial", "Armn": "arménien", "Avst": "avestique", @@ -97,6 +97,7 @@ "Phnx": "phénicien", "Plrd": "phonétique de Pollard", "Prti": "parthe des inscriptions", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "runique", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json index 2c022b7b56..51b5c72a6e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Deva": "devanagari", "Gujr": "gujarati", @@ -7,6 +6,7 @@ "Hans": "idéogrammes han simplifiés", "Hant": "idéogrammes han traditionnels", "Hrkt": "syllabaires japonais", + "Olck": "ol chiki", "Zsye": "zsye" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json index 212bfe36da..a8845b53e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "Defaka", "Arab": "Arabysk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ga.json b/src/Symfony/Component/Intl/Resources/data/scripts/ga.json index b28fc87233..be9da5343a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ga.json @@ -1,7 +1,6 @@ { - "Version": "36.1", "Names": { - "Adlm": "Adlm", + "Adlm": "Adlam", "Aghb": "Albánach Cugasach", "Ahom": "Ahom", "Arab": "Arabach", @@ -9,70 +8,50 @@ "Armn": "Airméanach", "Avst": "Aivéisteach", "Bali": "Bailíoch", - "Bamu": "Bamu", - "Bass": "Bass", "Batk": "Batacach", "Beng": "Beangálach", - "Bhks": "Bhks", "Bopo": "Bopomofo", - "Brah": "Brah", "Brai": "Braille", "Bugi": "Buigineach", "Buhd": "Buthaideach", - "Cakm": "Cakm", - "Cans": "Cans", - "Cari": "Cari", - "Cham": "Cham", + "Cans": "Siollach Bundúchasach Ceanadach Aontaithe", "Cher": "Seiricíoch", "Copt": "Coptach", "Cprt": "Cipireach", "Cyrl": "Coireallach", "Deva": "Déiveanágrach", - "Dsrt": "Dsrt", - "Dupl": "Dupl", + "Dupl": "Gearrscríobh Duployan", "Egyd": "Éigipteach coiteann", "Egyh": "Éigipteach cliarúil", "Egyp": "Iairiglifí Éigipteacha", - "Elba": "Elba", "Ethi": "Aetópach", "Geor": "Seoirseach", "Glag": "Glagalach", - "Gonm": "Gonm", "Goth": "Gotach", - "Gran": "Gran", "Grek": "Gréagach", "Gujr": "Gúisearátach", "Guru": "Gurmúcach", "Hanb": "Han agus Bopomofo", "Hang": "Hangalach", "Hani": "Han", - "Hano": "Hano", "Hans": "Simplithe", "Hant": "Traidisiúnta", - "Hatr": "Hatr", "Hebr": "Eabhrach", "Hira": "Hireagánach", "Hluw": "Iairiglifí Anatólacha", - "Hmng": "Hmng", "Hrkt": "Siollabraí Seapánacha", "Hung": "Sean-Ungárach", "Ital": "Sean-Iodáilic", "Jamo": "Seamó", "Java": "Iávach", "Jpan": "Seapánach", - "Kali": "Kali", "Kana": "Catacánach", - "Khar": "Khar", "Khmr": "Ciméarach", - "Khoj": "Khoj", "Knda": "Cannadach", "Kore": "Cóiréach", - "Kthi": "Kthi", - "Lana": "Lana", "Laoo": "Laosach", "Latg": "Cló Gaelach", "Latn": "Laidineach", - "Lepc": "Lepc", "Limb": "Liombúch", "Lina": "Líneach A", "Linb": "Líneach B", @@ -80,77 +59,39 @@ "Lyci": "Liciach", "Lydi": "Lidiach", "Mahj": "Mahasánach", - "Mand": "Mand", "Mani": "Mainicéasach", - "Marc": "Marc", "Maya": "Iairiglifí Máigheacha", "Mend": "Meindeach", - "Merc": "Merc", - "Mero": "Mero", "Mlym": "Mailéalamach", - "Modi": "Modi", "Mong": "Mongólach", - "Mroo": "Mroo", - "Mtei": "Mtei", - "Mult": "Mult", + "Mult": "Multani", "Mymr": "Maenmarach", "Narb": "Sean-Arabach Thuaidh", - "Nbat": "Nbat", "Newa": "Newa", - "Nkoo": "Nkoo", - "Nshu": "Nshu", "Ogam": "Ogham", - "Olck": "Olck", - "Orkh": "Orkh", "Orya": "Oiríseach", - "Osge": "Osge", - "Osma": "Osma", - "Palm": "Palm", - "Pauc": "Pauc", "Perm": "Sean-Pheirmeach", - "Phag": "Phag", - "Phli": "Phli", - "Phlp": "Phlp", "Phnx": "Féiníceach", "Plrd": "Pollard Foghrach", "Prti": "Pairtiach Inscríbhinniúil", - "Rjng": "Rjng", "Runr": "Rúnach", "Samr": "Samárach", "Sarb": "Sean-Arabach Theas", - "Saur": "Saur", - "Sgnw": "Sgnw", "Shaw": "Shawach", - "Shrd": "Shrd", - "Sidd": "Sidd", - "Sind": "Sind", "Sinh": "Siolónach", - "Sora": "Sora", - "Soyo": "Soyo", - "Sund": "Sund", - "Sylo": "Sylo", + "Sund": "Sundainéis", "Syrc": "Siriceach", - "Tagb": "Tagb", - "Takr": "Takr", - "Tale": "Tale", - "Talu": "Talu", "Taml": "Tamalach", - "Tang": "Tang", - "Tavt": "Tavt", "Telu": "Teileagúch", "Tfng": "Tifinagh", "Tglg": "Tagálagach", "Thaa": "Tánach", "Thai": "Téalannach", "Tibt": "Tibéadach", - "Tirh": "Tirh", "Ugar": "Úgairíteach", - "Vaii": "Vaii", - "Wara": "Wara", "Xpeo": "Sean-Pheirseach", "Xsux": "Dingchruthach Suiméar-Acádach", "Yiii": "Ís", - "Zanb": "Zanb", "Zinh": "Oidhreacht", "Zmth": "Nodaireacht Mhatamaiticiúil", "Zsye": "Emoji", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index 4d42c0b39e..9eb3a72547 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Adlm": "Adlam", "Afak": "Afaka", @@ -128,7 +127,7 @@ "Phnx": "Pheniceach", "Plrd": "Miao Phollard", "Prti": "Partais snaidh-sgrìobhte", - "Qaag": "Qaag", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Rohg": "Hanifi Rohingya", "Roro": "Rongorongo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index c4459cf59d..31e65d8da6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "árabe", "Armn": "armenio", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json index 83f75eaf3f..97557bf8d7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "અરબી", "Armi": "ઇમ્પિરિયલ આર્મનિક", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json index 4d520ab07a..97cbd3e193 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Larabci", "Armn": "Armeniyawa", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/he.json b/src/Symfony/Component/Intl/Resources/data/scripts/he.json index 0db3db3b02..fe10f51325 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/he.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/he.json @@ -1,7 +1,8 @@ { - "Version": "36.1", "Names": { "Arab": "ערבי", + "Aran": "נסתעליק", + "Armi": "ארמית רשמית", "Armn": "ארמני", "Bali": "באלינזי", "Beng": "בנגלי", @@ -45,9 +46,13 @@ "Maya": "מאיה", "Mlym": "מליאלאם", "Mong": "מונגולי", + "Mtei": "מאיטי מאייק", "Mymr": "מיאנמר", + "Nkoo": "נ׳קו", + "Olck": "אול צ׳יקי", "Orya": "אודייה", "Phnx": "פיניקי", + "Qaag": "זאוגיי", "Runr": "רוני", "Sinh": "סינהלה", "Syrc": "סורי", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json index 231b1921d3..9abba9b0eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "अरबी", + "Aran": "नस्तालीक़", "Armi": "इम्पिरियल आर्मेनिक", "Armn": "आर्मेनियाई", "Avst": "अवेस्तन", @@ -95,6 +95,7 @@ "Phnx": "फोनिशियन", "Plrd": "पॉलार्ड फोनेटिक", "Prti": "इंस्क्रिपश्नल पार्थियन", + "Qaag": "ज़ौजी", "Rjng": "रीजांग", "Roro": "रोन्गोरोन्गो", "Runr": "रूनिक", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json index 131c571452..d0f25dfd3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json @@ -1,8 +1,8 @@ { - "Version": "36.1", "Names": { "Afak": "afaka pismo", "Arab": "arapsko pismo", + "Aran": "nastaliq", "Armi": "aramejsko pismo", "Armn": "armensko pismo", "Avst": "avestansko pismo", @@ -112,6 +112,7 @@ "Phnx": "feničko pismo", "Plrd": "pollard fonetsko pismo", "Prti": "pisani parthian", + "Qaag": "zawgyi", "Rjng": "rejang pismo", "Roro": "rongorongo pismo", "Runr": "runsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json index 5a5860cb25..b5d9913c6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "Arab", + "Aran": "Nasztalik", "Armi": "Birodalmi arámi", "Armn": "Örmény", "Avst": "Avesztán", @@ -36,7 +36,7 @@ "Grek": "Görög", "Gujr": "Gudzsaráti", "Guru": "Gurmuki", - "Hanb": "Hanb", + "Hanb": "Han bopomofóval", "Hang": "Hangul", "Hani": "Han", "Hano": "Hanunoo", @@ -93,6 +93,7 @@ "Phnx": "Főniciai", "Plrd": "Pollard fonetikus", "Prti": "Feliratos parthian", + "Qaag": "Zawgyi", "Rjng": "Redzsang", "Roro": "Rongorongo", "Runr": "Runikus", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json index e163340096..7ad7a0bf4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "արաբական", "Armn": "հայկական", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ia.json b/src/Symfony/Component/Intl/Resources/data/scripts/ia.json index 29807c33bd..7ba71090d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ia.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabe", "Armn": "armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/id.json b/src/Symfony/Component/Intl/Resources/data/scripts/id.json index c76a8f6d55..a016770782 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/id.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/id.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", "Arab": "Arab", + "Aran": "Nastaliq", "Armi": "Aram Imperial", "Armn": "Armenia", "Avst": "Avesta", @@ -87,7 +87,6 @@ "Merc": "Kursif Meroitik", "Mero": "Meroitik", "Mlym": "Malayalam", - "Modi": "Modi", "Mong": "Mongolia", "Moon": "Moon", "Mroo": "Mro", @@ -112,6 +111,7 @@ "Phnx": "Phoenix", "Plrd": "Fonetik Pollard", "Prti": "Prasasti Parthia", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Roro": "Rongorongo", "Runr": "Runik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ig.json b/src/Symfony/Component/Intl/Resources/data/scripts/ig.json index 8a47f1e4b3..a93747363b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ig.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Mkpụrụ Okwu Arabic", "Cyrl": "Mkpụrụ Okwu Cyrillic", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json index 3ef0d75290..b7fca06266 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ꀊꇁꀨꁱꂷ", "Cyrl": "ꀊꆨꌦꇁꃚꁱꂷ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/in.json b/src/Symfony/Component/Intl/Resources/data/scripts/in.json index c76a8f6d55..a016770782 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/in.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/in.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", "Arab": "Arab", + "Aran": "Nastaliq", "Armi": "Aram Imperial", "Armn": "Armenia", "Avst": "Avesta", @@ -87,7 +87,6 @@ "Merc": "Kursif Meroitik", "Mero": "Meroitik", "Mlym": "Malayalam", - "Modi": "Modi", "Mong": "Mongolia", "Moon": "Moon", "Mroo": "Mro", @@ -112,6 +111,7 @@ "Phnx": "Phoenix", "Plrd": "Fonetik Pollard", "Prti": "Prasasti Parthia", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Roro": "Rongorongo", "Runr": "Runik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/is.json b/src/Symfony/Component/Intl/Resources/data/scripts/is.json index 107c417762..8a2eeb8c6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/is.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/is.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabískt", "Armn": "armenskt", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/it.json b/src/Symfony/Component/Intl/Resources/data/scripts/it.json index 69835aea2b..d1aa83bfa5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/it.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/it.json @@ -1,8 +1,8 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Arab": "arabo", + "Aran": "nastaliq", "Armi": "aramaico imperiale", "Armn": "armeno", "Avst": "avestico", @@ -113,6 +113,7 @@ "Phnx": "fenicio", "Plrd": "fonetica di pollard", "Prti": "partico delle iscrizioni", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "runico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json index 0db3db3b02..fe10f51325 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json @@ -1,7 +1,8 @@ { - "Version": "36.1", "Names": { "Arab": "ערבי", + "Aran": "נסתעליק", + "Armi": "ארמית רשמית", "Armn": "ארמני", "Bali": "באלינזי", "Beng": "בנגלי", @@ -45,9 +46,13 @@ "Maya": "מאיה", "Mlym": "מליאלאם", "Mong": "מונגולי", + "Mtei": "מאיטי מאייק", "Mymr": "מיאנמר", + "Nkoo": "נ׳קו", + "Olck": "אול צ׳יקי", "Orya": "אודייה", "Phnx": "פיניקי", + "Qaag": "זאוגיי", "Runr": "רוני", "Sinh": "סינהלה", "Syrc": "סורי", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json index 3fe9c43bd6..110eac4b54 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "アファカ文字", "Aghb": "カフカス・アルバニア文字", "Arab": "アラビア文字", + "Aran": "ナスタアリーク体", "Armi": "帝国アラム文字", "Armn": "アルメニア文字", "Avst": "アヴェスター文字", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/jv.json b/src/Symfony/Component/Intl/Resources/data/scripts/jv.json index fbfbf79391..2289b4fa74 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/jv.json @@ -1,7 +1,6 @@ { - "Version": "36.1", "Names": { - "Arab": "Arab", + "Arab": "hija’iyah", "Armn": "Armenia", "Beng": "Bangla", "Bopo": "Bopomofo", @@ -34,6 +33,7 @@ "Orya": "Odia", "Sinh": "Sinhala", "Taml": "Tamil", + "Telu": "Telugu", "Thaa": "Thaana", "Thai": "Thailand", "Tibt": "Tibetan", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json index 57c79bb9fe..e88c8c85ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "აფაკა", "Arab": "არაბული", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/kk.json b/src/Symfony/Component/Intl/Resources/data/scripts/kk.json index 4bf8b30b1d..afa08406ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "араб жазуы", "Armn": "армян жазуы", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/km.json b/src/Symfony/Component/Intl/Resources/data/scripts/km.json index 4a5b8013c4..7bb0da2b54 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/km.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/km.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "អារ៉ាប់", "Armn": "អាមេនី", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/kn.json b/src/Symfony/Component/Intl/Resources/data/scripts/kn.json index d7c04ba8a9..c645e5df93 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ಅರೇಬಿಕ್", "Armi": "ಇಂಪೀರಿಯಲ್ ಅರೆಮಾಯಿಕ್", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json index 2e4158edec..7349371bea 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "아파카 문자", "Aghb": "코카시안 알바니아 문자", "Arab": "아랍 문자", + "Aran": "나스탈리크체", "Armi": "아랍제국 문자", "Armn": "아르메니아 문자", "Avst": "아베스타 문자", @@ -116,6 +116,7 @@ "Phnx": "페니키아 문자", "Plrd": "폴라드 표음 문자", "Prti": "명문 파라티아 문자", + "Qaag": "저지 문자", "Rjng": "레장 문자", "Roro": "롱고롱고", "Runr": "룬 문자", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json index b7567fa208..e18b7f04c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "اَربی", + "Aran": "نستعلیق", "Armn": "اَرمانیَن", "Avst": "اَویستَن", "Bali": "بالَنیٖز", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ku.json b/src/Symfony/Component/Intl/Resources/data/scripts/ku.json index 2733e57090..a8d328562b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ku.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "erebî", "Armn": "ermenî", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json index 2f45a47c65..c54ddc6414 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Араб", "Armn": "Армян", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lb.json b/src/Symfony/Component/Intl/Resources/data/scripts/lb.json index 23782da2dd..643fe11d70 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lb.json @@ -1,8 +1,6 @@ { - "Version": "36.1", "Names": { "Arab": "Arabesch", - "Armi": "Armi", "Armn": "Armenesch", "Avst": "Avestesch", "Bali": "Balinesesch", @@ -16,7 +14,6 @@ "Buhd": "Buhid", "Cans": "UCAS", "Cari": "Karesch", - "Cham": "Cham", "Cher": "Cherokee", "Cirt": "Cirth", "Copt": "Koptesch", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json index 4263752404..68de8ca06b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "ອັບຟາກາ", "Arab": "ອາຣາບິກ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lt.json b/src/Symfony/Component/Intl/Resources/data/scripts/lt.json index 0aa9db2515..71d9ed368d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "Afaka", "Aghb": "Kaukazo Albanijos", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json index 5b355dd69a..8c23c3ecde 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arābu", "Armi": "aramiešu", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json index b1acc6143a..38c4a31b9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Scripts": [ "Adlm", "Afak", "Aghb", "Ahom", "Arab", + "Aran", "Armi", "Armn", "Avst", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mi.json b/src/Symfony/Component/Intl/Resources/data/scripts/mi.json index ae9d11af75..0048d87f32 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arapika", "Cyrl": "Hīririki", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json index e4781e01e8..ba6767b729 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "афака", "Aghb": "кавкаскоалбански", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ml.json b/src/Symfony/Component/Intl/Resources/data/scripts/ml.json index def959c7b6..e1ec6f21bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ml.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "അറബിക്", "Armi": "അർമി", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json index 7d662c74a7..89c1ae05d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "араб", "Armn": "армени", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mo.json b/src/Symfony/Component/Intl/Resources/data/scripts/mo.json index 21358e496d..3551782bcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mo.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "arabă", + "Aran": "nastaaliq", "Armn": "armeană", "Bali": "balineză", "Beng": "bengaleză", @@ -53,9 +53,12 @@ "Maya": "hieroglife maya", "Mlym": "malayalam", "Mong": "mongolă", + "Mtei": "meitei mayek", "Mymr": "birmană", + "Olck": "ol chiki", "Orya": "oriya", "Phnx": "feniciană", + "Qaag": "zawgyi", "Runr": "runică", "Sinh": "singaleză", "Syrc": "siriacă", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index b2f40faf25..ee63223b73 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "अरबी", "Armi": "इम्पिरियल आर्मेनिक", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json index f39cbf588e..6ac618519f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json @@ -1,14 +1,13 @@ { - "Version": "36.1", "Names": { "Adlm": "Adlam", "Aghb": "Kaukasia Albania", "Arab": "Arab", + "Aran": "Nastaliq", "Armi": "Aramia Imperial", "Armn": "Armenia", "Avst": "Avestan", "Bali": "Bali", - "Bamu": "Bamu", "Bass": "Bassa Vah", "Batk": "Batak", "Beng": "Benggala", @@ -19,7 +18,7 @@ "Bugi": "Bugis", "Buhd": "Buhid", "Cakm": "Chakma", - "Cans": "Cans", + "Cans": "Suku Kata Orang Asli Kanada Bersatu", "Cari": "Carian", "Cham": "Cham", "Cher": "Cherokee", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json index bcbf7b8868..3c41411f28 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Għarbi", "Cyrl": "Ċirilliku", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/my.json b/src/Symfony/Component/Intl/Resources/data/scripts/my.json index 390dc4c2f3..a85a11e941 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/my.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/my.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "အာရေဗျ", "Armn": "အာမေးနီးယား", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nb.json b/src/Symfony/Component/Intl/Resources/data/scripts/nb.json index d80c8caaf0..c2b4d23277 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nb.json @@ -1,10 +1,10 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", "Ahom": "ahom", "Arab": "arabisk", + "Aran": "nastaliq", "Armi": "arameisk", "Armn": "armensk", "Avst": "avestisk", @@ -121,6 +121,7 @@ "Phnx": "fønikisk", "Plrd": "pollard-fonetisk", "Prti": "inskripsjonsparthisk", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "runer", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json index 82710dfc00..8ac4d41ebd 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "अरबी", "Armi": "आर्मी", @@ -122,8 +121,8 @@ "Xpeo": "पुरानो पर्सियन", "Yiii": "यी", "Zinh": "इन्हेरिटेड", - "Zmth": "Zmth", - "Zsye": "Zsye", + "Zmth": "गणितीय चिन्ह", + "Zsye": "इमोजी", "Zsym": "प्रतीकहरू", "Zxxx": "नलेखिएको", "Zyyy": "साझा" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json index 581bca115a..b4264ef9a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "Adlam", "Afak": "Defaka", "Aghb": "Kaukasisch Albanees", "Ahom": "Ahom", "Arab": "Arabisch", + "Aran": "Nastaliq", "Armi": "Keizerlijk Aramees", "Armn": "Armeens", "Avst": "Avestaans", @@ -26,12 +26,14 @@ "Cari": "Carisch", "Cham": "Cham", "Cher": "Cherokee", + "Chrs": "Chorasmisch", "Cirt": "Cirth", "Copt": "Koptisch", "Cprt": "Cyprisch", "Cyrl": "Cyrillisch", "Cyrs": "Oudkerkslavisch Cyrillisch", "Deva": "Devanagari", + "Diak": "Dives Akuru", "Dogr": "Dogra", "Dsrt": "Deseret", "Dupl": "Duployan snelschrift", @@ -51,7 +53,7 @@ "Grek": "Grieks", "Gujr": "Gujarati", "Guru": "Gurmukhi", - "Hanb": "Hanb", + "Hanb": "Han met Bopomofo", "Hang": "Hangul", "Hani": "Han", "Hano": "Hanunoo", @@ -76,6 +78,7 @@ "Khar": "Kharoshthi", "Khmr": "Khmer", "Khoj": "Khojki", + "Kits": "Kitaans kleinschrift", "Knda": "Kannada", "Kore": "Koreaans", "Kpel": "Kpelle", @@ -134,7 +137,7 @@ "Phnx": "Foenicisch", "Plrd": "Pollard-fonetisch", "Prti": "Inscriptioneel Parthisch", - "Qaag": "Qaag", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Rohg": "Hanifi Rohingya", "Roro": "Rongorongo", @@ -182,6 +185,7 @@ "Wole": "Woleai", "Xpeo": "Oudperzisch", "Xsux": "Sumero-Akkadian Cuneiform", + "Yezi": "Jezidi", "Yiii": "Yi", "Zanb": "vierkant Zanabazar", "Zinh": "Overgeërfd", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json index 26276ccb36..e6c0b3b767 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabisk", "Armi": "armisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/no.json b/src/Symfony/Component/Intl/Resources/data/scripts/no.json index d80c8caaf0..c2b4d23277 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/no.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/no.json @@ -1,10 +1,10 @@ { - "Version": "36.1", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", "Ahom": "ahom", "Arab": "arabisk", + "Aran": "nastaliq", "Armi": "arameisk", "Armn": "armensk", "Avst": "avestisk", @@ -121,6 +121,7 @@ "Phnx": "fønikisk", "Plrd": "pollard-fonetisk", "Prti": "inskripsjonsparthisk", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "runer", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/om.json b/src/Symfony/Component/Intl/Resources/data/scripts/om.json index ee0a35d575..7eb86bdfff 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/om.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/om.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Latn": "Latin" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/or.json b/src/Symfony/Component/Intl/Resources/data/scripts/or.json index 92b2f101fd..65c8118a78 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/or.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/or.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "ଆରବିକ୍", "Armi": "ଇମ୍ପେରିଆଲ୍ ଆରମିକ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/os.json b/src/Symfony/Component/Intl/Resources/data/scripts/os.json index cb9d4ea381..ceb7d05f2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/os.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/os.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Араббаг", "Cyrl": "Киррилицӕ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pa.json b/src/Symfony/Component/Intl/Resources/data/scripts/pa.json index fba19ffdc1..7f23a9798e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "ਅਰਬੀ", + "Aran": "ਨਸਤਾਲੀਕ", "Armn": "ਅਰਮੀਨੀਆਈ", "Beng": "ਬੰਗਾਲੀ", "Bopo": "ਬੋਪੋਮੋਫੋ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json index 3c4fd19349..1f9898b479 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "عربی", + "Aran": "نستعلیق", "Guru": "گُرمُکھی" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json index c11b37975e..2f4b089f60 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "arabskie", + "Aran": "nastaliq", "Armi": "armi", "Armn": "ormiańskie", "Avst": "awestyjskie", @@ -95,6 +95,7 @@ "Phnx": "fenicki", "Plrd": "fonetyczny Pollard’a", "Prti": "partyjski inskrypcyjny", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "runiczne", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json index 40d31db739..07bc1a181c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "عربي", "Armn": "ارمانیایي", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index 393413b9b8..9352ebd1a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "árabe", + "Aran": "nastaliq", "Armi": "armi", "Armn": "armênio", "Avst": "avéstico", @@ -97,6 +97,7 @@ "Phnx": "fenício", "Plrd": "fonético pollard", "Prti": "prti", + "Qaag": "zawgyi", "Rjng": "rejang", "Roro": "rongorongo", "Runr": "rúnico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json index 392c4491b9..6e3908cb89 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json @@ -1,6 +1,6 @@ { - "Version": "36.1", "Names": { + "Aran": "nasta’liq", "Armn": "arménio", "Beng": "bengalês", "Egyd": "egípcio demótico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json index 41a6c0c523..57d657dd43 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arab", "Armi": "arameic imperial", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ro.json b/src/Symfony/Component/Intl/Resources/data/scripts/ro.json index 21358e496d..3551782bcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ro.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "arabă", + "Aran": "nastaaliq", "Armn": "armeană", "Bali": "balineză", "Beng": "bengaleză", @@ -53,9 +53,12 @@ "Maya": "hieroglife maya", "Mlym": "malayalam", "Mong": "mongolă", + "Mtei": "meitei mayek", "Mymr": "birmană", + "Olck": "ol chiki", "Orya": "oriya", "Phnx": "feniciană", + "Qaag": "zawgyi", "Runr": "runică", "Sinh": "singaleză", "Syrc": "siriacă", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json index fcc506d16b..fcfd113476 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json @@ -1,8 +1,8 @@ { - "Version": "36.1", "Names": { "Afak": "афака", "Arab": "арабица", + "Aran": "насталик", "Armi": "арамейская", "Armn": "армянская", "Avst": "авестийская", @@ -113,6 +113,7 @@ "Phnx": "финикийская", "Plrd": "поллардовская фонетика", "Prti": "парфянская", + "Qaag": "зоджи", "Rjng": "реджангская", "Roro": "ронго-ронго", "Runr": "руническая", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sd.json b/src/Symfony/Component/Intl/Resources/data/scripts/sd.json index 9d9b7c1bd2..8eab94967c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "عربي", "Armn": "عرماني", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json new file mode 100644 index 0000000000..1671ee2bdb --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json @@ -0,0 +1,12 @@ +{ + "Names": { + "Arab": "अरेबिक", + "Cyrl": "सिरिलिक", + "Deva": "देवनागिरी", + "Hans": "सवलो थियण(लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे", + "Hant": "रवायती (लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे )", + "Latn": "लैटिन", + "Zxxx": "अणलिखयल", + "Zzzz": "अणवाकुफु लिपि" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se.json b/src/Symfony/Component/Intl/Resources/data/scripts/se.json index 9ab327b9c2..144165e490 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/se.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/se.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arába", "Cyrl": "kyrillalaš", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json b/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json index 380da21ab7..26efe07454 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arábalaš", "Hani": "kiinnálaš", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json index 69561814e4..e4f3c1c61a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/si.json b/src/Symfony/Component/Intl/Resources/data/scripts/si.json index 68ca2b6b7c..e0a5e81d9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/si.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/si.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "අරාබි", "Armn": "ආර්මේනියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sk.json b/src/Symfony/Component/Intl/Resources/data/scripts/sk.json index c2d11ce61c..9c249f815e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sk.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "arabské", + "Aran": "nastaliq", "Armn": "arménske", "Bali": "balijský", "Beng": "bengálske", @@ -38,9 +38,12 @@ "Maya": "mayské hieroglyfy", "Mlym": "malajálamske", "Mong": "mongolské", + "Mtei": "mejtej majek (manipurské)", "Mymr": "barmské", + "Olck": "santálske (ol chiki)", "Orya": "uríjske", "Osma": "osmanský", + "Qaag": "zawgyi", "Runr": "Runové písmo", "Sinh": "sinhálske", "Taml": "tamilské", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json index e6c2d4f968..2965ec5306 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabski", "Armi": "imperialno-aramejski", @@ -15,7 +14,6 @@ "Bugi": "buginski", "Buhd": "buhidski", "Cans": "poenotena zlogovna pisava kanadskih staroselcev", - "Cham": "Cham", "Cher": "čerokeški", "Cirt": "kirt", "Copt": "koptski", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/so.json b/src/Symfony/Component/Intl/Resources/data/scripts/so.json index 82044c3e4c..e965dd1ba0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/so.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/so.json @@ -1,39 +1,169 @@ { - "Version": "36.1", "Names": { + "Adlm": "Adlam", + "Aghb": "Qoraalka Luuqada Caucasian Albanian", + "Ahom": "Dadka Ahom", "Arab": "Carabi", + "Aran": "Farta Luuqada Faarsiga", + "Armi": "Luuqada Imperial Aramaic", "Armn": "Armeeniyaan", + "Avst": "Luuqada Avestan", + "Bali": "Baliniis", + "Bamu": "Bamum", + "Bass": "Qoraalka Vah", + "Batk": "Batak", "Beng": "Baangla", + "Bhks": "Qoraalka Bhaiksuki", + "Bopo": "Farta Manadariinka Taywaan", + "Brah": "Dhirta Brahmi", "Brai": "Qoraalka Indhoolaha", + "Bugi": "Luuqada Buginiiska", + "Buhd": "Luuqada Buhid", + "Cakm": "Jakma", + "Cans": "Qoraalka Luuqada Aborajiinka ee Kanada", + "Cari": "Luuqada kaariyaanka", + "Cham": "Jam", + "Cher": "Jerokee", + "Chrs": "Luuqada Korasmiyaanka", + "Copt": "Dadka Kotiga", + "Cprt": "sibraas dhalad ah", "Cyrl": "Siriylik", "Deva": "Dhefangaari", + "Diak": "Luuqadaha Dives Akuru", + "Dogr": "Dadka Dogra", + "Dsrt": "Gobalka Deseret", + "Dupl": "Qoraalka Duployan shorthand", + "Egyp": "Fartii hore ee Masaarida", + "Elba": "Magaalada Elbasan", + "Elym": "Qoraalka Elymaic", "Ethi": "Itoobiya", "Geor": "Jiyoorjoyaan", + "Glag": "Qoraalka Glagolitic", + "Gong": "Gumjala Gondi", + "Gonm": "Qoraalka Masaram Gondi", + "Goth": "Dadka Gothic", + "Gran": "Qoraalka Grantha", "Grek": "Giriik", "Gujr": "Gujaraati", + "Guru": "Luuqada gujarati", + "Hanb": "luuqada Han iyo Farta Mandariinka Taywaan", "Hang": "Hanguul", + "Hani": "Luuqada Han", + "Hano": "Qoraalka Hanunoo", "Hans": "La fududeeyay", "Hant": "Hore", + "Hatr": "Qoraalka Hatran", "Hebr": "Cibraani", "Hira": "Hiragana", + "Hluw": "Qoraalka Anatolian Hieroglyphs", + "Hmng": "Hmonga pahawh", + "Hmnp": "Hmonga Nyiakeng Puachue", "Hrkt": "Qoraalka Xuruufta Jabaaniiska", + "Hung": "Hangariyaankii Hore", + "Ital": "Itaaliggii Hore", "Jamo": "Jaamo", + "Java": "Jafaniis", "Jpan": "Jabaaniis", + "Kali": "Kayah LI", "Kana": "Katakaana", + "Khar": "Koraalka kharooshi", "Khmr": "Khamer", + "Khoj": "Qoraalka Khojki", + "Kits": "Qoraalka yar ee Khitan", "Knda": "Kanada", "Kore": "Kuuriyaan", + "Kthi": "kaithi", + "Lana": "Lanna", + "Laoo": "Dalka Lao", "Latn": "Laatiin", + "Lepc": "Lebja", + "Limb": "Limbu", + "Lina": "Nidaamka qoraalka Linear A", + "Linb": "Nidaamka qoraalka Linear B", + "Lisu": "Wabiga Fraser", + "Lyci": "Lyciantii Hore", + "Lydi": "Lydian", + "Mahj": "Mahajani", + "Maka": "Makasar", + "Mand": "Luuqada Mandaean", + "Mani": "Manichaean", + "Marc": "Marchen", + "Medf": "Madefaidrin", + "Mend": "Mende", + "Merc": "Meroitic Curve", + "Mero": "Meroitic", "Mlym": "Maalayalam", + "Modi": "Moodi", "Mong": "Mongooliyaan", + "Mroo": "Mro", + "Mtei": "Qoraalka Luuqada Meitei", + "Mult": "Multani", "Mymr": "Mayanmaar", + "Nand": "Nandinagari", + "Narb": "Carabiyadii Hore ee Wuqooye", + "Nbat": "Nabataean", + "Newa": "Newa", + "Nkoo": "N’Ko", + "Nshu": "Nüshu", + "Ogam": "Ogham", + "Olck": "Ol Jiki", + "Orkh": "Orkhon", "Orya": "Oodhiya", + "Osge": "Osage", + "Osma": "Osmanya", + "Palm": "Palmyrene", + "Pauc": "Baaw Sin Haaw", + "Perm": "Permic gii hore", + "Phag": "Qoraalka Phags-pa", + "Phli": "Qoraaladii hore ee Pahlavi", + "Phlp": "Qoraalka midig laga bilaabo ee faarsiyiintii", + "Phnx": "Luuqada Phoenicianka", + "Plrd": "Shibanaha", + "Prti": "Qoraalka Parthian", + "Qaag": "Qoraalka Sawgiga", + "Rjng": "Dadka Rejan", + "Rohg": "Hanifi Rohingya", + "Runr": "Dadka Rejang", + "Samr": "Dadka Samaritan", + "Sarb": "Crabiyaankii Hore ee Wuqooyi", + "Saur": "Sawrashtra", + "Sgnw": "Qaabka dhagoolka loola hadlo", + "Shaw": "calaamad qoris", + "Shrd": "Sharada", + "Sidd": "Siddham", + "Sind": "khudwadi", "Sinh": "Sinhaala", + "Sogd": "Sogdiyaan", + "Sogo": "Sogdiyaankii Hore", + "Sora": "Qoraalka Sora Sompeng", + "Soyo": "Soyombo", + "Sund": "Dadka Sundaniiska", + "Sylo": "Qoraalka Luuqada Sylheti", + "Syrc": "Lahjada Syriac", + "Tagb": "Tagbanwa", + "Takr": "Takri", + "Tale": "Tai Le", + "Talu": "Tai Lue cusub", "Taml": "Taamiil", + "Tang": "Luuqada Tangut", + "Tavt": "Farta lagu Qoro Luuqadaha Tai", "Telu": "Teeluguu", + "Tfng": "Farta Tifinagh", + "Tglg": "Luuqada Tagalog", "Thaa": "Daana", "Thai": "Taay", "Tibt": "Tibetaan", + "Tirh": "Qoraalka Luuqada Maithili", + "Ugar": "Luuqada Ugaritic", + "Vaii": "Dadka Vai", + "Wara": "Nidaamka Qoraalka Luuqada Ho", + "Wcho": "Dadka wanjo", + "Xpeo": "Faarsigii Hore", + "Xsux": "Qoraalkii Hore ee dadka Sumaariyiinta ee dhulka mesobataamiya", + "Yezi": "Dadka Yesiidiga", + "Yiii": "Tiknoolajiyada Yi", + "Zanb": "Xarafka laba jibaaran ee kujira Xarfaha Zanabazar", + "Zinh": "Dhaxlay", "Zmth": "Aqoonsiga Xisaabta", "Zsye": "Calaamad Dareen Muujin", "Zsym": "Calaamado", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json index d0889ee008..a3bfeb32c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arabik", "Armn": "armen", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sr.json b/src/Symfony/Component/Intl/Resources/data/scripts/sr.json index 4ecf5f25b7..cc52cb3678 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json index 69561814e4..e4f3c1c61a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/su.json b/src/Symfony/Component/Intl/Resources/data/scripts/su.json new file mode 100644 index 0000000000..9a9267a25d --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/scripts/su.json @@ -0,0 +1,11 @@ +{ + "Names": { + "Arab": "Basa Arab", + "Cyrl": "Sirilik", + "Hans": "Sederhana", + "Hant": "Tradisional", + "Latn": "Latin", + "Zxxx": "Non-tulisan", + "Zzzz": "Skrip Teu Dipikaterang" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json index 0a65a07b13..ebbd09f56f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "adlamiska", "Afak": "afakiska", "Aghb": "kaukasiska albanska", "Ahom": "ahom", "Arab": "arabiska", + "Aran": "nastaliq", "Armi": "imperisk arameiska", "Armn": "armeniska", "Avst": "avestiska", @@ -134,6 +134,7 @@ "Phnx": "feniciska", "Plrd": "pollardtecken", "Prti": "tidig parthianska", + "Qaag": "zawgyi", "Rjng": "rejang", "Rohg": "hanifiska", "Roro": "rongo-rongo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index f7d5901438..85de282f9b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Kiarabu", "Armn": "Kiarmenia", @@ -13,7 +12,7 @@ "Grek": "Kigiriki", "Gujr": "Kigujarati", "Guru": "Kigurmukhi", - "Hanb": "Hanb", + "Hanb": "Kihan chenye Bopomofo", "Hang": "Kihangul", "Hani": "Kihan", "Hans": "Rahisi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json index 09c0ff4bfe..ecc3088ccc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Brai": "Breli", "Ethi": "Kihabeshi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json index 77dd37be1f..ae6ff9ad83 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "அரபிக்", "Armi": "இம்பேரியல் அரமெய்க்", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/te.json b/src/Symfony/Component/Intl/Resources/data/scripts/te.json index 56254371a3..3868357b34 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/te.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/te.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "అరబిక్", "Armi": "ఇంపీరియల్ అరామాక్", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tg.json b/src/Symfony/Component/Intl/Resources/data/scripts/tg.json index 764d0635d8..3ed8d5f795 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Арабӣ", "Cyrl": "Кириллӣ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/th.json b/src/Symfony/Component/Intl/Resources/data/scripts/th.json index 8a3bf886cd..985c3b0f8e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/th.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/th.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "อะฟาคา", "Aghb": "แอลเบเนีย คอเคเซีย", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json index a36cf3771d..c028920135 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Ethi": "ፊደል", "Latn": "ላቲን" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tk.json b/src/Symfony/Component/Intl/Resources/data/scripts/tk.json index cea40e1a83..8f72d786bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arap elipbiýi", "Armn": "Ermeni elipbiýi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json index 4afde3a05c..d2c0fd8a0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Arabic", "Armn": "Armenian", @@ -13,7 +12,7 @@ "Grek": "Greek", "Gujr": "Gujarati", "Guru": "Gurmukhi", - "Hanb": "Hanb", + "Hanb": "Han na may Bopomofo", "Hang": "Hangul", "Hani": "Han", "Hans": "Pinasimple", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/to.json b/src/Symfony/Component/Intl/Resources/data/scripts/to.json index d503cbef59..3a42afa0f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/to.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/to.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "tohinima fakaʻafaka", "Aghb": "tohinima fakaʻalapēnia-kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tr.json b/src/Symfony/Component/Intl/Resources/data/scripts/tr.json index 946029b183..8d05f8a033 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tr.json @@ -1,9 +1,9 @@ { - "Version": "36.1", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", "Arab": "Arap", + "Aran": "Nestâlik", "Armi": "İmparatorluk Aramicesi", "Armn": "Ermeni", "Avst": "Avesta", @@ -68,7 +68,7 @@ "Khmr": "Kmer", "Khoj": "Khojki", "Knda": "Kannada", - "Kore": "Kore", + "Kore": "Korece", "Kpel": "Kpelle", "Kthi": "Kaithi", "Lana": "Lanna", @@ -86,7 +86,6 @@ "Lydi": "Lidya", "Mahj": "Mahajani", "Mand": "Manden", - "Mani": "Mani", "Maya": "Maya Hiyeroglifleri", "Mend": "Mende", "Merc": "Meroitik El Yazısı", @@ -118,6 +117,7 @@ "Phnx": "Fenike", "Plrd": "Pollard Fonetik", "Prti": "Partça Kitabe Dili", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Roro": "Rongorongo", "Runr": "Runik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json index 2253e55046..4a1f555076 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "гарәп", "Cyrl": "кирилл", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json index 68b1fb40a9..8601ef955f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Afak": "ئافاكا", "Arab": "ئەرەب", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json index 4ac83c7775..9172fddb1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "адлам", "Afak": "афака", "Aghb": "кавказька албанська", "Ahom": "ахом", "Arab": "арабиця", + "Aran": "насталік", "Armi": "армі", "Armn": "вірменська", "Avst": "авестійський", @@ -104,6 +104,7 @@ "Phnx": "фінікійський", "Plrd": "писемність Полларда", "Prti": "парфянський", + "Qaag": "зоджі", "Rjng": "реджанг", "Roro": "ронго-ронго", "Runr": "рунічний", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index 1eba958034..ce1e3882ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json @@ -1,7 +1,7 @@ { - "Version": "36.1", "Names": { "Arab": "عربی", + "Aran": "نستعلیق", "Armn": "آرمینیائی", "Beng": "بنگالی", "Bopo": "بوپوموفو", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json index fa1c5ff9aa..9c3e8f3f50 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "arab", "Armn": "arman", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json index 16cf4cfed8..a2e55d0bb5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "عربی" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json index 0b58f51d91..dec3bc7d91 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Араб", "Armn": "Арман", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json index a595534b8c..ddb5ce0414 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json @@ -1,8 +1,8 @@ { - "Version": "36.1", "Names": { "Afak": "Chữ Afaka", "Arab": "Chữ Ả Rập", + "Aran": "Chữ Nastaliq", "Armi": "Chữ Imperial Aramaic", "Armn": "Chữ Armenia", "Avst": "Chữ Avestan", @@ -113,6 +113,7 @@ "Phnx": "Chữ Phoenicia", "Plrd": "Ngữ âm Pollard", "Prti": "Chữ Parthia Văn bia", + "Qaag": "Chữ Zawgyi", "Rjng": "Chữ Rejang", "Roro": "Chữ Rongorongo", "Runr": "Chữ Runic", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json index fd64d26372..f8d48bd66d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "Araab", "Cyrl": "Sirilik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json index 59f1b83831..dc2fbd6f67 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "אַראַביש", "Cyrl": "ציריליש", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json index 1a9e8c40d8..c3db56f3d7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "èdè Lárúbáwá", "Cyrl": "èdè ilẹ̀ Rọ́ṣíà", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json index 5b7393a3ac..c0f352830d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Cyrl": "èdè ilɛ̀ Rɔ́shíà", "Hans": "tí wɔ́n mú rɔrùn.", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json index 98534c891d..415a11251a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json @@ -1,9 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "阿德拉姆文", "Afak": "阿法卡文", + "Aghb": "高加索阿尔巴尼亚文", + "Ahom": "Ahom", "Arab": "阿拉伯文", + "Aran": "波斯体", "Armi": "皇室亚拉姆文", "Armn": "亚美尼亚文", "Avst": "阿维斯陀文", @@ -24,12 +26,14 @@ "Cari": "卡里亚文", "Cham": "占文", "Cher": "切罗基文", + "Chrs": "花拉子模文", "Cirt": "色斯文", "Copt": "克普特文", "Cprt": "塞浦路斯文", "Cyrl": "西里尔文", "Cyrs": "西里尔文字(古教会斯拉夫文的变体)", "Deva": "天城文", + "Diak": "迪维西阿库鲁文", "Dogr": "多格拉文", "Dsrt": "德塞莱特文", "Dupl": "杜普洛伊速记", @@ -37,6 +41,7 @@ "Egyh": "古埃及僧侣书写体", "Egyp": "古埃及象形文", "Elba": "爱尔巴桑文", + "Elym": "埃利迈文", "Ethi": "埃塞俄比亚文", "Geok": "格鲁吉亚文(教堂体)", "Geor": "格鲁吉亚文", @@ -54,6 +59,7 @@ "Hano": "汉奴罗文", "Hans": "简体", "Hant": "繁体", + "Hatr": "哈特兰文", "Hebr": "希伯来文", "Hira": "平假名", "Hluw": "安那托利亚象形文字", @@ -72,6 +78,7 @@ "Khar": "卡罗须提文", "Khmr": "高棉文", "Khoj": "克吉奇文字", + "Kits": "契丹小字", "Knda": "卡纳达文", "Kore": "韩文", "Kpel": "克佩列文", @@ -89,6 +96,7 @@ "Loma": "洛马文", "Lyci": "利西亚文", "Lydi": "吕底亚文", + "Mahj": "默哈金文", "Maka": "望加锡文", "Mand": "阿拉米文", "Mani": "摩尼教文", @@ -99,10 +107,12 @@ "Merc": "麦罗埃草书", "Mero": "麦若提克文", "Mlym": "马拉雅拉姆文", + "Modi": "莫迪文", "Mong": "蒙古文", "Moon": "韩文语系", "Mroo": "谬文", "Mtei": "曼尼普尔文", + "Mult": "穆尔坦文", "Mymr": "缅甸文", "Nand": "楠迪梵文", "Narb": "古北方阿拉伯文", @@ -127,6 +137,7 @@ "Phnx": "腓尼基文", "Plrd": "波拉德音标文字", "Prti": "帕提亚文碑铭体", + "Qaag": "Zawgyi", "Rjng": "拉让文", "Rohg": "哈乃斐罗兴亚文", "Roro": "朗格朗格文", @@ -170,9 +181,11 @@ "Vaii": "瓦依文", "Visp": "可见语言", "Wara": "瓦郎奇蒂文字", + "Wcho": "万秋文", "Wole": "沃莱艾文", "Xpeo": "古波斯文", "Xsux": "苏美尔-阿卡德楔形文字", + "Yezi": "雅兹迪文", "Yiii": "彝文", "Zanb": "札那巴札尔方块文字", "Zinh": "遗传学术语", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json index edea872a6e..08cd7e5f43 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Cyrl": "西里爾文", "Ethi": "埃塞俄比亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json index 8ff3b3f180..7961f888b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json @@ -1,11 +1,11 @@ { - "Version": "36.1", "Names": { "Adlm": "富拉文", "Afak": "阿法卡文字", "Aghb": "高加索阿爾巴尼亞文", "Ahom": "阿洪姆文", "Arab": "阿拉伯文", + "Aran": "波斯體", "Armi": "皇室亞美尼亞文", "Armn": "亞美尼亞文", "Avst": "阿維斯陀文", @@ -127,6 +127,7 @@ "Phnx": "腓尼基文", "Plrd": "柏格理拼音符", "Prti": "帕提亞文(碑銘體)", + "Qaag": "佐基文", "Rjng": "拉讓文", "Roro": "朗格朗格象形文", "Runr": "古北歐文字", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json index edea872a6e..08cd7e5f43 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Cyrl": "西里爾文", "Ethi": "埃塞俄比亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json index 083355f6e7..0caae29f52 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Arab": "isi-Arabic", "Armn": "isi-Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/af.json b/src/Symfony/Component/Intl/Resources/data/timezones/af.json index 5b6e796376..3cd12364c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/af.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/af.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich-tyd (Abidjan)", "Africa\/Accra": "Greenwich-tyd (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/am.json b/src/Symfony/Component/Intl/Resources/data/timezones/am.json index b9831eb743..6828aa4325 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/am.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/am.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ግሪንዊች ማዕከላዊ ሰዓት (አቢጃን)", "Africa\/Accra": "ግሪንዊች ማዕከላዊ ሰዓት (አክራ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ar.json b/src/Symfony/Component/Intl/Resources/data/timezones/ar.json index c636011a08..8c297a1e9d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ar.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "توقيت غرينتش (أبيدجان)", "Africa\/Accra": "توقيت غرينتش (أكرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/as.json b/src/Symfony/Component/Intl/Resources/data/timezones/as.json index 32401d0431..43c56e0900 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/as.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/as.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "গ্ৰীণউইচ মান সময় (আবিডজান)", "Africa\/Accra": "গ্ৰীণউইচ মান সময় (এক্ৰা)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/az.json b/src/Symfony/Component/Intl/Resources/data/timezones/az.json index a51d97b984..d98c38ca18 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/az.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/az.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Qrinviç Orta Vaxtı (Abican)", "Africa\/Accra": "Qrinviç Orta Vaxtı (Akkra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/be.json b/src/Symfony/Component/Intl/Resources/data/timezones/be.json index 6d61187d92..344bb1e8d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/be.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/be.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Час па Грынвічы (Абіджан)", "Africa\/Accra": "Час па Грынвічы (Акра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bg.json b/src/Symfony/Component/Intl/Resources/data/timezones/bg.json index 6072442ba4..7fac965cf3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Средно гринуичко време (Абиджан)", "Africa\/Accra": "Средно гринуичко време (Акра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bn.json b/src/Symfony/Component/Intl/Resources/data/timezones/bn.json index 07e9436552..e0fef4ebf9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "গ্রীনিচ মিন টাইম (আবিদজান)", "Africa\/Accra": "গ্রীনিচ মিন টাইম (আক্রা)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bo.json b/src/Symfony/Component/Intl/Resources/data/timezones/bo.json index 73f81d9d56..7d472fda91 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "America\/Adak": "ཨ་མེ་རི་ཀ། (Adak)", "America\/Anchorage": "ཨ་མེ་རི་ཀ། (Anchorage)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/br.json b/src/Symfony/Component/Intl/Resources/data/timezones/br.json index a3e89b8cac..ffbdf5afad 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/br.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/br.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Amzer keitat Greenwich (AKG) (Abidjan)", "Africa\/Accra": "Amzer keitat Greenwich (AKG) (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bs.json b/src/Symfony/Component/Intl/Resources/data/timezones/bs.json index 9e5ac16430..6b2508e047 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Griničko vrijeme (Abidjan)", "Africa\/Accra": "Griničko vrijeme (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json index 5e488da7a8..4fdc53d9b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гриничко средње вријеме (Абиџан)", "Africa\/Accra": "Гриничко средње вријеме (Акра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ca.json b/src/Symfony/Component/Intl/Resources/data/timezones/ca.json index a48abbf797..8323716192 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ca.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Hora del Meridià de Greenwich (Abidjan)", "Africa\/Accra": "Hora del Meridià de Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ce.json b/src/Symfony/Component/Intl/Resources/data/timezones/ce.json index dcbf0ff802..5ddc9f0c7f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ce.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвичица юкъара хан (Абиджан)", "Africa\/Accra": "Гринвичица юкъара хан (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/cs.json b/src/Symfony/Component/Intl/Resources/data/timezones/cs.json index 331a51433e..e0d90dfa25 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/cs.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwichský střední čas (Abidžan)", "Africa\/Accra": "Greenwichský střední čas (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/cy.json b/src/Symfony/Component/Intl/Resources/data/timezones/cy.json index b65e923b7a..c33f4e803e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/cy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Amser Safonol Greenwich (Abidjan)", "Africa\/Accra": "Amser Safonol Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/da.json b/src/Symfony/Component/Intl/Resources/data/timezones/da.json index e0b1c52844..f62a1af0bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/da.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/da.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "GMT (Abidjan)", "Africa\/Accra": "GMT (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/de.json b/src/Symfony/Component/Intl/Resources/data/timezones/de.json index 6a9b3a9e8a..4a4a052bc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/de.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/de.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Mittlere Greenwich-Zeit (Abidjan)", "Africa\/Accra": "Mittlere Greenwich-Zeit (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/de_CH.json b/src/Symfony/Component/Intl/Resources/data/timezones/de_CH.json index 42d626f3a1..96ec4c87ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/de_CH.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Asia\/Brunei": "Brunei-Zeit", "Asia\/Macau": "Chinesische Zeit (Macao)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/dz.json b/src/Symfony/Component/Intl/Resources/data/timezones/dz.json index c6df03a346..d150f00161 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/dz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "གིརིན་ཝིཆ་ལུ་ཡོད་པའི་ཆུ་ཚོད། (Abidjan་)", "Africa\/Accra": "གིརིན་ཝིཆ་ལུ་ཡོད་པའི་ཆུ་ཚོད། (Accra་)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ee.json b/src/Symfony/Component/Intl/Resources/data/timezones/ee.json index 7097bba565..5e51046087 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ee.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich gaƒoƒo me (Abidjan)", "Africa\/Accra": "Greenwich gaƒoƒo me (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/el.json b/src/Symfony/Component/Intl/Resources/data/timezones/el.json index 89835fbd6b..39c08c9cf3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/el.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/el.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "[Μέση ώρα Γκρίνουιτς (Αμπιτζάν)]", "Africa\/Accra": "[Μέση ώρα Γκρίνουιτς (Άκρα)]", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en.json b/src/Symfony/Component/Intl/Resources/data/timezones/en.json index 423a7b11e0..5685e42f78 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en_001.json b/src/Symfony/Component/Intl/Resources/data/timezones/en_001.json index f5fa9282ff..1bab1943f2 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en_001.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "America\/Miquelon": "St Pierre & Miquelon Time", "America\/St_Barthelemy": "Atlantic Time (St Barthélemy)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en_AU.json b/src/Symfony/Component/Intl/Resources/data/timezones/en_AU.json index bf271a01ca..fdd8054eeb 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en_AU.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Addis_Ababa": "Eastern Africa Time (Addis Ababa)", "Africa\/Asmera": "Eastern Africa Time (Asmara)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en_CA.json b/src/Symfony/Component/Intl/Resources/data/timezones/en_CA.json index 762f43d1a2..845de560a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Asia\/Rangoon": "Myanmar Time (Rangoon)" }, diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en_IN.json b/src/Symfony/Component/Intl/Resources/data/timezones/en_IN.json index 762f43d1a2..845de560a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Asia\/Rangoon": "Myanmar Time (Rangoon)" }, diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/es.json b/src/Symfony/Component/Intl/Resources/data/timezones/es.json index cf4bb77a49..9d4f8024e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/es.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/es.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "hora del meridiano de Greenwich (Abiyán)", "Africa\/Accra": "hora del meridiano de Greenwich (Acra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/es_419.json b/src/Symfony/Component/Intl/Resources/data/timezones/es_419.json index 3fdd1b58b6..3a9c5653fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/es_419.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Cairo": "hora de Europa del Este (El Cairo)", "Africa\/Casablanca": "hora de Europa del Oeste (Casablanca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/es_MX.json b/src/Symfony/Component/Intl/Resources/data/timezones/es_MX.json index 4b79579346..a98b2034ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/es_MX.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Bujumbura": "hora de África central (Buyumbura)", "Africa\/Conakry": "hora del meridiano de Greenwich (Conakri)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/es_US.json b/src/Symfony/Component/Intl/Resources/data/timezones/es_US.json index 68bcce8fd6..799bf30e67 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/es_US.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "America\/Rio_Branco": "Hora de Acre (Rio Branco)", "Asia\/Almaty": "hora de Kazajistán oriental (Almatý)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/et.json b/src/Symfony/Component/Intl/Resources/data/timezones/et.json index 5cc6f98629..ec2fe0e900 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/et.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/et.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwichi aeg (Abidjan)", "Africa\/Accra": "Greenwichi aeg (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/eu.json b/src/Symfony/Component/Intl/Resources/data/timezones/eu.json index c146a5bc17..aa45b410a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/eu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwichko meridianoaren ordua (Abidjan)", "Africa\/Accra": "Greenwichko meridianoaren ordua (Akkra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fa.json b/src/Symfony/Component/Intl/Resources/data/timezones/fa.json index 953774117e..7a07292ea0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "وقت گرینویچ (آبیجان)", "Africa\/Accra": "وقت گرینویچ (اکرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fi.json b/src/Symfony/Component/Intl/Resources/data/timezones/fi.json index 8835eb8b8a..8b36c6f9b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwichin normaaliaika (Abidjan)", "Africa\/Accra": "Greenwichin normaaliaika (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fo.json b/src/Symfony/Component/Intl/Resources/data/timezones/fo.json index da3f24d354..e522ccf1dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean tíð (Abidjan)", "Africa\/Accra": "Greenwich Mean tíð (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fr.json b/src/Symfony/Component/Intl/Resources/data/timezones/fr.json index 697b74b19c..5f7b3e2922 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "heure moyenne de Greenwich (Abidjan)", "Africa\/Accra": "heure moyenne de Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/timezones/fr_CA.json index 1f204dcd5c..0c1f2e0ea4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fr_CA.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Addis_Ababa": "heure d’Afrique orientale (Addis-Abeba)", "Africa\/Asmera": "heure d’Afrique orientale (Asmara)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fy.json b/src/Symfony/Component/Intl/Resources/data/timezones/fy.json index 38c744ccc6..eaa97c6f0b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ga.json b/src/Symfony/Component/Intl/Resources/data/timezones/ga.json index a912dde117..72596d5057 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ga.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Meán-Am Greenwich (Abidjan)", "Africa\/Accra": "Meán-Am Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gd.json b/src/Symfony/Component/Intl/Resources/data/timezones/gd.json index 45b95afd69..9c3ad74e3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gl.json b/src/Symfony/Component/Intl/Resources/data/timezones/gl.json index 804736bff9..aca426b5f1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Horario do meridiano de Greenwich (Abidjan)", "Africa\/Accra": "Horario do meridiano de Greenwich (Acra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gu.json b/src/Symfony/Component/Intl/Resources/data/timezones/gu.json index 5cf2baa18c..00892999d0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ગ્રીનવિચ મધ્યમ સમય (આબિદ્જાન)", "Africa\/Accra": "ગ્રીનવિચ મધ્યમ સમય (ઍકરા)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ha.json b/src/Symfony/Component/Intl/Resources/data/timezones/ha.json index 2e817c7f4f..0c4cc93bd2 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ha.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Lokacin Greenwhich a London (Abidjan)", "Africa\/Accra": "Lokacin Greenwhich a London (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/he.json b/src/Symfony/Component/Intl/Resources/data/timezones/he.json index b58a4fdb62..8ea2db63dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/he.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/he.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "שעון גריניץ׳‏ (אביג׳אן)", "Africa\/Accra": "שעון גריניץ׳‏ (אקרה)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hi.json b/src/Symfony/Component/Intl/Resources/data/timezones/hi.json index 26e791650a..a5242dcc08 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ग्रीनविच मीन टाइम (अबिदजान)", "Africa\/Accra": "ग्रीनविच मीन टाइम (एक्रा)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hr.json b/src/Symfony/Component/Intl/Resources/data/timezones/hr.json index 506c44392d..a8853ca6de 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "univerzalno vrijeme (Abidjan)", "Africa\/Accra": "univerzalno vrijeme (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hu.json b/src/Symfony/Component/Intl/Resources/data/timezones/hu.json index c2cd42a5fc..21fe46f6d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "greenwichi középidő, téli idő (Abidjan)", "Africa\/Accra": "greenwichi középidő, téli idő (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hy.json b/src/Symfony/Component/Intl/Resources/data/timezones/hy.json index d265a17eb8..af8117e033 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hy.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Գրինվիչի ժամանակ (Աբիջան)", "Africa\/Accra": "Գրինվիչի ժամանակ (Աքրա)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ia.json b/src/Symfony/Component/Intl/Resources/data/timezones/ia.json index 8698841692..aedaf6702c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ia.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "hora medie de Greenwich (Abidjan)", "Africa\/Accra": "hora medie de Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/id.json b/src/Symfony/Component/Intl/Resources/data/timezones/id.json index 39c943a80e..5ecabdcb6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/id.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/id.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ig.json b/src/Symfony/Component/Intl/Resources/data/timezones/ig.json index 17b07621c9..0e150fb434 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ig.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Oge Mpaghara Greemwich Mean (Abidjan)", "Africa\/Accra": "Oge Mpaghara Greemwich Mean (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ii.json b/src/Symfony/Component/Intl/Resources/data/timezones/ii.json index 99a755c0f0..3ba3c9a985 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ii.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "America\/Adak": "ꂰꇩ (Adak)", "America\/Anchorage": "ꂰꇩ (Anchorage)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/is.json b/src/Symfony/Component/Intl/Resources/data/timezones/is.json index c061994db4..066a89545d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/is.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/is.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich-staðaltími (Abidjan)", "Africa\/Accra": "Greenwich-staðaltími (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/it.json b/src/Symfony/Component/Intl/Resources/data/timezones/it.json index 59360222ac..15cef96f66 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/it.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/it.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ora del meridiano di Greenwich (Abidjan)", "Africa\/Accra": "Ora del meridiano di Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ja.json b/src/Symfony/Component/Intl/Resources/data/timezones/ja.json index bad97fb63a..4ecf9723f1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ja.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "グリニッジ標準時(アビジャン)", "Africa\/Accra": "グリニッジ標準時(アクラ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/jv.json b/src/Symfony/Component/Intl/Resources/data/timezones/jv.json index 583548d5e2..d5f5a0c430 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/jv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Wektu Rerata Greenwich (Abidjan)", "Africa\/Accra": "Wektu Rerata Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ka.json b/src/Symfony/Component/Intl/Resources/data/timezones/ka.json index f42a243d2d..430c1abb1b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ka.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "გრინვიჩის საშუალო დრო (აბიჯანი)", "Africa\/Accra": "გრინვიჩის საშუალო დრო (აკრა)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/kk.json b/src/Symfony/Component/Intl/Resources/data/timezones/kk.json index dc888aa048..a9a05d376f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/kk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвич уақыты (Абиджан)", "Africa\/Accra": "Гринвич уақыты (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/km.json b/src/Symfony/Component/Intl/Resources/data/timezones/km.json index c4ef1e18ac..f9040965e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/km.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/km.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ម៉ោងនៅគ្រីនវិច (អាប៊ីដ្យាន)", "Africa\/Accra": "ម៉ោងនៅគ្រីនវិច (អាក្រា)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/kn.json b/src/Symfony/Component/Intl/Resources/data/timezones/kn.json index ad83299ba7..3f0be5efef 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/kn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ಗ್ರೀನ್‌ವಿಚ್ ಸರಾಸರಿ ಕಾಲಮಾನ (ಅಬಿದ್‌ಜನ್)", "Africa\/Accra": "ಗ್ರೀನ್‌ವಿಚ್ ಸರಾಸರಿ ಕಾಲಮಾನ (ಅಕ್ರಾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ko.json b/src/Symfony/Component/Intl/Resources/data/timezones/ko.json index bb71217f13..1255fe5f98 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ko.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "그리니치 표준시(아비장)", "Africa\/Accra": "그리니치 표준시(아크라)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ko_KP.json b/src/Symfony/Component/Intl/Resources/data/timezones/ko_KP.json index 4ebd223396..3497f4ff9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ko_KP.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ko_KP.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Asia\/Pyongyang": "조선 시간(평양)", "Asia\/Seoul": "조선 시간(서울)" diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ks.json b/src/Symfony/Component/Intl/Resources/data/timezones/ks.json index 3edfc3bff5..ab0dcd96e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ks.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "گریٖن وِچ میٖن ٹایِم (عابِدجان)", "Africa\/Accra": "گریٖن وِچ میٖن ٹایِم (اؠکرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ky.json b/src/Symfony/Component/Intl/Resources/data/timezones/ky.json index e06128d5cd..228c68b2c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ky.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвич боюнча орточо убакыт (Абиджан)", "Africa\/Accra": "Гринвич боюнча орточо убакыт (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lb.json b/src/Symfony/Component/Intl/Resources/data/timezones/lb.json index 63757eb96c..e095e359ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Mëttler Greenwich-Zäit (Abidjan)", "Africa\/Accra": "Mëttler Greenwich-Zäit (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ln.json b/src/Symfony/Component/Intl/Resources/data/timezones/ln.json index 14e2608a99..81f701c36b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ln.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ngonga ya Kotídivualɛ (Abidjan)", "Africa\/Accra": "Ngonga ya Gana (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lo.json b/src/Symfony/Component/Intl/Resources/data/timezones/lo.json index 4d33c4d639..3f60d355ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ເວ​ລາກຣີນ​ວິ​ຊ (ອາບິດແຈນ)", "Africa\/Accra": "ເວ​ລາກຣີນ​ວິ​ຊ (ອັກຄຣາ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lt.json b/src/Symfony/Component/Intl/Resources/data/timezones/lt.json index e8ce1a2075..d873025a05 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Grinvičo laikas (Abidžanas)", "Africa\/Accra": "Grinvičo laikas (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lv.json b/src/Symfony/Component/Intl/Resources/data/timezones/lv.json index 248de9ca61..9bd985c047 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Abidžana (Griničas laiks)", "Africa\/Accra": "Akra (Griničas laiks)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/meta.json b/src/Symfony/Component/Intl/Resources/data/timezones/meta.json index e4c866fbf1..bf7fed2396 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/meta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Zones": [ "Africa\/Abidjan", "Africa\/Accra", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mi.json b/src/Symfony/Component/Intl/Resources/data/timezones/mi.json index cdc109e9c6..fbc988b057 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Wā Toharite Greenwich (Abidjan)", "Africa\/Accra": "Wā Toharite Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mk.json b/src/Symfony/Component/Intl/Resources/data/timezones/mk.json index e7a9afac94..3be148c528 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Средно време по Гринич (Абиџан)", "Africa\/Accra": "Средно време по Гринич (Акра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ml.json b/src/Symfony/Component/Intl/Resources/data/timezones/ml.json index b62b8f977e..9a3eb81ef4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ml.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ഗ്രീൻവിച്ച് മീൻ സമയം (അബിദ്‌ജാൻ‌)", "Africa\/Accra": "ഗ്രീൻവിച്ച് മീൻ സമയം (ആക്ര)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mn.json b/src/Symfony/Component/Intl/Resources/data/timezones/mn.json index b6d503ba49..08d6db89cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвичийн цаг (Абижан)", "Africa\/Accra": "Гринвичийн цаг (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mr.json b/src/Symfony/Component/Intl/Resources/data/timezones/mr.json index f5cb64dfd2..ceb297adad 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ग्रीनिच प्रमाण वेळ (अबिद्जान)", "Africa\/Accra": "ग्रीनिच प्रमाण वेळ (अ‍ॅक्रा)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ms.json b/src/Symfony/Component/Intl/Resources/data/timezones/ms.json index 59d7564cb0..ea5b8f5fe8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ms.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Waktu Min Greenwich (Abidjan)", "Africa\/Accra": "Waktu Min Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mt.json b/src/Symfony/Component/Intl/Resources/data/timezones/mt.json index e9497966b9..237ce80fd6 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ħin ta’ il-Kosta tal-Avorju (Abidjan)", "Africa\/Accra": "Ħin ta’ il-Ghana (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/my.json b/src/Symfony/Component/Intl/Resources/data/timezones/my.json index 1e7b24ee37..ea76ffa395 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/my.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/my.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ဂရင်းနစ် စံတော်ချိန် (အာဘီဂျန်)", "Africa\/Accra": "ဂရင်းနစ် စံတော်ချိန် (အက်ကရာ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nb.json b/src/Symfony/Component/Intl/Resources/data/timezones/nb.json index 6ed54760cd..f6a70a2543 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nb.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich middeltid (Abidjan)", "Africa\/Accra": "Greenwich middeltid (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ne.json b/src/Symfony/Component/Intl/Resources/data/timezones/ne.json index cc21bdf0c2..089cfccaf1 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ne.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ग्रीनविच मिन समय (अविड्जान)", "Africa\/Accra": "ग्रीनविच मिन समय (अक्रा)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nl.json b/src/Symfony/Component/Intl/Resources/data/timezones/nl.json index 468bf9af30..628df1878e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nn.json b/src/Symfony/Component/Intl/Resources/data/timezones/nn.json index 592a7af82e..dca6bed67f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich middeltid (Abidjan)", "Africa\/Accra": "Greenwich middeltid (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/om.json b/src/Symfony/Component/Intl/Resources/data/timezones/om.json index 00ca8c1ae2..d36d01a5b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/om.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/om.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Addis_Ababa": "Itoophiyaa (Addis Ababa)", "Africa\/Nairobi": "Keeniyaa (Nairobi)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/or.json b/src/Symfony/Component/Intl/Resources/data/timezones/or.json index 9aa3ab64c4..7aeb737278 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/or.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/or.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ଗ୍ରୀନୱିଚ୍ ମିନ୍ ସମୟ (ଆବିଦଜାନ)", "Africa\/Accra": "ଗ୍ରୀନୱିଚ୍ ମିନ୍ ସମୟ (ଆକାରା)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/os.json b/src/Symfony/Component/Intl/Resources/data/timezones/os.json index a47a3ef155..e116724fad 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/os.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/os.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвичы рӕстӕмбис рӕстӕг (Abidjan)", "Africa\/Accra": "Гринвичы рӕстӕмбис рӕстӕг (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pa.json b/src/Symfony/Component/Intl/Resources/data/timezones/pa.json index d86714adb4..59254b06db 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pa.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ਗ੍ਰੀਨਵਿਚ ਮੀਨ ਵੇਲਾ (ਅਬੀਦਜਾਨ)", "Africa\/Accra": "ਗ੍ਰੀਨਵਿਚ ਮੀਨ ਵੇਲਾ (ਅੱਕਰਾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pl.json b/src/Symfony/Component/Intl/Resources/data/timezones/pl.json index 8368acd53c..2a40fb3ce5 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "czas uniwersalny (Abidżan)", "Africa\/Accra": "czas uniwersalny (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ps.json b/src/Symfony/Component/Intl/Resources/data/timezones/ps.json index 2dc99db257..1eec3872bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ps.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ګرينويچ معياري وخت (ابيجان)", "Africa\/Accra": "ګرينويچ معياري وخت (اکرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ps_PK.json b/src/Symfony/Component/Intl/Resources/data/timezones/ps_PK.json index a6274101f6..4f47288e15 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ps_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ps_PK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Casablanca": "لوېديزے اروپا وخت (کاسابلانکا)", "Africa\/El_Aaiun": "لوېديزے اروپا وخت (الیون)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pt.json b/src/Symfony/Component/Intl/Resources/data/timezones/pt.json index d2bcc092a1..154ee9b2f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Horário do Meridiano de Greenwich (Abidjan)", "Africa\/Accra": "Horário do Meridiano de Greenwich (Acra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json index 07d60dbf18..9f727a21d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Hora de Greenwich (Abidjan)", "Africa\/Accra": "Hora de Greenwich (Acra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/qu.json b/src/Symfony/Component/Intl/Resources/data/timezones/qu.json index ff81f330ea..6e0d617f37 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/qu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Hora del Meridiano de Greenwich (Abiyán)", "Africa\/Accra": "Hora del Meridiano de Greenwich (Acra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/rm.json b/src/Symfony/Component/Intl/Resources/data/timezones/rm.json index dfc8440e1a..81e5df3812 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/rm.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Costa d’Ivur (Abidjan)", "Africa\/Accra": "Ghana (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ro.json b/src/Symfony/Component/Intl/Resources/data/timezones/ro.json index d17d350770..d9bcf0d27f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ro.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ora de Greenwhich (Abidjan)", "Africa\/Accra": "Ora de Greenwhich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/root.json b/src/Symfony/Component/Intl/Resources/data/timezones/root.json index 63a9f5e428..c6c663e606 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/root.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/root.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Meta": { "GmtFormat": "GMT%s", "HourFormatPos": "+%02d:%02d", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ru.json b/src/Symfony/Component/Intl/Resources/data/timezones/ru.json index bc7cd4d243..1fbb5d277a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ru.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Среднее время по Гринвичу (Абиджан)", "Africa\/Accra": "Среднее время по Гринвичу (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/rw.json b/src/Symfony/Component/Intl/Resources/data/timezones/rw.json index 534949f3c7..e3125511c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/rw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Kigali": "U Rwanda (Kigali)", "Antarctica\/Troll": "Troll", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sd.json b/src/Symfony/Component/Intl/Resources/data/timezones/sd.json index 700c7757fe..4649dcd55d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sd.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "گرين وچ مين ٽائيم (ابي جان)", "Africa\/Accra": "گرين وچ مين ٽائيم (ايڪرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/se.json b/src/Symfony/Component/Intl/Resources/data/timezones/se.json index b807dcd342..bd9c4e3f85 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/se.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/se.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Abidjan (Greenwich gaskka áigi)", "Africa\/Accra": "Accra (Greenwich gaskka áigi)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json b/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json index 12737c3488..7117c70763 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Abidjan (Greenwicha áigi)", "Africa\/Accra": "Accra (Greenwicha áigi)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/si.json b/src/Symfony/Component/Intl/Resources/data/timezones/si.json index ea3a963d6f..ea764579c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/si.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/si.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ග්‍රිනිච් මධ්‍යම වේලාව (අබිජාන්)", "Africa\/Accra": "ග්‍රිනිච් මධ්‍යම වේලාව (අක්රා)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sk.json b/src/Symfony/Component/Intl/Resources/data/timezones/sk.json index 47d1d43040..6de70ff529 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "greenwichský čas (Abidjan)", "Africa\/Accra": "greenwichský čas (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sl.json b/src/Symfony/Component/Intl/Resources/data/timezones/sl.json index fd947127fe..ef49715e9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwiški srednji čas (Abidžan)", "Africa\/Accra": "Greenwiški srednji čas (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/so.json b/src/Symfony/Component/Intl/Resources/data/timezones/so.json index bd27cb83f9..a9409f21a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/so.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/so.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Waqtiga Celceliska Giriinwij (Abidjaan)", "Africa\/Accra": "Waqtiga Celceliska Giriinwij (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sq.json b/src/Symfony/Component/Intl/Resources/data/timezones/sq.json index ffd8cb8e79..d9fbeb931a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sq.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ora e Grinuiçit (Abixhan)", "Africa\/Accra": "Ora e Grinuiçit (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sr.json b/src/Symfony/Component/Intl/Resources/data/timezones/sr.json index 600a50cc83..af7125b6a3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Средње време по Гриничу (Абиџан)", "Africa\/Accra": "Средње време по Гриничу (Акра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json index b517ea6dcd..2a14376980 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Srednje vreme po Griniču (Abidžan)", "Africa\/Accra": "Srednje vreme po Griniču (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sv.json b/src/Symfony/Component/Intl/Resources/data/timezones/sv.json index 381ca25d6b..5899c2ce3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sv.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwichtid (Abidjan)", "Africa\/Accra": "Greenwichtid (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sw.json b/src/Symfony/Component/Intl/Resources/data/timezones/sw.json index 8b693861ac..4197c62839 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sw.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Saa za Greenwich (Abidjan)", "Africa\/Accra": "Saa za Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json index 78be73d9dd..f6cbeda184 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "America\/Araguaina": "Saa za Brazili (Araguaina)", "America\/Argentina\/La_Rioja": "Saa za Ajentina (La Rioja)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ta.json b/src/Symfony/Component/Intl/Resources/data/timezones/ta.json index 67199066b2..2dd2be9643 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ta.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "கிரீன்விச் சராசரி நேரம் (அபிட்ஜான்)", "Africa\/Accra": "கிரீன்விச் சராசரி நேரம் (அக்ரா)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/te.json b/src/Symfony/Component/Intl/Resources/data/timezones/te.json index c2c875f1e7..2b56da9ba7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/te.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/te.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "గ్రీన్‌విచ్ సగటు సమయం (అబిడ్జాన్)", "Africa\/Accra": "గ్రీన్‌విచ్ సగటు సమయం (అక్రా)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tg.json b/src/Symfony/Component/Intl/Resources/data/timezones/tg.json index e2d2afb2c3..f63a822de4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tg.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Ба вақти Гринвич (Abidjan)", "Africa\/Accra": "Ба вақти Гринвич (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/th.json b/src/Symfony/Component/Intl/Resources/data/timezones/th.json index 6b7df9f0e3..5dc3ed1c84 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/th.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/th.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "เวลามาตรฐานกรีนิช (อาบีจาน)", "Africa\/Accra": "เวลามาตรฐานกรีนิช (อักกรา)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ti.json b/src/Symfony/Component/Intl/Resources/data/timezones/ti.json index 8159da43c2..f3f144bbf2 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ti.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "ኮት ዲቯር (Abidjan)", "Africa\/Accra": "ጋና (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tk.json b/src/Symfony/Component/Intl/Resources/data/timezones/tk.json index 60d95ab9c8..23a01cb2b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Grinwiç boýunça orta wagt (Abijan)", "Africa\/Accra": "Grinwiç boýunça orta wagt (Akkra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/to.json b/src/Symfony/Component/Intl/Resources/data/timezones/to.json index c2ea60ac50..a3e7aa8cd7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/to.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/to.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "houa fakakiliniuisi mālie (Abidjan)", "Africa\/Accra": "houa fakakiliniuisi mālie (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tr.json b/src/Symfony/Component/Intl/Resources/data/timezones/tr.json index 163d784df4..b16bbca825 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tr.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Ortalama Saati (Abidjan)", "Africa\/Accra": "Greenwich Ortalama Saati (Akra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tt.json b/src/Symfony/Component/Intl/Resources/data/timezones/tt.json index ac754fbe39..2bda076d29 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tt.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвич уртача вакыты (Abidjan)", "Africa\/Accra": "Гринвич уртача вакыты (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ug.json b/src/Symfony/Component/Intl/Resources/data/timezones/ug.json index ad14605e0d..a6efe03986 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ug.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "گىرىنۋىچ ۋاقتى (Abidjan)", "Africa\/Accra": "گىرىنۋىچ ۋاقتى (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uk.json b/src/Symfony/Component/Intl/Resources/data/timezones/uk.json index 376378c9cf..82f10988f8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uk.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "за Ґрінвічем (Абіджан)", "Africa\/Accra": "за Ґрінвічем (Аккра)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ur.json b/src/Symfony/Component/Intl/Resources/data/timezones/ur.json index 5b0cba49fa..89ef4b379a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ur.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "گرین وچ کا اصل وقت (عابدجان)", "Africa\/Accra": "گرین وچ کا اصل وقت (اکّرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json index 390b1b25b3..4fd5a2f1da 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "گرین وچ مین ٹائم (عابدجان)", "Africa\/Accra": "گرین وچ مین ٹائم (اکرا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uz.json b/src/Symfony/Component/Intl/Resources/data/timezones/uz.json index 6c27c6167b..89bfeb2fb0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uz.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Grinvich o‘rtacha vaqti (Abidjan)", "Africa\/Accra": "Grinvich o‘rtacha vaqti (Akkra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Arab.json index 58e16e8aae..fce7f367e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Arab.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Asia\/Kabul": "Afgʻoniston vaqti (کابل)" }, diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json index 59f51f82a4..6231cd933b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Гринвич вақти (Abidjan)", "Africa\/Accra": "Гринвич вақти (Akkra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/vi.json b/src/Symfony/Component/Intl/Resources/data/timezones/vi.json index 8cb4c3e1af..78fc20b7dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/vi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Giờ Trung bình Greenwich (Abidjan)", "Africa\/Accra": "Giờ Trung bình Greenwich (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/wo.json b/src/Symfony/Component/Intl/Resources/data/timezones/wo.json index 23e7ac55e4..f675b62828 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/wo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "GMT (waxtu Greenwich) (Abidjan)", "Africa\/Accra": "GMT (waxtu Greenwich) (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/yi.json b/src/Symfony/Component/Intl/Resources/data/timezones/yi.json index 6db2c115d6..b3a99b6b63 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/yi.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "העלפֿאַ נדביין בארטן (אַבידזשאַן)", "Africa\/Accra": "גהאַנע (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/yo.json b/src/Symfony/Component/Intl/Resources/data/timezones/yo.json index 4690c17a95..93d927afe7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/yo.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Greenwich Mean Time (Abidjan)", "Africa\/Accra": "Greenwich Mean Time (Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json index ba0d5b8c41..25969c4192 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Casablanca": "Àkókò Ìwɔ Oòrùn Europe (Casablanca)", "Africa\/El_Aaiun": "Àkókò Ìwɔ Oòrùn Europe (El Aaiun)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh.json index aecfa1a8bb..a62d6bec5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "格林尼治标准时间(阿比让)", "Africa\/Accra": "格林尼治标准时间(阿克拉)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json index e840e91c8b..e806370fb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "格林尼治标准时间(阿比让)", "Africa\/Accra": "格林尼治标准时间(阿克拉)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json index dadfee4fb0..8ac76b7906 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "格林威治標準時間(阿比讓)", "Africa\/Accra": "格林威治標準時間(阿克拉)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant_HK.json index e1edd05ece..c49e114089 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant_HK.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "格林威治標準時間(阿比贊)", "Africa\/Asmera": "東非時間(阿斯馬拉)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zu.json b/src/Symfony/Component/Intl/Resources/data/timezones/zu.json index 08743b9e30..b7016ece49 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zu.json @@ -1,5 +1,4 @@ { - "Version": "36.1", "Names": { "Africa\/Abidjan": "Isikhathi sase-Greenwich Mean (i-Abidjan)", "Africa\/Accra": "Isikhathi sase-Greenwich Mean (i-Accra)", diff --git a/src/Symfony/Component/Intl/Resources/data/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 4afa81b96f..e85cbeb31d 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -66.1 +67.1 diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php index cbb686316e..9658adb58e 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php @@ -271,6 +271,19 @@ abstract class AbstractDataProviderTest extends TestCase 'fa_AF', 'fa_IR', 'ff', + 'ff_Adlm', + 'ff_Adlm_BF', + 'ff_Adlm_CM', + 'ff_Adlm_GH', + 'ff_Adlm_GM', + 'ff_Adlm_GN', + 'ff_Adlm_GW', + 'ff_Adlm_LR', + 'ff_Adlm_MR', + 'ff_Adlm_NE', + 'ff_Adlm_NG', + 'ff_Adlm_SL', + 'ff_Adlm_SN', 'ff_CM', 'ff_GN', 'ff_Latn', @@ -408,6 +421,8 @@ abstract class AbstractDataProviderTest extends TestCase 'ko_KP', 'ko_KR', 'ks', + 'ks_Arab', + 'ks_Arab_IN', 'ks_IN', 'ku', 'ku_TR', @@ -447,6 +462,7 @@ abstract class AbstractDataProviderTest extends TestCase 'mr_IN', 'ms', 'ms_BN', + 'ms_ID', 'ms_MY', 'ms_SG', 'mt', @@ -528,6 +544,10 @@ abstract class AbstractDataProviderTest extends TestCase 'rw', 'rw_RW', 'sd', + 'sd_Arab', + 'sd_Arab_PK', + 'sd_Deva', + 'sd_Deva_IN', 'sd_PK', 'se', 'se_FI', @@ -577,6 +597,10 @@ abstract class AbstractDataProviderTest extends TestCase 'sr_RS', 'sr_XK', 'sr_YU', + 'su', + 'su_ID', + 'su_Latn', + 'su_Latn_ID', 'sv', 'sv_AX', 'sv_FI', @@ -671,12 +695,14 @@ abstract class AbstractDataProviderTest extends TestCase 'in_ID' => 'id_ID', 'iw' => 'he', 'iw_IL' => 'he_IL', + 'ks_IN' => 'ks_Arab_IN', 'mo' => 'ro', 'no' => 'nb', 'no_NO' => 'nb_NO', 'no_NO_NY' => 'nn_NO', 'pa_IN' => 'pa_Guru_IN', 'pa_PK' => 'pa_Arab_PK', + 'sd_PK' => 'sd_Arab_PK', 'sh' => 'sr_Latn', 'sh_BA' => 'sr_Latn_BA', 'sh_CS' => 'sr_Latn_RS', @@ -691,6 +717,7 @@ abstract class AbstractDataProviderTest extends TestCase 'sr_RS' => 'sr_Cyrl_RS', 'sr_XK' => 'sr_Cyrl_XK', 'sr_YU' => 'sr_Cyrl_RS', + 'su_ID' => 'su_Latn_ID', 'tl' => 'fil', 'tl_PH' => 'fil_PH', 'uz_AF' => 'uz_Arab_AF', diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php index 98042148e3..6a20e0d623 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php @@ -29,6 +29,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Aghb', 'Ahom', 'Arab', + 'Aran', 'Armi', 'Armn', 'Avst', @@ -49,12 +50,14 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Cari', 'Cham', 'Cher', + 'Chrs', 'Cirt', 'Copt', 'Cprt', 'Cyrl', 'Cyrs', 'Deva', + 'Diak', 'Dogr', 'Dsrt', 'Dupl', @@ -99,6 +102,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Khar', 'Khmr', 'Khoj', + 'Kits', 'Knda', 'Kore', 'Kpel', @@ -205,6 +209,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Wole', 'Xpeo', 'Xsux', + 'Yezi', 'Yiii', 'Zanb', 'Zinh', diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf index e5881330e8..db804d3b68 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf @@ -222,6 +222,166 @@ Unsupported card type or invalid card number. Korttypen er ikkje støtta, eller kortnummeret er ugyldig. + + This is not a valid International Bank Account Number (IBAN). + Dette er ikkje eit gyldig internasjonalt bankkontonummer (IBAN). + + + This value is not a valid ISBN-10. + Verdien er ikkje eit gyldig ISBN-10. + + + This value is not a valid ISBN-13. + Verdien er ikkje eit gyldig ISBN-13. + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Verdien er verken eit gyldig ISBN-10 eller eit gyldig ISBN-13. + + + This value is not a valid ISSN. + Verdien er ikkje eit gyldig ISSN. + + + This value is not a valid currency. + Verdien er ikkje ein gyldig valuta. + + + This value should be equal to {{ compared_value }}. + Verdien bør vera like med {{ compared_value }}. + + + This value should be greater than {{ compared_value }}. + Verdien bør vera større enn {{ compared_value }}. + + + This value should be greater than or equal to {{ compared_value }}. + Verdien bør vera større enn eller så med {{ compared_value }}. + + + This value should be identical to {{ compared_value_type }} {{ compared_value }}. + Verdien bør vera identisk med {{ compared_value_type }} {{ compared_value }}. + + + This value should be less than {{ compared_value }}. + Verdien bør vera mindre enn {{ compared_value }}. + + + This value should be less than or equal to {{ compared_value }}. + Verdi bør vera mindre enn eller så med {{ compared_value }}. + + + This value should not be equal to {{ compared_value }}. + Verdi bør ikkje vera så med {{ compared_value }}. + + + This value should not be identical to {{ compared_value_type }} {{ compared_value }}. + Dette verdi bør ikkje vera identisk med {{ compared_value_type }} {{ compared_value }}. + + + The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. + Bildetilhøvet er for stort ({{ ratio }}). Det tillatne maksimale tilhøvet er {{ max_ratio }}. + + + The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. + Bildetilhøvet er for lite ({{ ratio }}). Forventa minimikvot er {{ min_ratio }}. + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + Bildet er firkanta ({{ width }}x{{ height }}px). Fyrkantiga bilde er ikkje tillatne. + + + The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. + Bildet er liggande orientert ({{ width }}x{{ height }}px). Landskapsorienterade bilde er ikkje tillatne. + + + The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. + Bildet er porträttorienterad ({{ width }}x{{ height }}px). Porträttorienterade bilde er ikkje tillatne. + + + An empty file is not allowed. + Ein tom fil er ikkje tillaten. + + + The host could not be resolved. + Verdiar kunne ikkje løysast. + + + This value does not match the expected {{ charset }} charset. + Verdi stemmer ikkje med forventa {{ charset }} charset. + + + This is not a valid Business Identifier Code (BIC). + Dette er ikkje ein gyldig Business Identifier Code (BIC). + + + Error + Feil + + + This is not a valid UUID. + Dette er ikkje ein gyldig UUID. + + + This value should be a multiple of {{ compared_value }}. + Verdi bør vera eit multipel av {{ compared_value }}. + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Denne Business Identifier Code (BIC) er ikkje kopla til IBAN {{ iban }}. + + + This value should be valid JSON. + Verdi bør vera gyldig JSON. + + + This collection should contain only unique elements. + Denne samlinga bør berre innehalda unike element. + + + This value should be positive. + Verdi bør vera positivt. + + + This value should be either positive or zero. + Verdi bør vera enten positivt eller noll. + + + This value should be negative. + Verdi bør vera negativt. + + + This value should be either negative or zero. + Verdi bør vera negativt eller noll. + + + This value is not a valid timezone. + Verdi er ikkje ei gyldig tidssone. + + + This password has been leaked in a data breach, it must not be used. Please use another password. + Det her passordet har lekt ut ved eit datainnbrot, det får ikkje nyttast. Nytt eit anna passord. + + + This value should be between {{ min }} and {{ max }}. + Dette verdi bør ligga mellom {{ min }} og {{ max }}. + + + This value is not a valid hostname. + Verdien er ikkje eit gyldig vertsnamn. + + + The number of elements in this collection should be a multiple of {{ compared_value }}. + Talet på element i denne samlinga bør vera eit multipel av {{ compared_value }}. + + + This value should satisfy at least one of the following constraints: + Verdien burde oppfylla minst ein av følgjande begränsningar: + + + Each element of this collection should satisfy its own set of constraints. + Kvart element i denne samlinga bør oppfylla sine eigne begränsningar. +