From fc6cf3d3c6903597ad4576e0123cd1f1a8155f59 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Mon, 20 Apr 2020 12:25:20 +0200 Subject: [PATCH 01/81] [DX] Show the ParseException message in YAML file loaders --- .../Component/DependencyInjection/Loader/YamlFileLoader.php | 2 +- src/Symfony/Component/Routing/Loader/YamlFileLoader.php | 2 +- src/Symfony/Component/Translation/Loader/YamlFileLoader.php | 2 +- .../Component/Validator/Mapping/Loader/YamlFileLoader.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php index bc0c55e94df4..ae970dbdf181 100644 --- a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php @@ -660,7 +660,7 @@ protected function loadFile($file) try { $configuration = $this->yamlParser->parseFile($file, Yaml::PARSE_CONSTANT | Yaml::PARSE_CUSTOM_TAGS); } catch (ParseException $e) { - throw new InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: '.$e->getMessage(), $file), 0, $e); + throw new InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $file).': '.$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php index 568827695bbe..57f1270d9ffa 100644 --- a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php @@ -66,7 +66,7 @@ public function load($file, $type = null) try { $parsedConfig = $this->yamlParser->parseFile($path); } catch (ParseException $e) { - throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML.', $path), 0, $e); + throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $path).': '.$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/Translation/Loader/YamlFileLoader.php b/src/Symfony/Component/Translation/Loader/YamlFileLoader.php index 41700df24bb4..0c25787dc7b5 100644 --- a/src/Symfony/Component/Translation/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Translation/Loader/YamlFileLoader.php @@ -47,7 +47,7 @@ protected function loadResource($resource) try { $messages = $this->yamlParser->parseFile($resource); } catch (ParseException $e) { - throw new InvalidResourceException(sprintf('Error parsing YAML, invalid file "%s".', $resource), 0, $e); + throw new InvalidResourceException(sprintf('The file "%s" does not contain valid YAML', $resource).': '.$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php b/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php index 0f6166674d01..519c2ed36d68 100644 --- a/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php @@ -124,7 +124,7 @@ private function parseFile($path) try { $classes = $this->yamlParser->parseFile($path, Yaml::PARSE_CONSTANT); } catch (ParseException $e) { - throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML.', $path), 0, $e); + throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $path).': '.$e->getMessage(), 0, $e); } finally { restore_error_handler(); } From 4774946fbd6a6d5890b9c2dbc933865bdd532045 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Mon, 27 Apr 2020 08:55:12 +0200 Subject: [PATCH 02/81] [BrowserKit] Allow Referer set by history to be overridden (3.4) --- src/Symfony/Component/BrowserKit/Client.php | 2 +- src/Symfony/Component/BrowserKit/Tests/ClientTest.php | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/BrowserKit/Client.php b/src/Symfony/Component/BrowserKit/Client.php index 2e641e884ace..f2d43f66483f 100644 --- a/src/Symfony/Component/BrowserKit/Client.php +++ b/src/Symfony/Component/BrowserKit/Client.php @@ -294,7 +294,7 @@ public function request($method, $uri, array $parameters = [], array $files = [] $uri = preg_replace('{^'.parse_url($uri, PHP_URL_SCHEME).'}', $server['HTTPS'] ? 'https' : 'http', $uri); } - if (!$this->history->isEmpty()) { + if (!isset($server['HTTP_REFERER']) && !$this->history->isEmpty()) { $server['HTTP_REFERER'] = $this->history->current()->getUri(); } diff --git a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php index a21a9481a7ac..de6e8f0d3ae7 100644 --- a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php +++ b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php @@ -233,6 +233,15 @@ public function testRequestReferer() $this->assertEquals('http://www.example.com/foo/foobar', $server['HTTP_REFERER'], '->request() sets the referer'); } + public function testRequestRefererCanBeOverridden() + { + $client = new TestClient(); + $client->request('GET', 'http://www.example.com/foo/foobar'); + $client->request('GET', 'bar', [], [], ['HTTP_REFERER' => 'xyz']); + $server = $client->getRequest()->getServer(); + $this->assertEquals('xyz', $server['HTTP_REFERER'], '->request() allows referer to be overridden'); + } + public function testRequestHistory() { $client = new TestClient(); From 856ba8c98fd6f04f451bff2af6255322c1b8e139 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 29 Apr 2020 17:41:38 +0200 Subject: [PATCH 03/81] [PhpUnitBridge] fix compat with PHP 5.3 --- .../Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php | 2 +- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php index e260fb8dd685..a7bfd80ede67 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php @@ -47,7 +47,7 @@ public function __construct(array $mockedNamespaces = array()) { if (class_exists('PHPUnit_Util_Blacklist')) { \PHPUnit_Util_Blacklist::$blacklistedClassNames[__CLASS__] = 2; - } elseif (method_exists(Blacklist::class, 'addDirectory')) { + } elseif (method_exists('PHPUnit\Util\Blacklist', 'addDirectory')) { (new BlackList())->getBlacklistedDirectories(); Blacklist::addDirectory(\dirname((new \ReflectionClass(__CLASS__))->getFileName(), 2)); } else { diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 92d4d6994af9..f37967ff0cf1 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -130,8 +130,8 @@ if (class_exists('PHPUnit_Util_Blacklist')) { PHPUnit_Util_Blacklist::$blacklistedClassNames['SymfonyBlacklistSimplePhpunit'] = 1; } elseif (method_exists('PHPUnit\Util\Blacklist', 'addDirectory')) { (new PHPUnit\Util\BlackList())->getBlacklistedDirectories(); - PHPUnit\Util\Blacklist::addDirectory(\dirname((new \ReflectionClass('SymfonyBlacklistPhpunit'))->getFileName())); - PHPUnit\Util\Blacklist::addDirectory(\dirname((new \ReflectionClass('SymfonyBlacklistSimplePhpunit'))->getFileName())); + PHPUnit\Util\Blacklist::addDirectory(dirname((new ReflectionClass('SymfonyBlacklistPhpunit'))->getFileName())); + PHPUnit\Util\Blacklist::addDirectory(dirname((new ReflectionClass('SymfonyBlacklistSimplePhpunit'))->getFileName())); } else { PHPUnit\Util\Blacklist::$blacklistedClassNames['SymfonyBlacklistPhpunit'] = 1; PHPUnit\Util\Blacklist::$blacklistedClassNames['SymfonyBlacklistSimplePhpunit'] = 1; From 67b744929f1bec03cfd037e2c65f99edace109cd Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 1 May 2020 17:20:42 +0200 Subject: [PATCH 04/81] Fix annotation --- src/Symfony/Component/Form/Form.php | 2 +- src/Symfony/Component/Form/FormInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/Form.php b/src/Symfony/Component/Form/Form.php index e9190b82b846..93b62a9acff3 100644 --- a/src/Symfony/Component/Form/Form.php +++ b/src/Symfony/Component/Form/Form.php @@ -932,7 +932,7 @@ public function offsetExists($name) * * @return FormInterface The child form * - * @throws \OutOfBoundsException if the named child does not exist + * @throws OutOfBoundsException if the named child does not exist */ public function offsetGet($name) { diff --git a/src/Symfony/Component/Form/FormInterface.php b/src/Symfony/Component/Form/FormInterface.php index 5c55bcd7951d..ba6236dd34fa 100644 --- a/src/Symfony/Component/Form/FormInterface.php +++ b/src/Symfony/Component/Form/FormInterface.php @@ -62,7 +62,7 @@ public function add($child, $type = null, array $options = []); * * @return self * - * @throws \OutOfBoundsException if the named child does not exist + * @throws Exception\OutOfBoundsException if the named child does not exist */ public function get($name); From 281861e788865dcecf66e904adf62bda55e01902 Mon Sep 17 00:00:00 2001 From: Ben Davies Date: Wed, 29 Apr 2020 21:31:19 +0100 Subject: [PATCH 05/81] [Validator] fix lazy property usage. --- .../Validator/Tests/Fixtures/Entity.php | 10 ++++ .../Tests/Validator/AbstractValidatorTest.php | 55 ++++++++++++++----- .../RecursiveContextualValidator.php | 4 ++ 3 files changed, 56 insertions(+), 13 deletions(-) diff --git a/src/Symfony/Component/Validator/Tests/Fixtures/Entity.php b/src/Symfony/Component/Validator/Tests/Fixtures/Entity.php index 16ba8a718ec5..673e62bae7d4 100644 --- a/src/Symfony/Component/Validator/Tests/Fixtures/Entity.php +++ b/src/Symfony/Component/Validator/Tests/Fixtures/Entity.php @@ -53,6 +53,11 @@ public function __construct($internal = null) $this->internal = $internal; } + public function getFirstName() + { + return $this->firstName; + } + public function getInternal() { return $this->internal.' from getter'; @@ -141,4 +146,9 @@ public function setChildB($childB) { $this->childB = $childB; } + + public function getReference() + { + return $this->reference; + } } diff --git a/src/Symfony/Component/Validator/Tests/Validator/AbstractValidatorTest.php b/src/Symfony/Component/Validator/Tests/Validator/AbstractValidatorTest.php index 07e45f47eb2c..8482a71a385d 100644 --- a/src/Symfony/Component/Validator/Tests/Validator/AbstractValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Validator/AbstractValidatorTest.php @@ -32,6 +32,8 @@ abstract class AbstractValidatorTest extends TestCase const REFERENCE_CLASS = 'Symfony\Component\Validator\Tests\Fixtures\Reference'; + const LAZY_PROPERTY = 'Symfony\Component\Validator\Validator\LazyProperty'; + /** * @var FakeMetadataFactory */ @@ -54,6 +56,7 @@ protected function setUp() $this->referenceMetadata = new ClassMetadata(self::REFERENCE_CLASS); $this->metadataFactory->addMetadata($this->metadata); $this->metadataFactory->addMetadata($this->referenceMetadata); + $this->metadataFactory->addMetadata(new ClassMetadata(self::LAZY_PROPERTY)); } protected function tearDown() @@ -510,7 +513,10 @@ public function testFailOnScalarReferences() $this->validate($entity); } - public function testArrayReference() + /** + * @dataProvider getConstraintMethods + */ + public function testArrayReference($constraintMethod) { $entity = new Entity(); $entity->reference = ['key' => new Reference()]; @@ -528,7 +534,7 @@ public function testArrayReference() $context->addViolation('Message %param%', ['%param%' => 'value']); }; - $this->metadata->addPropertyConstraint('reference', new Valid()); + $this->metadata->$constraintMethod('reference', new Valid()); $this->referenceMetadata->addConstraint(new Callback([ 'callback' => $callback, 'groups' => 'Group', @@ -548,8 +554,10 @@ public function testArrayReference() $this->assertNull($violations[0]->getCode()); } - // https://github.com/symfony/symfony/issues/6246 - public function testRecursiveArrayReference() + /** + * @dataProvider getConstraintMethods + */ + public function testRecursiveArrayReference($constraintMethod) { $entity = new Entity(); $entity->reference = [2 => ['key' => new Reference()]]; @@ -567,7 +575,7 @@ public function testRecursiveArrayReference() $context->addViolation('Message %param%', ['%param%' => 'value']); }; - $this->metadata->addPropertyConstraint('reference', new Valid()); + $this->metadata->$constraintMethod('reference', new Valid()); $this->referenceMetadata->addConstraint(new Callback([ 'callback' => $callback, 'groups' => 'Group', @@ -611,7 +619,10 @@ public function testOnlyCascadedArraysAreTraversed() $this->assertCount(0, $violations); } - public function testArrayTraversalCannotBeDisabled() + /** + * @dataProvider getConstraintMethods + */ + public function testArrayTraversalCannotBeDisabled($constraintMethod) { $entity = new Entity(); $entity->reference = ['key' => new Reference()]; @@ -620,7 +631,7 @@ public function testArrayTraversalCannotBeDisabled() $context->addViolation('Message %param%', ['%param%' => 'value']); }; - $this->metadata->addPropertyConstraint('reference', new Valid([ + $this->metadata->$constraintMethod('reference', new Valid([ 'traverse' => false, ])); $this->referenceMetadata->addConstraint(new Callback($callback)); @@ -631,7 +642,10 @@ public function testArrayTraversalCannotBeDisabled() $this->assertCount(1, $violations); } - public function testRecursiveArrayTraversalCannotBeDisabled() + /** + * @dataProvider getConstraintMethods + */ + public function testRecursiveArrayTraversalCannotBeDisabled($constraintMethod) { $entity = new Entity(); $entity->reference = [2 => ['key' => new Reference()]]; @@ -640,9 +654,10 @@ public function testRecursiveArrayTraversalCannotBeDisabled() $context->addViolation('Message %param%', ['%param%' => 'value']); }; - $this->metadata->addPropertyConstraint('reference', new Valid([ + $this->metadata->$constraintMethod('reference', new Valid([ 'traverse' => false, ])); + $this->referenceMetadata->addConstraint(new Callback($callback)); $violations = $this->validate($entity); @@ -651,12 +666,15 @@ public function testRecursiveArrayTraversalCannotBeDisabled() $this->assertCount(1, $violations); } - public function testIgnoreScalarsDuringArrayTraversal() + /** + * @dataProvider getConstraintMethods + */ + public function testIgnoreScalarsDuringArrayTraversal($constraintMethod) { $entity = new Entity(); $entity->reference = ['string', 1234]; - $this->metadata->addPropertyConstraint('reference', new Valid()); + $this->metadata->$constraintMethod('reference', new Valid()); $violations = $this->validate($entity); @@ -664,12 +682,15 @@ public function testIgnoreScalarsDuringArrayTraversal() $this->assertCount(0, $violations); } - public function testIgnoreNullDuringArrayTraversal() + /** + * @dataProvider getConstraintMethods + */ + public function testIgnoreNullDuringArrayTraversal($constraintMethod) { $entity = new Entity(); $entity->reference = [null]; - $this->metadata->addPropertyConstraint('reference', new Valid()); + $this->metadata->$constraintMethod('reference', new Valid()); $violations = $this->validate($entity); @@ -1218,6 +1239,14 @@ public function testReplaceDefaultGroup($sequence, array $assertViolations) } } + public function getConstraintMethods() + { + return [ + ['addPropertyConstraint'], + ['addGetterConstraint'], + ]; + } + public function getTestReplaceDefaultGroup() { return [ diff --git a/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php b/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php index 38bd945a6ac5..a204cd91f619 100644 --- a/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php +++ b/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php @@ -677,6 +677,10 @@ private function validateGenericNode($value, $object, $cacheKey, MetadataInterfa // See validateClassNode() $cascadedGroups = null !== $cascadedGroups && \count($cascadedGroups) > 0 ? $cascadedGroups : $groups; + if ($value instanceof LazyProperty) { + $value = $value->getPropertyValue(); + } + if (\is_array($value)) { // Arrays are always traversed, independent of the specified // traversal strategy From 0da177a224440462e807f3a9f3e13fe305ad46b9 Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Sun, 3 May 2020 00:06:24 +0200 Subject: [PATCH 06/81] fix sr_Latn translation *negative* translated as positive --- .../Validator/Resources/translations/validators.sr_Latn.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.sr_Latn.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.sr_Latn.xlf index 20dff43c6d90..43d2070ab781 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.sr_Latn.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.sr_Latn.xlf @@ -352,7 +352,7 @@ This value should be either negative or zero. - Ova vrednost bi trebala biti pozitivna ili nula. + Ova vrednost bi trebala biti negativna ili nula. This value is not a valid timezone. From de5d68ef2a6defc2cfd68b5d7a91635bec81451d Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Sun, 3 May 2020 21:30:24 +0200 Subject: [PATCH 07/81] Skip validation when email is an empty object --- .../Validator/Constraints/EmailValidator.php | 3 +++ .../Tests/Constraints/EmailValidatorTest.php | 15 +++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/Symfony/Component/Validator/Constraints/EmailValidator.php b/src/Symfony/Component/Validator/Constraints/EmailValidator.php index d0eaa4540227..58b372d988dd 100644 --- a/src/Symfony/Component/Validator/Constraints/EmailValidator.php +++ b/src/Symfony/Component/Validator/Constraints/EmailValidator.php @@ -51,6 +51,9 @@ public function validate($value, Constraint $constraint) } $value = (string) $value; + if ('' === $value) { + return; + } if (null === $constraint->strict) { $constraint->strict = $this->isStrict; diff --git a/src/Symfony/Component/Validator/Tests/Constraints/EmailValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/EmailValidatorTest.php index 344139a44f17..9299c7efad2e 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/EmailValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/EmailValidatorTest.php @@ -40,6 +40,13 @@ public function testEmptyStringIsValid() $this->assertNoViolation(); } + public function testObjectEmptyStringIsValid() + { + $this->validator->validate(new EmptyEmailObject(), new Email()); + + $this->assertNoViolation(); + } + public function testExpectsStringCompatibleType() { $this->expectException('Symfony\Component\Validator\Exception\UnexpectedTypeException'); @@ -256,3 +263,11 @@ public function provideCheckTypes() ]; } } + +class EmptyEmailObject +{ + public function __toString() + { + return ''; + } +} From 065a8cee5ffb4f2d3daf3060bb63cbba55c2291c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 3 May 2020 23:44:38 +0200 Subject: [PATCH 08/81] [PhpUnitBridge] fix PHP 5.3 compat again --- src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php | 2 ++ src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php index a7bfd80ede67..ee9378d140f7 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php @@ -48,8 +48,10 @@ public function __construct(array $mockedNamespaces = array()) if (class_exists('PHPUnit_Util_Blacklist')) { \PHPUnit_Util_Blacklist::$blacklistedClassNames[__CLASS__] = 2; } elseif (method_exists('PHPUnit\Util\Blacklist', 'addDirectory')) { + eval(" // PHP 5.3 compat (new BlackList())->getBlacklistedDirectories(); Blacklist::addDirectory(\dirname((new \ReflectionClass(__CLASS__))->getFileName(), 2)); + "); } else { Blacklist::$blacklistedClassNames[__CLASS__] = 2; } diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index f37967ff0cf1..41445d93ab12 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -129,9 +129,11 @@ if (class_exists('PHPUnit_Util_Blacklist')) { PHPUnit_Util_Blacklist::$blacklistedClassNames['SymfonyBlacklistPhpunit'] = 1; PHPUnit_Util_Blacklist::$blacklistedClassNames['SymfonyBlacklistSimplePhpunit'] = 1; } elseif (method_exists('PHPUnit\Util\Blacklist', 'addDirectory')) { + eval(" // PHP 5.3 compat (new PHPUnit\Util\BlackList())->getBlacklistedDirectories(); PHPUnit\Util\Blacklist::addDirectory(dirname((new ReflectionClass('SymfonyBlacklistPhpunit'))->getFileName())); PHPUnit\Util\Blacklist::addDirectory(dirname((new ReflectionClass('SymfonyBlacklistSimplePhpunit'))->getFileName())); + "); } else { PHPUnit\Util\Blacklist::$blacklistedClassNames['SymfonyBlacklistPhpunit'] = 1; PHPUnit\Util\Blacklist::$blacklistedClassNames['SymfonyBlacklistSimplePhpunit'] = 1; From 75405247beed4ac51ef08ade5676d90ed1f2fa96 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Mon, 4 May 2020 09:08:14 +0200 Subject: [PATCH 09/81] [3.4][Inflector] Improve testSingularize() argument name --- .../Component/Inflector/Tests/InflectorTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Component/Inflector/Tests/InflectorTest.php b/src/Symfony/Component/Inflector/Tests/InflectorTest.php index ea752b3fac91..d43b7ea56254 100644 --- a/src/Symfony/Component/Inflector/Tests/InflectorTest.php +++ b/src/Symfony/Component/Inflector/Tests/InflectorTest.php @@ -160,15 +160,15 @@ public function singularizeProvider() /** * @dataProvider singularizeProvider */ - public function testSingularize($plural, $singular) + public function testSingularize($plural, $expectedSingular) { - $single = Inflector::singularize($plural); - if (\is_string($singular) && \is_array($single)) { - $this->fail("--- Expected\n`string`: ".$singular."\n+++ Actual\n`array`: ".implode(', ', $single)); - } elseif (\is_array($singular) && \is_string($single)) { - $this->fail("--- Expected\n`array`: ".implode(', ', $singular)."\n+++ Actual\n`string`: ".$single); + $singular = Inflector::singularize($plural); + if (\is_string($expectedSingular) && \is_array($singular)) { + $this->fail("--- Expected\n`string`: ".$expectedSingular."\n+++ Actual\n`array`: ".implode(', ', $singular)); + } elseif (\is_array($expectedSingular) && \is_string($singular)) { + $this->fail("--- Expected\n`array`: ".implode(', ', $expectedSingular)."\n+++ Actual\n`string`: ".$singular); } - $this->assertEquals($singular, $single); + $this->assertEquals($expectedSingular, $singular); } } From 58bb2c52ac73036262f5b60872edc8a6e8bbe0a9 Mon Sep 17 00:00:00 2001 From: Wouter Diesveld Date: Mon, 4 May 2020 11:46:19 +0200 Subject: [PATCH 10/81] [Yaml] fix parse error when unindented collections contain a comment --- src/Symfony/Component/Yaml/Parser.php | 6 ++++++ .../Component/Yaml/Tests/Fixtures/sfComments.yml | 14 ++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/Symfony/Component/Yaml/Parser.php b/src/Symfony/Component/Yaml/Parser.php index f1cb6b57aa8d..39116d84247a 100644 --- a/src/Symfony/Component/Yaml/Parser.php +++ b/src/Symfony/Component/Yaml/Parser.php @@ -619,8 +619,14 @@ private function getNextEmbedBlock($indentation = null, $inSequence = false) } $isItUnindentedCollection = $this->isStringUnIndentedCollectionItem(); + $isItComment = $this->isCurrentLineComment(); while ($this->moveToNextLine()) { + if ($isItComment && !$isItUnindentedCollection) { + $isItUnindentedCollection = $this->isStringUnIndentedCollectionItem(); + $isItComment = $this->isCurrentLineComment(); + } + $indent = $this->getCurrentLineIndentation(); if ($isItUnindentedCollection && !$this->isCurrentLineEmpty() && !$this->isStringUnIndentedCollectionItem() && $newIndent === $indent) { diff --git a/src/Symfony/Component/Yaml/Tests/Fixtures/sfComments.yml b/src/Symfony/Component/Yaml/Tests/Fixtures/sfComments.yml index af3ab38597a9..4b0c91c9b1eb 100644 --- a/src/Symfony/Component/Yaml/Tests/Fixtures/sfComments.yml +++ b/src/Symfony/Component/Yaml/Tests/Fixtures/sfComments.yml @@ -74,3 +74,17 @@ yaml: | 'foo #': baz php: | ['foo #' => 'baz'] +--- +test: Comment before first item in unindented collection +brief: > + Comment directly before unindented collection is allowed +yaml: | + collection1: + # comment + - a + - b + collection2: + - a + - b +php: | + ['collection1' => ['a', 'b'], 'collection2' => ['a', 'b']] From d9c47087c97da3fc70a9115c95955d9b9c5248c3 Mon Sep 17 00:00:00 2001 From: Nathan Dench Date: Mon, 4 May 2020 13:38:05 +1000 Subject: [PATCH 11/81] [WebProfiler] Do not add src-elem CSP directives if they do not exist --- .../Csp/ContentSecurityPolicyHandler.php | 21 ++++++++++++------- .../Csp/ContentSecurityPolicyHandlerTest.php | 9 +++++++- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php b/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php index e62895fe6d2b..f75d29aea78d 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php @@ -133,12 +133,11 @@ private function updateCspHeaders(Response $response, array $nonces = []) continue; } if (!isset($headers[$header][$type])) { - if (isset($headers[$header]['default-src'])) { - $headers[$header][$type] = $headers[$header]['default-src']; - } else { - // If there is no script-src/style-src and no default-src, no additional rules required. + if (null === $fallback = $this->getDirectiveFallback($directives, $type)) { continue; } + + $headers[$header][$type] = $fallback; } $ruleIsSet = true; if (!\in_array('\'unsafe-inline\'', $headers[$header][$type], true)) { @@ -218,9 +217,7 @@ private function authorizesInline(array $directivesSet, $type) { if (isset($directivesSet[$type])) { $directives = $directivesSet[$type]; - } elseif (isset($directivesSet['default-src'])) { - $directives = $directivesSet['default-src']; - } else { + } elseif (null === $directives = $this->getDirectiveFallback($directivesSet, $type)) { return false; } @@ -244,6 +241,16 @@ private function hasHashOrNonce(array $directives) return false; } + private function getDirectiveFallback(array $directiveSet, $type) + { + if (\in_array($type, ['script-src-elem', 'style-src-elem'], true) || !isset($directiveSet['default-src'])) { + // Let the browser fallback on it's own + return null; + } + + return $directiveSet['default-src']; + } + /** * Retrieves the Content-Security-Policy headers (either X-Content-Security-Policy or Content-Security-Policy) from * a response. diff --git a/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php b/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php index 349db2aaf75b..3afe8a95fcd9 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php @@ -131,7 +131,14 @@ public function provideRequestAndResponsesForOnKernelResponse() ['csp_script_nonce' => $nonce, 'csp_style_nonce' => $nonce], $this->createRequest(), $this->createResponse(['Content-Security-Policy' => 'default-src \'self\' domain.com; script-src \'self\' \'unsafe-inline\'', 'Content-Security-Policy-Report-Only' => 'default-src \'self\' domain-report-only.com; script-src \'self\' \'unsafe-inline\'']), - ['Content-Security-Policy' => 'default-src \'self\' domain.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\' domain.com \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'self\' domain.com \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src-elem \'self\' domain.com \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'Content-Security-Policy-Report-Only' => 'default-src \'self\' domain-report-only.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\' domain-report-only.com \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'self\' domain-report-only.com \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src-elem \'self\' domain-report-only.com \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'X-Content-Security-Policy' => null], + ['Content-Security-Policy' => 'default-src \'self\' domain.com; script-src \'self\' \'unsafe-inline\'; style-src \'self\' domain.com \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'Content-Security-Policy-Report-Only' => 'default-src \'self\' domain-report-only.com; script-src \'self\' \'unsafe-inline\'; style-src \'self\' domain-report-only.com \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'X-Content-Security-Policy' => null], + ], + [ + $nonce, + ['csp_script_nonce' => $nonce, 'csp_style_nonce' => $nonce], + $this->createRequest(), + $this->createResponse(['Content-Security-Policy' => 'default-src \'self\' domain.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\'; style-src \'self\' \'unsafe-inline\'; style-src-elem \'self\'', 'Content-Security-Policy-Report-Only' => 'default-src \'self\' domain-report-only.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\'; style-src \'self\' \'unsafe-inline\'; style-src-elem \'self\'']), + ['Content-Security-Policy' => 'default-src \'self\' domain.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\' \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'self\' \'unsafe-inline\'; style-src-elem \'self\' \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'Content-Security-Policy-Report-Only' => 'default-src \'self\' domain-report-only.com; script-src \'self\' \'unsafe-inline\'; script-src-elem \'self\' \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'self\' \'unsafe-inline\'; style-src-elem \'self\' \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'X-Content-Security-Policy' => null], ], [ $nonce, From 00e727ae4ede5d8161caff4007e9cf7830d9d830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Rish=C3=B8j?= Date: Wed, 22 Apr 2020 19:34:57 +0200 Subject: [PATCH 12/81] [Filesystem] Handle paths on different drives --- .../Component/Filesystem/Filesystem.php | 35 +++++++++---------- .../Filesystem/Tests/FilesystemTest.php | 4 +++ 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index a8701533cbd3..e2812f8e2252 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -455,28 +455,19 @@ public function makePathRelative($endPath, $startPath) $startPath = str_replace('\\', '/', $startPath); } - $stripDriveLetter = function ($path) { - if (\strlen($path) > 2 && ':' === $path[1] && '/' === $path[2] && ctype_alpha($path[0])) { - return substr($path, 2); - } - - return $path; + $splitDriveLetter = function ($path) { + return (\strlen($path) > 2 && ':' === $path[1] && '/' === $path[2] && ctype_alpha($path[0])) + ? [substr($path, 2), strtoupper($path[0])] + : [$path, null]; }; - $endPath = $stripDriveLetter($endPath); - $startPath = $stripDriveLetter($startPath); - - // Split the paths into arrays - $startPathArr = explode('/', trim($startPath, '/')); - $endPathArr = explode('/', trim($endPath, '/')); - - $normalizePathArray = function ($pathSegments, $absolute) { + $splitPath = function ($path, $absolute) { $result = []; - foreach ($pathSegments as $segment) { + foreach (explode('/', trim($path, '/')) as $segment) { if ('..' === $segment && ($absolute || \count($result))) { array_pop($result); - } elseif ('.' !== $segment) { + } elseif ('.' !== $segment && '' !== $segment) { $result[] = $segment; } } @@ -484,8 +475,16 @@ public function makePathRelative($endPath, $startPath) return $result; }; - $startPathArr = $normalizePathArray($startPathArr, static::isAbsolutePath($startPath)); - $endPathArr = $normalizePathArray($endPathArr, static::isAbsolutePath($endPath)); + list($endPath, $endDriveLetter) = $splitDriveLetter($endPath); + list($startPath, $startDriveLetter) = $splitDriveLetter($startPath); + + $startPathArr = $splitPath($startPath, static::isAbsolutePath($startPath)); + $endPathArr = $splitPath($endPath, static::isAbsolutePath($endPath)); + + if ($endDriveLetter && $startDriveLetter && $endDriveLetter != $startDriveLetter) { + // End path is on another drive, so no relative path exists + return $endDriveLetter.':/'.($endPathArr ? implode('/', $endPathArr).'/' : ''); + } // Find for which directory the common path stops $index = 0; diff --git a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php index e9e7784a3af4..8ac80437fe5d 100644 --- a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php +++ b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php @@ -1111,10 +1111,14 @@ public function providePathsForMakePathRelative() ['/../aa/bb/cc', '/aa/dd/..', 'bb/cc/'], ['/../../aa/../bb/cc', '/aa/dd/..', '../bb/cc/'], ['C:/aa/bb/cc', 'C:/aa/dd/..', 'bb/cc/'], + ['C:/aa/bb/cc', 'c:/aa/dd/..', 'bb/cc/'], ['c:/aa/../bb/cc', 'c:/aa/dd/..', '../bb/cc/'], ['C:/aa/bb/../../cc', 'C:/aa/../dd/..', 'cc/'], ['C:/../aa/bb/cc', 'C:/aa/dd/..', 'bb/cc/'], ['C:/../../aa/../bb/cc', 'C:/aa/dd/..', '../bb/cc/'], + ['D:/', 'C:/aa/../bb/cc', 'D:/'], + ['D:/aa/bb', 'C:/aa', 'D:/aa/bb/'], + ['D:/../../aa/../bb/cc', 'C:/aa/dd/..', 'D:/bb/cc/'], ]; if ('\\' === \DIRECTORY_SEPARATOR) { From 169e49d491300a551e9691b23e049ee0be3e6675 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 4 May 2020 16:41:05 +0200 Subject: [PATCH 13/81] Fix exception messages containing exception messages --- .../FrameworkBundle/Templating/Loader/TemplateLocator.php | 2 +- .../FrameworkBundle/Tests/Functional/CachePoolsTest.php | 2 +- .../Component/Cache/Tests/Adapter/RedisAdapterTest.php | 2 +- src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php | 2 +- src/Symfony/Component/Cache/Traits/RedisTrait.php | 6 +++--- src/Symfony/Component/Config/Definition/BaseNode.php | 2 +- .../DependencyInjection/Compiler/AbstractRecursivePass.php | 4 ++-- .../Component/DependencyInjection/Loader/XmlFileLoader.php | 2 +- .../Component/DependencyInjection/Loader/YamlFileLoader.php | 2 +- .../Component/HttpKernel/Controller/ControllerResolver.php | 2 +- src/Symfony/Component/Routing/Loader/YamlFileLoader.php | 2 +- .../Component/Security/Http/Firewall/SwitchUserListener.php | 2 +- .../Component/Translation/Loader/XliffFileLoader.php | 2 +- src/Symfony/Component/Translation/Loader/YamlFileLoader.php | 2 +- .../Validator/Constraints/AbstractComparisonValidator.php | 2 +- .../Component/Validator/Mapping/Loader/YamlFileLoader.php | 2 +- 16 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php b/src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php index b90b9a275a8a..267b59e4ab65 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php +++ b/src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php @@ -79,7 +79,7 @@ public function locate($template, $currentPath = null, $first = true) try { return $this->cacheHits[$key] = $this->locator->locate($template->getPath(), $currentPath); } catch (\InvalidArgumentException $e) { - throw new \InvalidArgumentException(sprintf('Unable to find template "%s" : "%s".', $template, $e->getMessage()), 0, $e); + throw new \InvalidArgumentException(sprintf('Unable to find template "%s": ', $template).$e->getMessage(), 0, $e); } } } diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php index 13815b95989e..804bbca2e82d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php @@ -40,7 +40,7 @@ public function testRedisCachePools() } $this->markTestSkipped($e->getMessage()); } catch (InvalidArgumentException $e) { - if (0 !== strpos($e->getMessage(), 'Redis connection failed')) { + if (0 !== strpos($e->getMessage(), 'Redis connection ')) { throw $e; } $this->markTestSkipped($e->getMessage()); diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php index edc6a9934f3e..6ec6321a332a 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php @@ -59,7 +59,7 @@ public function testCreateConnection() public function testFailedCreateConnection($dsn) { $this->expectException('Symfony\Component\Cache\Exception\InvalidArgumentException'); - $this->expectExceptionMessage('Redis connection failed'); + $this->expectExceptionMessage('Redis connection '); RedisAdapter::createConnection($dsn); } diff --git a/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php index c2cd31a5b549..8e3f608838d6 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php @@ -49,7 +49,7 @@ public function testCreateConnection() public function testFailedCreateConnection($dsn) { $this->expectException('Symfony\Component\Cache\Exception\InvalidArgumentException'); - $this->expectExceptionMessage('Redis connection failed'); + $this->expectExceptionMessage('Redis connection '); RedisCache::createConnection($dsn); } diff --git a/src/Symfony/Component/Cache/Traits/RedisTrait.php b/src/Symfony/Component/Cache/Traits/RedisTrait.php index 315e426dde7d..08aea83e78da 100644 --- a/src/Symfony/Component/Cache/Traits/RedisTrait.php +++ b/src/Symfony/Component/Cache/Traits/RedisTrait.php @@ -120,7 +120,7 @@ public static function createConnection($dsn, array $options = []) try { @$redis->{$connect}($params['host'], $params['port'], $params['timeout'], $params['persistent_id'], $params['retry_interval']); } catch (\RedisException $e) { - throw new InvalidArgumentException(sprintf('Redis connection failed (%s): "%s".', $e->getMessage(), $dsn)); + throw new InvalidArgumentException(sprintf('Redis connection "%s" failed: ', $dsn).$e->getMessage()); } set_error_handler(function ($type, $msg) use (&$error) { $error = $msg; }); @@ -128,7 +128,7 @@ public static function createConnection($dsn, array $options = []) restore_error_handler(); if (!$isConnected) { $error = preg_match('/^Redis::p?connect\(\): (.*)/', $error, $error) ? sprintf(' (%s)', $error[1]) : ''; - throw new InvalidArgumentException(sprintf('Redis connection failed%s: "%s".', $error, $dsn)); + throw new InvalidArgumentException(sprintf('Redis connection "%s" failed: ', $dsn).$error.'.'); } if ((null !== $auth && !$redis->auth($auth)) @@ -136,7 +136,7 @@ public static function createConnection($dsn, array $options = []) || ($params['read_timeout'] && !$redis->setOption(\Redis::OPT_READ_TIMEOUT, $params['read_timeout'])) ) { $e = preg_replace('/^ERR /', '', $redis->getLastError()); - throw new InvalidArgumentException(sprintf('Redis connection failed (%s): "%s".', $e, $dsn)); + throw new InvalidArgumentException(sprintf('Redis connection "%s" failed: ', $dsn).$e.'.'); } return true; diff --git a/src/Symfony/Component/Config/Definition/BaseNode.php b/src/Symfony/Component/Config/Definition/BaseNode.php index 1f6ef7f834b8..10bcb49c8b49 100644 --- a/src/Symfony/Component/Config/Definition/BaseNode.php +++ b/src/Symfony/Component/Config/Definition/BaseNode.php @@ -335,7 +335,7 @@ final public function finalize($value) } catch (Exception $e) { throw $e; } catch (\Exception $e) { - throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": '.$e->getMessage(), $this->getPath()), $e->getCode(), $e); + throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": ', $this->getPath()).$e->getMessage(), $e->getCode(), $e); } } diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php index 27969e706725..863bab4731ad 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php @@ -126,14 +126,14 @@ protected function getConstructor(Definition $definition, $required) throw new RuntimeException(sprintf('Invalid service "%s": class "%s" does not exist.', $this->currentId, $class)); } } catch (\ReflectionException $e) { - throw new RuntimeException(sprintf('Invalid service "%s": '.lcfirst($e->getMessage()), $this->currentId)); + throw new RuntimeException(sprintf('Invalid service "%s": ', $this->currentId).lcfirst($e->getMessage())); } if (!$r = $r->getConstructor()) { if ($required) { throw new RuntimeException(sprintf('Invalid service "%s": class%s has no constructor.', $this->currentId, sprintf($class !== $this->currentId ? ' "%s"' : '', $class))); } } elseif (!$r->isPublic()) { - throw new RuntimeException(sprintf('Invalid service "%s": %s must be public.', $this->currentId, sprintf($class !== $this->currentId ? 'constructor of class "%s"' : 'its constructor', $class))); + throw new RuntimeException(sprintf('Invalid service "%s": ', $this->currentId).sprintf($class !== $this->currentId ? 'constructor of class "%s"' : 'its constructor', $class).' must be public.'); } return $r; diff --git a/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php b/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php index 6ccb66a421ea..cfc13429a1e6 100644 --- a/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php +++ b/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php @@ -378,7 +378,7 @@ private function parseFileToDOM($file) try { $dom = XmlUtils::loadFile($file, [$this, 'validateSchema']); } catch (\InvalidArgumentException $e) { - throw new InvalidArgumentException(sprintf('Unable to parse file "%s": "%s".', $file, $e->getMessage()), $e->getCode(), $e); + throw new InvalidArgumentException(sprintf('Unable to parse file "%s": ', $file).$e->getMessage(), $e->getCode(), $e); } $this->validateExtensions($dom, $file); diff --git a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php index ae970dbdf181..2f9d3dffe775 100644 --- a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php @@ -660,7 +660,7 @@ protected function loadFile($file) try { $configuration = $this->yamlParser->parseFile($file, Yaml::PARSE_CONSTANT | Yaml::PARSE_CUSTOM_TAGS); } catch (ParseException $e) { - throw new InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $file).': '.$e->getMessage(), 0, $e); + throw new InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: ', $file).$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php index 6244fdb9e5ea..e3a7211c1be2 100644 --- a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php +++ b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php @@ -88,7 +88,7 @@ public function getController(Request $request) try { $callable = $this->createController($controller); } catch (\InvalidArgumentException $e) { - throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: '.$e->getMessage(), $request->getPathInfo()), 0, $e); + throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e); } return $callable; diff --git a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php index 57f1270d9ffa..f527c755b7db 100644 --- a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php @@ -66,7 +66,7 @@ public function load($file, $type = null) try { $parsedConfig = $this->yamlParser->parseFile($path); } catch (ParseException $e) { - throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $path).': '.$e->getMessage(), 0, $e); + throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: ', $path).$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php b/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php index 7fe6b33f23e8..84aa7fe2cb72 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php @@ -100,7 +100,7 @@ public function handle(GetResponseEvent $event) try { $this->tokenStorage->setToken($this->attemptSwitchUser($request, $username)); } catch (AuthenticationException $e) { - throw new \LogicException(sprintf('Switch User failed: "%s".', $e->getMessage())); + throw new \LogicException('Switch User failed: '.$e->getMessage()); } } diff --git a/src/Symfony/Component/Translation/Loader/XliffFileLoader.php b/src/Symfony/Component/Translation/Loader/XliffFileLoader.php index d09f43498510..0a6ff16b1756 100644 --- a/src/Symfony/Component/Translation/Loader/XliffFileLoader.php +++ b/src/Symfony/Component/Translation/Loader/XliffFileLoader.php @@ -53,7 +53,7 @@ private function extract($resource, MessageCatalogue $catalogue, $domain) try { $dom = XmlUtils::loadFile($resource); } catch (\InvalidArgumentException $e) { - throw new InvalidResourceException(sprintf('Unable to load "%s": '.$e->getMessage(), $resource), $e->getCode(), $e); + throw new InvalidResourceException(sprintf('Unable to load "%s": ', $resource).$e->getMessage(), $e->getCode(), $e); } $xliffVersion = $this->getVersionNumber($dom); diff --git a/src/Symfony/Component/Translation/Loader/YamlFileLoader.php b/src/Symfony/Component/Translation/Loader/YamlFileLoader.php index 0c25787dc7b5..b867c2113ee9 100644 --- a/src/Symfony/Component/Translation/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Translation/Loader/YamlFileLoader.php @@ -47,7 +47,7 @@ protected function loadResource($resource) try { $messages = $this->yamlParser->parseFile($resource); } catch (ParseException $e) { - throw new InvalidResourceException(sprintf('The file "%s" does not contain valid YAML', $resource).': '.$e->getMessage(), 0, $e); + throw new InvalidResourceException(sprintf('The file "%s" does not contain valid YAML: ', $resource).$e->getMessage(), 0, $e); } finally { restore_error_handler(); } diff --git a/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php b/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php index 10db1586155f..3e8b10b01bea 100644 --- a/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php +++ b/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php @@ -55,7 +55,7 @@ public function validate($value, Constraint $constraint) try { $comparedValue = $this->getPropertyAccessor()->getValue($object, $path); } catch (NoSuchPropertyException $e) { - throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: '.$e->getMessage(), $path, \get_class($constraint)), 0, $e); + throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: ', $path, \get_class($constraint)).$e->getMessage(), 0, $e); } } else { $comparedValue = $constraint->value; diff --git a/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php b/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php index 519c2ed36d68..d317ecf9e994 100644 --- a/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php @@ -124,7 +124,7 @@ private function parseFile($path) try { $classes = $this->yamlParser->parseFile($path, Yaml::PARSE_CONSTANT); } catch (ParseException $e) { - throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML', $path).': '.$e->getMessage(), 0, $e); + throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: ', $path).$e->getMessage(), 0, $e); } finally { restore_error_handler(); } From 92bc19fd0cb1cfa11ece9ecbb49426037db3c595 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 4 Dec 2019 12:12:45 +0100 Subject: [PATCH 14/81] prevent notice for invalid octal numbers on PHP 7.4 --- src/Symfony/Component/Yaml/Inline.php | 14 ++++++++++---- src/Symfony/Component/Yaml/Tests/InlineTest.php | 10 ++++++++++ 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Yaml/Inline.php b/src/Symfony/Component/Yaml/Inline.php index 4c7d37428e47..341482746ec5 100644 --- a/src/Symfony/Component/Yaml/Inline.php +++ b/src/Symfony/Component/Yaml/Inline.php @@ -759,15 +759,21 @@ private static function evaluateScalar($scalar, $flags, $references = []) switch (true) { case ctype_digit($scalar): - $raw = $scalar; + if ('0' === $scalar[0]) { + return octdec(preg_replace('/[^0-7]/', '', $scalar)); + } + $cast = (int) $scalar; - return '0' == $scalar[0] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast : $raw); + return ($scalar === (string) $cast) ? $cast : $scalar; case '-' === $scalar[0] && ctype_digit(substr($scalar, 1)): - $raw = $scalar; + if ('0' === $scalar[1]) { + return -octdec(preg_replace('/[^0-7]/', '', substr($scalar, 1))); + } + $cast = (int) $scalar; - return '0' == $scalar[1] ? -octdec(substr($scalar, 1)) : (($raw === (string) $cast) ? $cast : $raw); + return ($scalar === (string) $cast) ? $cast : $scalar; case is_numeric($scalar): case Parser::preg_match(self::getHexRegex(), $scalar): $scalar = str_replace('_', '', $scalar); diff --git a/src/Symfony/Component/Yaml/Tests/InlineTest.php b/src/Symfony/Component/Yaml/Tests/InlineTest.php index b28d472b334b..0c6d509381fe 100644 --- a/src/Symfony/Component/Yaml/Tests/InlineTest.php +++ b/src/Symfony/Component/Yaml/Tests/InlineTest.php @@ -842,4 +842,14 @@ public function phpConstTagWithEmptyValueProvider() [['' => 'foo', 'bar' => 'ccc'], '{!php/const : foo, bar: ccc}'], ]; } + + public function testParsePositiveOctalNumberContainingInvalidDigits() + { + self::assertSame(342391, Inline::parse('0123456789')); + } + + public function testParseNegativeOctalNumberContainingInvalidDigits() + { + self::assertSame(-342391, Inline::parse('-0123456789')); + } } From dcb5653728050cd218c2cc0998d8b6310e7c3583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Fri, 24 Apr 2020 18:13:38 +0200 Subject: [PATCH 15/81] [PhpUnitBridge] Mark parent class also covered in CoverageListener --- .../Bridge/PhpUnit/Legacy/CoverageListenerTrait.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php index 47486dfb26e2..3075d6fdb002 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php @@ -73,10 +73,19 @@ public function startTest($test) $r = new \ReflectionProperty($testClass, 'annotationCache'); $r->setAccessible(true); + $covers = $sutFqcn; + if (!\is_array($sutFqcn)) { + $covers = [$sutFqcn]; + while ($parent = get_parent_class($sutFqcn)) { + $covers[] = $parent; + $sutFqcn = $parent; + } + } + $cache = $r->getValue(); $cache = array_replace_recursive($cache, array( \get_class($test) => array( - 'covers' => \is_array($sutFqcn) ? $sutFqcn : array($sutFqcn), + 'covers' => $covers, ), )); $r->setValue($testClass, $cache); From f7fc3cf6cba059e8edb2f58213d3161bdecdcfee Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 5 May 2020 09:38:03 +0200 Subject: [PATCH 16/81] [PhpUnitBridge] fix PHP 5.3 compat --- src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php index 3075d6fdb002..ce5538f62def 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php @@ -75,7 +75,7 @@ public function startTest($test) $covers = $sutFqcn; if (!\is_array($sutFqcn)) { - $covers = [$sutFqcn]; + $covers = array($sutFqcn); while ($parent = get_parent_class($sutFqcn)) { $covers[] = $parent; $sutFqcn = $parent; From d1953d61cda6a054a7b4aeebe98a24f5cda32a86 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 5 May 2020 15:43:18 +0200 Subject: [PATCH 17/81] Force doctrine/dbal <=2.10.2 when testing --- composer.json | 2 +- src/Symfony/Bridge/Doctrine/composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9ad5e39ad2ca..2c7dc6e89e2c 100644 --- a/composer.json +++ b/composer.json @@ -91,7 +91,7 @@ "doctrine/annotations": "~1.0", "doctrine/cache": "~1.6", "doctrine/data-fixtures": "1.0.*", - "doctrine/dbal": "~2.4", + "doctrine/dbal": "~2.4,<=2.10.2", "doctrine/orm": "~2.4,>=2.4.5", "doctrine/doctrine-bundle": "~1.4", "monolog/monolog": "~1.11", diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json index 1aa2315c609c..67c0bb938a4f 100644 --- a/src/Symfony/Bridge/Doctrine/composer.json +++ b/src/Symfony/Bridge/Doctrine/composer.json @@ -35,7 +35,7 @@ "symfony/validator": "^3.2.5|~4.0", "symfony/translation": "~2.8|~3.0|~4.0", "doctrine/data-fixtures": "1.0.*", - "doctrine/dbal": "~2.4", + "doctrine/dbal": "~2.4,<=2.10.2", "doctrine/orm": "^2.4.5" }, "conflict": { From 88e43d4d4ce052a2b880bade7f9b62215fccd4c4 Mon Sep 17 00:00:00 2001 From: Matthias Derer Date: Tue, 5 May 2020 17:01:20 +0200 Subject: [PATCH 18/81] [DI][EventDispatcher] added contract for implementation fixes #36708. --- .../Component/EventDispatcher/EventSubscriberInterface.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php b/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php index 824f21599c25..741590b1bf3a 100644 --- a/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php +++ b/src/Symfony/Component/EventDispatcher/EventSubscriberInterface.php @@ -40,6 +40,9 @@ interface EventSubscriberInterface * * ['eventName' => ['methodName', $priority]] * * ['eventName' => [['methodName1', $priority], ['methodName2']]] * + * The code must not depend on runtime state as it will only be called at compile time. + * All logic depending on runtime state must be put into the individual methods handling the events. + * * @return array The event names to listen to */ public static function getSubscribedEvents(); From 2e99caacafd20ad433f724ad3ff907e8ecd734dd Mon Sep 17 00:00:00 2001 From: Gocha Ossinkine Date: Thu, 7 May 2020 22:31:15 +0500 Subject: [PATCH 19/81] [Yaml] Fix escaped quotes in quoted multi-line string --- src/Symfony/Component/Yaml/Parser.php | 3 ++- .../Component/Yaml/Tests/ParserTest.php | 27 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Yaml/Parser.php b/src/Symfony/Component/Yaml/Parser.php index 7d6112e3b9c6..c4313f3421ed 100644 --- a/src/Symfony/Component/Yaml/Parser.php +++ b/src/Symfony/Component/Yaml/Parser.php @@ -751,7 +751,8 @@ private function parseValue($value, $flags, $context) $lines[] = trim($this->currentLine); // quoted string values end with a line that is terminated with the quotation character - if ('' !== $this->currentLine && substr($this->currentLine, -1) === $quotation) { + $escapedLine = str_replace(['\\\\', '\\"'], '', $this->currentLine); + if ('' !== $escapedLine && substr($escapedLine, -1) === $quotation) { break; } } diff --git a/src/Symfony/Component/Yaml/Tests/ParserTest.php b/src/Symfony/Component/Yaml/Tests/ParserTest.php index dc7c122d592c..d2934b5d2b76 100644 --- a/src/Symfony/Component/Yaml/Tests/ParserTest.php +++ b/src/Symfony/Component/Yaml/Tests/ParserTest.php @@ -1650,6 +1650,33 @@ public function testBlankLinesInQuotedMultiLineString() $this->assertSame($expected, $this->parser->parse($yaml)); } + public function testEscapedQuoteInQuotedMultiLineString() + { + $yaml = << 'foo "bar" baz', + ]; + + $this->assertSame($expected, $this->parser->parse($yaml)); + } + + public function testBackslashInQuotedMultiLineString() + { + $yaml = << 'foo bar\\', + ]; + + $this->assertSame($expected, $this->parser->parse($yaml)); + } + public function testParseMultiLineUnquotedString() { $yaml = << Date: Thu, 7 May 2020 19:56:37 +0200 Subject: [PATCH 20/81] Remove patches for Doctrine bugs and deprecations --- composer.json | 2 +- phpunit | 10 ---------- src/Symfony/Bridge/Doctrine/composer.json | 2 +- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 2c7dc6e89e2c..9ad5e39ad2ca 100644 --- a/composer.json +++ b/composer.json @@ -91,7 +91,7 @@ "doctrine/annotations": "~1.0", "doctrine/cache": "~1.6", "doctrine/data-fixtures": "1.0.*", - "doctrine/dbal": "~2.4,<=2.10.2", + "doctrine/dbal": "~2.4", "doctrine/orm": "~2.4,>=2.4.5", "doctrine/doctrine-bundle": "~1.4", "monolog/monolog": "~1.11", diff --git a/phpunit b/phpunit index fbce26d8edcc..713594fc19ed 100755 --- a/phpunit +++ b/phpunit @@ -21,14 +21,4 @@ if (!getenv('SYMFONY_PATCH_TYPE_DECLARATIONS')) { putenv('SYMFONY_PATCH_TYPE_DECLARATIONS=deprecations=1'); } putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit'); - -if (!getenv('SYMFONY_DEPRECATIONS_HELPER')) { - foreach ($_SERVER['argv'] as $v) { - if (false !== strpos($v, 'Bridge/Doctrine')) { - putenv('SYMFONY_DEPRECATIONS_HELPER=max[indirect]=7'); - break; - } - } -} - require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit'; diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json index 67c0bb938a4f..1aa2315c609c 100644 --- a/src/Symfony/Bridge/Doctrine/composer.json +++ b/src/Symfony/Bridge/Doctrine/composer.json @@ -35,7 +35,7 @@ "symfony/validator": "^3.2.5|~4.0", "symfony/translation": "~2.8|~3.0|~4.0", "doctrine/data-fixtures": "1.0.*", - "doctrine/dbal": "~2.4,<=2.10.2", + "doctrine/dbal": "~2.4", "doctrine/orm": "^2.4.5" }, "conflict": { From f177b3d4885ab000e9ed4b2bab758ee45abcbfd2 Mon Sep 17 00:00:00 2001 From: Matthias Larisch Date: Wed, 6 May 2020 14:08:15 +0200 Subject: [PATCH 21/81] [FrameworkBundle] display actual target for error in AssetsInstallCommand When assets:install fails because the target directory does not exist, it should display the actual directory it wanted to have instead of the configuration directive. In most cases, the target directory is retrieved from the kernel config and thus differs from the argument. --- .../Bundle/FrameworkBundle/Command/AssetsInstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php index aee869f8fd93..199e1ad0dacf 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php @@ -121,7 +121,7 @@ protected function execute(InputInterface $input, OutputInterface $output) if (is_dir(\dirname($targetArg).'/web')) { $targetArg = \dirname($targetArg).'/web'; } else { - throw new InvalidArgumentException(sprintf('The target directory "%s" does not exist.', $input->getArgument('target'))); + throw new InvalidArgumentException(sprintf('The target directory "%s" does not exist.', $targetArg)); } } } From 02b378f2486d9f83c237b151b787a5f314f56d6a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 8 May 2020 12:38:31 +0200 Subject: [PATCH 22/81] [3.4] CS fixes --- .../Config/Tests/Definition/Builder/ExprBuilderTest.php | 2 +- src/Symfony/Component/Console/Tests/TerminalTest.php | 2 +- src/Symfony/Component/Lock/Tests/Store/SemaphoreStoreTest.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Config/Tests/Definition/Builder/ExprBuilderTest.php b/src/Symfony/Component/Config/Tests/Definition/Builder/ExprBuilderTest.php index 85d0d36319e5..2dfb7a0a39f8 100644 --- a/src/Symfony/Component/Config/Tests/Definition/Builder/ExprBuilderTest.php +++ b/src/Symfony/Component/Config/Tests/Definition/Builder/ExprBuilderTest.php @@ -148,7 +148,7 @@ public function testThenEmptyArrayExpression() /** * @dataProvider castToArrayValues */ - public function testcastToArrayExpression($configValue, $expectedValue) + public function testCastToArrayExpression($configValue, $expectedValue) { $test = $this->getTestBuilder() ->castToArray() diff --git a/src/Symfony/Component/Console/Tests/TerminalTest.php b/src/Symfony/Component/Console/Tests/TerminalTest.php index 546d2214c4c4..cc2632dd18bf 100644 --- a/src/Symfony/Component/Console/Tests/TerminalTest.php +++ b/src/Symfony/Component/Console/Tests/TerminalTest.php @@ -60,7 +60,7 @@ public function test() $this->assertSame(60, $terminal->getHeight()); } - public function test_zero_values() + public function testZeroValues() { putenv('COLUMNS=0'); putenv('LINES=0'); diff --git a/src/Symfony/Component/Lock/Tests/Store/SemaphoreStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/SemaphoreStoreTest.php index 38babded2854..16263fa43ad6 100644 --- a/src/Symfony/Component/Lock/Tests/Store/SemaphoreStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/SemaphoreStoreTest.php @@ -51,7 +51,7 @@ public function testResourceRemoval() private function getOpenedSemaphores() { if ('Darwin' === PHP_OS) { - $lines = explode(PHP_EOL, trim(`ipcs -s`)); + $lines = explode(PHP_EOL, trim(shell_exec('ipcs -s'))); if (-1 === $start = array_search('Semaphores:', $lines)) { throw new \Exception('Failed to extract list of opened semaphores. Expected a Semaphore list, got '.implode(PHP_EOL, $lines)); } @@ -59,7 +59,7 @@ private function getOpenedSemaphores() return \count(\array_slice($lines, ++$start)); } - $lines = explode(PHP_EOL, trim(`LC_ALL=C ipcs -su`)); + $lines = explode(PHP_EOL, trim(shell_exec('LC_ALL=C ipcs -su'))); if ('------ Semaphore Status --------' !== $lines[0]) { throw new \Exception('Failed to extract list of opened semaphores. Expected a Semaphore status, got '.implode(PHP_EOL, $lines)); } From 44b45cbaf108ffff767895a426aa2d3ff714cdfd Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 12 May 2020 17:50:06 +0200 Subject: [PATCH 23/81] [Serializer] fix issue with PHP 8 --- .../Serializer/Normalizer/AbstractNormalizer.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php index a360dc2fc3b6..d89c4660bf94 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php @@ -386,11 +386,19 @@ protected function instantiateObject(array &$data, $class, array &$context, \Ref protected function denormalizeParameter(\ReflectionClass $class, \ReflectionParameter $parameter, $parameterName, $parameterData, array $context, $format = null) { try { - if (null !== $parameter->getClass()) { + if (\PHP_VERSION_ID < 70100 && null !== $parameterClass = $parameter->getClass()) { + $parameterClass = $parameterClass->name; + } elseif (\PHP_VERSION_ID >= 70100 && $parameter->hasType() && ($parameterType = $parameter->getType()) && !$parameterType->isBuiltin()) { + $parameterClass = $parameterType->getName(); + new \ReflectionClass($parameterClass); // throws a \ReflectionException if the class doesn't exist + } else { + $parameterClass = null; + } + + if (null !== $parameterClass) { if (!$this->serializer instanceof DenormalizerInterface) { - throw new LogicException(sprintf('Cannot create an instance of "%s" from serialized data because the serializer inject in "%s" is not a denormalizer.', $parameter->getClass(), static::class)); + throw new LogicException(sprintf('Cannot create an instance of "%s" from serialized data because the serializer inject in "%s" is not a denormalizer.', $parameterClass, static::class)); } - $parameterClass = $parameter->getClass()->getName(); return $this->serializer->denormalize($parameterData, $parameterClass, $format, $this->createChildContext($context, $parameterName, $format)); } From 507a5963e4299e2b3da18ba35f07ddefe02a9a05 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 11 May 2020 09:40:02 +0200 Subject: [PATCH 24/81] embed resource name in error message --- .../Component/Translation/Tests/TranslatorTest.php | 11 +++++++++++ src/Symfony/Component/Translation/Translator.php | 6 +++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Translation/Tests/TranslatorTest.php b/src/Symfony/Component/Translation/Tests/TranslatorTest.php index 68122b291597..f0d87773ba67 100644 --- a/src/Symfony/Component/Translation/Tests/TranslatorTest.php +++ b/src/Symfony/Component/Translation/Tests/TranslatorTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Translation\Tests; use PHPUnit\Framework\TestCase; +use Symfony\Component\Translation\Exception\RuntimeException; use Symfony\Component\Translation\Loader\ArrayLoader; use Symfony\Component\Translation\MessageCatalogue; use Symfony\Component\Translation\Translator; @@ -552,6 +553,16 @@ public function testTransChoiceFallbackWithNoTranslation() // unchanged if it can't be found $this->assertEquals('some_message2', $translator->transChoice('some_message2', 10, ['%count%' => 10])); } + + public function testMissingLoaderForResourceError() + { + $this->expectException(RuntimeException::class); + $this->expectExceptionMessage('No loader is registered for the "twig" format when loading the "messages.en.twig" resource.'); + + $translator = new Translator('en'); + $translator->addResource('twig', 'messages.en.twig', 'en'); + $translator->getCatalogue('en'); + } } class StringClass diff --git a/src/Symfony/Component/Translation/Translator.php b/src/Symfony/Component/Translation/Translator.php index 1bda62d1b11a..131459c6e37c 100644 --- a/src/Symfony/Component/Translation/Translator.php +++ b/src/Symfony/Component/Translation/Translator.php @@ -376,7 +376,11 @@ private function doLoadCatalogue($locale) if (isset($this->resources[$locale])) { foreach ($this->resources[$locale] as $resource) { if (!isset($this->loaders[$resource[0]])) { - throw new RuntimeException(sprintf('The "%s" translation loader is not registered.', $resource[0])); + if (\is_string($resource[1])) { + throw new RuntimeException(sprintf('No loader is registered for the "%s" format when loading the "%s" resource.', $resource[0], $resource[1])); + } + + throw new RuntimeException(sprintf('No loader is registered for the "%s" format.', $resource[0])); } $this->catalogues[$locale]->addCatalogue($this->loaders[$resource[0]]->load($resource[1], $locale, $resource[2])); } From 08fbfcf5a00b31fb37463503af1c808d0308aafa Mon Sep 17 00:00:00 2001 From: Wouter J Date: Fri, 15 May 2020 23:08:40 +0200 Subject: [PATCH 25/81] Added regression test for AccountStatusException behavior (ref #36822) --- .../Authentication/AuthenticationProviderManagerTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/AuthenticationProviderManagerTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/AuthenticationProviderManagerTest.php index edc189791420..3e1910a1b042 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/AuthenticationProviderManagerTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/AuthenticationProviderManagerTest.php @@ -54,10 +54,16 @@ public function testAuthenticateWhenNoProviderSupportsToken() public function testAuthenticateWhenProviderReturnsAccountStatusException() { + $secondAuthenticationProvider = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface')->getMock(); + $manager = new AuthenticationProviderManager([ $this->getAuthenticationProvider(true, null, 'Symfony\Component\Security\Core\Exception\AccountStatusException'), + $secondAuthenticationProvider, ]); + // AccountStatusException stops authentication + $secondAuthenticationProvider->expects($this->never())->method('supports'); + try { $manager->authenticate($token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock()); $this->fail(); From 924822c2e85b7e86ee55170723cfaf4d71e4bf42 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 16 May 2020 10:59:45 +0200 Subject: [PATCH 26/81] [VarDumper] fix for change in PHP 7.4.6 --- src/Symfony/Component/VarDumper/Caster/SplCaster.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/VarDumper/Caster/SplCaster.php b/src/Symfony/Component/VarDumper/Caster/SplCaster.php index 283c5613d0c6..a30c2bce9e0d 100644 --- a/src/Symfony/Component/VarDumper/Caster/SplCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/SplCaster.php @@ -89,6 +89,8 @@ public static function castFileInfo(\SplFileInfo $c, array $a, Stub $stub, $isNe ]; $prefix = Caster::PREFIX_VIRTUAL; + unset($a["\0SplFileInfo\0fileName"]); + unset($a["\0SplFileInfo\0pathName"]); if (false === $c->getPathname()) { $a[$prefix.'⚠'] = 'The parent constructor was not called: the object is in an invalid state'; From e69673562ccc42dd424d49a9865b0e2555fc85a4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 16 May 2020 12:04:57 +0200 Subject: [PATCH 27/81] [VarDumper] fix for change in PHP 7.4.6 (bis) --- src/Symfony/Component/VarDumper/Caster/SplCaster.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/VarDumper/Caster/SplCaster.php b/src/Symfony/Component/VarDumper/Caster/SplCaster.php index a30c2bce9e0d..b557b689d352 100644 --- a/src/Symfony/Component/VarDumper/Caster/SplCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/SplCaster.php @@ -173,6 +173,7 @@ public static function castObjectStorage(\SplObjectStorage $c, array $a, Stub $s { $storage = []; unset($a[Caster::PREFIX_DYNAMIC."\0gcdata"]); // Don't hit https://bugs.php.net/65967 + unset($a["\0SplObjectStorage\0storage"]); $clone = clone $c; foreach ($clone as $obj) { From eb8d626c27b2b30e2c9cf661b2793b0dcd5a9c74 Mon Sep 17 00:00:00 2001 From: vudaltsov Date: Sat, 16 May 2020 16:15:54 +0300 Subject: [PATCH 28/81] Properties $originalName and $mimeType are never null in UploadedFile --- src/Symfony/Component/HttpFoundation/File/UploadedFile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/File/UploadedFile.php b/src/Symfony/Component/HttpFoundation/File/UploadedFile.php index 5b75dd84fc7b..5206156032d9 100644 --- a/src/Symfony/Component/HttpFoundation/File/UploadedFile.php +++ b/src/Symfony/Component/HttpFoundation/File/UploadedFile.php @@ -24,7 +24,7 @@ */ class UploadedFile extends File { - private $test = false; + private $test; private $originalName; private $mimeType; private $size; @@ -72,7 +72,7 @@ public function __construct($path, $originalName, $mimeType = null, $size = null * It is extracted from the request from which the file has been uploaded. * Then it should not be considered as a safe value. * - * @return string|null The original name + * @return string The original name */ public function getClientOriginalName() { @@ -101,7 +101,7 @@ public function getClientOriginalExtension() * For a trusted mime type, use getMimeType() instead (which guesses the mime * type based on the file content). * - * @return string|null The mime type + * @return string The mime type * * @see getMimeType() */ From 5f829bdaeb0f045c906ac0f77824a0beea5b5bcc Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 18 May 2020 16:22:26 +0200 Subject: [PATCH 29/81] [HttpKernel] Fix error logger when stderr is redirected to /dev/null (FPM) --- .../Component/HttpKernel/Log/Logger.php | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Log/Logger.php b/src/Symfony/Component/HttpKernel/Log/Logger.php index e05d8c32ec79..bbdd101d7dc2 100644 --- a/src/Symfony/Component/HttpKernel/Log/Logger.php +++ b/src/Symfony/Component/HttpKernel/Log/Logger.php @@ -37,10 +37,10 @@ class Logger extends AbstractLogger private $formatter; private $handle; - public function __construct($minLevel = null, $output = 'php://stderr', callable $formatter = null) + public function __construct($minLevel = null, $output = null, callable $formatter = null) { if (null === $minLevel) { - $minLevel = 'php://stdout' === $output || 'php://stderr' === $output ? LogLevel::CRITICAL : LogLevel::WARNING; + $minLevel = null === $output || 'php://stdout' === $output || 'php://stderr' === $output ? LogLevel::ERROR : LogLevel::WARNING; if (isset($_ENV['SHELL_VERBOSITY']) || isset($_SERVER['SHELL_VERBOSITY'])) { switch ((int) (isset($_ENV['SHELL_VERBOSITY']) ? $_ENV['SHELL_VERBOSITY'] : $_SERVER['SHELL_VERBOSITY'])) { @@ -58,7 +58,7 @@ public function __construct($minLevel = null, $output = 'php://stderr', callable $this->minLevelIndex = self::$levels[$minLevel]; $this->formatter = $formatter ?: [$this, 'format']; - if (false === $this->handle = \is_resource($output) ? $output : @fopen($output, 'a')) { + if ($output && false === $this->handle = \is_resource($output) ? $output : @fopen($output, 'a')) { throw new InvalidArgumentException(sprintf('Unable to open "%s".', $output)); } } @@ -77,7 +77,11 @@ public function log($level, $message, array $context = []) } $formatter = $this->formatter; - @fwrite($this->handle, $formatter($level, $message, $context)); + if ($this->handle) { + @fwrite($this->handle, $formatter($level, $message, $context)); + } else { + error_log($formatter($level, $message, $context, false)); + } } /** @@ -86,7 +90,7 @@ public function log($level, $message, array $context = []) * * @return string */ - private function format($level, $message, array $context) + private function format($level, $message, array $context, $prefixDate = true) { if (false !== strpos($message, '{')) { $replacements = []; @@ -105,6 +109,11 @@ private function format($level, $message, array $context) $message = strtr($message, $replacements); } - return sprintf('%s [%s] %s', date(\DateTime::RFC3339), $level, $message).PHP_EOL; + $log = sprintf('[%s] %s', $level, $message).PHP_EOL; + if ($prefixDate) { + $log = date(\DateTime::RFC3339).' '.$log; + } + + return $log; } } From 9d5bb11ec92950f1caf60925f6b8be007f060750 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 19 May 2020 10:04:03 +0200 Subject: [PATCH 30/81] [PhpUnitBridge] fix bad detection of unsilenced deprecations --- src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php | 4 ++-- .../Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php index 7cccd8eb83a4..e9c8d19d8f0c 100644 --- a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php +++ b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php @@ -140,7 +140,7 @@ public static function register($mode = 0) $Test = $UtilPrefix.'Test'; - if (0 !== error_reporting()) { + if (error_reporting() & $type) { $group = 'unsilenced'; } elseif (0 === strpos($method, 'testLegacy') || 0 === strpos($method, 'provideLegacy') @@ -292,7 +292,7 @@ public static function collectDeprecations($outputFile) return \call_user_func(DeprecationErrorHandler::getPhpUnitErrorHandler(), $type, $msg, $file, $line, $context); } - $deprecations[] = array(error_reporting(), $msg, $file); + $deprecations[] = array(error_reporting() & $type, $msg, $file); return null; }); diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php index ee9378d140f7..b6d05cb0f102 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerTrait.php @@ -352,7 +352,7 @@ public function handleError($type, $msg, $file, $line, $context = array()) if (\is_array($parsedMsg)) { $msg = $parsedMsg['deprecation']; } - if (error_reporting()) { + if (error_reporting() & $type) { $msg = 'Unsilenced deprecation: '.$msg; } $this->gatheredDeprecations[] = $msg; From 29eb2711849bc7dfe796074e5b4d17947dbe167e Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Mon, 18 May 2020 20:15:21 +0200 Subject: [PATCH 31/81] [Intl] bump icu 67.1 --- .../Data/Generator/CurrencyDataGenerator.php | 4 - .../Data/Generator/LanguageDataGenerator.php | 3 - .../Data/Generator/RegionDataGenerator.php | 4 - .../Data/Generator/ScriptDataGenerator.php | 4 - src/Symfony/Component/Intl/Intl.php | 2 +- .../Intl/Resources/data/currencies/af.json | 1 - .../Intl/Resources/data/currencies/af_NA.json | 1 - .../Intl/Resources/data/currencies/ak.json | 1 - .../Intl/Resources/data/currencies/am.json | 3 +- .../Intl/Resources/data/currencies/ar.json | 1 - .../Intl/Resources/data/currencies/ar_DJ.json | 1 - .../Intl/Resources/data/currencies/ar_ER.json | 1 - .../Intl/Resources/data/currencies/ar_KM.json | 1 - .../Intl/Resources/data/currencies/ar_LB.json | 1 - .../Intl/Resources/data/currencies/ar_SO.json | 1 - .../Intl/Resources/data/currencies/ar_SS.json | 1 - .../Intl/Resources/data/currencies/as.json | 1 - .../Intl/Resources/data/currencies/az.json | 1 - .../Resources/data/currencies/az_Cyrl.json | 1 - .../Intl/Resources/data/currencies/be.json | 1 - .../Intl/Resources/data/currencies/bg.json | 1 - .../Intl/Resources/data/currencies/bm.json | 1 - .../Intl/Resources/data/currencies/bn.json | 1 - .../Intl/Resources/data/currencies/bo.json | 1 - .../Intl/Resources/data/currencies/bo_IN.json | 1 - .../Intl/Resources/data/currencies/br.json | 1 - .../Intl/Resources/data/currencies/bs.json | 1 - .../Resources/data/currencies/bs_Cyrl.json | 1 - .../Intl/Resources/data/currencies/ca.json | 1 - .../Intl/Resources/data/currencies/ca_FR.json | 1 - .../Intl/Resources/data/currencies/ce.json | 1 - .../Intl/Resources/data/currencies/cs.json | 1 - .../Intl/Resources/data/currencies/cy.json | 1 - .../Intl/Resources/data/currencies/da.json | 1 - .../Intl/Resources/data/currencies/de.json | 1 - .../Intl/Resources/data/currencies/de_CH.json | 1 - .../Intl/Resources/data/currencies/de_LI.json | 1 - .../Intl/Resources/data/currencies/de_LU.json | 1 - .../Intl/Resources/data/currencies/dz.json | 1 - .../Intl/Resources/data/currencies/ee.json | 1 - .../Intl/Resources/data/currencies/el.json | 1 - .../Intl/Resources/data/currencies/en.json | 1 - .../Resources/data/currencies/en_001.json | 1 - .../Resources/data/currencies/en_150.json | 1 - .../Intl/Resources/data/currencies/en_AE.json | 1 - .../Intl/Resources/data/currencies/en_AG.json | 1 - .../Intl/Resources/data/currencies/en_AI.json | 1 - .../Intl/Resources/data/currencies/en_AU.json | 1 - .../Intl/Resources/data/currencies/en_BB.json | 1 - .../Intl/Resources/data/currencies/en_BI.json | 1 - .../Intl/Resources/data/currencies/en_BM.json | 1 - .../Intl/Resources/data/currencies/en_BS.json | 1 - .../Intl/Resources/data/currencies/en_BW.json | 1 - .../Intl/Resources/data/currencies/en_BZ.json | 1 - .../Intl/Resources/data/currencies/en_CA.json | 1 - .../Intl/Resources/data/currencies/en_CC.json | 1 - .../Intl/Resources/data/currencies/en_CK.json | 1 - .../Intl/Resources/data/currencies/en_CX.json | 1 - .../Intl/Resources/data/currencies/en_DK.json | 1 - .../Intl/Resources/data/currencies/en_DM.json | 1 - .../Intl/Resources/data/currencies/en_ER.json | 1 - .../Intl/Resources/data/currencies/en_FJ.json | 1 - .../Intl/Resources/data/currencies/en_FK.json | 1 - .../Intl/Resources/data/currencies/en_GD.json | 1 - .../Intl/Resources/data/currencies/en_GG.json | 1 - .../Intl/Resources/data/currencies/en_GH.json | 1 - .../Intl/Resources/data/currencies/en_GI.json | 1 - .../Intl/Resources/data/currencies/en_GM.json | 1 - .../Intl/Resources/data/currencies/en_GY.json | 1 - .../Intl/Resources/data/currencies/en_IM.json | 1 - .../Intl/Resources/data/currencies/en_IN.json | 1 - .../Intl/Resources/data/currencies/en_JE.json | 1 - .../Intl/Resources/data/currencies/en_JM.json | 1 - .../Intl/Resources/data/currencies/en_KE.json | 1 - .../Intl/Resources/data/currencies/en_KI.json | 1 - .../Intl/Resources/data/currencies/en_KN.json | 1 - .../Intl/Resources/data/currencies/en_KY.json | 1 - .../Intl/Resources/data/currencies/en_LC.json | 1 - .../Intl/Resources/data/currencies/en_LR.json | 1 - .../Intl/Resources/data/currencies/en_LS.json | 1 - .../Intl/Resources/data/currencies/en_MG.json | 1 - .../Intl/Resources/data/currencies/en_MO.json | 1 - .../Intl/Resources/data/currencies/en_MS.json | 1 - .../Intl/Resources/data/currencies/en_MT.json | 1 - .../Intl/Resources/data/currencies/en_MU.json | 1 - .../Intl/Resources/data/currencies/en_MW.json | 1 - .../Intl/Resources/data/currencies/en_MY.json | 1 - .../Intl/Resources/data/currencies/en_NA.json | 1 - .../Intl/Resources/data/currencies/en_NF.json | 1 - .../Intl/Resources/data/currencies/en_NG.json | 1 - .../Intl/Resources/data/currencies/en_NH.json | 1 - .../Intl/Resources/data/currencies/en_NR.json | 1 - .../Intl/Resources/data/currencies/en_NU.json | 1 - .../Intl/Resources/data/currencies/en_NZ.json | 1 - .../Intl/Resources/data/currencies/en_PG.json | 1 - .../Intl/Resources/data/currencies/en_PH.json | 1 - .../Intl/Resources/data/currencies/en_PK.json | 1 - .../Intl/Resources/data/currencies/en_PN.json | 1 - .../Intl/Resources/data/currencies/en_RW.json | 1 - .../Intl/Resources/data/currencies/en_SB.json | 1 - .../Intl/Resources/data/currencies/en_SC.json | 1 - .../Intl/Resources/data/currencies/en_SE.json | 1 - .../Intl/Resources/data/currencies/en_SG.json | 1 - .../Intl/Resources/data/currencies/en_SH.json | 1 - .../Intl/Resources/data/currencies/en_SL.json | 1 - .../Intl/Resources/data/currencies/en_SS.json | 1 - .../Intl/Resources/data/currencies/en_SX.json | 1 - .../Intl/Resources/data/currencies/en_SZ.json | 1 - .../Intl/Resources/data/currencies/en_TK.json | 1 - .../Intl/Resources/data/currencies/en_TO.json | 1 - .../Intl/Resources/data/currencies/en_TT.json | 1 - .../Intl/Resources/data/currencies/en_TV.json | 1 - .../Intl/Resources/data/currencies/en_TZ.json | 1 - .../Intl/Resources/data/currencies/en_UG.json | 1 - .../Intl/Resources/data/currencies/en_VC.json | 1 - .../Intl/Resources/data/currencies/en_VU.json | 1 - .../Intl/Resources/data/currencies/en_WS.json | 1 - .../Intl/Resources/data/currencies/en_ZA.json | 1 - .../Intl/Resources/data/currencies/en_ZM.json | 1 - .../Intl/Resources/data/currencies/es.json | 1 - .../Resources/data/currencies/es_419.json | 1 - .../Intl/Resources/data/currencies/es_AR.json | 1 - .../Intl/Resources/data/currencies/es_BO.json | 1 - .../Intl/Resources/data/currencies/es_BR.json | 1 - .../Intl/Resources/data/currencies/es_BZ.json | 1 - .../Intl/Resources/data/currencies/es_CL.json | 1 - .../Intl/Resources/data/currencies/es_CO.json | 1 - .../Intl/Resources/data/currencies/es_CR.json | 1 - .../Intl/Resources/data/currencies/es_CU.json | 1 - .../Intl/Resources/data/currencies/es_DO.json | 1 - .../Intl/Resources/data/currencies/es_EC.json | 1 - .../Intl/Resources/data/currencies/es_GQ.json | 1 - .../Intl/Resources/data/currencies/es_GT.json | 1 - .../Intl/Resources/data/currencies/es_HN.json | 1 - .../Intl/Resources/data/currencies/es_MX.json | 1 - .../Intl/Resources/data/currencies/es_NI.json | 1 - .../Intl/Resources/data/currencies/es_PA.json | 1 - .../Intl/Resources/data/currencies/es_PE.json | 1 - .../Intl/Resources/data/currencies/es_PH.json | 1 - .../Intl/Resources/data/currencies/es_PR.json | 1 - .../Intl/Resources/data/currencies/es_PY.json | 1 - .../Intl/Resources/data/currencies/es_SV.json | 1 - .../Intl/Resources/data/currencies/es_US.json | 1 - .../Intl/Resources/data/currencies/es_UY.json | 1 - .../Intl/Resources/data/currencies/es_VE.json | 1 - .../Intl/Resources/data/currencies/et.json | 1 - .../Intl/Resources/data/currencies/eu.json | 1 - .../Intl/Resources/data/currencies/fa.json | 5 +- .../Intl/Resources/data/currencies/fa_AF.json | 1 - .../Intl/Resources/data/currencies/ff.json | 1 - .../Resources/data/currencies/ff_Adlm.json | 632 ++++++++++++++++++ .../Resources/data/currencies/ff_Adlm_BF.json | 8 + .../Resources/data/currencies/ff_Adlm_CM.json | 8 + .../Resources/data/currencies/ff_Adlm_GH.json | 12 + .../Resources/data/currencies/ff_Adlm_GM.json | 12 + .../Resources/data/currencies/ff_Adlm_GW.json | 8 + .../Resources/data/currencies/ff_Adlm_LR.json | 12 + .../Resources/data/currencies/ff_Adlm_MR.json | 12 + .../Resources/data/currencies/ff_Adlm_NE.json | 8 + .../Resources/data/currencies/ff_Adlm_NG.json | 12 + .../Resources/data/currencies/ff_Adlm_SL.json | 12 + .../Resources/data/currencies/ff_Adlm_SN.json | 8 + .../Intl/Resources/data/currencies/ff_GN.json | 1 - .../Resources/data/currencies/ff_Latn_GH.json | 1 - .../Resources/data/currencies/ff_Latn_GM.json | 1 - .../Resources/data/currencies/ff_Latn_GN.json | 1 - .../Resources/data/currencies/ff_Latn_LR.json | 1 - .../Resources/data/currencies/ff_Latn_MR.json | 1 - .../Resources/data/currencies/ff_Latn_NG.json | 1 - .../Resources/data/currencies/ff_Latn_SL.json | 1 - .../Intl/Resources/data/currencies/ff_MR.json | 1 - .../Intl/Resources/data/currencies/fi.json | 1 - .../Intl/Resources/data/currencies/fo.json | 1 - .../Intl/Resources/data/currencies/fo_DK.json | 1 - .../Intl/Resources/data/currencies/fr.json | 1 - .../Intl/Resources/data/currencies/fr_BI.json | 1 - .../Intl/Resources/data/currencies/fr_CA.json | 1 - .../Intl/Resources/data/currencies/fr_CD.json | 1 - .../Intl/Resources/data/currencies/fr_DJ.json | 1 - .../Intl/Resources/data/currencies/fr_DZ.json | 1 - .../Intl/Resources/data/currencies/fr_GN.json | 1 - .../Intl/Resources/data/currencies/fr_HT.json | 1 - .../Intl/Resources/data/currencies/fr_KM.json | 1 - .../Intl/Resources/data/currencies/fr_LU.json | 1 - .../Intl/Resources/data/currencies/fr_MG.json | 1 - .../Intl/Resources/data/currencies/fr_MR.json | 1 - .../Intl/Resources/data/currencies/fr_MU.json | 1 - .../Intl/Resources/data/currencies/fr_RW.json | 1 - .../Intl/Resources/data/currencies/fr_SC.json | 1 - .../Intl/Resources/data/currencies/fr_SY.json | 1 - .../Intl/Resources/data/currencies/fr_TN.json | 1 - .../Intl/Resources/data/currencies/fr_VU.json | 1 - .../Intl/Resources/data/currencies/fy.json | 1 - .../Intl/Resources/data/currencies/ga.json | 13 +- .../Intl/Resources/data/currencies/gd.json | 1 - .../Intl/Resources/data/currencies/gl.json | 1 - .../Intl/Resources/data/currencies/gu.json | 1 - .../Intl/Resources/data/currencies/ha.json | 417 +++++++++++- .../Intl/Resources/data/currencies/ha_GH.json | 3 +- .../Intl/Resources/data/currencies/he.json | 1 - .../Intl/Resources/data/currencies/hi.json | 1 - .../Intl/Resources/data/currencies/hr.json | 1 - .../Intl/Resources/data/currencies/hr_BA.json | 1 - .../Intl/Resources/data/currencies/hu.json | 29 +- .../Intl/Resources/data/currencies/hy.json | 3 +- .../Intl/Resources/data/currencies/ia.json | 1 - .../Intl/Resources/data/currencies/id.json | 1 - .../Intl/Resources/data/currencies/ig.json | 561 +++++++++++++++- .../Intl/Resources/data/currencies/ii.json | 1 - .../Intl/Resources/data/currencies/in.json | 1 - .../Intl/Resources/data/currencies/is.json | 1 - .../Intl/Resources/data/currencies/it.json | 3 +- .../Intl/Resources/data/currencies/iw.json | 1 - .../Intl/Resources/data/currencies/ja.json | 1 - .../Intl/Resources/data/currencies/jv.json | 1 - .../Intl/Resources/data/currencies/ka.json | 1 - .../Intl/Resources/data/currencies/ki.json | 1 - .../Intl/Resources/data/currencies/kk.json | 1 - .../Intl/Resources/data/currencies/kl.json | 1 - .../Intl/Resources/data/currencies/km.json | 1 - .../Intl/Resources/data/currencies/kn.json | 1 - .../Intl/Resources/data/currencies/ko.json | 1 - .../Intl/Resources/data/currencies/ks.json | 1 - .../Intl/Resources/data/currencies/ku.json | 1 - .../Intl/Resources/data/currencies/ky.json | 5 +- .../Intl/Resources/data/currencies/lb.json | 1 - .../Intl/Resources/data/currencies/lg.json | 1 - .../Intl/Resources/data/currencies/ln.json | 1 - .../Intl/Resources/data/currencies/ln_AO.json | 1 - .../Intl/Resources/data/currencies/lo.json | 1 - .../Intl/Resources/data/currencies/lt.json | 1 - .../Intl/Resources/data/currencies/lu.json | 1 - .../Intl/Resources/data/currencies/lv.json | 1 - .../Intl/Resources/data/currencies/meta.json | 1 - .../Intl/Resources/data/currencies/mg.json | 1 - .../Intl/Resources/data/currencies/mi.json | 89 --- .../Intl/Resources/data/currencies/mk.json | 1 - .../Intl/Resources/data/currencies/ml.json | 1 - .../Intl/Resources/data/currencies/mn.json | 1 - .../Intl/Resources/data/currencies/mo.json | 1 - .../Intl/Resources/data/currencies/mr.json | 1 - .../Intl/Resources/data/currencies/ms.json | 35 +- .../Intl/Resources/data/currencies/ms_BN.json | 1 - .../Intl/Resources/data/currencies/ms_ID.json | 8 + .../Intl/Resources/data/currencies/ms_SG.json | 1 - .../Intl/Resources/data/currencies/mt.json | 17 - .../Intl/Resources/data/currencies/my.json | 1 - .../Intl/Resources/data/currencies/nb.json | 3 +- .../Intl/Resources/data/currencies/nd.json | 1 - .../Intl/Resources/data/currencies/ne.json | 1 - .../Intl/Resources/data/currencies/nl.json | 1 - .../Intl/Resources/data/currencies/nl_AW.json | 1 - .../Intl/Resources/data/currencies/nl_BQ.json | 1 - .../Intl/Resources/data/currencies/nl_CW.json | 1 - .../Intl/Resources/data/currencies/nl_SR.json | 1 - .../Intl/Resources/data/currencies/nl_SX.json | 1 - .../Intl/Resources/data/currencies/nn.json | 1 - .../Intl/Resources/data/currencies/no.json | 3 +- .../Intl/Resources/data/currencies/om.json | 1 - .../Intl/Resources/data/currencies/om_KE.json | 1 - .../Intl/Resources/data/currencies/or.json | 1 - .../Intl/Resources/data/currencies/os.json | 1 - .../Intl/Resources/data/currencies/os_RU.json | 1 - .../Intl/Resources/data/currencies/pa.json | 1 - .../Resources/data/currencies/pa_Arab.json | 1 - .../Intl/Resources/data/currencies/pl.json | 1 - .../Intl/Resources/data/currencies/ps.json | 17 +- .../Intl/Resources/data/currencies/ps_PK.json | 1 - .../Intl/Resources/data/currencies/pt.json | 1 - .../Intl/Resources/data/currencies/pt_AO.json | 1 - .../Intl/Resources/data/currencies/pt_CV.json | 1 - .../Intl/Resources/data/currencies/pt_LU.json | 1 - .../Intl/Resources/data/currencies/pt_MO.json | 1 - .../Intl/Resources/data/currencies/pt_MZ.json | 1 - .../Intl/Resources/data/currencies/pt_PT.json | 1 - .../Intl/Resources/data/currencies/pt_ST.json | 1 - .../Intl/Resources/data/currencies/qu.json | 1 - .../Intl/Resources/data/currencies/qu_BO.json | 1 - .../Intl/Resources/data/currencies/qu_EC.json | 1 - .../Intl/Resources/data/currencies/rm.json | 1 - .../Intl/Resources/data/currencies/rn.json | 1 - .../Intl/Resources/data/currencies/ro.json | 1 - .../Intl/Resources/data/currencies/ro_MD.json | 1 - .../Intl/Resources/data/currencies/root.json | 1 - .../Intl/Resources/data/currencies/ru.json | 1 - .../Intl/Resources/data/currencies/ru_BY.json | 1 - .../Intl/Resources/data/currencies/ru_KG.json | 1 - .../Intl/Resources/data/currencies/ru_KZ.json | 1 - .../Intl/Resources/data/currencies/ru_MD.json | 1 - .../Intl/Resources/data/currencies/rw.json | 1 - .../Intl/Resources/data/currencies/sd.json | 1 - .../Resources/data/currencies/sd_Deva.json | 36 + .../Intl/Resources/data/currencies/se.json | 1 - .../Intl/Resources/data/currencies/se_SE.json | 1 - .../Intl/Resources/data/currencies/sg.json | 1 - .../Intl/Resources/data/currencies/sh.json | 1 - .../Intl/Resources/data/currencies/si.json | 1 - .../Intl/Resources/data/currencies/sk.json | 1 - .../Intl/Resources/data/currencies/sl.json | 1 - .../Intl/Resources/data/currencies/sn.json | 1 - .../Intl/Resources/data/currencies/so.json | 41 +- .../Intl/Resources/data/currencies/so_DJ.json | 1 - .../Intl/Resources/data/currencies/so_ET.json | 1 - .../Intl/Resources/data/currencies/so_KE.json | 1 - .../Intl/Resources/data/currencies/sq.json | 1 - .../Intl/Resources/data/currencies/sq_MK.json | 1 - .../Intl/Resources/data/currencies/sr.json | 1 - .../Resources/data/currencies/sr_Latn.json | 1 - .../Intl/Resources/data/currencies/su.json | 40 ++ .../Intl/Resources/data/currencies/sv.json | 5 +- .../Intl/Resources/data/currencies/sw.json | 3 +- .../Intl/Resources/data/currencies/sw_CD.json | 1 - .../Intl/Resources/data/currencies/sw_KE.json | 1 - .../Intl/Resources/data/currencies/sw_UG.json | 1 - .../Intl/Resources/data/currencies/ta.json | 1 - .../Intl/Resources/data/currencies/ta_LK.json | 1 - .../Intl/Resources/data/currencies/ta_MY.json | 1 - .../Intl/Resources/data/currencies/ta_SG.json | 1 - .../Intl/Resources/data/currencies/te.json | 1 - .../Intl/Resources/data/currencies/tg.json | 1 - .../Intl/Resources/data/currencies/th.json | 1 - .../Intl/Resources/data/currencies/ti.json | 1 - .../Intl/Resources/data/currencies/ti_ER.json | 1 - .../Intl/Resources/data/currencies/tk.json | 1 - .../Intl/Resources/data/currencies/tl.json | 1 - .../Intl/Resources/data/currencies/to.json | 5 - .../Intl/Resources/data/currencies/tr.json | 1 - .../Intl/Resources/data/currencies/tt.json | 1 - .../Intl/Resources/data/currencies/ug.json | 1 - .../Intl/Resources/data/currencies/uk.json | 1 - .../Intl/Resources/data/currencies/ur.json | 1 - .../Intl/Resources/data/currencies/ur_IN.json | 1 - .../Intl/Resources/data/currencies/uz.json | 3 +- .../Resources/data/currencies/uz_Arab.json | 1 - .../Resources/data/currencies/uz_Cyrl.json | 1 - .../Intl/Resources/data/currencies/vi.json | 1 - .../Intl/Resources/data/currencies/wo.json | 1 - .../Intl/Resources/data/currencies/xh.json | 1 - .../Intl/Resources/data/currencies/yi.json | 1 - .../Intl/Resources/data/currencies/yo.json | 417 +++++++++++- .../Intl/Resources/data/currencies/yo_BJ.json | 261 +++++++- .../Intl/Resources/data/currencies/zh.json | 1 - .../Intl/Resources/data/currencies/zh_HK.json | 5 - .../Resources/data/currencies/zh_Hans_HK.json | 1 - .../Resources/data/currencies/zh_Hans_MO.json | 1 - .../Resources/data/currencies/zh_Hans_SG.json | 1 - .../Resources/data/currencies/zh_Hant.json | 1 - .../Resources/data/currencies/zh_Hant_HK.json | 5 - .../Resources/data/currencies/zh_Hant_MO.json | 1 - .../Intl/Resources/data/currencies/zh_MO.json | 1 - .../Intl/Resources/data/currencies/zh_SG.json | 1 - .../Intl/Resources/data/currencies/zu.json | 5 - .../Intl/Resources/data/git-info.txt | 6 +- .../Intl/Resources/data/languages/af.json | 2 +- .../Intl/Resources/data/languages/ak.json | 1 - .../Intl/Resources/data/languages/am.json | 2 +- .../Intl/Resources/data/languages/ar.json | 2 +- .../Intl/Resources/data/languages/ar_EG.json | 1 - .../Intl/Resources/data/languages/ar_LY.json | 1 - .../Intl/Resources/data/languages/ar_SA.json | 1 - .../Intl/Resources/data/languages/as.json | 2 +- .../Intl/Resources/data/languages/az.json | 2 +- .../Resources/data/languages/az_Cyrl.json | 1 - .../Intl/Resources/data/languages/be.json | 2 +- .../Intl/Resources/data/languages/bg.json | 4 +- .../Intl/Resources/data/languages/bm.json | 1 - .../Intl/Resources/data/languages/bn.json | 2 +- .../Intl/Resources/data/languages/bn_IN.json | 1 - .../Intl/Resources/data/languages/bo.json | 1 - .../Intl/Resources/data/languages/br.json | 1 - .../Intl/Resources/data/languages/bs.json | 3 +- .../Resources/data/languages/bs_Cyrl.json | 1 - .../Intl/Resources/data/languages/ca.json | 2 +- .../Intl/Resources/data/languages/ce.json | 1 - .../Intl/Resources/data/languages/cs.json | 2 +- .../Intl/Resources/data/languages/cy.json | 2 +- .../Intl/Resources/data/languages/da.json | 2 +- .../Intl/Resources/data/languages/de.json | 2 +- .../Intl/Resources/data/languages/de_AT.json | 1 - .../Intl/Resources/data/languages/de_CH.json | 1 - .../Intl/Resources/data/languages/de_LU.json | 1 - .../Intl/Resources/data/languages/dz.json | 1 - .../Intl/Resources/data/languages/ee.json | 1 - .../Intl/Resources/data/languages/el.json | 2 +- .../Intl/Resources/data/languages/en.json | 1 - .../Intl/Resources/data/languages/en_001.json | 1 - .../Intl/Resources/data/languages/en_AU.json | 1 - .../Intl/Resources/data/languages/en_CA.json | 1 - .../Intl/Resources/data/languages/en_GB.json | 1 - .../Intl/Resources/data/languages/en_IN.json | 1 - .../Intl/Resources/data/languages/en_NZ.json | 1 - .../Intl/Resources/data/languages/eo.json | 2 - .../Intl/Resources/data/languages/es.json | 2 +- .../Intl/Resources/data/languages/es_419.json | 2 +- .../Intl/Resources/data/languages/es_AR.json | 1 - .../Intl/Resources/data/languages/es_BO.json | 1 - .../Intl/Resources/data/languages/es_CL.json | 1 - .../Intl/Resources/data/languages/es_CO.json | 1 - .../Intl/Resources/data/languages/es_CR.json | 1 - .../Intl/Resources/data/languages/es_DO.json | 1 - .../Intl/Resources/data/languages/es_EC.json | 1 - .../Intl/Resources/data/languages/es_GT.json | 1 - .../Intl/Resources/data/languages/es_HN.json | 1 - .../Intl/Resources/data/languages/es_MX.json | 4 +- .../Intl/Resources/data/languages/es_NI.json | 1 - .../Intl/Resources/data/languages/es_PA.json | 1 - .../Intl/Resources/data/languages/es_PE.json | 1 - .../Intl/Resources/data/languages/es_PR.json | 1 - .../Intl/Resources/data/languages/es_PY.json | 1 - .../Intl/Resources/data/languages/es_SV.json | 1 - .../Intl/Resources/data/languages/es_US.json | 5 - .../Intl/Resources/data/languages/es_VE.json | 1 - .../Intl/Resources/data/languages/et.json | 4 +- .../Intl/Resources/data/languages/eu.json | 2 +- .../Intl/Resources/data/languages/fa.json | 1 - .../Intl/Resources/data/languages/fa_AF.json | 1 - .../Intl/Resources/data/languages/ff.json | 1 - .../Resources/data/languages/ff_Adlm.json | 169 +++++ .../Intl/Resources/data/languages/fi.json | 2 +- .../Intl/Resources/data/languages/fo.json | 2 - .../Intl/Resources/data/languages/fr.json | 2 +- .../Intl/Resources/data/languages/fr_BE.json | 1 - .../Intl/Resources/data/languages/fr_CA.json | 1 - .../Intl/Resources/data/languages/fr_CH.json | 1 - .../Intl/Resources/data/languages/fy.json | 1 - .../Intl/Resources/data/languages/ga.json | 126 +--- .../Intl/Resources/data/languages/gd.json | 2 +- .../Intl/Resources/data/languages/gl.json | 3 +- .../Intl/Resources/data/languages/gu.json | 6 +- .../Intl/Resources/data/languages/gv.json | 1 - .../Intl/Resources/data/languages/ha.json | 5 +- .../Intl/Resources/data/languages/ha_NE.json | 1 - .../Intl/Resources/data/languages/he.json | 2 +- .../Intl/Resources/data/languages/hi.json | 4 +- .../Intl/Resources/data/languages/hr.json | 2 +- .../Intl/Resources/data/languages/hu.json | 2 +- .../Intl/Resources/data/languages/hy.json | 3 +- .../Intl/Resources/data/languages/ia.json | 1 - .../Intl/Resources/data/languages/id.json | 2 +- .../Intl/Resources/data/languages/ig.json | 1 - .../Intl/Resources/data/languages/ii.json | 1 - .../Intl/Resources/data/languages/in.json | 2 +- .../Intl/Resources/data/languages/is.json | 6 +- .../Intl/Resources/data/languages/it.json | 3 +- .../Intl/Resources/data/languages/iw.json | 2 +- .../Intl/Resources/data/languages/ja.json | 2 +- .../Intl/Resources/data/languages/jv.json | 8 +- .../Intl/Resources/data/languages/ka.json | 2 +- .../Intl/Resources/data/languages/ki.json | 1 - .../Intl/Resources/data/languages/kk.json | 2 +- .../Intl/Resources/data/languages/kl.json | 1 - .../Intl/Resources/data/languages/km.json | 2 +- .../Intl/Resources/data/languages/kn.json | 2 +- .../Intl/Resources/data/languages/ko.json | 2 +- .../Intl/Resources/data/languages/ks.json | 1 - .../Intl/Resources/data/languages/ku.json | 3 - .../Intl/Resources/data/languages/kw.json | 1 - .../Intl/Resources/data/languages/ky.json | 4 +- .../Intl/Resources/data/languages/lb.json | 2 - .../Intl/Resources/data/languages/lg.json | 1 - .../Intl/Resources/data/languages/ln.json | 1 - .../Intl/Resources/data/languages/lo.json | 3 +- .../Intl/Resources/data/languages/lt.json | 1 - .../Intl/Resources/data/languages/lu.json | 1 - .../Intl/Resources/data/languages/lv.json | 4 +- .../Intl/Resources/data/languages/meta.json | 1 - .../Intl/Resources/data/languages/mg.json | 1 - .../Intl/Resources/data/languages/mi.json | 1 - .../Intl/Resources/data/languages/mk.json | 2 +- .../Intl/Resources/data/languages/ml.json | 1 - .../Intl/Resources/data/languages/mn.json | 1 - .../Intl/Resources/data/languages/mo.json | 3 +- .../Intl/Resources/data/languages/mr.json | 1 - .../Intl/Resources/data/languages/ms.json | 2 +- .../Intl/Resources/data/languages/mt.json | 1 - .../Intl/Resources/data/languages/my.json | 2 +- .../Intl/Resources/data/languages/nb.json | 2 +- .../Intl/Resources/data/languages/nd.json | 1 - .../Intl/Resources/data/languages/ne.json | 2 +- .../Intl/Resources/data/languages/nl.json | 2 +- .../Intl/Resources/data/languages/nn.json | 1 - .../Intl/Resources/data/languages/no.json | 2 +- .../Intl/Resources/data/languages/om.json | 1 - .../Intl/Resources/data/languages/or.json | 2 +- .../Intl/Resources/data/languages/os.json | 1 - .../Intl/Resources/data/languages/pa.json | 2 +- .../Resources/data/languages/pa_Arab.json | 1 - .../Intl/Resources/data/languages/pl.json | 2 +- .../Intl/Resources/data/languages/ps.json | 3 +- .../Intl/Resources/data/languages/ps_PK.json | 1 - .../Intl/Resources/data/languages/pt.json | 2 +- .../Intl/Resources/data/languages/pt_PT.json | 3 +- .../Intl/Resources/data/languages/qu.json | 1 - .../Intl/Resources/data/languages/rm.json | 1 - .../Intl/Resources/data/languages/rn.json | 1 - .../Intl/Resources/data/languages/ro.json | 3 +- .../Intl/Resources/data/languages/ro_MD.json | 1 - .../Intl/Resources/data/languages/ru.json | 2 +- .../Intl/Resources/data/languages/rw.json | 1 - .../Intl/Resources/data/languages/sd.json | 2 +- .../Resources/data/languages/sd_Deva.json | 24 + .../Intl/Resources/data/languages/se.json | 1 - .../Intl/Resources/data/languages/se_FI.json | 1 - .../Intl/Resources/data/languages/sg.json | 1 - .../Intl/Resources/data/languages/sh.json | 3 +- .../Intl/Resources/data/languages/sh_BA.json | 1 - .../Intl/Resources/data/languages/si.json | 2 +- .../Intl/Resources/data/languages/sk.json | 2 +- .../Intl/Resources/data/languages/sl.json | 2 +- .../Intl/Resources/data/languages/sn.json | 1 - .../Intl/Resources/data/languages/so.json | 6 +- .../Intl/Resources/data/languages/sq.json | 2 +- .../Intl/Resources/data/languages/sr.json | 3 +- .../Intl/Resources/data/languages/sr_BA.json | 1 - .../Resources/data/languages/sr_Cyrl_BA.json | 1 - .../Resources/data/languages/sr_Cyrl_ME.json | 1 - .../Resources/data/languages/sr_Cyrl_XK.json | 1 - .../Resources/data/languages/sr_Latn.json | 3 +- .../Resources/data/languages/sr_Latn_BA.json | 1 - .../Resources/data/languages/sr_Latn_ME.json | 1 - .../Resources/data/languages/sr_Latn_XK.json | 1 - .../Intl/Resources/data/languages/sr_ME.json | 1 - .../Intl/Resources/data/languages/sr_XK.json | 1 - .../Intl/Resources/data/languages/su.json | 30 + .../Intl/Resources/data/languages/sv.json | 2 +- .../Intl/Resources/data/languages/sw.json | 1 - .../Intl/Resources/data/languages/sw_CD.json | 2 - .../Intl/Resources/data/languages/sw_KE.json | 1 - .../Intl/Resources/data/languages/ta.json | 2 +- .../Intl/Resources/data/languages/te.json | 2 +- .../Intl/Resources/data/languages/tg.json | 1 - .../Intl/Resources/data/languages/th.json | 2 +- .../Intl/Resources/data/languages/ti.json | 1 - .../Intl/Resources/data/languages/tk.json | 2 +- .../Intl/Resources/data/languages/tl.json | 2 +- .../Intl/Resources/data/languages/to.json | 1 - .../Intl/Resources/data/languages/tr.json | 2 +- .../Intl/Resources/data/languages/tt.json | 1 - .../Intl/Resources/data/languages/ug.json | 1 - .../Intl/Resources/data/languages/uk.json | 2 +- .../Intl/Resources/data/languages/ur.json | 6 +- .../Intl/Resources/data/languages/ur_IN.json | 1 - .../Intl/Resources/data/languages/uz.json | 6 +- .../Resources/data/languages/uz_Arab.json | 1 - .../Resources/data/languages/uz_Cyrl.json | 1 - .../Intl/Resources/data/languages/vi.json | 2 +- .../Intl/Resources/data/languages/wo.json | 1 - .../Intl/Resources/data/languages/xh.json | 1 - .../Intl/Resources/data/languages/yi.json | 2 - .../Intl/Resources/data/languages/yo.json | 127 +++- .../Intl/Resources/data/languages/yo_BJ.json | 42 +- .../Intl/Resources/data/languages/zh.json | 2 +- .../Intl/Resources/data/languages/zh_HK.json | 2 +- .../Resources/data/languages/zh_Hant.json | 1 - .../Resources/data/languages/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/languages/zu.json | 2 +- .../Intl/Resources/data/locales/af.json | 11 + .../Intl/Resources/data/locales/ak.json | 1 + .../Intl/Resources/data/locales/am.json | 11 + .../Intl/Resources/data/locales/ar.json | 11 + .../Intl/Resources/data/locales/as.json | 11 + .../Intl/Resources/data/locales/az.json | 11 + .../Intl/Resources/data/locales/az_Cyrl.json | 11 + .../Intl/Resources/data/locales/be.json | 11 + .../Intl/Resources/data/locales/bg.json | 11 + .../Intl/Resources/data/locales/bm.json | 1 + .../Intl/Resources/data/locales/bn.json | 11 + .../Intl/Resources/data/locales/br.json | 24 + .../Intl/Resources/data/locales/bs.json | 11 + .../Intl/Resources/data/locales/bs_Cyrl.json | 11 + .../Intl/Resources/data/locales/ca.json | 24 + .../Intl/Resources/data/locales/ce.json | 11 + .../Intl/Resources/data/locales/cs.json | 11 + .../Intl/Resources/data/locales/cy.json | 11 + .../Intl/Resources/data/locales/da.json | 11 + .../Intl/Resources/data/locales/de.json | 11 + .../Intl/Resources/data/locales/dz.json | 11 + .../Intl/Resources/data/locales/ee.json | 7 + .../Intl/Resources/data/locales/el.json | 11 + .../Intl/Resources/data/locales/en.json | 24 + .../Intl/Resources/data/locales/eo.json | 3 + .../Intl/Resources/data/locales/es.json | 11 + .../Intl/Resources/data/locales/es_419.json | 2 + .../Intl/Resources/data/locales/et.json | 11 + .../Intl/Resources/data/locales/eu.json | 11 + .../Intl/Resources/data/locales/fa.json | 11 + .../Intl/Resources/data/locales/fa_AF.json | 3 + .../Intl/Resources/data/locales/ff.json | 1 + .../Intl/Resources/data/locales/ff_Adlm.json | 382 +++++++++++ .../Intl/Resources/data/locales/fi.json | 24 + .../Intl/Resources/data/locales/fo.json | 11 + .../Intl/Resources/data/locales/fr.json | 11 + .../Intl/Resources/data/locales/fr_CA.json | 4 + .../Intl/Resources/data/locales/fy.json | 11 + .../Intl/Resources/data/locales/ga.json | 36 +- .../Intl/Resources/data/locales/gd.json | 24 + .../Intl/Resources/data/locales/gl.json | 11 + .../Intl/Resources/data/locales/gu.json | 11 + .../Intl/Resources/data/locales/ha.json | 36 + .../Intl/Resources/data/locales/he.json | 11 + .../Intl/Resources/data/locales/hi.json | 11 + .../Intl/Resources/data/locales/hr.json | 11 + .../Intl/Resources/data/locales/hu.json | 11 + .../Intl/Resources/data/locales/hy.json | 11 + .../Intl/Resources/data/locales/ia.json | 11 + .../Intl/Resources/data/locales/id.json | 11 + .../Intl/Resources/data/locales/ig.json | 53 ++ .../Intl/Resources/data/locales/is.json | 11 + .../Intl/Resources/data/locales/it.json | 11 + .../Intl/Resources/data/locales/ja.json | 11 + .../Intl/Resources/data/locales/jv.json | 39 +- .../Intl/Resources/data/locales/ka.json | 11 + .../Intl/Resources/data/locales/ki.json | 1 + .../Intl/Resources/data/locales/kk.json | 11 + .../Intl/Resources/data/locales/km.json | 11 + .../Intl/Resources/data/locales/kn.json | 11 + .../Intl/Resources/data/locales/ko.json | 11 + .../Intl/Resources/data/locales/ks.json | 11 + .../Intl/Resources/data/locales/ku.json | 12 +- .../Intl/Resources/data/locales/ky.json | 11 + .../Intl/Resources/data/locales/lb.json | 11 + .../Intl/Resources/data/locales/lg.json | 1 + .../Intl/Resources/data/locales/ln.json | 1 + .../Intl/Resources/data/locales/lo.json | 11 + .../Intl/Resources/data/locales/lt.json | 11 + .../Intl/Resources/data/locales/lu.json | 1 + .../Intl/Resources/data/locales/lv.json | 11 + .../Intl/Resources/data/locales/meta.json | 27 + .../Intl/Resources/data/locales/mg.json | 1 + .../Intl/Resources/data/locales/mk.json | 11 + .../Intl/Resources/data/locales/ml.json | 11 + .../Intl/Resources/data/locales/mn.json | 11 + .../Intl/Resources/data/locales/mr.json | 11 + .../Intl/Resources/data/locales/ms.json | 24 + .../Intl/Resources/data/locales/mt.json | 9 + .../Intl/Resources/data/locales/my.json | 11 + .../Intl/Resources/data/locales/nb.json | 11 + .../Intl/Resources/data/locales/nd.json | 1 + .../Intl/Resources/data/locales/ne.json | 11 + .../Intl/Resources/data/locales/nl.json | 24 + .../Intl/Resources/data/locales/nn.json | 11 + .../Intl/Resources/data/locales/om.json | 2 + .../Intl/Resources/data/locales/or.json | 11 + .../Intl/Resources/data/locales/pa.json | 11 + .../Intl/Resources/data/locales/pa_Arab.json | 4 + .../Intl/Resources/data/locales/pl.json | 11 + .../Intl/Resources/data/locales/ps.json | 11 + .../Intl/Resources/data/locales/pt.json | 11 + .../Intl/Resources/data/locales/qu.json | 3 + .../Intl/Resources/data/locales/rm.json | 11 + .../Intl/Resources/data/locales/rn.json | 1 + .../Intl/Resources/data/locales/ro.json | 11 + .../Intl/Resources/data/locales/ru.json | 11 + .../Intl/Resources/data/locales/rw.json | 1 + .../Intl/Resources/data/locales/sd.json | 11 + .../Intl/Resources/data/locales/sd_Deva.json | 311 +++++++++ .../Intl/Resources/data/locales/sg.json | 1 + .../Intl/Resources/data/locales/si.json | 11 + .../Intl/Resources/data/locales/sk.json | 11 + .../Intl/Resources/data/locales/sl.json | 11 + .../Intl/Resources/data/locales/sn.json | 1 + .../Intl/Resources/data/locales/so.json | 28 + .../Intl/Resources/data/locales/sq.json | 11 + .../Intl/Resources/data/locales/sr.json | 11 + .../Intl/Resources/data/locales/sr_Latn.json | 11 + .../Intl/Resources/data/locales/su.json | 32 + .../Intl/Resources/data/locales/sv.json | 24 + .../Intl/Resources/data/locales/sw.json | 11 + .../Intl/Resources/data/locales/ta.json | 11 + .../Intl/Resources/data/locales/te.json | 11 + .../Intl/Resources/data/locales/tg.json | 5 + .../Intl/Resources/data/locales/th.json | 11 + .../Intl/Resources/data/locales/ti.json | 5 + .../Intl/Resources/data/locales/tk.json | 11 + .../Intl/Resources/data/locales/to.json | 11 + .../Intl/Resources/data/locales/tr.json | 11 + .../Intl/Resources/data/locales/tt.json | 5 + .../Intl/Resources/data/locales/ug.json | 11 + .../Intl/Resources/data/locales/uk.json | 24 + .../Intl/Resources/data/locales/ur.json | 11 + .../Intl/Resources/data/locales/uz.json | 11 + .../Intl/Resources/data/locales/uz_Arab.json | 4 + .../Intl/Resources/data/locales/uz_Cyrl.json | 11 + .../Intl/Resources/data/locales/vi.json | 11 + .../Intl/Resources/data/locales/wo.json | 5 + .../Intl/Resources/data/locales/yi.json | 4 + .../Intl/Resources/data/locales/yo.json | 140 ++++ .../Intl/Resources/data/locales/yo_BJ.json | 103 +++ .../Intl/Resources/data/locales/zh.json | 24 + .../Intl/Resources/data/locales/zh_Hant.json | 24 + .../Resources/data/locales/zh_Hant_HK.json | 11 + .../Intl/Resources/data/locales/zu.json | 11 + .../Intl/Resources/data/regions/af.json | 1 - .../Intl/Resources/data/regions/ak.json | 1 - .../Intl/Resources/data/regions/am.json | 1 - .../Intl/Resources/data/regions/ar.json | 3 +- .../Intl/Resources/data/regions/ar_LY.json | 1 - .../Intl/Resources/data/regions/ar_SA.json | 1 - .../Intl/Resources/data/regions/as.json | 1 - .../Intl/Resources/data/regions/az.json | 1 - .../Intl/Resources/data/regions/az_Cyrl.json | 1 - .../Intl/Resources/data/regions/be.json | 1 - .../Intl/Resources/data/regions/bg.json | 1 - .../Intl/Resources/data/regions/bm.json | 1 - .../Intl/Resources/data/regions/bn.json | 1 - .../Intl/Resources/data/regions/bn_IN.json | 1 - .../Intl/Resources/data/regions/bo.json | 1 - .../Intl/Resources/data/regions/bo_IN.json | 1 - .../Intl/Resources/data/regions/br.json | 1 - .../Intl/Resources/data/regions/bs.json | 3 +- .../Intl/Resources/data/regions/bs_Cyrl.json | 1 - .../Intl/Resources/data/regions/ca.json | 1 - .../Intl/Resources/data/regions/ce.json | 1 - .../Intl/Resources/data/regions/cs.json | 1 - .../Intl/Resources/data/regions/cy.json | 1 - .../Intl/Resources/data/regions/da.json | 1 - .../Intl/Resources/data/regions/de.json | 1 - .../Intl/Resources/data/regions/de_AT.json | 1 - .../Intl/Resources/data/regions/de_CH.json | 1 - .../Intl/Resources/data/regions/dz.json | 1 - .../Intl/Resources/data/regions/ee.json | 1 - .../Intl/Resources/data/regions/el.json | 1 - .../Intl/Resources/data/regions/en.json | 1 - .../Intl/Resources/data/regions/en_001.json | 1 - .../Intl/Resources/data/regions/en_AU.json | 1 - .../Intl/Resources/data/regions/eo.json | 1 - .../Intl/Resources/data/regions/es.json | 1 - .../Intl/Resources/data/regions/es_419.json | 1 - .../Intl/Resources/data/regions/es_AR.json | 1 - .../Intl/Resources/data/regions/es_BO.json | 1 - .../Intl/Resources/data/regions/es_CL.json | 1 - .../Intl/Resources/data/regions/es_CO.json | 1 - .../Intl/Resources/data/regions/es_CR.json | 1 - .../Intl/Resources/data/regions/es_DO.json | 1 - .../Intl/Resources/data/regions/es_EC.json | 1 - .../Intl/Resources/data/regions/es_GT.json | 1 - .../Intl/Resources/data/regions/es_HN.json | 1 - .../Intl/Resources/data/regions/es_MX.json | 1 - .../Intl/Resources/data/regions/es_NI.json | 1 - .../Intl/Resources/data/regions/es_PA.json | 1 - .../Intl/Resources/data/regions/es_PE.json | 1 - .../Intl/Resources/data/regions/es_PR.json | 1 - .../Intl/Resources/data/regions/es_PY.json | 1 - .../Intl/Resources/data/regions/es_SV.json | 1 - .../Intl/Resources/data/regions/es_US.json | 1 - .../Intl/Resources/data/regions/es_VE.json | 1 - .../Intl/Resources/data/regions/et.json | 1 - .../Intl/Resources/data/regions/eu.json | 2 +- .../Intl/Resources/data/regions/fa.json | 2 +- .../Intl/Resources/data/regions/fa_AF.json | 1 - .../Intl/Resources/data/regions/ff.json | 1 - .../Intl/Resources/data/regions/ff_Adlm.json | 73 ++ .../Intl/Resources/data/regions/fi.json | 3 +- .../Intl/Resources/data/regions/fo.json | 1 - .../Intl/Resources/data/regions/fr.json | 1 - .../Intl/Resources/data/regions/fr_BE.json | 1 - .../Intl/Resources/data/regions/fr_CA.json | 1 - .../Intl/Resources/data/regions/fy.json | 1 - .../Intl/Resources/data/regions/ga.json | 1 - .../Intl/Resources/data/regions/gd.json | 1 - .../Intl/Resources/data/regions/gl.json | 1 - .../Intl/Resources/data/regions/gu.json | 1 - .../Intl/Resources/data/regions/gv.json | 1 - .../Intl/Resources/data/regions/ha.json | 19 +- .../Intl/Resources/data/regions/he.json | 1 - .../Intl/Resources/data/regions/hi.json | 1 - .../Intl/Resources/data/regions/hr.json | 1 - .../Intl/Resources/data/regions/hu.json | 1 - .../Intl/Resources/data/regions/hy.json | 1 - .../Intl/Resources/data/regions/ia.json | 1 - .../Intl/Resources/data/regions/id.json | 1 - .../Intl/Resources/data/regions/ig.json | 43 +- .../Intl/Resources/data/regions/ii.json | 1 - .../Intl/Resources/data/regions/in.json | 1 - .../Intl/Resources/data/regions/is.json | 1 - .../Intl/Resources/data/regions/it.json | 1 - .../Intl/Resources/data/regions/iw.json | 1 - .../Intl/Resources/data/regions/ja.json | 1 - .../Intl/Resources/data/regions/jv.json | 1 - .../Intl/Resources/data/regions/ka.json | 1 - .../Intl/Resources/data/regions/ki.json | 1 - .../Intl/Resources/data/regions/kk.json | 1 - .../Intl/Resources/data/regions/kl.json | 1 - .../Intl/Resources/data/regions/km.json | 1 - .../Intl/Resources/data/regions/kn.json | 1 - .../Intl/Resources/data/regions/ko.json | 1 - .../Intl/Resources/data/regions/ko_KP.json | 1 - .../Intl/Resources/data/regions/ks.json | 1 - .../Intl/Resources/data/regions/ku.json | 2 - .../Intl/Resources/data/regions/kw.json | 1 - .../Intl/Resources/data/regions/ky.json | 1 - .../Intl/Resources/data/regions/lb.json | 1 - .../Intl/Resources/data/regions/lg.json | 1 - .../Intl/Resources/data/regions/ln.json | 1 - .../Intl/Resources/data/regions/lo.json | 3 +- .../Intl/Resources/data/regions/lt.json | 3 +- .../Intl/Resources/data/regions/lu.json | 1 - .../Intl/Resources/data/regions/lv.json | 1 - .../Intl/Resources/data/regions/meta.json | 1 - .../Intl/Resources/data/regions/mg.json | 1 - .../Intl/Resources/data/regions/mi.json | 1 - .../Intl/Resources/data/regions/mk.json | 1 - .../Intl/Resources/data/regions/ml.json | 2 +- .../Intl/Resources/data/regions/mn.json | 1 - .../Intl/Resources/data/regions/mo.json | 1 - .../Intl/Resources/data/regions/mr.json | 1 - .../Intl/Resources/data/regions/ms.json | 3 +- .../Intl/Resources/data/regions/mt.json | 1 - .../Intl/Resources/data/regions/my.json | 3 +- .../Intl/Resources/data/regions/nb.json | 1 - .../Intl/Resources/data/regions/nd.json | 1 - .../Intl/Resources/data/regions/ne.json | 2 +- .../Intl/Resources/data/regions/nl.json | 1 - .../Intl/Resources/data/regions/nn.json | 1 - .../Intl/Resources/data/regions/no.json | 1 - .../Intl/Resources/data/regions/om.json | 1 - .../Intl/Resources/data/regions/or.json | 1 - .../Intl/Resources/data/regions/os.json | 1 - .../Intl/Resources/data/regions/pa.json | 1 - .../Intl/Resources/data/regions/pa_Arab.json | 1 - .../Intl/Resources/data/regions/pl.json | 1 - .../Intl/Resources/data/regions/ps.json | 1 - .../Intl/Resources/data/regions/ps_PK.json | 1 - .../Intl/Resources/data/regions/pt.json | 1 - .../Intl/Resources/data/regions/pt_PT.json | 1 - .../Intl/Resources/data/regions/qu.json | 1 - .../Intl/Resources/data/regions/rm.json | 1 - .../Intl/Resources/data/regions/rn.json | 1 - .../Intl/Resources/data/regions/ro.json | 1 - .../Intl/Resources/data/regions/ro_MD.json | 1 - .../Intl/Resources/data/regions/ru.json | 1 - .../Intl/Resources/data/regions/ru_UA.json | 1 - .../Intl/Resources/data/regions/rw.json | 1 - .../Intl/Resources/data/regions/sd.json | 1 - .../Intl/Resources/data/regions/sd_Deva.json | 14 + .../Intl/Resources/data/regions/se.json | 1 - .../Intl/Resources/data/regions/se_FI.json | 1 - .../Intl/Resources/data/regions/sg.json | 1 - .../Intl/Resources/data/regions/sh.json | 3 +- .../Intl/Resources/data/regions/sh_BA.json | 1 - .../Intl/Resources/data/regions/si.json | 1 - .../Intl/Resources/data/regions/sk.json | 1 - .../Intl/Resources/data/regions/sl.json | 1 - .../Intl/Resources/data/regions/sn.json | 1 - .../Intl/Resources/data/regions/so.json | 5 +- .../Intl/Resources/data/regions/sq.json | 1 - .../Intl/Resources/data/regions/sr.json | 3 +- .../Intl/Resources/data/regions/sr_BA.json | 1 - .../Resources/data/regions/sr_Cyrl_BA.json | 1 - .../Resources/data/regions/sr_Cyrl_ME.json | 1 - .../Resources/data/regions/sr_Cyrl_XK.json | 1 - .../Intl/Resources/data/regions/sr_Latn.json | 3 +- .../Resources/data/regions/sr_Latn_BA.json | 1 - .../Resources/data/regions/sr_Latn_ME.json | 1 - .../Resources/data/regions/sr_Latn_XK.json | 1 - .../Intl/Resources/data/regions/sr_ME.json | 1 - .../Intl/Resources/data/regions/sr_XK.json | 1 - .../Intl/Resources/data/regions/su.json | 14 + .../Intl/Resources/data/regions/sv.json | 1 - .../Intl/Resources/data/regions/sw.json | 1 - .../Intl/Resources/data/regions/sw_CD.json | 1 - .../Intl/Resources/data/regions/sw_KE.json | 1 - .../Intl/Resources/data/regions/ta.json | 1 - .../Intl/Resources/data/regions/te.json | 1 - .../Intl/Resources/data/regions/tg.json | 1 - .../Intl/Resources/data/regions/th.json | 1 - .../Intl/Resources/data/regions/ti.json | 1 - .../Intl/Resources/data/regions/tk.json | 1 - .../Intl/Resources/data/regions/tl.json | 1 - .../Intl/Resources/data/regions/to.json | 1 - .../Intl/Resources/data/regions/tr.json | 1 - .../Intl/Resources/data/regions/tt.json | 1 - .../Intl/Resources/data/regions/ug.json | 1 - .../Intl/Resources/data/regions/uk.json | 1 - .../Intl/Resources/data/regions/ur.json | 1 - .../Intl/Resources/data/regions/ur_IN.json | 1 - .../Intl/Resources/data/regions/uz.json | 1 - .../Intl/Resources/data/regions/uz_Arab.json | 1 - .../Intl/Resources/data/regions/uz_Cyrl.json | 1 - .../Intl/Resources/data/regions/vi.json | 1 - .../Intl/Resources/data/regions/wo.json | 1 - .../Intl/Resources/data/regions/xh.json | 1 - .../Intl/Resources/data/regions/yi.json | 1 - .../Intl/Resources/data/regions/yo.json | 28 +- .../Intl/Resources/data/regions/yo_BJ.json | 9 +- .../Intl/Resources/data/regions/zh.json | 1 - .../Intl/Resources/data/regions/zh_HK.json | 1 - .../Intl/Resources/data/regions/zh_Hant.json | 1 - .../Resources/data/regions/zh_Hant_HK.json | 1 - .../Intl/Resources/data/regions/zu.json | 1 - .../Intl/Resources/data/scripts/af.json | 1 - .../Intl/Resources/data/scripts/am.json | 2 +- .../Intl/Resources/data/scripts/ar.json | 5 +- .../Intl/Resources/data/scripts/as.json | 1 - .../Intl/Resources/data/scripts/az.json | 1 - .../Intl/Resources/data/scripts/az_Cyrl.json | 1 - .../Intl/Resources/data/scripts/be.json | 1 - .../Intl/Resources/data/scripts/bg.json | 1 - .../Intl/Resources/data/scripts/bn.json | 1 - .../Intl/Resources/data/scripts/bo.json | 1 - .../Intl/Resources/data/scripts/br.json | 1 - .../Intl/Resources/data/scripts/bs.json | 1 - .../Intl/Resources/data/scripts/bs_Cyrl.json | 1 - .../Intl/Resources/data/scripts/ca.json | 3 +- .../Intl/Resources/data/scripts/ce.json | 1 - .../Intl/Resources/data/scripts/cs.json | 3 +- .../Intl/Resources/data/scripts/cy.json | 1 - .../Intl/Resources/data/scripts/da.json | 3 +- .../Intl/Resources/data/scripts/de.json | 4 +- .../Intl/Resources/data/scripts/dz.json | 1 - .../Intl/Resources/data/scripts/ee.json | 1 - .../Intl/Resources/data/scripts/el.json | 2 +- .../Intl/Resources/data/scripts/en.json | 2 +- .../Intl/Resources/data/scripts/en_AU.json | 1 - .../Intl/Resources/data/scripts/en_IN.json | 1 - .../Intl/Resources/data/scripts/es.json | 3 +- .../Intl/Resources/data/scripts/es_419.json | 4 +- .../Intl/Resources/data/scripts/es_MX.json | 1 - .../Intl/Resources/data/scripts/es_US.json | 1 - .../Intl/Resources/data/scripts/et.json | 1 - .../Intl/Resources/data/scripts/eu.json | 1 - .../Intl/Resources/data/scripts/fa.json | 1 - .../Intl/Resources/data/scripts/fa_AF.json | 1 - .../Intl/Resources/data/scripts/ff_Adlm.json | 5 + .../Intl/Resources/data/scripts/fi.json | 8 +- .../Intl/Resources/data/scripts/fo.json | 1 - .../Intl/Resources/data/scripts/fr.json | 3 +- .../Intl/Resources/data/scripts/fr_CA.json | 2 +- .../Intl/Resources/data/scripts/fy.json | 1 - .../Intl/Resources/data/scripts/ga.json | 69 +- .../Intl/Resources/data/scripts/gd.json | 3 +- .../Intl/Resources/data/scripts/gl.json | 1 - .../Intl/Resources/data/scripts/gu.json | 1 - .../Intl/Resources/data/scripts/ha.json | 24 +- .../Intl/Resources/data/scripts/he.json | 7 +- .../Intl/Resources/data/scripts/hi.json | 3 +- .../Intl/Resources/data/scripts/hr.json | 3 +- .../Intl/Resources/data/scripts/hu.json | 5 +- .../Intl/Resources/data/scripts/hy.json | 1 - .../Intl/Resources/data/scripts/ia.json | 1 - .../Intl/Resources/data/scripts/id.json | 4 +- .../Intl/Resources/data/scripts/ig.json | 1 - .../Intl/Resources/data/scripts/ii.json | 1 - .../Intl/Resources/data/scripts/in.json | 4 +- .../Intl/Resources/data/scripts/is.json | 1 - .../Intl/Resources/data/scripts/it.json | 3 +- .../Intl/Resources/data/scripts/iw.json | 7 +- .../Intl/Resources/data/scripts/ja.json | 2 +- .../Intl/Resources/data/scripts/jv.json | 4 +- .../Intl/Resources/data/scripts/ka.json | 1 - .../Intl/Resources/data/scripts/kk.json | 1 - .../Intl/Resources/data/scripts/km.json | 1 - .../Intl/Resources/data/scripts/kn.json | 1 - .../Intl/Resources/data/scripts/ko.json | 3 +- .../Intl/Resources/data/scripts/ks.json | 2 +- .../Intl/Resources/data/scripts/ku.json | 1 - .../Intl/Resources/data/scripts/ky.json | 1 - .../Intl/Resources/data/scripts/lb.json | 3 - .../Intl/Resources/data/scripts/lo.json | 1 - .../Intl/Resources/data/scripts/lt.json | 1 - .../Intl/Resources/data/scripts/lv.json | 1 - .../Intl/Resources/data/scripts/meta.json | 2 +- .../Intl/Resources/data/scripts/mi.json | 1 - .../Intl/Resources/data/scripts/mk.json | 1 - .../Intl/Resources/data/scripts/ml.json | 1 - .../Intl/Resources/data/scripts/mn.json | 1 - .../Intl/Resources/data/scripts/mo.json | 5 +- .../Intl/Resources/data/scripts/mr.json | 1 - .../Intl/Resources/data/scripts/ms.json | 5 +- .../Intl/Resources/data/scripts/mt.json | 1 - .../Intl/Resources/data/scripts/my.json | 1 - .../Intl/Resources/data/scripts/nb.json | 3 +- .../Intl/Resources/data/scripts/ne.json | 5 +- .../Intl/Resources/data/scripts/nl.json | 10 +- .../Intl/Resources/data/scripts/nn.json | 1 - .../Intl/Resources/data/scripts/no.json | 3 +- .../Intl/Resources/data/scripts/om.json | 1 - .../Intl/Resources/data/scripts/or.json | 1 - .../Intl/Resources/data/scripts/os.json | 1 - .../Intl/Resources/data/scripts/pa.json | 2 +- .../Intl/Resources/data/scripts/pa_Arab.json | 2 +- .../Intl/Resources/data/scripts/pl.json | 3 +- .../Intl/Resources/data/scripts/ps.json | 1 - .../Intl/Resources/data/scripts/pt.json | 3 +- .../Intl/Resources/data/scripts/pt_PT.json | 2 +- .../Intl/Resources/data/scripts/rm.json | 1 - .../Intl/Resources/data/scripts/ro.json | 5 +- .../Intl/Resources/data/scripts/ru.json | 3 +- .../Intl/Resources/data/scripts/sd.json | 1 - .../Intl/Resources/data/scripts/sd_Deva.json | 12 + .../Intl/Resources/data/scripts/se.json | 1 - .../Intl/Resources/data/scripts/se_FI.json | 1 - .../Intl/Resources/data/scripts/sh.json | 1 - .../Intl/Resources/data/scripts/si.json | 1 - .../Intl/Resources/data/scripts/sk.json | 5 +- .../Intl/Resources/data/scripts/sl.json | 2 - .../Intl/Resources/data/scripts/so.json | 132 +++- .../Intl/Resources/data/scripts/sq.json | 1 - .../Intl/Resources/data/scripts/sr.json | 1 - .../Intl/Resources/data/scripts/sr_Latn.json | 1 - .../Intl/Resources/data/scripts/su.json | 11 + .../Intl/Resources/data/scripts/sv.json | 3 +- .../Intl/Resources/data/scripts/sw.json | 3 +- .../Intl/Resources/data/scripts/sw_KE.json | 1 - .../Intl/Resources/data/scripts/ta.json | 1 - .../Intl/Resources/data/scripts/te.json | 1 - .../Intl/Resources/data/scripts/tg.json | 1 - .../Intl/Resources/data/scripts/th.json | 1 - .../Intl/Resources/data/scripts/ti.json | 1 - .../Intl/Resources/data/scripts/tk.json | 1 - .../Intl/Resources/data/scripts/tl.json | 3 +- .../Intl/Resources/data/scripts/to.json | 1 - .../Intl/Resources/data/scripts/tr.json | 6 +- .../Intl/Resources/data/scripts/tt.json | 1 - .../Intl/Resources/data/scripts/ug.json | 1 - .../Intl/Resources/data/scripts/uk.json | 3 +- .../Intl/Resources/data/scripts/ur.json | 2 +- .../Intl/Resources/data/scripts/uz.json | 1 - .../Intl/Resources/data/scripts/uz_Arab.json | 1 - .../Intl/Resources/data/scripts/uz_Cyrl.json | 1 - .../Intl/Resources/data/scripts/vi.json | 3 +- .../Intl/Resources/data/scripts/wo.json | 1 - .../Intl/Resources/data/scripts/yi.json | 1 - .../Intl/Resources/data/scripts/yo.json | 34 +- .../Intl/Resources/data/scripts/yo_BJ.json | 12 +- .../Intl/Resources/data/scripts/zh.json | 15 +- .../Intl/Resources/data/scripts/zh_HK.json | 1 - .../Intl/Resources/data/scripts/zh_Hant.json | 3 +- .../Resources/data/scripts/zh_Hant_HK.json | 1 - .../Intl/Resources/data/scripts/zu.json | 1 - .../Component/Intl/Resources/data/version.txt | 2 +- .../Provider/AbstractDataProviderTest.php | 27 + .../AbstractScriptDataProviderTest.php | 5 + 1033 files changed, 6199 insertions(+), 1286 deletions(-) create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_BF.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_CM.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GH.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GM.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_GW.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_LR.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_MR.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NE.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_NG.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SL.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ff_Adlm_SN.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ms_ID.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/su.json create mode 100644 src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/languages/su.json create mode 100644 src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/locales/su.json create mode 100644 src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/regions/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/regions/su.json create mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/su.json diff --git a/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php index 0fc70c198b9e..b4543428ebb6 100644 --- a/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php @@ -82,7 +82,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te if (isset($localeBundle['Currencies']) && null !== $localeBundle['Currencies']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => $this->generateSymbolNamePairs($localeBundle), ]; @@ -102,7 +101,6 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp $rootBundle = $reader->read($tempDir, 'root'); return [ - 'Version' => $rootBundle['Version'], 'Names' => $this->generateSymbolNamePairs($rootBundle), ]; } @@ -112,7 +110,6 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir) { - $rootBundle = $reader->read($tempDir, 'root'); $supplementalDataBundle = $reader->read($tempDir, 'supplementalData'); $numericCodesBundle = $reader->read($tempDir, 'currencyNumericCodes'); @@ -121,7 +118,6 @@ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $temp 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 2306b1cedac9..247b762c7032 100644 --- a/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php @@ -126,7 +126,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te // isset() on \ResourceBundle returns true even if the value is null if (isset($localeBundle['Languages']) && null !== $localeBundle['Languages']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => iterator_to_array($localeBundle['Languages']), ]; @@ -150,7 +149,6 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir) { - $rootBundle = $reader->read($tempDir, 'root'); $metadataBundle = $reader->read($tempDir, 'metadata'); $this->languageCodes = array_unique($this->languageCodes); @@ -158,7 +156,6 @@ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $temp sort($this->languageCodes); return [ - 'Version' => $rootBundle['Version'], 'Languages' => $this->languageCodes, '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 69c6df26d0bf..bab85b11b15d 100644 --- a/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php @@ -96,7 +96,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te // 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), ]; @@ -120,14 +119,11 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir) { - $rootBundle = $reader->read($tempDir, 'root'); - $this->regionCodes = array_unique($this->regionCodes); sort($this->regionCodes); return [ - 'Version' => $rootBundle['Version'], 'Regions' => $this->regionCodes, ]; } diff --git a/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php index a6d60a8fcdba..6cec9a20c63a 100644 --- a/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php @@ -65,7 +65,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te // isset() on \ResourceBundle returns true even if the value is null if (isset($localeBundle['Scripts']) && null !== $localeBundle['Scripts']) { $data = [ - 'Version' => $localeBundle['Version'], 'Names' => iterator_to_array($localeBundle['Scripts']), ]; @@ -89,14 +88,11 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir) { - $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/Intl.php b/src/Symfony/Component/Intl/Intl.php index 0a795c0de0f5..6ee12f951539 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -235,7 +235,7 @@ public static function getIcuDataVersion() */ public static function getIcuStubVersion() { - 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 904aed580673..ad9dd0adbd73 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 af0bcb9939c7..80d7d9102263 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 c9c5c193f616..3fda6628e499 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 f5bd0840ca66..d91b43ce3b29 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 92e0f602b064..eb92f7d3b878 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 531af78eb0a1..757f788c4023 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 53bd5cd88c8a..bd15fe0e0716 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 7ee6f3bc8e94..436e8343d60b 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 357702ad7f03..39a9e52e231a 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 c9633b638826..5d30235cad25 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 2358cf3375dd..f12b27d5ba46 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 62f15dd112fc..96c069b89521 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 3fc0b41e42f5..bfb1630ea99c 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 99e463b7884a..d72c07face60 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 116cada512c1..fbd1b96fb2bf 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 77909c04b3a5..b0b51d934077 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 05729c5ee48a..9bfa213c2ce4 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 7127fce6f407..72a96d8ecf4b 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 0f0f31c85cf8..4e294cb08853 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 b9096e92b327..6f52c7362fae 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 0fc540af4239..6ce73130ff76 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 984d91f9dc29..055f332050f4 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 0ad689f90601..0c83fe2ee433 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 7e5fc8b6806d..c1c84817d284 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 1decc8a6ea3d..e822b63fb696 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 ecfcc1822207..d5c288cb4f02 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 959510d9a090..be53478efb7e 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 8b3e3b414173..73053d4d360a 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 075ff1dedd73..c383ce4fd155 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 66ad7fb629dd..6d262054a49c 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 ea72d8efe887..e3989b79e1eb 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 b0dc8ca47687..4aab0a6ef414 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 0f3132c66e3f..9b6fc75e3573 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 00e6c88f8fa1..603abc20a40a 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 bf3f82d730fa..226c65012ef1 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 13fc181bdd68..9718ea5ce741 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 f32b82d016f1..9325f4073c8e 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 d37c96ed934a..010620e9d815 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 7eb0ad8c5fff..58e94d6ed2cb 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 5ea9359c88ac..a89627119c86 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 42a4fef3647d..e008b0e2248d 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 42a4fef3647d..e008b0e2248d 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 51e1bac8f270..6607a7db9f89 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 4d3f097fd925..0922529b1681 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 87b2d2043ed4..a68ea1f3eebc 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 1fd5003916f8..09d4eb291c20 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 8266e6035559..22f002783530 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 fa20ef2fc8c6..8554e213cd07 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 67ab88d49014..8496eb1c8acd 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 1e4243327c67..150ed1cb23df 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 3ff72c4b97f6..48e0c69a00b3 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 756b6cf69e54..b424714eadbb 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 3ff72c4b97f6..48e0c69a00b3 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 54561ac3b33c..c611e55d3f3e 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 42a4fef3647d..e008b0e2248d 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 a2ff768d8c7a..6680f62a45da 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 9a3cd36e9626..13fe2a9139cf 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 f0dc3a4c60f9..96eefd5d545b 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 42a4fef3647d..e008b0e2248d 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 50442161dfea..6b1d072c837a 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 f1d1c00f4ba9..62f9766028a4 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 90c7c864f971..5cf8b52bb62e 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 067174a8b6e8..a9c0269de953 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 da20dd2969e9..192573e6f56a 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 50442161dfea..6b1d072c837a 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 3694aaa6fb97..7a10cb88875a 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 50442161dfea..6b1d072c837a 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 67554526aebc..7e42e5332bbf 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 25b94ef9f6a6..447899d10a7c 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 3ff72c4b97f6..48e0c69a00b3 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 42a4fef3647d..e008b0e2248d 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 1f174cc26044..22aa62231a70 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 42a4fef3647d..e008b0e2248d 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 82b50eae1104..87cfdd4f84a8 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 4bcf6b6d8480..28a11694c202 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 df23a8c9f676..ce7516f94df9 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 0f35dcacb798..e48649daf6d9 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 42a4fef3647d..e008b0e2248d 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 592b54aa889c..b844451ee936 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 2ec72cc182d7..3c399fee1870 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 f8199ad2756a..a5ef36ef6019 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 1793b1390a29..4b4d67325d70 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 0214cbea393e..ae26836feeb7 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 3ff72c4b97f6..48e0c69a00b3 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 fdcc6dfd08e1..07914c993188 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 10911e7ac918..6eb3c968c797 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 3ff72c4b97f6..48e0c69a00b3 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 756b6cf69e54..b424714eadbb 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 756b6cf69e54..b424714eadbb 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 599d79c3f5b5..2c6d519180b5 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 aa79fcb8a395..cb92d5512d7b 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 3dbb247ebb97..28702ae51149 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 756b6cf69e54..b424714eadbb 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 9dfb4655eb5f..08b4d5cdacf4 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 546fe5461731..9ef69fdf94eb 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 069772bd47cf..0fba89ab4dff 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 9ef9ff516d3a..7952cc1362bb 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 8726a0b68325..c49afaf76eff 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 a8dcb8b20509..9d9bc5aa683b 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 57dabc442f66..c9cf972754cd 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 4472e6932993..b7986782e405 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 1900377d50c3..d73eb7d9fef9 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 02fd9082be04..1f83da589bad 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 756b6cf69e54..b424714eadbb 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 e4a0fcc6125b..f47bc78dcfdd 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 bf735349a187..fc74cd4d53e4 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 3ff72c4b97f6..48e0c69a00b3 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 fd3380adf229..00244c270c70 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 4309d6f4cddb..7b6958f0d209 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 42a4fef3647d..e008b0e2248d 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 10911e7ac918..6eb3c968c797 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 5ffd99a1eb9d..0d613d87e2a4 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 4bcf6b6d8480..28a11694c202 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 b1da438859f4..7f892929aae4 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 41420b28ba7e..6382a4860b97 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 eb2f82deff16..dde2e21631d7 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 a0063d972950..4ee42e615c04 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 3098ef4b28cf..639913ac2669 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 8bb96d37cd5a..14ec2a17b58a 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 bab949eb0a36..36bc7d5ebd48 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 cab702cef413..3b143b69c39d 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 61d1db1e07e7..e21ac1771625 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 936dafb5ac5c..a33a15b50235 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 bf435c4469ab..efdf125a4848 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 8fcb9ae862ad..b54086b86761 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 79cd1708ff1e..289ada5a3397 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 2fbe79196b38..493376a7f0da 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 87363aac39cd..c8ec58ba1846 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 3a55a8fd148d..7f33ba19724f 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 58e03068e785..2270e23d0d81 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 bfa33ca3cbb4..84e3221e2a39 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 f649a00138d4..a7d42624f728 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 90f45fa1c300..5601c5782683 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 5b03fdca3b86..a5006bed2b01 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 79cd1708ff1e..289ada5a3397 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 aa397972f519..b00d9ec34287 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 79cd1708ff1e..289ada5a3397 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 3e0d66545be1..8e15b2b9b641 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 6c405ee7e506..dfcf24e12648 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 43c743c58b60..22c28eceae08 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 9ea44017a6c9..7de6cfe66cd7 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 b37feb6db7fe..49b817814454 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 9461bf1ddb56..0ad9badd6260 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 0f646d734a43..a83109f2c0a2 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 61193b59e4ea..f2f2e0b35fa9 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 000000000000..2600eff18ce1 --- /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 000000000000..95d222694256 --- /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 000000000000..95d222694256 --- /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 000000000000..8a3021150687 --- /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 000000000000..5d841b5a9a1f --- /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 000000000000..95d222694256 --- /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 000000000000..23ba5cd8ad21 --- /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 000000000000..113bb405bd5f --- /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 000000000000..95d222694256 --- /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 000000000000..51b605bc4c9f --- /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 000000000000..d1caed04d07f --- /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 000000000000..95d222694256 --- /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 2c526d97a25a..62c8493a0441 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 6af1ef38110f..d5abb3afb8a5 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 c72dad59c30f..abe43825d57e 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 2c526d97a25a..62c8493a0441 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 e88262cf52a2..5bd0d4c6467e 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 80fdd4b81e5f..c2cbe4bd1eda 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 66ac4b25577d..b59ff76943ef 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 81dd91e125da..7997e60a1465 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 80fdd4b81e5f..c2cbe4bd1eda 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 14ecc6ffddd2..a1e1ca957514 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 83aa90be078e..a303baa699cf 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 4bab06e04193..72749f25f452 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 5aefbf44d966..0bb85517b590 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 2f5576e4e3ef..7724b029021c 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 1da34ed90fe5..17448477efa9 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 57b570b1e58d..cab84b948504 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 7d9224664919..da0d48b920a4 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 5f30c2afa292..36d5fd0af90e 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 86947c3a62a4..32b9b3f4a533 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 265c3d4a73e6..8b9b571fb411 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 ac26dc1ad679..a0bbdb6bbfc5 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 d13c5ad69167..884b26fd8dd2 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 1401ef06ce3e..5628d6e7de25 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 425c01aa4310..e6369458e28b 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 08fe126048aa..a1a4c1c41c86 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 8cdf4b56363b..df231e16570d 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 a4bc53ebb746..3a85ff66b43f 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 8c5f3b650615..c5bbf5b31e55 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 ab639ef5e977..764e95ec9bd5 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 156efcb6c584..0279dcd7a2cf 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 f284629363b4..a470b99f6f27 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 7b74e5f93fb8..72a0733f4628 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 e323444968d9..4717906f0e35 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 adbc9b6879e7..dab05e6817d3 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 1086aad00de2..0990a9b61f67 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 a46198678d01..b38d2987f809 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 6af1ef38110f..5fc43a93e0f4 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 5fe1074c73d4..351b31243682 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 83ecc2073189..5772f6f9e724 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 be467a8cab93..db1d584e2a87 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 236e78a394ad..c0077305e978 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 ae13d6ef6f63..e0e11abccbcd 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 5d023065ecc2..9d411fb089d9 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 65ac44e1c425..8210711aa6f4 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 39deb096afbe..f61f248e5f65 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 56be0256ea29..b7bff088114e 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 3dbdaeabc22f..6356f0f6e232 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 39deb096afbe..f61f248e5f65 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 bf64dd7c4476..4eabd0c6c512 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 387e2f701904..34c623733f01 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 5fe1074c73d4..351b31243682 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 a40f4afb2717..4a7bab5caa24 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 33bd761a4dc4..84ce21a52e5a 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 bb40d624d67b..604440f9a86f 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 b9e3241e81bc..a445c9f0c393 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 fac3602dade6..c650c02d6dd8 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 b8cebbdf41b8..23707c381e42 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 db6fbb7a21de..56d14e32faac 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 b06f7eaaf02d..ff091f15cc2e 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 62a541fa97d9..7c93e9aaacd5 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 2f98ab994d88..e30b4cfcb7a6 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 4639d47bb673..9da69ce6a519 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 8bd49a614794..dc519018201f 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 820d1e1d839a..ec674dca195d 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 672140091757..0245093c4627 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 44924f8389f5..1f801fb75a3f 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 e7c31c8a24b2..53c93ea33d89 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 17c80297269c..da6153f94143 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 ab12165a400f..1c936935f0f2 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 e77059d7ec58..4244946bd927 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 8823c9ff4a7e..9a120f6e2b3b 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 27e0e79e5287..592d6cba7662 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 8436b6ac607b..a6711139b6ee 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 e17d95645055..c9382d6d431d 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 8db824dcdc00..b2212d2c4784 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 208a8a9ef7b0..39cd7461cdd7 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 8ba906ddea38..f9950542d811 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 ed2e341fb002..2f87642b10f9 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 234dc013b92d..186ed914529e 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 c36ea2670bfd..ed24b6ed6091 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 45ffa45673fc..57260d8ba8d0 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 000000000000..f06bbf165a3b --- /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 58b9eb6cde57..e8802b3f263a 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 020849fca4d6..728b69e8c6cf 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 316990e4a703..ba9418a2f910 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 6d9337e1d902..6088983952d5 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 52ac51393fb1..209b57959aa6 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 01533e35aec5..a14b6d40a29b 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 226a015e8cfa..17b20465c2eb 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 524888726ce2..00ec74c927e6 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 492b7e6ccce9..1edb9f620d55 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 f8a487fa8b55..5c1b517059c0 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 a322428b8114..4fa5852761df 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 f8a487fa8b55..5c1b517059c0 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 02f1bd013a20..8d836b05b742 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 6d9337e1d902..6088983952d5 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 0e2bb55f7d3c..6722a12619f9 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 47ff74908481..e979d2f95b5d 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 003d3991a350..6b7f2aea755c 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 0f56664886cc..54b681980d86 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 2dd3c878622b..0fa6b87be9ac 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 2dee6c91d6ea..64a04a8a5aff 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 70f869e58b76..9c655b10a7c2 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 e0afcdc10cf8..6f68fd0998ca 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 fbbcd985a5d9..6636ede54904 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 7b3a29b69c19..0f221af439e7 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 b4ea906f5fe3..f99d5edc5311 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 a3c5b630c184..753099dbabbf 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 3e763f9f8ae5..3567c48baafa 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 08e084d422a7..09d3ad4fa8a9 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 2c51f9d06613..a3ae56deddf0 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 76fab2b5d9b0..4a2f4f10e538 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 afa4c5babe2f..9e5737e9e7c5 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 41e51e8481a1..51f24a12abb9 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 8fab0c7950ff..adae65badb1f 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 c826aedffb69..0fb1f40c6b1d 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 dd7c9cf6abb4..bb48b739a322 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 2d7b0bf27f55..10e16abff870 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 67cae3ae33dd..a39400566f7d 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 ed2e341fb002..2f87642b10f9 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 1ed8199cefc8..c98d0d3650a4 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 de391f8ba343..8c7bb321574b 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 205c6e55ece0..582718e0d3b9 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 638fe706c230..90da192d32fd 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 61e3a0154763..50bafcbf2762 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 a6430abde10f..380963c50d8d 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 46552ffc51b8..2e12d1396232 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 619f3e944c36..f82eecbdaac3 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 125c666c97ef..549a8e27f910 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 000000000000..392ce0f69e4e --- /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 c6ef60512dbe..e5afc727d838 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 439a21851330..d9dfe82426a2 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 17b28374b9c0..b778e312f876 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 8c29c2097d1b..1e2d6eee876b 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 2d632a15ebd2..f06331901fc3 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 c289c5199aeb..9ab3a7c1e95f 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 87d2107b57d7..f1c488ac83f6 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 f8dc423c6fea..22e8a48f1972 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 7cae03a58a12..bc198623dc97 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 eeb05f0cbd44..da35e99adb34 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 c7889e62f328..c42b72e2cd26 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 c95b6b8164c1..9261c8008f56 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 566dde702c6a..6da51714cd70 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 ac16b9f34979..ccb866ab7cc9 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 64f0db662eed..04ea949b3623 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 8c29c2097d1b..1e2d6eee876b 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 000000000000..4d01698b2b19 --- /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 c66c3c46caba..3c41945790c2 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 32d514a9038f..0fc354a5d5fa 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 6514995eefd4..e51f42ac45c2 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 4109c1128ff2..5d61b6a65e45 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 6c876d812d0a..fcc41e708d90 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 95bbfd1ecd3c..ff65fa205d63 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 1f7897793252..a361470854a6 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 4a085f45ca6e..f420cb0cc699 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 4ece8a932692..0a511bb1ac6f 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 a253e255f231..0607992b4f38 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 5a50eece5e97..a6ee711e2479 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 b60f800ef201..cb25f46ba38d 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 72fab57813a0..30de2ab6dfdc 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 d6ad6e4fafd6..a036982c4007 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 264d9245eb01..03a07cb2ffa1 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 7bc16d0be823..20dc1d4b25a9 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 05eecb5ee619..4d058881fb2e 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 43808ebd5973..4e11aec4e003 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 2d12be5891da..83b8ae53b9ea 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 d749ab07865a..2b30228ce137 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 43dae80e59e4..fdb48d3c0422 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 c576763c10ea..32949cc90f3b 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 c663ebbad9e2..e192fc4bcb3e 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 7c7cb3ed1555..91dce09edc07 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 d131865fecf0..c83f1d83d3c9 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 fe1a2fd4efe5..4d2b3e7e690c 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 0cfd13ebd237..7474c09cb6bf 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 a8abaeec529c..b91a25aacdcd 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 3860ab0871b6..fe8a3c6ceeac 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 e8bf1047105c..ae12d3a8dff9 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 d9a5a36a6d24..abc1b38c9bbf 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 c4a338af2300..27383793cdb6 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 d87fb74494b5..2672d0c6c16b 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 fc52eabf1960..d395606443eb 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 dda3b5355ec2..1302b87774ab 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 f06fa4c3cfbc..49ed90267c16 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 d4fec5421b46..083b0a3d4611 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 3453835bb040..604c7bbf4bb4 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 fc52eabf1960..d395606443eb 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 10d0e3e82a57..0f5431a4037f 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 10d0e3e82a57..0f5431a4037f 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 d4fec5421b46..083b0a3d4611 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 04a9fd62d688..f6a7b86b5837 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 3a5b9f574486..3bec62e2a205 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 05f02cddfa26..f99dc384140c 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", @@ -95,6 +94,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 001cc0d72de6..ac0f708e15ca 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 b0c7e9ca60f8..4de47d90b9b1 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": "አብሐዚኛ", @@ -144,6 +143,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 6fa36c712d5b..d7c47c896cee 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": "الأبخازية", @@ -139,6 +138,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 8a78a841c4a7..eef7d3f3832f 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 fa77f019274f..a3c910e180bc 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 8b50d4171242..33b08257a77b 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": { "ar_001": "العربية الرسمية الحديثة", "arn": "المابودونجونية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index e6bc969017e4..89ea4f69fa71 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": "আবখাজিয়ান", @@ -97,6 +96,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 9ac822c98ea8..26f013c7dfca 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", @@ -131,6 +130,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 ec94f62fa3f1..276b49314db5 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 33d042df87b2..00fb04879714 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": "абхазская", @@ -105,6 +104,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 523a5dd5e553..271e3d6ee7b3 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": "абхазки", @@ -62,6 +61,7 @@ "cad": "каддо", "car": "карибски", "cch": "атсам", + "ccp": "чакма", "ce": "чеченски", "ceb": "себуански", "cgg": "чига", @@ -122,6 +122,7 @@ "eu": "баски", "ewo": "евондо", "fa": "персийски", + "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фула", @@ -495,6 +496,7 @@ "zgh": "стандартен марокански тамазигт", "zh": "китайски", "zh_Hans": "китайски (опростен)", + "zh_Hant": "китайски (традиционен)", "zu": "зулуски", "zun": "зуни", "zxx": "без лингвистично съдържание", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bm.json b/src/Symfony/Component/Intl/Resources/data/languages/bm.json index 592966c7deac..4378e50e5c87 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 5e8df80cc2ad..a9f446388faf 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": "আবখাজিয়ান", @@ -130,6 +129,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 ef9815d7c182..596281465d62 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 28326f6a00a2..bd073248581f 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 3bf54774dbb8..3196016eb964 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 ea12e0dbe8e3..a21201b9c15e 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", @@ -100,6 +99,7 @@ "dar": "dargva", "dav": "taita", "de": "njemački", + "de_CH": "visoki njemački (Švicarska)", "del": "delaver", "den": "slave", "dgr": "dogrib", @@ -129,6 +129,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 011ecdd9f629..6cc086d12402 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 2bc8dbafd3a9..67f52b080d09 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", @@ -149,6 +148,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 71835c3c4ceb..04c48577220f 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 96a985035ea7..7fec728c1f3b 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", @@ -156,6 +155,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 1506de71a83c..89a14a4f4c91 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", @@ -137,6 +136,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 96af1647b582..e32a314bf57f 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", @@ -139,6 +138,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 4f4031525daf..eb5334741ea5 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", @@ -154,6 +153,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 86cf6f18e4dd..d9896a5d129b 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": { "ar_001": "modernes Hocharabisch", "car": "karibische 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 d1e4d80abb01..387b018d5263 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 fc8b8af7bd13..b83caedefd87 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 929a3394f42f..000c0abc2cfd 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 f85f826d8106..f20b102ca091 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 5ae0e552d75c..bc28617b76db 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": "Αμπχαζικά", @@ -139,6 +138,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 75a7e28b4662..0421ddd34b64 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 2bc6f6cef66d..b56e2c186210 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", "nds_NL": "West Low German" 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 c6f5f5c2dbf0..be78b1ec634c 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": { "ar_001": "Modern Standard Arabic", "bn": "Bengali", 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 ba6710d57573..f793ae785b69 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": { "ar_001": "Modern Standard Arabic", "bn": "Bengali", 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 99c8c72dd94a..c7131fbecfb1 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": { "ar_001": "Modern Standard Arabic", "de_AT": "Austrian German", 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 bc91e5f740a0..43b400c31805 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", "ro_MD": "Moldavian" 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 2fa2de7c5581..f641540efbe2 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 55b60762c8ef..11a9196880bf 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", @@ -136,7 +135,6 @@ "tr": "turka", "ts": "conga", "tt": "tatara", - "tw": "tw", "ug": "ujgura", "uk": "ukraina", "und": "nekonata lingvo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es.json b/src/Symfony/Component/Intl/Resources/data/languages/es.json index 3a4a5fb2beb3..1258853cc722 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", @@ -139,6 +138,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 74132ca1e6c5..9d40b3693e5c 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", @@ -18,6 +17,7 @@ "es_ES": "español de España", "es_MX": "español de México", "eu": "vasco", + "fa_AF": "darí", "fr_CA": "francés canadiense", "fr_CH": "francés suizo", "goh": "alemán de la alta edad antigua", 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 1b84e06263b6..359112dcba78 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", "ar_001": "árabe estándar moderno", @@ -32,7 +31,6 @@ "nr": "ndebele meridional", "nso": "sotho septentrional", "pa": "punyabí", - "pcm": "pcm", "shu": "árabe chadiano", "ss": "siswati", "sw": "suajili", @@ -41,7 +39,7 @@ "tet": "tetún", "tn": "setswana", "tyv": "tuviniano", - "wuu": "wuu", + "wuu": "chino wu", "xal": "kalmyk", "zgh": "tamazight marroquí estándar", "zh_Hans": "chino simplificado", 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 26024579b08b..e1cfa710f8b2 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 1a3bdf462299..69179c58fe72 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 26024579b08b..e1cfa710f8b2 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 1a3bdf462299..69179c58fe72 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 a709ab30ec60..f9ad170fc693 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", @@ -17,7 +16,6 @@ "gmh": "alemán de la alta edad media", "grc": "griego antiguo", "gu": "gurayatí", - "hak": "hak", "hil": "hiligainón", "hsn": "xiang (China)", "ht": "criollo haitiano", @@ -27,11 +25,9 @@ "lo": "lao", "lus": "lushai", "mga": "irlandés medieval", - "nan": "nan", "nl_BE": "flamenco", "nr": "ndebele meridional", "nso": "sotho septentrional", - "pcm": "pcm", "rm": "romanche", "rn": "kiroundi", "shu": "árabe chadiano", @@ -44,7 +40,6 @@ "tn": "setchwana", "tyv": "tuviniano", "wo": "wolof", - "wuu": "wuu", "xal": "kalmyk", "zh_Hans": "chino simplificado", "zh_Hant": "chino tradicional" 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 26024579b08b..e1cfa710f8b2 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 0403b11a063e..f24c6ba465aa 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", @@ -159,6 +158,7 @@ "ewo": "evondo", "ext": "estremenju", "fa": "pärsia", + "fa_AF": "dari", "fan": "fangi", "fat": "fanti", "ff": "fula", @@ -180,7 +180,6 @@ "fur": "friuuli", "fy": "läänefriisi", "ga": "iiri", - "gaa": "gaa", "gag": "gagauusi", "gan": "kani", "gay": "gajo", @@ -449,7 +448,6 @@ "ro_MD": "moldova", "rof": "rombo", "rom": "mustlaskeel", - "root": "root", "rtm": "rotuma", "ru": "vene", "rue": "russiini", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index 8fdc409ff73a..72172ef3d3a0 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", @@ -98,6 +97,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 5e7ffd168e7d..eb473b6b447a 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 44e863471ff5..a5738b24759a 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": "افریکانس", "ar_001": "عربی فصیح", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff.json b/src/Symfony/Component/Intl/Resources/data/languages/ff.json index 92cd3d3d8519..22cb8bbf64cc 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 000000000000..500ce556459e --- /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 709214fa8877..e5075526b4c5 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", @@ -161,6 +160,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 20908d757376..20b3b41d5e0e 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", @@ -291,7 +290,6 @@ "ro": "rumenskt", "ro_MD": "moldaviskt", "rof": "rombo", - "root": "root", "ru": "russiskt", "rup": "aromenskt", "rw": "kinyarwanda", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 06f2a81caa0d..7834c39daaa5 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", @@ -161,6 +160,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 78213c0058b4..5112d8d6512c 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 4bb1dd36dda4..a2c534bdc13d 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 fcefe8d3f82f..29a6d6fdce01 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 7795dfb4ba17..a28e0f26c2b5 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 285bdc235725..5eb1538c8a16 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ga.json @@ -1,66 +1,46 @@ { - "Version": "36.1", "Names": { "aa": "Afáiris", "ab": "Abcáisis", - "ace": "ace", - "ada": "ada", "ady": "Adaigéis", "ae": "Aivéistis", "af": "Afracáinis", - "agq": "agq", "ain": "Aidhniúis", "ak": "Acáinis", "akk": "Acáidis", - "ale": "ale", - "alt": "alt", "am": "Amáiris", "an": "Aragóinis", "ang": "Sean-Bhéarla", - "anp": "anp", "ar": "Araibis", "ar_001": "Araibis Chaighdeánach", "arc": "Aramais", "arn": "Mapúitsis", - "arp": "arp", "as": "Asaimis", - "asa": "asa", "ast": "Astúiris", "av": "Aváiris", - "awa": "awa", "ay": "Aidhmiris", "az": "Asarbaiseáinis", "ba": "Baiscíris", "ban": "Bailís", "bar": "Baváiris", - "bas": "bas", "be": "Bealarúisis", "bem": "Beimbis", - "bez": "bez", "bg": "Bulgáiris", - "bho": "bho", "bi": "Bioslaimis", - "bin": "bin", - "bla": "bla", - "bm": "bm", + "bm": "Bambairis", "bn": "Beangáilis", "bo": "Tibéidis", "br": "Briotáinis", - "brx": "brx", "bs": "Boisnis", "bua": "Buiriáitis", "bug": "Buiginis", - "byn": "byn", "ca": "Catalóinis", + "ccp": "Chakma", "ce": "Seisnis", "ceb": "Seabúáinis", - "cgg": "cgg", "ch": "Seamóiris", - "chk": "chk", "chm": "Mairis", - "cho": "cho", "chr": "Seiricis", - "chy": "chy", "ckb": "Coirdis Lárnach", "co": "Corsaicis", "cop": "Coptais", @@ -72,26 +52,18 @@ "cv": "Suvaisis", "cy": "Breatnais", "da": "Danmhairgis", - "dak": "dak", - "dar": "dar", "dav": "Taita", "de": "Gearmáinis", "de_AT": "Gearmáinis Ostarach", "de_CH": "Ard-Ghearmáinis Eilvéiseach", - "dgr": "dgr", "dje": "Zarmais", "dsb": "Sorbais Íochtarach", - "dua": "dua", + "dua": "Duailis", "dum": "Meán-Ollainnis", "dv": "Divéihis", - "dyo": "dyo", "dz": "Seoinicis", - "dzg": "dzg", - "ebu": "ebu", - "ee": "ee", - "efi": "efi", + "ee": "Éabhais", "egy": "Sean-Éigiptis", - "eka": "eka", "el": "Gréigis", "en": "Béarla", "en_AU": "Béarla Astrálach", @@ -106,8 +78,9 @@ "es_MX": "Spáinnis Mheicsiceach", "et": "Eastóinis", "eu": "Bascais", - "ewo": "ewo", + "ewo": "Éabhandóis", "fa": "Peirsis", + "fa_AF": "Dairis", "ff": "Fuláinis", "fi": "Fionlainnis", "fil": "Filipínis", @@ -123,7 +96,6 @@ "fur": "Friúilis", "fy": "Freaslainnis Iartharach", "ga": "Gaeilge", - "gaa": "gaa", "gan": "Sínis Gan", "gd": "Gaeilge na hAlban", "gez": "Aetóipis", @@ -132,14 +104,11 @@ "gmh": "Meán-Ard-Ghearmáinis", "gn": "Guaráinis", "goh": "Sean-Ard-Ghearmáinis", - "gor": "gor", "grc": "Sean-Ghréigis", "gsw": "Gearmáinis Eilvéiseach", "gu": "Gúisearáitis", "guc": "Uaúis", - "guz": "guz", "gv": "Manainnis", - "gwi": "gwi", "ha": "Hásais", "hak": "Haicéis", "haw": "Haváis", @@ -159,14 +128,11 @@ "hy": "Airméinis", "hz": "Heiréiris", "ia": "Interlingua", - "iba": "iba", "ibb": "Ibibis", "id": "Indinéisis", "ie": "Interlingue", "ig": "Íogbóis", - "ii": "ii", "ik": "Iniúipiaicis", - "ilo": "ilo", "inh": "Iongúis", "io": "Ido", "is": "Íoslainnis", @@ -181,16 +147,10 @@ "ka": "Seoirsis", "kaa": "Cara-Chalpáis", "kab": "Caibílis", - "kac": "kac", - "kaj": "kaj", "kam": "Cambais", - "kbd": "kbd", - "kcg": "kcg", "kde": "Makonde", "kea": "Kabuverdianu", - "kfo": "kfo", "kg": "Congóis", - "kha": "kha", "khq": "Koyra Chiini", "ki": "Ciocúis", "kj": "Cuainiáimis", @@ -199,21 +159,14 @@ "kl": "Kalaallisut", "kln": "Kalenjin", "km": "Ciméiris", - "kmb": "kmb", "kn": "Cannadais", "ko": "Cóiréis", "kok": "Concáinis", - "kpe": "kpe", "kr": "Canúiris", - "krc": "krc", "krl": "Cairéilis", "kru": "Curúicis", "ks": "Caismíris", - "ksb": "ksb", - "ksf": "ksf", - "ksh": "ksh", "ku": "Coirdis", - "kum": "kum", "kv": "Coimis", "kw": "Coirnis", "ky": "Cirgisis", @@ -222,7 +175,6 @@ "lag": "Langi", "lah": "Puinseáibis Iartharach", "lb": "Lucsambuirgis", - "lez": "lez", "lg": "Lugandais", "li": "Liombuirgis", "lij": "Liogúiris", @@ -231,22 +183,14 @@ "lmo": "Lombairdis", "ln": "Liongáilis", "lo": "Laoisis", - "loz": "loz", "lrc": "Luri Thuaidh", "lt": "Liotuáinis", "lu": "Lúba-Cataingis", - "lua": "lua", - "lun": "lun", "luo": "Lúóis", - "lus": "lus", "luy": "Luyia", "lv": "Laitvis", - "mad": "mad", - "mag": "mag", - "mai": "mai", - "mak": "mak", + "mai": "Maitilis", "mas": "Másais", - "mdf": "mdf", "men": "Meindis", "mer": "Meru", "mfe": "Morisyen", @@ -256,25 +200,20 @@ "mgo": "Metaʼ", "mh": "Mairsillis", "mi": "Maorais", - "mic": "mic", - "min": "min", "mk": "Macadóinis", "ml": "Mailéalaimis", "mn": "Mongóilis", "mni": "Manapúiris", "moh": "Móháicis", - "mos": "mos", "mr": "Maraitis", "mrj": "Mairis Iartharach", "ms": "Malaeis", "mt": "Máltais", "mua": "Mundang", "mul": "Ilteangacha", - "mus": "mus", "mwl": "Mioraindéis", "mwr": "Marmhairis", "my": "Burmais", - "myv": "myv", "mzn": "Mazanderani", "na": "Nárúis", "nan": "Sínis Min Nan", @@ -285,9 +224,7 @@ "nds": "Gearmáinis Íochtarach", "nds_NL": "Sacsainis Íochtarach", "ne": "Neipeailis", - "new": "new", "ng": "Ndongais", - "nia": "nia", "niu": "Níobhais", "nl": "Ollainnis", "nl_BE": "Pléimeannais", @@ -295,9 +232,7 @@ "nn": "Nua-Ioruais", "nnh": "Ngiemboon", "no": "Ioruais", - "nog": "nog", "non": "Sean-Lochlainnis", - "nqo": "nqo", "nr": "Ndeibéilis an Deiscirt", "nso": "Sútúis an Tuaiscirt", "nus": "Nuer", @@ -310,11 +245,6 @@ "or": "Oirísis", "os": "Oiséitis", "pa": "Puinseáibis", - "pag": "pag", - "pam": "pam", - "pap": "pap", - "pau": "pau", - "pcm": "pcm", "peo": "Sean-Pheirsis", "pi": "Páilis", "pl": "Polainnis", @@ -325,39 +255,29 @@ "pt_PT": "Portaingéilis Ibéarach", "qu": "Ceatsuais", "quc": "Cuitséis", - "rap": "rap", - "rar": "rar", "rm": "Rómainis", "rn": "Rúindis", "ro": "Rómáinis", "ro_MD": "Moldáivis", - "rof": "rof", "rom": "Romainis", - "root": "root", + "root": "Root", "ru": "Rúisis", "rup": "Arómáinis", "rw": "Ciniaruaindis", - "rwk": "rwk", "sa": "Sanscrait", - "sad": "sad", "sah": "Sachais", "sam": "Aramais Shamárach", - "saq": "saq", "sat": "Santáilis", - "sba": "sba", - "sbp": "sbp", "sc": "Sairdínis", "scn": "Sicilis", "sco": "Albainis", "sd": "Sindis", "se": "Sáimis Thuaidh", - "seh": "seh", "ses": "Koyraboro Senni", "sg": "Sangóis", "sga": "Sean-Ghaeilge", "sh": "Seirbea-Chróitis", "shi": "Tachelhit", - "shn": "shn", "si": "Siolóinis", "sk": "Slóvaicis", "sl": "Slóivéinis", @@ -367,17 +287,13 @@ "smn": "Sáimis Inari", "sms": "Sáimis Skolt", "sn": "Seoinis", - "snk": "snk", "so": "Somáilis", "sog": "Sogdánais", "sq": "Albáinis", "sr": "Seirbis", - "srn": "srn", "ss": "Suaisis", - "ssy": "ssy", "st": "Seasóitis", "su": "Sundais", - "suk": "suk", "sux": "Suiméiris", "sv": "Sualainnis", "sw": "Svahaílis", @@ -387,13 +303,10 @@ "szl": "Siléisis", "ta": "Tamailis", "te": "Teileagúis", - "tem": "tem", - "teo": "teo", - "tet": "tet", + "teo": "Teso", "tg": "Táidsícis", "th": "Téalainnis", "ti": "Tigrinis", - "tig": "tig", "tk": "Tuircméinis", "tl": "Tagálaigis", "tlh": "Klingon", @@ -401,20 +314,15 @@ "to": "Tongais", "tpi": "Tok Pisin", "tr": "Tuircis", - "trv": "trv", "ts": "Songais", "tt": "Tatairis", - "tum": "tum", - "tvl": "tvl", "tw": "Tíbhis", - "twq": "twq", + "twq": "Tasawaq", "ty": "Taihítis", - "tyv": "tyv", "tzm": "Tamazight Atlais Láir", "udm": "Udmairtis", "ug": "Uigiúiris", "uk": "Úcráinis", - "umb": "umb", "und": "Teanga Anaithnid", "ur": "Urdúis", "uz": "Úisbéiceastáinis", @@ -424,18 +332,13 @@ "vi": "Vítneaimis", "vls": "Pléimeannais Iartharach", "vo": "Volapük", - "vun": "vun", + "vun": "Vunjo", "wa": "Vallúnais", - "wae": "wae", - "wal": "wal", - "war": "war", + "wae": "Walser", "wo": "Volaifis", - "wuu": "wuu", "xal": "Cailmícis", "xh": "Cóisis", - "xog": "xog", - "yav": "yav", - "ybb": "ybb", + "yav": "Yangben", "yi": "Giúdais", "yo": "Iarúibis", "yue": "Cantainis", @@ -447,7 +350,6 @@ "zh_Hant": "Sínis Thraidisiúnta", "zu": "Súlúis", "zun": "Zúinis", - "zxx": "Gan ábhar teangeolaíoch", - "zza": "zza" + "zxx": "Gan ábhar teangeolaíoch" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index a268ba8c1840..75c80d69b06a 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", @@ -158,6 +157,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 1dea6c72f1a0..60b7311aefb1 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", @@ -49,6 +48,7 @@ "bug": "buginés", "byn": "blin", "ca": "catalán", + "ccp": "chakma", "ce": "checheno", "ceb": "cebuano", "cgg": "kiga", @@ -100,6 +100,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 71ed09fb7dbe..fac92965fe31 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": "અબખાજિયન", @@ -136,6 +135,7 @@ "eu": "બાસ્ક", "ewo": "ઇવોન્ડો", "fa": "ફારસી", + "fa_AF": "ડારી", "fan": "ફેંગ", "fat": "ફન્ટી", "ff": "ફુલાહ", @@ -181,7 +181,6 @@ "gwi": "ગ્વિચ’ઇન", "ha": "હૌસા", "hai": "હૈડા", - "hak": "hak", "haw": "હવાઇયન", "he": "હીબ્રુ", "hi": "હિન્દી", @@ -192,7 +191,6 @@ "ho": "હિરી મોટૂ", "hr": "ક્રોએશિયન", "hsb": "અપર સોર્બિયન", - "hsn": "hsn", "ht": "હૈતિઅન ક્રેઓલે", "hu": "હંગેરિયન", "hup": "હૂપા", @@ -328,7 +326,6 @@ "myv": "એર્ઝયા", "mzn": "મઝાન્દેરાની", "na": "નાઉરૂ", - "nan": "nan", "nap": "નેપોલિટાન", "naq": "નમા", "nb": "નોર્વેજિયન બોકમાલ", @@ -509,7 +506,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 065c2ac76d7e..42e01c86c2ad 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 46dc0b0c480b..67253863ac56 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", @@ -176,6 +175,7 @@ "rof": "Rombo", "ru": "Rashanci", "rw": "Kiniyaruwanda", + "rwk": "yaren Rwa", "sa": "Sanskrit", "sah": "Sakha", "saq": "Samburu", @@ -232,6 +232,7 @@ "zh": "Harshen Sinanci", "zh_Hans": "Sauƙaƙaƙƙen Sinanci", "zh_Hant": "Sinanci na gargajiya", - "zu": "Harshen Zulu" + "zu": "Harshen Zulu", + "zxx": "Babu abun-ciki na yare" } } 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 b395599fc665..d47efc5ea69e 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": { "ar_001": "Larabci Asali Na Zamani", "de_AT": "Jamusanci Ostiriya", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 5cbab8ce305a..f23f014eed13 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": "אבחזית", @@ -132,6 +131,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 b2465bab6abc..02f25eaba012 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": "अब्ख़ाज़ियन", @@ -131,6 +130,7 @@ "eu": "बास्क", "ewo": "इवोन्डो", "fa": "फ़ारसी", + "fa_AF": "दारी", "fan": "फैन्ग", "fat": "फन्टी", "ff": "फुलाह", @@ -315,7 +315,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 55ce6f6091b2..031640f6f4ad 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", @@ -140,6 +139,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 d63ee8e37602..38381564fe41 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", @@ -139,6 +138,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 256daae7a049..6d726ffe9ddb 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": "աբխազերեն", @@ -56,6 +55,7 @@ "bug": "բուգիերեն", "byn": "բիլին", "ca": "կատալաներեն", + "ccp": "չակմա", "ce": "չեչեներեն", "ceb": "սեբուերեն", "cgg": "չիգա", @@ -109,6 +109,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 0431e5a42170..bb300bcb1735 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 9bfdef558384..4850e3be9377 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", @@ -143,6 +142,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 ad1e8f014f77..7fffedd128d3 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 c0cceb469714..7cf05ad8fcd7 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 9bfdef558384..4850e3be9377 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", @@ -143,6 +142,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 2fa5c347ea57..e725d5bbe184 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", @@ -133,6 +132,7 @@ "eu": "baskneska", "ewo": "evondó", "fa": "persneska", + "fa_AF": "darí", "fan": "fang", "fat": "fantí", "ff": "fúla", @@ -176,7 +176,6 @@ "gwi": "gvísín", "ha": "hása", "hai": "haída", - "hak": "hak", "haw": "havaíska", "he": "hebreska", "hi": "hindí", @@ -186,7 +185,6 @@ "ho": "hírímótú", "hr": "króatíska", "hsb": "hásorbneska", - "hsn": "hsn", "ht": "haítíska", "hu": "ungverska", "hup": "húpa", @@ -320,7 +318,6 @@ "myv": "ersja", "mzn": "masanderaní", "na": "nárúska", - "nan": "nan", "nap": "napólíska", "naq": "nama", "nb": "norskt bókmál", @@ -499,7 +496,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 721c07c6e76c..04d8baa60b9d 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", @@ -161,6 +160,7 @@ "ewo": "ewondo", "ext": "estremegno", "fa": "persiano", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -451,7 +451,6 @@ "ro_MD": "moldavo", "rof": "rombo", "rom": "romani", - "root": "root", "rtm": "rotumano", "ru": "russo", "rue": "ruteno", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index 5cbab8ce305a..f23f014eed13 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": "אבחזית", @@ -132,6 +131,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 1e873a0c0ebc..d28fe5a7a778 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": "アブハズ語", @@ -158,6 +157,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 e199a081b966..c5c2d69edfa2 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", @@ -11,9 +10,8 @@ "asa": "Asu", "ast": "Asturia", "az": "Azerbaijan", - "ban": "ban", "bas": "Basaa", - "be": "be", + "be": "Belarus", "bem": "Bemba", "bez": "Bena", "bg": "Bulgaria", @@ -22,7 +20,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 cd7aa28306e0..2fb5bfb74b10 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": "აფხაზური", @@ -125,6 +124,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 38b0594aeebc..344bfd78a7b6 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 a90169b2004a..9ff4db67b678 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": "абхаз тілі", @@ -98,6 +97,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 38820f073a24..61be8fcee9c9 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 6d1fc53421bd..72a0c90ed3e6 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": "អាប់ខាហ៊្សាន", @@ -92,6 +91,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 406e831a23bb..8a9f0030b631 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": "ಅಬ್ಖಾಜಿಯನ್", @@ -130,6 +129,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 7af9c3940b9c..d6980699da7e 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": "압카즈어", @@ -138,6 +137,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 d80ce0b0d12e..6b5ef8b5a2c4 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 c0a061b2ac45..165a7f32531b 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î", @@ -31,7 +30,6 @@ "br": "bretonî", "bs": "bosnî", "bug": "bugî", - "byn": "byn", "ca": "katalanî", "ce": "çeçenî", "ceb": "sebwanoyî", @@ -69,7 +67,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 c9b2d4b621bc..ad69762a0a21 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 fd8ee5d305e7..cbe1baa09a71 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": "абхазча", @@ -92,6 +91,7 @@ "eu": "баскча", "ewo": "эвондочо", "fa": "фарсча", + "fa_AF": "дари", "ff": "фулача", "fi": "финче", "fil": "филипинче", @@ -239,7 +239,6 @@ "myv": "эрзянча", "mzn": "мазандераниче", "na": "науруча", - "nan": "nan", "nap": "неополитанча", "naq": "намача", "nb": "норвежче (букмал)", @@ -381,7 +380,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 1f620194b6ce..6265058843b7 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", @@ -378,7 +377,6 @@ "nb": "Norwegesch Bokmål", "nd": "Nord-Ndebele-Sprooch", "nds": "Nidderdäitsch", - "nds_NL": "nds_NL", "ne": "Nepalesesch", "new": "Newari", "ng": "Ndonga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lg.json b/src/Symfony/Component/Intl/Resources/data/languages/lg.json index 68cdb04532b1..735ef2b88330 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 03c31285a091..b9117710c706 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 063294e006a8..33a4c59975c9 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": "ແອບຄາຊຽນ", @@ -70,6 +69,7 @@ "car": "ຄາຣິບ", "cay": "ຄາຢູກາ", "cch": "ອາດແຊມ", + "ccp": "Chakma", "ce": "ຊີເຄນ", "ceb": "ຊີບູໂນ", "cgg": "ຊີກາ", @@ -137,6 +137,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 4c6e814278a0..04531bbe4d7a 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 5f18a3d2ae58..e275a03a9ca0 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 52e911f0c505..463101d2be0f 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", @@ -132,6 +131,7 @@ "eu": "basku", "ewo": "evondu", "fa": "persiešu", + "fa_AF": "darī", "fan": "fangu", "fat": "fantu", "ff": "fulu", @@ -202,7 +202,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 87a38d943021..e2a0cfc8456a 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 014ffcf98528..c3b6317fad77 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 5937766bae1b..17cf598c997e 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", "de_AT": "Tiamana Atiria", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index 850e2e2bb1ca..42c4e56c5b4d 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": "апхаски", @@ -160,6 +159,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 b8ca4e3466b1..984365aae37f 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 652e744d3c36..85a3b16375b1 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 4502bf2e2895..937f79ff6678 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ă", @@ -132,6 +131,7 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -386,7 +386,6 @@ "ro": "română", "rof": "rombo", "rom": "romani", - "root": "root", "ru": "rusă", "rup": "aromână", "rw": "kinyarwanda", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index 90ce6cbd5871..1e82f58d9251 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 56a39d9fa95e..8d363f17a816 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", @@ -121,6 +120,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 93c8c2cce7dd..5bd256a96bda 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 4cf7251f1111..c439836c44d3 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": "အဘ်ခါဇီရာ", @@ -103,6 +102,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 25dba7ebc65e..17d7c7c08dbd 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", @@ -152,6 +151,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 cad53c477c27..3112a68c4d11 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 5b21e8721176..62fd5817fef7 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": "अब्खाजियाली", @@ -158,6 +157,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 8a9f6fdce1f9..651ebb3c5ed2 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 7b37f2e2aeed..de1078931a58 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 25dba7ebc65e..17d7c7c08dbd 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", @@ -152,6 +151,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 0abf3ae02e7b..aaf1358eb3dd 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 94abb2766e80..ca76b70d079e 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": "ଆବ୍ଖାଜିଆନ୍", @@ -129,6 +128,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 824f61cdef28..3ec2bd71ad9f 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 46a860fd9cbb..cd33bbb3c023 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": "ਅਬਖਾਜ਼ੀਅਨ", @@ -99,6 +98,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 d912cbcf12dc..39a0bfe039f5 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 90febbc5c8d2..104c7a9a53b7 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", @@ -161,6 +160,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 12eadd091e6a..759918d65a47 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": "ابخازي", @@ -97,6 +96,7 @@ "eu": "باسکي", "ewo": "اوونڊو", "fa": "فارسي", + "fa_AF": "دری (افغانستان)", "ff": "فولاح", "fi": "فینلنډي", "fil": "فلیپیني", @@ -109,7 +109,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 72832d029b09..73746acd4ece 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": { "ar_001": "نوے معياري عربي", "dsb": "لوړے سربي", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index a3a08b1064d7..8573cbd25ece 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", @@ -132,6 +131,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 404cfaac5f7d..885441162562 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", @@ -35,6 +34,7 @@ "es_ES": "espanhol europeu", "es_MX": "espanhol mexicano", "et": "estónio", + "fa_AF": "dari", "fon": "fon", "fr_CA": "francês canadiano", "fr_CH": "francês suíço", @@ -81,7 +81,6 @@ "pt_PT": "português europeu", "raj": "rajastanês", "ro_MD": "moldávio", - "root": "root", "se": "sami do norte", "sga": "irlandês antigo", "shu": "árabe do Chade", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index 060889a8a6b5..c5660a5e260f 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 8943ef701d12..e0c0123d20c4 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 eaa3ca83bf22..cc3abdf6930f 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 4502bf2e2895..937f79ff6678 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ă", @@ -132,6 +131,7 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", + "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -386,7 +386,6 @@ "ro": "română", "rof": "rombo", "rom": "romani", - "root": "root", "ru": "rusă", "rup": "aromână", "rw": "kinyarwanda", 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 8194c1db0672..567bf598323f 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": { "sw_CD": "swahili (R. D. Congo)", "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 71f76081624c..36f9341e80d3 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": "абхазский", @@ -139,6 +138,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 b178f7a5be08..1744e58d1965 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 8939c02be2f6..dadc914c97c2 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": "ابقازیان", @@ -97,6 +96,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 000000000000..29eb71c2bd11 --- /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 36cb23ad5cb2..fed257e476ed 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 b1f906291704..3735f419ffb5 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", "ar_001": "standárda arábagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sg.json b/src/Symfony/Component/Intl/Resources/data/languages/sg.json index 235befde5cb1..dce851a81176 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 0097827d5e62..50dc03dc92ea 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", @@ -62,6 +61,7 @@ "cad": "kado", "car": "karipski", "cch": "atsam", + "ccp": "čakma", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -124,6 +124,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 9793696da084..aeba7e0cf54d 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 c9f7b10bbf69..7c8fa4bef518 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": "ඇබ්කාසියානු", @@ -99,6 +98,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 f12ceac3dcae..f4033a46c65c 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", @@ -139,6 +138,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 29a86ca84879..f899d820fcd5 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", @@ -128,6 +127,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 cb1fa66a5359..36c77b4bc0f3 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 b6b875d7d7d8..75cec1c11cda 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", @@ -58,6 +57,7 @@ "eu": "Basquu", "ewo": "Eewondho", "fa": "Faarisi", + "fa_AF": "Faarsi", "ff": "Fuulah", "fi": "Finishka", "fil": "Tagalog", @@ -65,6 +65,7 @@ "fr": "Faransiis", "fr_CA": "Faransiiska Kanada", "fr_CH": "Faransiis (Iswiiserlaand)", + "frc": "Faransiiska Cajun", "fur": "Firiyuuliyaan", "fy": "Firiisiyan Galbeed", "ga": "Ayrish", @@ -123,12 +124,14 @@ "lkt": "Laakoota", "ln": "Lingala", "lo": "Lao", + "lou": "Louisiana Creole", "lrc": "Koonfurta Luuri", "lt": "Lituwaanays", "lu": "Luuba-kataanga", "luo": "Luwada", "luy": "Luhya", "lv": "Laatfiyaan", + "mai": "Dadka Maithili", "mas": "Masaay", "mer": "Meeru", "mfe": "Moorisayn", @@ -174,6 +177,7 @@ "rn": "Rundhi", "ro": "Romanka", "rof": "Rombo", + "root": "Xidid", "ru": "Ruush", "rw": "Ruwaandha", "rwk": "Raawa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index 93c74f3d92bb..91a7f99a9186 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", @@ -98,6 +97,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 0fe5a64f990d..d5d217d6d183 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": "абхаски", @@ -62,6 +61,7 @@ "cad": "кадо", "car": "карипски", "cch": "атсам", + "ccp": "чакма", "ce": "чеченски", "ceb": "себуански", "cgg": "чига", @@ -124,6 +124,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 0d0708b41f7b..d0e00dd1de22 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 0d0708b41f7b..d0e00dd1de22 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 e28ef6e20933..1d195d41f772 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 e5d5608e4150..7425bea23993 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 0097827d5e62..50dc03dc92ea 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", @@ -62,6 +61,7 @@ "cad": "kado", "car": "karipski", "cch": "atsam", + "ccp": "čakma", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -124,6 +124,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 9793696da084..aeba7e0cf54d 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 a7f7df1c3e9e..4fdec4b3505c 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 9c4d37e97833..251b0798f079 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 a7f7df1c3e9e..4fdec4b3505c 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 e5d5608e4150..7425bea23993 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 000000000000..18d2fdd06cb4 --- /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 beb536e4f2da..6334a72a030c 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", @@ -161,6 +160,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 aacf5cd3dbc2..442a1a359d0a 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 42695b975439..8720f1005d4f 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", "ar_001": "Kiarabu cha Dunia Kilichosanifishwa", @@ -18,7 +17,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 f4a1b2fee925..c55c90d41c57 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": { "ar_001": "Kiarabu sanifu", "arq": "Kiarabu cha Aljeria", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index 7c48e05f44a0..83f1377a4636 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": "அப்காஜியான்", @@ -133,6 +132,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 195f731fd92c..c2ea4962a2a2 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": "అబ్ఖాజియన్", @@ -133,6 +132,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 2e8e85d5ac80..824a6bbbc1d7 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 335d019a7755..3639bd387607 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": "อับฮาเซีย", @@ -161,6 +160,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 0a1bfe2b2e9c..01a0c2bb08c5 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 93518d7a1f07..50fa4ae57a88 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", @@ -92,6 +91,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 f22e2e9b7517..10d0520705b9 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", @@ -99,6 +98,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 45b1b4a58fd0..549a2c5a87ac 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 5bbc01e42974..eb965b2bba27 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", @@ -162,6 +161,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 2025ef7429f6..9a56388754e3 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 fd5fff37593e..4f238c84b247 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 2d0e28f35c78..5053d4aa6969 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": "абхазька", @@ -150,6 +149,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 a808358954dd..2e53c7af92b4 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": "ابقازیان", @@ -100,6 +99,7 @@ "eu": "باسکی", "ewo": "ایوانڈو", "fa": "فارسی", + "fa_AF": "دری", "ff": "فولہ", "fi": "فینیش", "fil": "فلیپینو", @@ -128,7 +128,6 @@ "gv": "مینکس", "gwi": "گوئچ ان", "ha": "ہؤسا", - "hak": "hak", "haw": "ہوائی", "he": "عبرانی", "hi": "ہندی", @@ -136,7 +135,6 @@ "hmn": "ہمانگ", "hr": "کراتی", "hsb": "اپر سربیائی", - "hsn": "hsn", "ht": "ہیتی", "hu": "ہنگیرین", "hup": "ہیوپا", @@ -252,7 +250,6 @@ "myv": "ارزیا", "mzn": "مزندرانی", "na": "ناؤرو", - "nan": "nan", "nap": "نیاپولیٹن", "naq": "ناما", "nb": "نارویجین بوکمل", @@ -395,7 +392,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 1b52cabb6c79..6b6b859775a5 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": { "ar_001": "جدید معیاری عربی", "awa": "اودھی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index 6202f2eaaa4c..f88bf833962b 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", @@ -98,6 +97,7 @@ "eu": "bask", "ewo": "evondo", "fa": "fors", + "fa_AF": "dari", "ff": "fula", "fi": "fincha", "fil": "filipincha", @@ -125,7 +125,6 @@ "gv": "men", "gwi": "gvichin", "ha": "xausa", - "hak": "hak", "haw": "gavaycha", "he": "ivrit", "hi": "hind", @@ -133,7 +132,6 @@ "hmn": "xmong", "hr": "xorvat", "hsb": "yuqori sorb", - "hsn": "hsn", "ht": "gaityan", "hu": "venger", "hup": "xupa", @@ -247,7 +245,6 @@ "myv": "erzya", "mzn": "mozandaron", "na": "nauru", - "nan": "nan", "nap": "neapolitan", "naq": "nama", "nb": "norveg-bokmal", @@ -386,7 +383,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 bd5a73334f66..497a2f7596f5 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 26ec5e6639e1..1dd4e6c98caf 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 f4ebf8ce984d..000d9b4d6f35 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", @@ -154,6 +153,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 f20a2eddf2f3..3c5700e5ba62 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 59d4a98c8180..25433ce29fd6 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 d2c08af1f41c..f5d49556e33d 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": "אַפֿריקאַנס", @@ -122,7 +121,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 6b68586579ea..8eacdad220e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,24 +1,48 @@ { - "Version": "36.1", "Names": { "af": "Èdè Afrikani", + "agq": "Ágẹ̀ẹ̀mù", "ak": "Èdè Akani", "am": "Èdè Amariki", "ar": "Èdè Árábìkì", "as": "Ti Assam", + "asa": "Asu", + "ast": "Asturian", "az": "Èdè Azerbaijani", + "bas": "Basaa", "be": "Èdè Belarusi", + "bem": "Béḿbà", + "bez": "Bẹ́nà", "bg": "Èdè Bugaria", + "bm": "Báḿbàrà", "bn": "Èdè Bengali", + "bo": "Tibetán", "br": "Èdè Bretoni", + "brx": "Bódò", "bs": "Èdè Bosnia", "ca": "Èdè Catala", + "ccp": "Chakma", + "ce": "Chechen", + "ceb": "Cebuano", + "cgg": "Chiga", + "chr": "Shẹ́rókiì", + "ckb": "Ààrin Gbùngbùn Kurdish", + "co": "Corsican", "cs": "Èdè seeki", + "cu": "Síláfííkì Ilé Ìjọ́sìn", "cy": "Èdè Welshi", "da": "Èdè Ilẹ̀ Denmark", + "dav": "Táítà", "de": "Èdè Jámánì", "de_AT": "Èdè Jámánì (Ọ́síríà )", "de_CH": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède swítsàlandì)", + "dje": "Ṣárúmà", + "dsb": "Ṣobíànù Ìpìlẹ̀", + "dua": "Duala", + "dyo": "Jola-Fonyi", + "dz": "Dzongkha", + "ebu": "Ẹmbù", + "ee": "Ewè", "el": "Èdè Giriki", "en": "Èdè Gẹ̀ẹ́sì", "en_AU": "Èdè Gẹ̀ẹ́sì (órílẹ̀-èdè Ọsirélíà)", @@ -31,6 +55,7 @@ "es_MX": "Èdè Sípáníìṣì (orílẹ̀-èdè Mẹ́síkò)", "et": "Èdè Estonia", "eu": "Èdè Baski", + "ewo": "Èwóǹdò", "fa": "Èdè Pasia", "ff": "Èdè Fúlàní", "fi": "Èdè Finisi", @@ -39,56 +64,137 @@ "fr": "Èdè Faransé", "fr_CA": "Èdè Faransé (orílẹ̀-èdè Kánádà)", "fr_CH": "Èdè Faranṣé (Súwísàlaǹdì)", + "fur": "Firiúlíànì", "fy": "Èdè Frisia", "ga": "Èdè Ireland", "gd": "Èdè Gaelik ti Ilu Scotland", "gl": "Èdè Galicia", "gn": "Èdè Guarani", + "gsw": "Súwísì ti Jámánì", "gu": "Èdè Gujarati", + "guz": "Gusii", + "gv": "Máǹkì", "ha": "Èdè Hausa", + "haw": "Hawaiian", "he": "Èdè Heberu", "hi": "Èdè Híńdì", + "hmn": "Hmong", "hr": "Èdè Kroatia", + "hsb": "Sorbian Apá Òkè", + "ht": "Haitian Creole", "hu": "Èdè Hungaria", "hy": "Èdè Ile Armenia", "ia": "Èdè pipo", "id": "Èdè Indonéṣíà", "ie": "Iru Èdè", "ig": "Èdè Yíbò", + "ii": "Ṣíkuán Yì", "is": "Èdè Icelandic", "it": "Èdè Ítálì", "ja": "Èdè Jàpáànù", + "jgo": "Ńgòmbà", + "jmc": "Máṣámè", "jv": "Èdè Javanasi", "ka": "Èdè Georgia", + "kab": "Kabilè", + "kam": "Káńbà", + "kde": "Mákondé", + "kea": "Kabufadíánù", + "khq": "Koira Ṣíínì", + "ki": "Kíkúyù", + "kk": "Kaṣakì", + "kkj": "Kàkó", + "kl": "Kalaalísùtì", + "kln": "Kálẹnjín", "km": "Èdè kameri", "kn": "Èdè Kannada", "ko": "Èdè Kòríà", + "kok": "Kónkánì", + "ks": "Kaṣímirì", + "ksb": "Ṣáńbálà", + "ksf": "Báfíà", + "ksh": "Colognian", + "ku": "Kọdiṣì", + "kw": "Kọ́nììṣì", + "ky": "Kírígíìsì", "la": "Èdè Latini", + "lag": "Láńgì", + "lb": "Lùṣẹ́mbọ́ọ̀gì", + "lg": "Ganda", + "lkt": "Lákota", + "ln": "Lìǹgálà", + "lo": "Láò", + "lrc": "Apáàríwá Lúrì", "lt": "Èdè Lithuania", + "lu": "Lúbà-Katanga", + "luy": "Luyíà", "lv": "Èdè Latvianu", + "mas": "Másáì", + "mer": "Mérù", + "mfe": "Morisiyen", + "mg": "Malagasì", + "mgh": "Makhuwa-Meeto", + "mgo": "Métà", + "mi": "Màórì", "mk": "Èdè Macedonia", + "ml": "Málàyálámù", + "mn": "Mòngólíà", "mr": "Èdè marathi", "ms": "Èdè Malaya", "mt": "Èdè Malta", + "mua": "Múndàngì", + "mul": "Ọlọ́pọ̀ èdè", "my": "Èdè Bumiisi", + "mzn": "Masanderani", + "naq": "Námà", + "nb": "Nọ́ọ́wè Bokímàl", + "nd": "Àríwá Ndebele", + "nds": "Jámánì ìpìlẹ̀", "ne": "Èdè Nepali", "nl": "Èdè Dọ́ọ̀ṣì", + "nmg": "Kíwáṣíò", + "nn": "Nọ́ọ́wè Nínọ̀sìkì", + "nnh": "Ngiembùnù", "no": "Èdè Norway", + "nus": "Núẹ̀", + "ny": "Ńyájà", + "nyn": "Ńyákọ́lè", "oc": "Èdè Occitani", + "om": "Òròmọ́", + "or": "Òdíà", + "os": "Ọṣẹ́tíìkì", "pa": "Èdè Punjabi", "pl": "Èdè Póláǹdì", + "prg": "Púrúṣíànù", + "ps": "Páshítò", "pt": "Èdè Pọtogí", "pt_BR": "Èdè Pọtogí (Orilẹ̀-èdè Bràsíl)", "pt_PT": "Èdè Pọtogí (orílẹ̀-èdè Yúróòpù)", + "qu": "Kúẹ́ńjùà", + "rm": "Rómáǹṣì", + "rn": "Rúńdì", "ro": "Èdè Romania", + "rof": "Róńbò", "ru": "Èdè Rọ́ṣíà", "rw": "Èdè Ruwanda", + "rwk": "Riwa", "sa": "Èdè awon ara Indo", + "sah": "Sàkíhà", + "saq": "Samburu", + "sbp": "Sangu", "sd": "Èdè Sindhi", + "se": "Apáàríwá Sami", + "seh": "Ṣẹnà", + "ses": "Koiraboro Seni", + "sg": "Sango", "sh": "Èdè Serbo-Croatiani", + "shi": "Taṣelíìtì", "si": "Èdè Sinhalese", "sk": "Èdè Slovaki", "sl": "Èdè Slovenia", + "sm": "Sámóánù", + "smn": "Inari Sami", + "sn": "Ṣọnà", "so": "Èdè ara Somalia", "sq": "Èdè Albania", "sr": "Èdè Serbia", @@ -98,20 +204,37 @@ "sw": "Èdè Swahili", "ta": "Èdè Tamili", "te": "Èdè Telugu", + "teo": "Tẹ́sò", + "tg": "Tàjíìkì", "th": "Èdè Tai", "ti": "Èdè Tigrinya", "tk": "Èdè Turkmen", "tlh": "Èdè Klingoni", + "to": "Tóńgàn", "tr": "Èdè Tọọkisi", + "tt": "Tatarí", + "twq": "Tasawak", + "tzm": "Ààrin Gbùngbùn Atlas Tamazight", + "ug": "Yúgọ̀", "uk": "Èdè Ukania", "und": "Èdè àìmọ̀", "ur": "Èdè Udu", "uz": "Èdè Uzbek", "vi": "Èdè Jetinamu", + "vo": "Fọ́lápùùkù", + "vun": "Funjo", + "wae": "Wọsà", + "wo": "Wọ́lọ́ọ̀fù", "xh": "Èdè Xhosa", + "xog": "Ṣógà", + "yav": "Yangbẹn", "yi": "Èdè Yiddishi", "yo": "Èdè Yorùbá", + "yue": "Cantonese", + "zgh": "Àfẹnùkò Támásáìtì ti Mòrókò", "zh": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà", - "zu": "Èdè Ṣulu" + "zh_Hant": "Èdè Ìbílẹ̀ Ṣáínà", + "zu": "Èdè Ṣulu", + "zxx": "Kò sí àkóònú elédè" } } 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 1d315095c11b..4f420be5f893 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,9 +1,15 @@ { - "Version": "36.1", "Names": { + "agq": "Ágɛ̀ɛ̀mù", + "bez": "Bɛ́nà", + "chr": "Shɛ́rókiì", + "cu": "Síláfííkì Ilé Ìjɔ́sìn", "da": "Èdè Ilɛ̀ Denmark", "de_AT": "Èdè Jámánì (Ɔ́síríà )", "de_CH": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède swítsàlandì)", + "dje": "Shárúmà", + "dsb": "Shobíànù Ìpìlɛ̀", + "ebu": "Ɛmbù", "en": "Èdè Gɛ̀ɛ́sì", "en_AU": "Èdè Gɛ̀ɛ́sì (órílɛ̀-èdè Ɔsirélíà)", "en_CA": "Èdè Gɛ̀ɛ́sì (Orílɛ̀-èdè Kánádà)", @@ -15,14 +21,48 @@ "fr_CA": "Èdè Faransé (orílɛ̀-èdè Kánádà)", "fr_CH": "Èdè Faranshé (Súwísàlaǹdì)", "id": "Èdè Indonéshíà", + "ii": "Shíkuán Yì", + "jmc": "Máshámè", + "khq": "Koira Shíínì", + "kk": "Kashakì", + "kln": "Kálɛnjín", + "ks": "Kashímirì", + "ksb": "Sháńbálà", + "ku": "Kɔdishì", + "kw": "Kɔ́nììshì", + "lb": "Lùshɛ́mbɔ́ɔ̀gì", + "mul": "Ɔlɔ́pɔ̀ èdè", + "nb": "Nɔ́ɔ́wè Bokímàl", + "nds": "Jámánì ìpìlɛ̀", "nl": "Èdè Dɔ́ɔ̀shì", + "nmg": "Kíwáshíò", + "nn": "Nɔ́ɔ́wè Nínɔ̀sìkì", + "nus": "Núɛ̀", + "nyn": "Ńyákɔ́lè", + "om": "Òròmɔ́", + "os": "Ɔshɛ́tíìkì", + "prg": "Púrúshíànù", "pt": "Èdè Pɔtogí", "pt_BR": "Èdè Pɔtogí (Orilɛ̀-èdè Bràsíl)", "pt_PT": "Èdè Pɔtogí (orílɛ̀-èdè Yúróòpù)", + "qu": "Kúɛ́ńjùà", + "rm": "Rómáǹshì", "ru": "Èdè Rɔ́shíà", + "seh": "Shɛnà", + "shi": "Tashelíìtì", + "sn": "Shɔnà", + "teo": "Tɛ́sò", "tr": "Èdè Tɔɔkisi", + "ug": "Yúgɔ̀", "und": "Èdè àìmɔ̀", + "vo": "Fɔ́lápùùkù", + "wae": "Wɔsà", + "wo": "Wɔ́lɔ́ɔ̀fù", + "xog": "Shógà", + "yav": "Yangbɛn", + "zgh": "Àfɛnùkò Támásáìtì ti Mòrókò", "zh": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà", + "zh_Hant": "Èdè Ìbílɛ̀ Sháínà", "zu": "Èdè Shulu" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index e432c21d1ace..60c469c4f19e 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": "阿布哈西亚语", @@ -140,6 +139,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 9afdc3c75863..d1ce8d0701da 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": "阿塞拜疆文", @@ -21,6 +20,7 @@ "es_419": "拉丁美洲西班牙文", "es_ES": "歐洲西班牙文", "es_MX": "墨西哥西班牙文", + "fa_AF": "達利文", "fr_CA": "加拿大法文", "fr_CH": "瑞士法文", "gil": "吉爾伯特文", 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 dbefdf9b9361..d921e744a33e 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 9afdc3c75863..d1ce8d0701da 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": "阿塞拜疆文", @@ -21,6 +20,7 @@ "es_419": "拉丁美洲西班牙文", "es_ES": "歐洲西班牙文", "es_MX": "墨西哥西班牙文", + "fa_AF": "達利文", "fr_CA": "加拿大法文", "fr_CH": "瑞士法文", "gil": "吉爾伯特文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index f5d2ccad1e10..09a69057e91b 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", @@ -99,6 +98,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/af.json b/src/Symfony/Component/Intl/Resources/data/locales/af.json index 25dedbe72793..b87a1c33b034 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -365,6 +365,8 @@ "ko_KP": "Koreaans (Noord-Korea)", "ko_KR": "Koreaans (Suid-Korea)", "ks": "Kasjmirs", + "ks_Arab": "Kasjmirs (Arabies)", + "ks_Arab_IN": "Kasjmirs (Arabies, Indië)", "ks_IN": "Kasjmirs (Indië)", "ku": "Koerdies", "ku_TR": "Koerdies (Turkye)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (Indië)", "ms": "Maleis", "ms_BN": "Maleis (Broenei)", + "ms_ID": "Maleis (Indonesië)", "ms_MY": "Maleis (Maleisië)", "ms_SG": "Maleis (Singapoer)", "mt": "Maltees", @@ -483,6 +486,10 @@ "rw": "Rwandees", "rw_RW": "Rwandees (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabies)", + "sd_Arab_PK": "Sindhi (Arabies, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, Indië)", "sd_PK": "Sindhi (Pakistan)", "se": "Noord-Sami", "se_FI": "Noord-Sami (Finland)", @@ -524,6 +531,10 @@ "sr_ME": "Serwies (Montenegro)", "sr_RS": "Serwies (Serwië)", "sr_XK": "Serwies (Kosovo)", + "su": "Sundanees", + "su_ID": "Sundanees (Indonesië)", + "su_Latn": "Sundanees (Latyn)", + "su_Latn_ID": "Sundanees (Latyn, Indonesië)", "sv": "Sweeds", "sv_AX": "Sweeds (Ålandeilande)", "sv_FI": "Sweeds (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ak.json b/src/Symfony/Component/Intl/Resources/data/locales/ak.json index 66da6c265af4..33f752307fd9 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/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index 62891175e7ed..01e3ad9d8588 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -365,6 +365,8 @@ "ko_KP": "ኮሪያኛ (ሰሜን ኮሪያ)", "ko_KR": "ኮሪያኛ (ደቡብ ኮሪያ)", "ks": "ካሽሚርኛ", + "ks_Arab": "ካሽሚርኛ (ዓረብኛ)", + "ks_Arab_IN": "ካሽሚርኛ (ዓረብኛ፣ህንድ)", "ks_IN": "ካሽሚርኛ (ህንድ)", "ku": "ኩርድሽኛ", "ku_TR": "ኩርድሽኛ (ቱርክ)", @@ -403,6 +405,7 @@ "mr_IN": "ማራቲኛ (ህንድ)", "ms": "ማላይኛ", "ms_BN": "ማላይኛ (ብሩኒ)", + "ms_ID": "ማላይኛ (ኢንዶኔዢያ)", "ms_MY": "ማላይኛ (ማሌዢያ)", "ms_SG": "ማላይኛ (ሲንጋፖር)", "mt": "ማልቲስኛ", @@ -483,6 +486,10 @@ "rw": "ኪንያርዋንድኛ", "rw_RW": "ኪንያርዋንድኛ (ሩዋንዳ)", "sd": "ሲንድሂኛ", + "sd_Arab": "ሲንድሂኛ (ዓረብኛ)", + "sd_Arab_PK": "ሲንድሂኛ (ዓረብኛ፣ፓኪስታን)", + "sd_Deva": "ሲንድሂኛ (ደቫንጋሪ)", + "sd_Deva_IN": "ሲንድሂኛ (ደቫንጋሪ፣ህንድ)", "sd_PK": "ሲንድሂኛ (ፓኪስታን)", "se": "ሰሜናዊ ሳሚ", "se_FI": "ሰሜናዊ ሳሚ (ፊንላንድ)", @@ -524,6 +531,10 @@ "sr_ME": "ሰርብያኛ (ሞንተኔግሮ)", "sr_RS": "ሰርብያኛ (ሰርብያ)", "sr_XK": "ሰርብያኛ (ኮሶቮ)", + "su": "ሱዳንኛ", + "su_ID": "ሱዳንኛ (ኢንዶኔዢያ)", + "su_Latn": "ሱዳንኛ (ላቲን)", + "su_Latn_ID": "ሱዳንኛ (ላቲን፣ኢንዶኔዢያ)", "sv": "ስዊድንኛ", "sv_AX": "ስዊድንኛ (የአላንድ ደሴቶች)", "sv_FI": "ስዊድንኛ (ፊንላንድ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index efafad5fdb3f..2df0436eefb9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -365,6 +365,8 @@ "ko_KP": "الكورية (كوريا الشمالية)", "ko_KR": "الكورية (كوريا الجنوبية)", "ks": "الكشميرية", + "ks_Arab": "الكشميرية (العربية)", + "ks_Arab_IN": "الكشميرية (العربية، الهند)", "ks_IN": "الكشميرية (الهند)", "ku": "الكردية", "ku_TR": "الكردية (تركيا)", @@ -403,6 +405,7 @@ "mr_IN": "الماراثية (الهند)", "ms": "الماليزية", "ms_BN": "الماليزية (بروناي)", + "ms_ID": "الماليزية (إندونيسيا)", "ms_MY": "الماليزية (ماليزيا)", "ms_SG": "الماليزية (سنغافورة)", "mt": "المالطية", @@ -483,6 +486,10 @@ "rw": "الكينيارواندا", "rw_RW": "الكينيارواندا (رواندا)", "sd": "السندية", + "sd_Arab": "السندية (العربية)", + "sd_Arab_PK": "السندية (العربية، باكستان)", + "sd_Deva": "السندية (الديفاناجاري)", + "sd_Deva_IN": "السندية (الديفاناجاري، الهند)", "sd_PK": "السندية (باكستان)", "se": "سامي الشمالية", "se_FI": "سامي الشمالية (فنلندا)", @@ -524,6 +531,10 @@ "sr_ME": "الصربية (الجبل الأسود)", "sr_RS": "الصربية (صربيا)", "sr_XK": "الصربية (كوسوفو)", + "su": "السوندانية", + "su_ID": "السوندانية (إندونيسيا)", + "su_Latn": "السوندانية (اللاتينية)", + "su_Latn_ID": "السوندانية (اللاتينية، إندونيسيا)", "sv": "السويدية", "sv_AX": "السويدية (جزر آلاند)", "sv_FI": "السويدية (فنلندا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/as.json b/src/Symfony/Component/Intl/Resources/data/locales/as.json index 049bca9dd786..11117a26390d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/as.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/as.json @@ -365,6 +365,8 @@ "ko_KP": "কোৰিয়ান (উত্তৰ কোৰিয়া)", "ko_KR": "কোৰিয়ান (দক্ষিণ কোৰিয়া)", "ks": "কাশ্মিৰী", + "ks_Arab": "কাশ্মিৰী (আৰবী)", + "ks_Arab_IN": "কাশ্মিৰী (আৰবী, ভাৰত)", "ks_IN": "কাশ্মিৰী (ভাৰত)", "ku": "কুৰ্ডিচ", "ku_TR": "কুৰ্ডিচ (তুৰ্কি)", @@ -403,6 +405,7 @@ "mr_IN": "মাৰাঠী (ভাৰত)", "ms": "মালয়", "ms_BN": "মালয় (ব্ৰুনেই)", + "ms_ID": "মালয় (ইণ্ডোনেচিয়া)", "ms_MY": "মালয় (মালয়েচিয়া)", "ms_SG": "মালয় (ছিংগাপুৰ)", "mt": "মাল্টিজ", @@ -481,6 +484,10 @@ "rw": "কিনয়াৰোৱাণ্ডা", "rw_RW": "কিনয়াৰোৱাণ্ডা (ৰোৱাণ্ডা)", "sd": "সিন্ধী", + "sd_Arab": "সিন্ধী (আৰবী)", + "sd_Arab_PK": "সিন্ধী (আৰবী, পাকিস্তান)", + "sd_Deva": "সিন্ধী (দেৱনাগৰী)", + "sd_Deva_IN": "সিন্ধী (দেৱনাগৰী, ভাৰত)", "sd_PK": "সিন্ধী (পাকিস্তান)", "se": "উদীচ্য ছামি", "se_FI": "উদীচ্য ছামি (ফিনলেণ্ড)", @@ -520,6 +527,10 @@ "sr_ME": "ছাৰ্বিয়ান (মণ্টেনেগ্ৰু)", "sr_RS": "ছাৰ্বিয়ান (ছাৰ্বিয়া)", "sr_XK": "ছাৰ্বিয়ান (কচ’ভ’)", + "su": "ছুণ্ডানীজ", + "su_ID": "ছুণ্ডানীজ (ইণ্ডোনেচিয়া)", + "su_Latn": "ছুণ্ডানীজ (লেটিন)", + "su_Latn_ID": "ছুণ্ডানীজ (লেটিন, ইণ্ডোনেচিয়া)", "sv": "ছুইডিচ", "sv_AX": "ছুইডিচ (আলণ্ড দ্বীপপুঞ্জ)", "sv_FI": "ছুইডিচ (ফিনলেণ্ড)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 21798adad2de..1ddc8eac8117 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -365,6 +365,8 @@ "ko_KP": "koreya (Şimali Koreya)", "ko_KR": "koreya (Cənubi Koreya)", "ks": "kəşmir", + "ks_Arab": "kəşmir (ərəb)", + "ks_Arab_IN": "kəşmir (ərəb, Hindistan)", "ks_IN": "kəşmir (Hindistan)", "ku": "kürd", "ku_TR": "kürd (Türkiyə)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (Hindistan)", "ms": "malay", "ms_BN": "malay (Bruney)", + "ms_ID": "malay (İndoneziya)", "ms_MY": "malay (Malayziya)", "ms_SG": "malay (Sinqapur)", "mt": "malta", @@ -483,6 +486,10 @@ "rw": "kinyarvanda", "rw_RW": "kinyarvanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (ərəb)", + "sd_Arab_PK": "sindhi (ərəb, Pakistan)", + "sd_Deva": "sindhi (devanaqari)", + "sd_Deva_IN": "sindhi (devanaqari, Hindistan)", "sd_PK": "sindhi (Pakistan)", "se": "şimali sami", "se_FI": "şimali sami (Finlandiya)", @@ -524,6 +531,10 @@ "sr_ME": "serb (Monteneqro)", "sr_RS": "serb (Serbiya)", "sr_XK": "serb (Kosovo)", + "su": "sundan", + "su_ID": "sundan (İndoneziya)", + "su_Latn": "sundan (latın)", + "su_Latn_ID": "sundan (latın, İndoneziya)", "sv": "isveç", "sv_AX": "isveç (Aland adaları)", "sv_FI": "isveç (Finlandiya)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json index 9a475a49320a..04a90948589f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -364,6 +364,8 @@ "ko_KP": "кореја (Шимали Кореја)", "ko_KR": "кореја (Ҹәнуби Кореја)", "ks": "кәшмир", + "ks_Arab": "кәшмир (ərəb)", + "ks_Arab_IN": "кәшмир (ərəb, Һиндистан)", "ks_IN": "кәшмир (Һиндистан)", "ku": "күрд", "ku_TR": "күрд (Түркијә)", @@ -402,6 +404,7 @@ "mr_IN": "маратһи (Һиндистан)", "ms": "малај", "ms_BN": "малај (Брунеј)", + "ms_ID": "малај (Индонезија)", "ms_MY": "малај (Малајзија)", "ms_SG": "малај (Сингапур)", "mt": "малта", @@ -481,6 +484,10 @@ "rw": "кинјарванда", "rw_RW": "кинјарванда (Руанда)", "sd": "синдһи", + "sd_Arab": "синдһи (ərəb)", + "sd_Arab_PK": "синдһи (ərəb, Пакистан)", + "sd_Deva": "синдһи (devanaqari)", + "sd_Deva_IN": "синдһи (devanaqari, Һиндистан)", "sd_PK": "синдһи (Пакистан)", "se": "шимали сами", "se_FI": "шимали сами (Финландија)", @@ -521,6 +528,10 @@ "sr_ME": "серб (Монтенегро)", "sr_RS": "серб (Сербија)", "sr_XK": "серб (Косово)", + "su": "сундан", + "su_ID": "сундан (Индонезија)", + "su_Latn": "сундан (latın)", + "su_Latn_ID": "сундан (latın, Индонезија)", "sv": "исвеч", "sv_AX": "исвеч (Аланд адалары)", "sv_FI": "исвеч (Финландија)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/be.json b/src/Symfony/Component/Intl/Resources/data/locales/be.json index 87f6436ca2ef..f49d18c9bbe7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -365,6 +365,8 @@ "ko_KP": "карэйская (Паўночная Карэя)", "ko_KR": "карэйская (Паўднёвая Карэя)", "ks": "кашмірская", + "ks_Arab": "кашмірская (арабскае)", + "ks_Arab_IN": "кашмірская (арабскае, Індыя)", "ks_IN": "кашмірская (Індыя)", "ku": "курдская", "ku_TR": "курдская (Турцыя)", @@ -403,6 +405,7 @@ "mr_IN": "маратхі (Індыя)", "ms": "малайская", "ms_BN": "малайская (Бруней)", + "ms_ID": "малайская (Інданезія)", "ms_MY": "малайская (Малайзія)", "ms_SG": "малайская (Сінгапур)", "mt": "мальтыйская", @@ -483,6 +486,10 @@ "rw": "руанда", "rw_RW": "руанда (Руанда)", "sd": "сіндхі", + "sd_Arab": "сіндхі (арабскае)", + "sd_Arab_PK": "сіндхі (арабскае, Пакістан)", + "sd_Deva": "сіндхі (дэванагары)", + "sd_Deva_IN": "сіндхі (дэванагары, Індыя)", "sd_PK": "сіндхі (Пакістан)", "se": "паўночнасаамская", "se_FI": "паўночнасаамская (Фінляндыя)", @@ -524,6 +531,10 @@ "sr_ME": "сербская (Чарнагорыя)", "sr_RS": "сербская (Сербія)", "sr_XK": "сербская (Косава)", + "su": "сунда", + "su_ID": "сунда (Інданезія)", + "su_Latn": "сунда (лацініца)", + "su_Latn_ID": "сунда (лацініца, Інданезія)", "sv": "шведская", "sv_AX": "шведская (Аландскія астравы)", "sv_FI": "шведская (Фінляндыя)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index 2b60d553713a..9fafb73a8a38 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -365,6 +365,8 @@ "ko_KP": "корейски (Северна Корея)", "ko_KR": "корейски (Южна Корея)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арабска)", + "ks_Arab_IN": "кашмирски (арабска, Индия)", "ks_IN": "кашмирски (Индия)", "ku": "кюрдски", "ku_TR": "кюрдски (Турция)", @@ -403,6 +405,7 @@ "mr_IN": "марати (Индия)", "ms": "малайски", "ms_BN": "малайски (Бруней Даруссалам)", + "ms_ID": "малайски (Индонезия)", "ms_MY": "малайски (Малайзия)", "ms_SG": "малайски (Сингапур)", "mt": "малтийски", @@ -483,6 +486,10 @@ "rw": "киняруанда", "rw_RW": "киняруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (арабска)", + "sd_Arab_PK": "синдхи (арабска, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Индия)", "sd_PK": "синдхи (Пакистан)", "se": "северносаамски", "se_FI": "северносаамски (Финландия)", @@ -524,6 +531,10 @@ "sr_ME": "сръбски (Черна гора)", "sr_RS": "сръбски (Сърбия)", "sr_XK": "сръбски (Косово)", + "su": "сундански", + "su_ID": "сундански (Индонезия)", + "su_Latn": "сундански (латиница)", + "su_Latn_ID": "сундански (латиница, Индонезия)", "sv": "шведски", "sv_AX": "шведски (Оландски острови)", "sv_FI": "шведски (Финландия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bm.json b/src/Symfony/Component/Intl/Resources/data/locales/bm.json index 95841671d190..f40d96f82ded 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/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index df13bde8e0a2..a003c04d02aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -365,6 +365,8 @@ "ko_KP": "কোরিয়ান (উত্তর কোরিয়া)", "ko_KR": "কোরিয়ান (দক্ষিণ কোরিয়া)", "ks": "কাশ্মীরি", + "ks_Arab": "কাশ্মীরি (আরবি)", + "ks_Arab_IN": "কাশ্মীরি (আরবি, ভারত)", "ks_IN": "কাশ্মীরি (ভারত)", "ku": "কুর্দিশ", "ku_TR": "কুর্দিশ (তুরস্ক)", @@ -403,6 +405,7 @@ "mr_IN": "মারাঠি (ভারত)", "ms": "মালয়", "ms_BN": "মালয় (ব্রুনেই)", + "ms_ID": "মালয় (ইন্দোনেশিয়া)", "ms_MY": "মালয় (মালয়েশিয়া)", "ms_SG": "মালয় (সিঙ্গাপুর)", "mt": "মল্টিয়", @@ -483,6 +486,10 @@ "rw": "কিনয়ারোয়ান্ডা", "rw_RW": "কিনয়ারোয়ান্ডা (রুয়ান্ডা)", "sd": "সিন্ধি", + "sd_Arab": "সিন্ধি (আরবি)", + "sd_Arab_PK": "সিন্ধি (আরবি, পাকিস্তান)", + "sd_Deva": "সিন্ধি (দেবনাগরি)", + "sd_Deva_IN": "সিন্ধি (দেবনাগরি, ভারত)", "sd_PK": "সিন্ধি (পাকিস্তান)", "se": "উত্তরাঞ্চলীয় সামি", "se_FI": "উত্তরাঞ্চলীয় সামি (ফিনল্যান্ড)", @@ -524,6 +531,10 @@ "sr_ME": "সার্বীয় (মন্টিনিগ্রো)", "sr_RS": "সার্বীয় (সার্বিয়া)", "sr_XK": "সার্বীয় (কসোভো)", + "su": "সুদানী", + "su_ID": "সুদানী (ইন্দোনেশিয়া)", + "su_Latn": "সুদানী (ল্যাটিন)", + "su_Latn_ID": "সুদানী (ল্যাটিন, ইন্দোনেশিয়া)", "sv": "সুইডিশ", "sv_AX": "সুইডিশ (আলান্ড দ্বীপপুঞ্জ)", "sv_FI": "সুইডিশ (ফিনল্যান্ড)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index 4368007e7184..002257885e64 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -234,6 +234,19 @@ "fa_AF": "perseg (Afghanistan)", "fa_IR": "perseg (Iran)", "ff": "fula", + "ff_Adlm": "fula (adlam)", + "ff_Adlm_BF": "fula (adlam, Burkina Faso)", + "ff_Adlm_CM": "fula (adlam, Kameroun)", + "ff_Adlm_GH": "fula (adlam, Ghana)", + "ff_Adlm_GM": "fula (adlam, Gambia)", + "ff_Adlm_GN": "fula (adlam, Ginea)", + "ff_Adlm_GW": "fula (adlam, Ginea-Bissau)", + "ff_Adlm_LR": "fula (adlam, Liberia)", + "ff_Adlm_MR": "fula (adlam, Maouritania)", + "ff_Adlm_NE": "fula (adlam, Niger)", + "ff_Adlm_NG": "fula (adlam, Nigeria)", + "ff_Adlm_SL": "fula (adlam, Sierra Leone)", + "ff_Adlm_SN": "fula (adlam, Senegal)", "ff_CM": "fula (Kameroun)", "ff_GN": "fula (Ginea)", "ff_Latn": "fula (latin)", @@ -365,6 +378,8 @@ "ko_KP": "koreaneg (Korea an Norzh)", "ko_KR": "koreaneg (Korea ar Su)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabek)", + "ks_Arab_IN": "kashmiri (arabek, India)", "ks_IN": "kashmiri (India)", "ku": "kurdeg", "ku_TR": "kurdeg (Turkia)", @@ -403,6 +418,7 @@ "mr_IN": "marathi (India)", "ms": "malayseg", "ms_BN": "malayseg (Brunei)", + "ms_ID": "malayseg (Indonezia)", "ms_MY": "malayseg (Malaysia)", "ms_SG": "malayseg (Singapour)", "mt": "malteg", @@ -483,6 +499,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabek)", + "sd_Arab_PK": "sindhi (arabek, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "sámi an Norzh", "se_FI": "sámi an Norzh (Finland)", @@ -524,6 +544,10 @@ "sr_ME": "serbeg (Montenegro)", "sr_RS": "serbeg (Serbia)", "sr_XK": "serbeg (Kosovo)", + "su": "sundaneg", + "su_ID": "sundaneg (Indonezia)", + "su_Latn": "sundaneg (latin)", + "su_Latn_ID": "sundaneg (latin, Indonezia)", "sv": "svedeg", "sv_AX": "svedeg (Inizi Åland)", "sv_FI": "svedeg (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs.json b/src/Symfony/Component/Intl/Resources/data/locales/bs.json index e766cf62a9f9..9f8fa7ba6b4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -365,6 +365,8 @@ "ko_KP": "korejski (Sjeverna Koreja)", "ko_KR": "korejski (Južna Koreja)", "ks": "kašmirski", + "ks_Arab": "kašmirski (arapsko pismo)", + "ks_Arab_IN": "kašmirski (arapsko pismo, Indija)", "ks_IN": "kašmirski (Indija)", "ku": "kurdski", "ku_TR": "kurdski (Turska)", @@ -403,6 +405,7 @@ "mr_IN": "marati (Indija)", "ms": "malajski", "ms_BN": "malajski (Brunej)", + "ms_ID": "malajski (Indonezija)", "ms_MY": "malajski (Malezija)", "ms_SG": "malajski (Singapur)", "mt": "malteški", @@ -483,6 +486,10 @@ "rw": "kinjaruanda", "rw_RW": "kinjaruanda (Ruanda)", "sd": "sindi", + "sd_Arab": "sindi (arapsko pismo)", + "sd_Arab_PK": "sindi (arapsko pismo, Pakistan)", + "sd_Deva": "sindi (pismo devanagari)", + "sd_Deva_IN": "sindi (pismo devanagari, Indija)", "sd_PK": "sindi (Pakistan)", "se": "sjeverni sami", "se_FI": "sjeverni sami (Finska)", @@ -524,6 +531,10 @@ "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", "sr_XK": "srpski (Kosovo)", + "su": "sundanski", + "su_ID": "sundanski (Indonezija)", + "su_Latn": "sundanski (latinica)", + "su_Latn_ID": "sundanski (latinica, Indonezija)", "sv": "švedski", "sv_AX": "švedski (Olandska ostrva)", "sv_FI": "švedski (Finska)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json index f8abea8201d6..a06c58c503f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -365,6 +365,8 @@ "ko_KP": "корејски (Сјеверна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турска)", @@ -403,6 +405,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -483,6 +486,10 @@ "rw": "кинјаруанда", "rw_RW": "кинјаруанда (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "сјеверни сами", "se_FI": "сјеверни сами (Финска)", @@ -524,6 +531,10 @@ "sr_ME": "српски (Црна Гора)", "sr_RS": "српски (Србија)", "sr_XK": "српски (Косово)", + "su": "сундански", + "su_ID": "сундански (Индонезија)", + "su_Latn": "сундански (латиница)", + "su_Latn_ID": "сундански (латиница, Индонезија)", "sv": "шведски", "sv_AX": "шведски (Оландска острва)", "sv_FI": "шведски (Финска)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index 6f1d2a3d3d50..092ba3b56e01 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -234,6 +234,19 @@ "fa_AF": "persa (Afganistan)", "fa_IR": "persa (Iran)", "ff": "ful", + "ff_Adlm": "ful (adlam)", + "ff_Adlm_BF": "ful (adlam, Burkina Faso)", + "ff_Adlm_CM": "ful (adlam, Camerun)", + "ff_Adlm_GH": "ful (adlam, Ghana)", + "ff_Adlm_GM": "ful (adlam, Gàmbia)", + "ff_Adlm_GN": "ful (adlam, Guinea)", + "ff_Adlm_GW": "ful (adlam, Guinea Bissau)", + "ff_Adlm_LR": "ful (adlam, Libèria)", + "ff_Adlm_MR": "ful (adlam, Mauritània)", + "ff_Adlm_NE": "ful (adlam, Níger)", + "ff_Adlm_NG": "ful (adlam, Nigèria)", + "ff_Adlm_SL": "ful (adlam, Sierra Leone)", + "ff_Adlm_SN": "ful (adlam, Senegal)", "ff_CM": "ful (Camerun)", "ff_GN": "ful (Guinea)", "ff_Latn": "ful (llatí)", @@ -365,6 +378,8 @@ "ko_KP": "coreà (Corea del Nord)", "ko_KR": "coreà (Corea del Sud)", "ks": "caixmiri", + "ks_Arab": "caixmiri (àrab)", + "ks_Arab_IN": "caixmiri (àrab, Índia)", "ks_IN": "caixmiri (Índia)", "ku": "kurd", "ku_TR": "kurd (Turquia)", @@ -403,6 +418,7 @@ "mr_IN": "marathi (Índia)", "ms": "malai", "ms_BN": "malai (Brunei)", + "ms_ID": "malai (Indonèsia)", "ms_MY": "malai (Malàisia)", "ms_SG": "malai (Singapur)", "mt": "maltès", @@ -483,6 +499,10 @@ "rw": "ruandès", "rw_RW": "ruandès (Ruanda)", "sd": "sindi", + "sd_Arab": "sindi (àrab)", + "sd_Arab_PK": "sindi (àrab, Pakistan)", + "sd_Deva": "sindi (devanagari)", + "sd_Deva_IN": "sindi (devanagari, Índia)", "sd_PK": "sindi (Pakistan)", "se": "sami septentrional", "se_FI": "sami septentrional (Finlàndia)", @@ -524,6 +544,10 @@ "sr_ME": "serbi (Montenegro)", "sr_RS": "serbi (Sèrbia)", "sr_XK": "serbi (Kosovo)", + "su": "sondanès", + "su_ID": "sondanès (Indonèsia)", + "su_Latn": "sondanès (llatí)", + "su_Latn_ID": "sondanès (llatí, Indonèsia)", "sv": "suec", "sv_AX": "suec (Illes Åland)", "sv_FI": "suec (Finlàndia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ce.json b/src/Symfony/Component/Intl/Resources/data/locales/ce.json index cd54e4e769ea..4889536e0d37 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ce.json @@ -365,6 +365,8 @@ "ko_KP": "корейн (Къилбаседа Корей)", "ko_KR": "корейн (Къилба Корей)", "ks": "кашмири", + "ks_Arab": "кашмири (Ӏаьрбийн)", + "ks_Arab_IN": "кашмири (Ӏаьрбийн, ХӀинди)", "ks_IN": "кашмири (ХӀинди)", "ku": "курдийн", "ku_TR": "курдийн (Туркойчоь)", @@ -402,6 +404,7 @@ "mr_IN": "маратхи (ХӀинди)", "ms": "малайн", "ms_BN": "малайн (Бруней-Даруссалам)", + "ms_ID": "малайн (Индонези)", "ms_MY": "малайн (Малайзи)", "ms_SG": "малайн (Сингапур)", "mt": "мальтойн", @@ -480,6 +483,10 @@ "rw": "киньяруанда", "rw_RW": "киньяруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (Ӏаьрбийн)", + "sd_Arab_PK": "синдхи (Ӏаьрбийн, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, ХӀинди)", "sd_PK": "синдхи (Пакистан)", "se": "къилбаседа саамийн", "se_FI": "къилбаседа саамийн (Финлянди)", @@ -518,6 +525,10 @@ "sr_ME": "сербийн (Ӏаьржаламанчоь)", "sr_RS": "сербийн (Серби)", "sr_XK": "сербийн (Косово)", + "su": "сунданхойн", + "su_ID": "сунданхойн (Индонези)", + "su_Latn": "сунданхойн (латинан)", + "su_Latn_ID": "сунданхойн (латинан, Индонези)", "sv": "шведийн", "sv_AX": "шведийн (Аландан гӀайренаш)", "sv_FI": "шведийн (Финлянди)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index e1c2f621a10e..59ab6927a8a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -365,6 +365,8 @@ "ko_KP": "korejština (Severní Korea)", "ko_KR": "korejština (Jižní Korea)", "ks": "kašmírština", + "ks_Arab": "kašmírština (arabské)", + "ks_Arab_IN": "kašmírština (arabské, Indie)", "ks_IN": "kašmírština (Indie)", "ku": "kurdština", "ku_TR": "kurdština (Turecko)", @@ -403,6 +405,7 @@ "mr_IN": "maráthština (Indie)", "ms": "malajština", "ms_BN": "malajština (Brunej)", + "ms_ID": "malajština (Indonésie)", "ms_MY": "malajština (Malajsie)", "ms_SG": "malajština (Singapur)", "mt": "maltština", @@ -483,6 +486,10 @@ "rw": "kiňarwandština", "rw_RW": "kiňarwandština (Rwanda)", "sd": "sindhština", + "sd_Arab": "sindhština (arabské)", + "sd_Arab_PK": "sindhština (arabské, Pákistán)", + "sd_Deva": "sindhština (dévanágarí)", + "sd_Deva_IN": "sindhština (dévanágarí, Indie)", "sd_PK": "sindhština (Pákistán)", "se": "sámština [severní]", "se_FI": "sámština [severní] (Finsko)", @@ -524,6 +531,10 @@ "sr_ME": "srbština (Černá Hora)", "sr_RS": "srbština (Srbsko)", "sr_XK": "srbština (Kosovo)", + "su": "sundština", + "su_ID": "sundština (Indonésie)", + "su_Latn": "sundština (latinka)", + "su_Latn_ID": "sundština (latinka, Indonésie)", "sv": "švédština", "sv_AX": "švédština (Ålandy)", "sv_FI": "švédština (Finsko)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index c29cf7d8fce6..3381d39d300a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -365,6 +365,8 @@ "ko_KP": "Coreeg (Gogledd Korea)", "ko_KR": "Coreeg (De Korea)", "ks": "Cashmireg", + "ks_Arab": "Cashmireg (Arabaidd)", + "ks_Arab_IN": "Cashmireg (Arabaidd, India)", "ks_IN": "Cashmireg (India)", "ku": "Cwrdeg", "ku_TR": "Cwrdeg (Twrci)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (India)", "ms": "Maleieg", "ms_BN": "Maleieg (Brunei)", + "ms_ID": "Maleieg (Indonesia)", "ms_MY": "Maleieg (Malaysia)", "ms_SG": "Maleieg (Singapore)", "mt": "Malteg", @@ -483,6 +486,10 @@ "rw": "Ciniarŵandeg", "rw_RW": "Ciniarŵandeg (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabaidd)", + "sd_Arab_PK": "Sindhi (Arabaidd, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, India)", "sd_PK": "Sindhi (Pakistan)", "se": "Sami Gogleddol", "se_FI": "Sami Gogleddol (Y Ffindir)", @@ -524,6 +531,10 @@ "sr_ME": "Serbeg (Montenegro)", "sr_RS": "Serbeg (Serbia)", "sr_XK": "Serbeg (Kosovo)", + "su": "Swndaneg", + "su_ID": "Swndaneg (Indonesia)", + "su_Latn": "Swndaneg (Lladin)", + "su_Latn_ID": "Swndaneg (Lladin, Indonesia)", "sv": "Swedeg", "sv_AX": "Swedeg (Ynysoedd Åland)", "sv_FI": "Swedeg (Y Ffindir)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/da.json b/src/Symfony/Component/Intl/Resources/data/locales/da.json index 38a925da0041..c5b6126e8ae2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -365,6 +365,8 @@ "ko_KP": "koreansk (Nordkorea)", "ko_KR": "koreansk (Sydkorea)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabisk)", + "ks_Arab_IN": "kashmiri (arabisk, Indien)", "ks_IN": "kashmiri (Indien)", "ku": "kurdisk", "ku_TR": "kurdisk (Tyrkiet)", @@ -403,6 +405,7 @@ "mr_IN": "marathisk (Indien)", "ms": "malajisk", "ms_BN": "malajisk (Brunei)", + "ms_ID": "malajisk (Indonesien)", "ms_MY": "malajisk (Malaysia)", "ms_SG": "malajisk (Singapore)", "mt": "maltesisk", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabisk)", + "sd_Arab_PK": "sindhi (arabisk, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, Indien)", "sd_PK": "sindhi (Pakistan)", "se": "nordsamisk", "se_FI": "nordsamisk (Finland)", @@ -524,6 +531,10 @@ "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbien)", "sr_XK": "serbisk (Kosovo)", + "su": "sundanesisk", + "su_ID": "sundanesisk (Indonesien)", + "su_Latn": "sundanesisk (latinsk)", + "su_Latn_ID": "sundanesisk (latinsk, Indonesien)", "sv": "svensk", "sv_AX": "svensk (Åland)", "sv_FI": "svensk (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de.json b/src/Symfony/Component/Intl/Resources/data/locales/de.json index d43a25ef4e04..0a4738747185 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -365,6 +365,8 @@ "ko_KP": "Koreanisch (Nordkorea)", "ko_KR": "Koreanisch (Südkorea)", "ks": "Kaschmiri", + "ks_Arab": "Kaschmiri (Arabisch)", + "ks_Arab_IN": "Kaschmiri (Arabisch, Indien)", "ks_IN": "Kaschmiri (Indien)", "ku": "Kurdisch", "ku_TR": "Kurdisch (Türkei)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (Indien)", "ms": "Malaiisch", "ms_BN": "Malaiisch (Brunei Darussalam)", + "ms_ID": "Malaiisch (Indonesien)", "ms_MY": "Malaiisch (Malaysia)", "ms_SG": "Malaiisch (Singapur)", "mt": "Maltesisch", @@ -483,6 +486,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Ruanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabisch)", + "sd_Arab_PK": "Sindhi (Arabisch, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, Indien)", "sd_PK": "Sindhi (Pakistan)", "se": "Nordsamisch", "se_FI": "Nordsamisch (Finnland)", @@ -524,6 +531,10 @@ "sr_ME": "Serbisch (Montenegro)", "sr_RS": "Serbisch (Serbien)", "sr_XK": "Serbisch (Kosovo)", + "su": "Sundanesisch", + "su_ID": "Sundanesisch (Indonesien)", + "su_Latn": "Sundanesisch (Lateinisch)", + "su_Latn_ID": "Sundanesisch (Lateinisch, Indonesien)", "sv": "Schwedisch", "sv_AX": "Schwedisch (Ålandinseln)", "sv_FI": "Schwedisch (Finnland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index 86257d7dd80b..6822e6379700 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -325,6 +325,8 @@ "ko_KP": "ཀོ་རི་ཡཱན་ཁ། (བྱང་ ཀོ་རི་ཡ།)", "ko_KR": "ཀོ་རི་ཡཱན་ཁ། (ལྷོ་ ཀོ་རི་ཡ།)", "ks": "ཀཱཤ་མི་རི་ཁ", + "ks_Arab": "ཀཱཤ་མི་རི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ།)", + "ks_Arab_IN": "ཀཱཤ་མི་རི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ་, རྒྱ་གར།)", "ks_IN": "ཀཱཤ་མི་རི་ཁ། (རྒྱ་གར།)", "ku": "ཀར་ཌིཤ་ཁ", "ku_TR": "ཀར་ཌིཤ་ཁ། (ཊཱར་ཀི།)", @@ -349,6 +351,7 @@ "mr_IN": "མ་ར་ཐི་ཁ། (རྒྱ་གར།)", "ms": "མ་ལེ་ཁ", "ms_BN": "མ་ལེ་ཁ། (བྷྲུ་ནའི།)", + "ms_ID": "མ་ལེ་ཁ། (ཨིན་ཌོ་ནེ་ཤི་ཡ།)", "ms_MY": "མ་ལེ་ཁ། (མ་ལེ་ཤི་ཡ།)", "ms_SG": "མ་ལེ་ཁ། (སིང་ག་པོར།)", "mt": "མཱལ་ཊ་ཁ", @@ -417,6 +420,10 @@ "ru_RU": "ཨུ་རུ་སུའི་ཁ། (ཨུ་རུ་སུ།)", "ru_UA": "ཨུ་རུ་སུའི་ཁ། (ཡུ་ཀརེན།)", "sd": "སིན་དཱི་ཁ", + "sd_Arab": "སིན་དཱི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ།)", + "sd_Arab_PK": "སིན་དཱི་ཁ། (ཨེ་ར་བིཀ་ཡིག་གུ་, པ་ཀི་སཏཱན།)", + "sd_Deva": "སིན་དཱི་ཁ། (དེ་ཝ་ན་ག་རི་ཡིག་གུ།)", + "sd_Deva_IN": "སིན་དཱི་ཁ། (དེ་ཝ་ན་ག་རི་ཡིག་གུ་, རྒྱ་གར།)", "sd_PK": "སིན་དཱི་ཁ། (པ་ཀི་སཏཱན།)", "si": "སིང་ཧ་ལ་ཁ", "si_LK": "སིང་ཧ་ལ་ཁ། (ཤྲཱི་ལང་ཀ།)", @@ -443,6 +450,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 f502513b5a9c..0745e2e4584c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -326,6 +326,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)", @@ -357,6 +359,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", @@ -431,6 +434,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/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index 14489611735b..e923c4c51bea 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -365,6 +365,8 @@ "ko_KP": "Κορεατικά (Βόρεια Κορέα)", "ko_KR": "Κορεατικά (Νότια Κορέα)", "ks": "Κασμιρικά", + "ks_Arab": "Κασμιρικά (Αραβικό)", + "ks_Arab_IN": "Κασμιρικά (Αραβικό, Ινδία)", "ks_IN": "Κασμιρικά (Ινδία)", "ku": "Κουρδικά", "ku_TR": "Κουρδικά (Τουρκία)", @@ -403,6 +405,7 @@ "mr_IN": "Μαραθικά (Ινδία)", "ms": "Μαλαισιανά", "ms_BN": "Μαλαισιανά (Μπρουνέι)", + "ms_ID": "Μαλαισιανά (Ινδονησία)", "ms_MY": "Μαλαισιανά (Μαλαισία)", "ms_SG": "Μαλαισιανά (Σιγκαπούρη)", "mt": "Μαλτεζικά", @@ -483,6 +486,10 @@ "rw": "Κινιαρουάντα", "rw_RW": "Κινιαρουάντα (Ρουάντα)", "sd": "Σίντι", + "sd_Arab": "Σίντι (Αραβικό)", + "sd_Arab_PK": "Σίντι (Αραβικό, Πακιστάν)", + "sd_Deva": "Σίντι (Ντεβαναγκάρι)", + "sd_Deva_IN": "Σίντι (Ντεβαναγκάρι, Ινδία)", "sd_PK": "Σίντι (Πακιστάν)", "se": "Βόρεια Σάμι", "se_FI": "Βόρεια Σάμι (Φινλανδία)", @@ -524,6 +531,10 @@ "sr_ME": "Σερβικά (Μαυροβούνιο)", "sr_RS": "Σερβικά (Σερβία)", "sr_XK": "Σερβικά (Κοσσυφοπέδιο)", + "su": "Σουνδανικά", + "su_ID": "Σουνδανικά (Ινδονησία)", + "su_Latn": "Σουνδανικά (Λατινικό)", + "su_Latn_ID": "Σουνδανικά (Λατινικό, Ινδονησία)", "sv": "Σουηδικά", "sv_AX": "Σουηδικά (Νήσοι Όλαντ)", "sv_FI": "Σουηδικά (Φινλανδία)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index 8bead378d10c..c0b99224c17b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -234,6 +234,19 @@ "fa_AF": "Persian (Afghanistan)", "fa_IR": "Persian (Iran)", "ff": "Fulah", + "ff_Adlm": "Fulah (Adlam)", + "ff_Adlm_BF": "Fulah (Adlam, Burkina Faso)", + "ff_Adlm_CM": "Fulah (Adlam, Cameroon)", + "ff_Adlm_GH": "Fulah (Adlam, Ghana)", + "ff_Adlm_GM": "Fulah (Adlam, Gambia)", + "ff_Adlm_GN": "Fulah (Adlam, Guinea)", + "ff_Adlm_GW": "Fulah (Adlam, Guinea-Bissau)", + "ff_Adlm_LR": "Fulah (Adlam, Liberia)", + "ff_Adlm_MR": "Fulah (Adlam, Mauritania)", + "ff_Adlm_NE": "Fulah (Adlam, Niger)", + "ff_Adlm_NG": "Fulah (Adlam, Nigeria)", + "ff_Adlm_SL": "Fulah (Adlam, Sierra Leone)", + "ff_Adlm_SN": "Fulah (Adlam, Senegal)", "ff_CM": "Fulah (Cameroon)", "ff_GN": "Fulah (Guinea)", "ff_Latn": "Fulah (Latin)", @@ -365,6 +378,8 @@ "ko_KP": "Korean (North Korea)", "ko_KR": "Korean (South Korea)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (Arabic)", + "ks_Arab_IN": "Kashmiri (Arabic, India)", "ks_IN": "Kashmiri (India)", "ku": "Kurdish", "ku_TR": "Kurdish (Turkey)", @@ -403,6 +418,7 @@ "mr_IN": "Marathi (India)", "ms": "Malay", "ms_BN": "Malay (Brunei)", + "ms_ID": "Malay (Indonesia)", "ms_MY": "Malay (Malaysia)", "ms_SG": "Malay (Singapore)", "mt": "Maltese", @@ -483,6 +499,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabic)", + "sd_Arab_PK": "Sindhi (Arabic, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, India)", "sd_PK": "Sindhi (Pakistan)", "se": "Northern Sami", "se_FI": "Northern Sami (Finland)", @@ -524,6 +544,10 @@ "sr_ME": "Serbian (Montenegro)", "sr_RS": "Serbian (Serbia)", "sr_XK": "Serbian (Kosovo)", + "su": "Sundanese", + "su_ID": "Sundanese (Indonesia)", + "su_Latn": "Sundanese (Latin)", + "su_Latn_ID": "Sundanese (Latin, Indonesia)", "sv": "Swedish", "sv_AX": "Swedish (Åland Islands)", "sv_FI": "Swedish (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eo.json b/src/Symfony/Component/Intl/Resources/data/locales/eo.json index a59255d203de..126880b4dbdb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eo.json @@ -330,6 +330,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", @@ -418,6 +419,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/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index 40cd16cc9592..901434ab9a95 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -365,6 +365,8 @@ "ko_KP": "coreano (Corea del Norte)", "ko_KR": "coreano (Corea del Sur)", "ks": "cachemiro", + "ks_Arab": "cachemiro (árabe)", + "ks_Arab_IN": "cachemiro (árabe, India)", "ks_IN": "cachemiro (India)", "ku": "kurdo", "ku_TR": "kurdo (Turquía)", @@ -403,6 +405,7 @@ "mr_IN": "maratí (India)", "ms": "malayo", "ms_BN": "malayo (Brunéi)", + "ms_ID": "malayo (Indonesia)", "ms_MY": "malayo (Malasia)", "ms_SG": "malayo (Singapur)", "mt": "maltés", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (árabe)", + "sd_Arab_PK": "sindhi (árabe, Pakistán)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistán)", "se": "sami septentrional", "se_FI": "sami septentrional (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "serbio (Montenegro)", "sr_RS": "serbio (Serbia)", "sr_XK": "serbio (Kosovo)", + "su": "sundanés", + "su_ID": "sundanés (Indonesia)", + "su_Latn": "sundanés (latino)", + "su_Latn_ID": "sundanés (latino, Indonesia)", "sv": "sueco", "sv_AX": "sueco (Islas Åland)", "sv_FI": "sueco (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json b/src/Symfony/Component/Intl/Resources/data/locales/es_419.json index 4ebf0142539d..e3c87600d257 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_419.json @@ -49,6 +49,8 @@ "sr_Latn_ME": "serbio (latín, Montenegro)", "sr_Latn_RS": "serbio (latín, Serbia)", "sr_Latn_XK": "serbio (latín, Kosovo)", + "su_Latn": "sundanés (latín)", + "su_Latn_ID": "sundanés (latín, Indonesia)", "sw": "swahili", "sw_CD": "swahili (República Democrática del Congo)", "sw_KE": "swahili (Kenia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/et.json b/src/Symfony/Component/Intl/Resources/data/locales/et.json index 4ded6f213535..9836bafd9797 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -365,6 +365,8 @@ "ko_KP": "korea (Põhja-Korea)", "ko_KR": "korea (Lõuna-Korea)", "ks": "kašmiiri", + "ks_Arab": "kašmiiri (araabia)", + "ks_Arab_IN": "kašmiiri (araabia, India)", "ks_IN": "kašmiiri (India)", "ku": "kurdi", "ku_TR": "kurdi (Türgi)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (India)", "ms": "malai", "ms_BN": "malai (Brunei)", + "ms_ID": "malai (Indoneesia)", "ms_MY": "malai (Malaisia)", "ms_SG": "malai (Singapur)", "mt": "malta", @@ -483,6 +486,10 @@ "rw": "ruanda", "rw_RW": "ruanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (araabia)", + "sd_Arab_PK": "sindhi (araabia, Pakistan)", + "sd_Deva": "sindhi (devanaagari)", + "sd_Deva_IN": "sindhi (devanaagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "põhjasaami", "se_FI": "põhjasaami (Soome)", @@ -524,6 +531,10 @@ "sr_ME": "serbia (Montenegro)", "sr_RS": "serbia (Serbia)", "sr_XK": "serbia (Kosovo)", + "su": "sunda", + "su_ID": "sunda (Indoneesia)", + "su_Latn": "sunda (ladina)", + "su_Latn_ID": "sunda (ladina, Indoneesia)", "sv": "rootsi", "sv_AX": "rootsi (Ahvenamaa)", "sv_FI": "rootsi (Soome)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eu.json b/src/Symfony/Component/Intl/Resources/data/locales/eu.json index 45b14fa572e6..f477f5f37a08 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -365,6 +365,8 @@ "ko_KP": "koreera (Ipar Korea)", "ko_KR": "koreera (Hego Korea)", "ks": "kaxmirera", + "ks_Arab": "kaxmirera (arabiarra)", + "ks_Arab_IN": "kaxmirera (arabiarra, India)", "ks_IN": "kaxmirera (India)", "ku": "kurduera", "ku_TR": "kurduera (Turkia)", @@ -403,6 +405,7 @@ "mr_IN": "marathera (India)", "ms": "malaysiera", "ms_BN": "malaysiera (Brunei)", + "ms_ID": "malaysiera (Indonesia)", "ms_MY": "malaysiera (Malaysia)", "ms_SG": "malaysiera (Singapur)", "mt": "maltera", @@ -483,6 +486,10 @@ "rw": "kinyaruanda", "rw_RW": "kinyaruanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabiarra)", + "sd_Arab_PK": "sindhi (arabiarra, Pakistan)", + "sd_Deva": "sindhi (devanagaria)", + "sd_Deva_IN": "sindhi (devanagaria, India)", "sd_PK": "sindhi (Pakistan)", "se": "iparraldeko samiera", "se_FI": "iparraldeko samiera (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "serbiera (Montenegro)", "sr_RS": "serbiera (Serbia)", "sr_XK": "serbiera (Kosovo)", + "su": "sundanera", + "su_ID": "sundanera (Indonesia)", + "su_Latn": "sundanera (latinoa)", + "su_Latn_ID": "sundanera (latinoa, Indonesia)", "sv": "suediera", "sv_AX": "suediera (Åland)", "sv_FI": "suediera (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa.json b/src/Symfony/Component/Intl/Resources/data/locales/fa.json index 2a4149f885eb..09349707b86e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -365,6 +365,8 @@ "ko_KP": "کره‌ای (کرهٔ شمالی)", "ko_KR": "کره‌ای (کرهٔ جنوبی)", "ks": "کشمیری", + "ks_Arab": "کشمیری (عربی)", + "ks_Arab_IN": "کشمیری (عربی، هند)", "ks_IN": "کشمیری (هند)", "ku": "کردی", "ku_TR": "کردی (ترکیه)", @@ -403,6 +405,7 @@ "mr_IN": "مراتی (هند)", "ms": "مالایی", "ms_BN": "مالایی (برونئی)", + "ms_ID": "مالایی (اندونزی)", "ms_MY": "مالایی (مالزی)", "ms_SG": "مالایی (سنگاپور)", "mt": "مالتی", @@ -483,6 +486,10 @@ "rw": "کینیارواندایی", "rw_RW": "کینیارواندایی (رواندا)", "sd": "سندی", + "sd_Arab": "سندی (عربی)", + "sd_Arab_PK": "سندی (عربی، پاکستان)", + "sd_Deva": "سندی (دوناگری)", + "sd_Deva_IN": "سندی (دوناگری، هند)", "sd_PK": "سندی (پاکستان)", "se": "سامی شمالی", "se_FI": "سامی شمالی (فنلاند)", @@ -524,6 +531,10 @@ "sr_ME": "صربی (مونته‌نگرو)", "sr_RS": "صربی (صربستان)", "sr_XK": "صربی (کوزوو)", + "su": "سوندایی", + "su_ID": "سوندایی (اندونزی)", + "su_Latn": "سوندایی (لاتینی)", + "su_Latn_ID": "سوندایی (لاتینی، اندونزی)", "sv": "سوئدی", "sv_AX": "سوئدی (جزایر آلاند)", "sv_FI": "سوئدی (فنلاند)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json index 284c2a891a80..dcde3db2c452 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -151,6 +151,7 @@ "mn": "مغلی", "mn_MN": "مغلی (منگولیا)", "ms_BN": "مالایی (برونی)", + "ms_ID": "مالایی (اندونیزیا)", "ms_MY": "مالایی (مالیزیا)", "ms_SG": "مالایی (سینگاپور)", "mt_MT": "مالتی (مالتا)", @@ -215,6 +216,8 @@ "sr_Latn_BA": "صربی (لاتینی، بوسنیا و هرزه‌گوینا)", "sr_Latn_XK": "صربی (لاتینی، کوسوا)", "sr_XK": "صربی (کوسوا)", + "su_ID": "سوندایی (اندونیزیا)", + "su_Latn_ID": "سوندایی (لاتینی، اندونیزیا)", "sv": "سویدنی", "sv_AX": "سویدنی (جزایر آلاند)", "sv_FI": "سویدنی (فنلند)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff.json b/src/Symfony/Component/Intl/Resources/data/locales/ff.json index 70a523a07022..7604b0e98cf7 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 000000000000..ac9ac7bfb64a --- /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/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index 0ba1b7047c88..eb40b431cff0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -234,6 +234,19 @@ "fa_AF": "persia (Afganistan)", "fa_IR": "persia (Iran)", "ff": "fulani", + "ff_Adlm": "fulani (fulanin adlam-aakkosto)", + "ff_Adlm_BF": "fulani (fulanin adlam-aakkosto, Burkina Faso)", + "ff_Adlm_CM": "fulani (fulanin adlam-aakkosto, Kamerun)", + "ff_Adlm_GH": "fulani (fulanin adlam-aakkosto, Ghana)", + "ff_Adlm_GM": "fulani (fulanin adlam-aakkosto, Gambia)", + "ff_Adlm_GN": "fulani (fulanin adlam-aakkosto, Guinea)", + "ff_Adlm_GW": "fulani (fulanin adlam-aakkosto, Guinea-Bissau)", + "ff_Adlm_LR": "fulani (fulanin adlam-aakkosto, Liberia)", + "ff_Adlm_MR": "fulani (fulanin adlam-aakkosto, Mauritania)", + "ff_Adlm_NE": "fulani (fulanin adlam-aakkosto, Niger)", + "ff_Adlm_NG": "fulani (fulanin adlam-aakkosto, Nigeria)", + "ff_Adlm_SL": "fulani (fulanin adlam-aakkosto, Sierra Leone)", + "ff_Adlm_SN": "fulani (fulanin adlam-aakkosto, Senegal)", "ff_CM": "fulani (Kamerun)", "ff_GN": "fulani (Guinea)", "ff_Latn": "fulani (latinalainen)", @@ -365,6 +378,8 @@ "ko_KP": "korea (Pohjois-Korea)", "ko_KR": "korea (Etelä-Korea)", "ks": "kašmiri", + "ks_Arab": "kašmiri (arabialainen)", + "ks_Arab_IN": "kašmiri (arabialainen, Intia)", "ks_IN": "kašmiri (Intia)", "ku": "kurdi", "ku_TR": "kurdi (Turkki)", @@ -403,6 +418,7 @@ "mr_IN": "marathi (Intia)", "ms": "malaiji", "ms_BN": "malaiji (Brunei)", + "ms_ID": "malaiji (Indonesia)", "ms_MY": "malaiji (Malesia)", "ms_SG": "malaiji (Singapore)", "mt": "malta", @@ -483,6 +499,10 @@ "rw": "ruanda", "rw_RW": "ruanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabialainen)", + "sd_Arab_PK": "sindhi (arabialainen, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, Intia)", "sd_PK": "sindhi (Pakistan)", "se": "pohjoissaame", "se_FI": "pohjoissaame (Suomi)", @@ -524,6 +544,10 @@ "sr_ME": "serbia (Montenegro)", "sr_RS": "serbia (Serbia)", "sr_XK": "serbia (Kosovo)", + "su": "sunda", + "su_ID": "sunda (Indonesia)", + "su_Latn": "sunda (latinalainen)", + "su_Latn_ID": "sunda (latinalainen, Indonesia)", "sv": "ruotsi", "sv_AX": "ruotsi (Ahvenanmaa)", "sv_FI": "ruotsi (Suomi)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index b8f6986c2438..e7ee3481e271 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -365,6 +365,8 @@ "ko_KP": "koreanskt (Norðurkorea)", "ko_KR": "koreanskt (Suðurkorea)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabisk)", + "ks_Arab_IN": "kashmiri (arabisk, India)", "ks_IN": "kashmiri (India)", "ku": "kurdiskt", "ku_TR": "kurdiskt (Turkaland)", @@ -402,6 +404,7 @@ "mr_IN": "marathi (India)", "ms": "malaiiskt", "ms_BN": "malaiiskt (Brunei)", + "ms_ID": "malaiiskt (Indonesia)", "ms_MY": "malaiiskt (Malaisia)", "ms_SG": "malaiiskt (Singapor)", "mt": "maltiskt", @@ -482,6 +485,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabisk)", + "sd_Arab_PK": "sindhi (arabisk, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "norður sámiskt", "se_FI": "norður sámiskt (Finnland)", @@ -522,6 +529,10 @@ "sr_ME": "serbiskt (Montenegro)", "sr_RS": "serbiskt (Serbia)", "sr_XK": "serbiskt (Kosovo)", + "su": "sundanesiskt", + "su_ID": "sundanesiskt (Indonesia)", + "su_Latn": "sundanesiskt (latínskt)", + "su_Latn_ID": "sundanesiskt (latínskt, Indonesia)", "sv": "svenskt", "sv_AX": "svenskt (Áland)", "sv_FI": "svenskt (Finnland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr.json b/src/Symfony/Component/Intl/Resources/data/locales/fr.json index 40c1cf11b48c..78b1d97307df 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -365,6 +365,8 @@ "ko_KP": "coréen (Corée du Nord)", "ko_KR": "coréen (Corée du Sud)", "ks": "cachemiri", + "ks_Arab": "cachemiri (arabe)", + "ks_Arab_IN": "cachemiri (arabe, Inde)", "ks_IN": "cachemiri (Inde)", "ku": "kurde", "ku_TR": "kurde (Turquie)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (Inde)", "ms": "malais", "ms_BN": "malais (Brunéi Darussalam)", + "ms_ID": "malais (Indonésie)", "ms_MY": "malais (Malaisie)", "ms_SG": "malais (Singapour)", "mt": "maltais", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabe)", + "sd_Arab_PK": "sindhi (arabe, Pakistan)", + "sd_Deva": "sindhi (dévanagari)", + "sd_Deva_IN": "sindhi (dévanagari, Inde)", "sd_PK": "sindhi (Pakistan)", "se": "same du Nord", "se_FI": "same du Nord (Finlande)", @@ -524,6 +531,10 @@ "sr_ME": "serbe (Monténégro)", "sr_RS": "serbe (Serbie)", "sr_XK": "serbe (Kosovo)", + "su": "soundanais", + "su_ID": "soundanais (Indonésie)", + "su_Latn": "soundanais (latin)", + "su_Latn_ID": "soundanais (latin, Indonésie)", "sv": "suédois", "sv_AX": "suédois (Îles Åland)", "sv_FI": "suédois (Finlande)", 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 939ac3f61305..1426a51030c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json @@ -35,6 +35,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)", @@ -45,6 +47,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/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index e680baefb295..25063b14fec4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -365,6 +365,8 @@ "ko_KP": "Koreaansk (Noard-Korea)", "ko_KR": "Koreaansk (Sûd-Korea)", "ks": "Kasjmiri", + "ks_Arab": "Kasjmiri (Arabysk)", + "ks_Arab_IN": "Kasjmiri (Arabysk, India)", "ks_IN": "Kasjmiri (India)", "ku": "Koerdysk", "ku_TR": "Koerdysk (Turkije)", @@ -402,6 +404,7 @@ "mr_IN": "Marathi (India)", "ms": "Maleis", "ms_BN": "Maleis (Brunei)", + "ms_ID": "Maleis (Yndonesië)", "ms_MY": "Maleis (Maleisië)", "ms_SG": "Maleis (Singapore)", "mt": "Maltees", @@ -482,6 +485,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabysk)", + "sd_Arab_PK": "Sindhi (Arabysk, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, India)", "sd_PK": "Sindhi (Pakistan)", "se": "Noard-Samysk", "se_FI": "Noard-Samysk (Finlân)", @@ -522,6 +529,10 @@ "sr_ME": "Servysk (Montenegro)", "sr_RS": "Servysk (Servië)", "sr_XK": "Servysk (Kosovo)", + "su": "Soendaneesk", + "su_ID": "Soendaneesk (Yndonesië)", + "su_Latn": "Soendaneesk (Latyn)", + "su_Latn_ID": "Soendaneesk (Latyn, Yndonesië)", "sv": "Zweeds", "sv_AX": "Zweeds (Ålân)", "sv_FI": "Zweeds (Finlân)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ga.json b/src/Symfony/Component/Intl/Resources/data/locales/ga.json index afe69cd06b13..f748aa9aa5fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -47,8 +47,8 @@ "be_BY": "Bealarúisis (an Bhealarúis)", "bg": "Bulgáiris", "bg_BG": "Bulgáiris (an Bhulgáir)", - "bm": "bm", - "bm_ML": "bm (Mailí)", + "bm": "Bambairis", + "bm_ML": "Bambairis (Mailí)", "bn": "Beangáilis", "bn_BD": "Beangáilis (an Bhanglaidéis)", "bn_IN": "Beangáilis (an India)", @@ -87,9 +87,9 @@ "de_LU": "Gearmáinis (Lucsamburg)", "dz": "Seoinicis", "dz_BT": "Seoinicis (an Bhútáin)", - "ee": "ee", - "ee_GH": "ee (Gána)", - "ee_TG": "ee (Tóga)", + "ee": "Éabhais", + "ee_GH": "Éabhais (Gána)", + "ee_TG": "Éabhais (Tóga)", "el": "Gréigis", "el_CY": "Gréigis (an Chipir)", "el_GR": "Gréigis (an Ghréig)", @@ -234,6 +234,19 @@ "fa_AF": "Peirsis (an Afganastáin)", "fa_IR": "Peirsis (an Iaráin)", "ff": "Fuláinis", + "ff_Adlm": "Fuláinis (Adlam)", + "ff_Adlm_BF": "Fuláinis (Adlam, Buircíne Fasó)", + "ff_Adlm_CM": "Fuláinis (Adlam, Camarún)", + "ff_Adlm_GH": "Fuláinis (Adlam, Gána)", + "ff_Adlm_GM": "Fuláinis (Adlam, an Ghaimbia)", + "ff_Adlm_GN": "Fuláinis (Adlam, an Ghuine)", + "ff_Adlm_GW": "Fuláinis (Adlam, Guine Bissau)", + "ff_Adlm_LR": "Fuláinis (Adlam, an Libéir)", + "ff_Adlm_MR": "Fuláinis (Adlam, an Mháratáin)", + "ff_Adlm_NE": "Fuláinis (Adlam, an Nígir)", + "ff_Adlm_NG": "Fuláinis (Adlam, an Nigéir)", + "ff_Adlm_SL": "Fuláinis (Adlam, Siarra Leon)", + "ff_Adlm_SN": "Fuláinis (Adlam, an tSeineagáil)", "ff_CM": "Fuláinis (Camarún)", "ff_GN": "Fuláinis (an Ghuine)", "ff_Latn": "Fuláinis (Laidineach)", @@ -336,8 +349,6 @@ "id_ID": "Indinéisis (an Indinéis)", "ig": "Íogbóis", "ig_NG": "Íogbóis (an Nigéir)", - "ii": "ii", - "ii_CN": "ii (an tSín)", "is": "Íoslainnis", "is_IS": "Íoslainnis (an Íoslainn)", "it": "Iodáilis", @@ -365,6 +376,8 @@ "ko_KP": "Cóiréis (an Chóiré Thuaidh)", "ko_KR": "Cóiréis (an Chóiré Theas)", "ks": "Caismíris", + "ks_Arab": "Caismíris (Arabach)", + "ks_Arab_IN": "Caismíris (Arabach, an India)", "ks_IN": "Caismíris (an India)", "ku": "Coirdis", "ku_TR": "Coirdis (an Tuirc)", @@ -403,6 +416,7 @@ "mr_IN": "Maraitis (an India)", "ms": "Malaeis", "ms_BN": "Malaeis (Brúiné)", + "ms_ID": "Malaeis (an Indinéis)", "ms_MY": "Malaeis (an Mhalaeisia)", "ms_SG": "Malaeis (Singeapór)", "mt": "Máltais", @@ -483,6 +497,10 @@ "rw": "Ciniaruaindis", "rw_RW": "Ciniaruaindis (Ruanda)", "sd": "Sindis", + "sd_Arab": "Sindis (Arabach)", + "sd_Arab_PK": "Sindis (Arabach, an Phacastáin)", + "sd_Deva": "Sindis (Déiveanágrach)", + "sd_Deva_IN": "Sindis (Déiveanágrach, an India)", "sd_PK": "Sindis (an Phacastáin)", "se": "Sáimis Thuaidh", "se_FI": "Sáimis Thuaidh (an Fhionlainn)", @@ -524,6 +542,10 @@ "sr_ME": "Seirbis (Montainéagró)", "sr_RS": "Seirbis (an tSeirbia)", "sr_XK": "Seirbis (an Chosaiv)", + "su": "Sundais", + "su_ID": "Sundais (an Indinéis)", + "su_Latn": "Sundais (Laidineach)", + "su_Latn_ID": "Sundais (Laidineach, an Indinéis)", "sv": "Sualainnis", "sv_AX": "Sualainnis (Oileáin Åland)", "sv_FI": "Sualainnis (an Fhionlainn)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gd.json b/src/Symfony/Component/Intl/Resources/data/locales/gd.json index 3386c4dce3a6..0a680cbdd6b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -234,6 +234,19 @@ "fa_AF": "Peirsis (Afghanastàn)", "fa_IR": "Peirsis (Ioràn)", "ff": "Fulah", + "ff_Adlm": "Fulah (Adlam)", + "ff_Adlm_BF": "Fulah (Adlam, Buirciona Faso)", + "ff_Adlm_CM": "Fulah (Adlam, Camarun)", + "ff_Adlm_GH": "Fulah (Adlam, Gàna)", + "ff_Adlm_GM": "Fulah (Adlam, A’ Ghaimbia)", + "ff_Adlm_GN": "Fulah (Adlam, Gini)", + "ff_Adlm_GW": "Fulah (Adlam, Gini-Bioso)", + "ff_Adlm_LR": "Fulah (Adlam, Libèir)", + "ff_Adlm_MR": "Fulah (Adlam, Moratàinea)", + "ff_Adlm_NE": "Fulah (Adlam, Nìgeir)", + "ff_Adlm_NG": "Fulah (Adlam, Nigèiria)", + "ff_Adlm_SL": "Fulah (Adlam, Siarra Leòmhann)", + "ff_Adlm_SN": "Fulah (Adlam, Seanagal)", "ff_CM": "Fulah (Camarun)", "ff_GN": "Fulah (Gini)", "ff_Latn": "Fulah (Laideann)", @@ -365,6 +378,8 @@ "ko_KP": "Coirèanais (Coirèa a Tuath)", "ko_KR": "Coirèanais (Coirèa)", "ks": "Caismiris", + "ks_Arab": "Caismiris (Arabais)", + "ks_Arab_IN": "Caismiris (Arabais, Na h-Innseachan)", "ks_IN": "Caismiris (Na h-Innseachan)", "ku": "Cùrdais", "ku_TR": "Cùrdais (An Tuirc)", @@ -403,6 +418,7 @@ "mr_IN": "Marathi (Na h-Innseachan)", "ms": "Malaidhis", "ms_BN": "Malaidhis (Brùnaigh)", + "ms_ID": "Malaidhis (Na h-Innd-innse)", "ms_MY": "Malaidhis (Malaidhsea)", "ms_SG": "Malaidhis (Singeapòr)", "mt": "Maltais", @@ -483,6 +499,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rubhanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabais)", + "sd_Arab_PK": "Sindhi (Arabais, Pagastàn)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, Na h-Innseachan)", "sd_PK": "Sindhi (Pagastàn)", "se": "Sàmais Thuathach", "se_FI": "Sàmais Thuathach (An Fhionnlann)", @@ -524,6 +544,10 @@ "sr_ME": "Sèirbis (Am Monadh Neagrach)", "sr_RS": "Sèirbis (An t-Sèirb)", "sr_XK": "Sèirbis (A’ Chosobho)", + "su": "Cànan Sunda", + "su_ID": "Cànan Sunda (Na h-Innd-innse)", + "su_Latn": "Cànan Sunda (Laideann)", + "su_Latn_ID": "Cànan Sunda (Laideann, Na h-Innd-innse)", "sv": "Suainis", "sv_AX": "Suainis (Na h-Eileanan Åland)", "sv_FI": "Suainis (An Fhionnlann)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gl.json b/src/Symfony/Component/Intl/Resources/data/locales/gl.json index db0058a4ffd4..c8b3996184ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -365,6 +365,8 @@ "ko_KP": "coreano (Corea do Norte)", "ko_KR": "coreano (Corea do Sur)", "ks": "caxemirés", + "ks_Arab": "caxemirés (árabe)", + "ks_Arab_IN": "caxemirés (árabe, A India)", "ks_IN": "caxemirés (A India)", "ku": "kurdo", "ku_TR": "kurdo (Turquía)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (A India)", "ms": "malaio", "ms_BN": "malaio (Brunei)", + "ms_ID": "malaio (Indonesia)", "ms_MY": "malaio (Malaisia)", "ms_SG": "malaio (Singapur)", "mt": "maltés", @@ -483,6 +486,10 @@ "rw": "kiñaruanda", "rw_RW": "kiñaruanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (árabe)", + "sd_Arab_PK": "sindhi (árabe, Paquistán)", + "sd_Deva": "sindhi (devanágari)", + "sd_Deva_IN": "sindhi (devanágari, A India)", "sd_PK": "sindhi (Paquistán)", "se": "saami setentrional", "se_FI": "saami setentrional (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "serbio (Montenegro)", "sr_RS": "serbio (Serbia)", "sr_XK": "serbio (Kosovo)", + "su": "sundanés", + "su_ID": "sundanés (Indonesia)", + "su_Latn": "sundanés (latino)", + "su_Latn_ID": "sundanés (latino, Indonesia)", "sv": "sueco", "sv_AX": "sueco (Illas Åland)", "sv_FI": "sueco (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gu.json b/src/Symfony/Component/Intl/Resources/data/locales/gu.json index 004ba8226635..65726bf3ccec 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -365,6 +365,8 @@ "ko_KP": "કોરિયન (ઉત્તર કોરિયા)", "ko_KR": "કોરિયન (દક્ષિણ કોરિયા)", "ks": "કાશ્મીરી", + "ks_Arab": "કાશ્મીરી (અરબી)", + "ks_Arab_IN": "કાશ્મીરી (અરબી, ભારત)", "ks_IN": "કાશ્મીરી (ભારત)", "ku": "કુર્દિશ", "ku_TR": "કુર્દિશ (તુર્કી)", @@ -403,6 +405,7 @@ "mr_IN": "મરાઠી (ભારત)", "ms": "મલય", "ms_BN": "મલય (બ્રુનેઇ)", + "ms_ID": "મલય (ઇન્ડોનેશિયા)", "ms_MY": "મલય (મલેશિયા)", "ms_SG": "મલય (સિંગાપુર)", "mt": "માલ્ટિઝ", @@ -483,6 +486,10 @@ "rw": "કિન્યારવાન્ડા", "rw_RW": "કિન્યારવાન્ડા (રવાંડા)", "sd": "સિંધી", + "sd_Arab": "સિંધી (અરબી)", + "sd_Arab_PK": "સિંધી (અરબી, પાકિસ્તાન)", + "sd_Deva": "સિંધી (દેવનાગરી)", + "sd_Deva_IN": "સિંધી (દેવનાગરી, ભારત)", "sd_PK": "સિંધી (પાકિસ્તાન)", "se": "ઉત્તરી સામી", "se_FI": "ઉત્તરી સામી (ફિનલેન્ડ)", @@ -524,6 +531,10 @@ "sr_ME": "સર્બિયન (મૉન્ટેનેગ્રો)", "sr_RS": "સર્બિયન (સર્બિયા)", "sr_XK": "સર્બિયન (કોસોવો)", + "su": "સંડેનીઝ", + "su_ID": "સંડેનીઝ (ઇન્ડોનેશિયા)", + "su_Latn": "સંડેનીઝ (લેટિન)", + "su_Latn_ID": "સંડેનીઝ (લેટિન, ઇન્ડોનેશિયા)", "sv": "સ્વીડિશ", "sv_AX": "સ્વીડિશ (ઑલેન્ડ આઇલેન્ડ્સ)", "sv_FI": "સ્વીડિશ (ફિનલેન્ડ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index 32913eebd796..2f05ec31ee20 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -13,6 +13,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)", @@ -114,6 +115,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)", @@ -123,15 +125,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)", @@ -142,6 +148,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)", @@ -180,6 +187,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)", @@ -200,11 +208,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)", @@ -245,6 +255,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)", @@ -304,6 +315,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)", @@ -353,6 +365,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)", @@ -391,6 +405,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", @@ -399,6 +414,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", @@ -442,6 +458,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)", @@ -467,6 +484,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)", @@ -490,19 +511,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", @@ -561,11 +591,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/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index cd2a593b854b..a552204e63f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -365,6 +365,8 @@ "ko_KP": "קוריאנית (קוריאה הצפונית)", "ko_KR": "קוריאנית (קוריאה הדרומית)", "ks": "קשמירית", + "ks_Arab": "קשמירית (ערבי)", + "ks_Arab_IN": "קשמירית (ערבי, הודו)", "ks_IN": "קשמירית (הודו)", "ku": "כורדית", "ku_TR": "כורדית (טורקיה)", @@ -403,6 +405,7 @@ "mr_IN": "מראטהי (הודו)", "ms": "מלאית", "ms_BN": "מלאית (ברוניי)", + "ms_ID": "מלאית (אינדונזיה)", "ms_MY": "מלאית (מלזיה)", "ms_SG": "מלאית (סינגפור)", "mt": "מלטית", @@ -483,6 +486,10 @@ "rw": "קנירואנדית", "rw_RW": "קנירואנדית (רואנדה)", "sd": "סינדהית", + "sd_Arab": "סינדהית (ערבי)", + "sd_Arab_PK": "סינדהית (ערבי, פקיסטן)", + "sd_Deva": "סינדהית (דוואנגרי)", + "sd_Deva_IN": "סינדהית (דוואנגרי, הודו)", "sd_PK": "סינדהית (פקיסטן)", "se": "סמי צפונית", "se_FI": "סמי צפונית (פינלנד)", @@ -524,6 +531,10 @@ "sr_ME": "סרבית (מונטנגרו)", "sr_RS": "סרבית (סרביה)", "sr_XK": "סרבית (קוסובו)", + "su": "סונדנזית", + "su_ID": "סונדנזית (אינדונזיה)", + "su_Latn": "סונדנזית (לטיני)", + "su_Latn_ID": "סונדנזית (לטיני, אינדונזיה)", "sv": "שוודית", "sv_AX": "שוודית (איי אולנד)", "sv_FI": "שוודית (פינלנד)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index 0059725cabee..ca4d72105d55 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -365,6 +365,8 @@ "ko_KP": "कोरियाई (उत्तर कोरिया)", "ko_KR": "कोरियाई (दक्षिण कोरिया)", "ks": "कश्मीरी", + "ks_Arab": "कश्मीरी (अरबी)", + "ks_Arab_IN": "कश्मीरी (अरबी, भारत)", "ks_IN": "कश्मीरी (भारत)", "ku": "कुर्दिश", "ku_TR": "कुर्दिश (तुर्की)", @@ -403,6 +405,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलय", "ms_BN": "मलय (ब्रूनेई)", + "ms_ID": "मलय (इंडोनेशिया)", "ms_MY": "मलय (मलेशिया)", "ms_SG": "मलय (सिंगापुर)", "mt": "माल्टीज़", @@ -483,6 +486,10 @@ "rw": "किन्यारवांडा", "rw_RW": "किन्यारवांडा (रवांडा)", "sd": "सिंधी", + "sd_Arab": "सिंधी (अरबी)", + "sd_Arab_PK": "सिंधी (अरबी, पाकिस्तान)", + "sd_Deva": "सिंधी (देवनागरी)", + "sd_Deva_IN": "सिंधी (देवनागरी, भारत)", "sd_PK": "सिंधी (पाकिस्तान)", "se": "नॉर्दन सामी", "se_FI": "नॉर्दन सामी (फ़िनलैंड)", @@ -524,6 +531,10 @@ "sr_ME": "सर्बियाई (मोंटेनेग्रो)", "sr_RS": "सर्बियाई (सर्बिया)", "sr_XK": "सर्बियाई (कोसोवो)", + "su": "सुंडानी", + "su_ID": "सुंडानी (इंडोनेशिया)", + "su_Latn": "सुंडानी (लैटिन)", + "su_Latn_ID": "सुंडानी (लैटिन, इंडोनेशिया)", "sv": "स्वीडिश", "sv_AX": "स्वीडिश (एलैंड द्वीपसमूह)", "sv_FI": "स्वीडिश (फ़िनलैंड)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index ba7e071b56df..6a2f35c71c41 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -365,6 +365,8 @@ "ko_KP": "korejski (Sjeverna Koreja)", "ko_KR": "korejski (Južna Koreja)", "ks": "kašmirski", + "ks_Arab": "kašmirski (arapsko pismo)", + "ks_Arab_IN": "kašmirski (arapsko pismo, Indija)", "ks_IN": "kašmirski (Indija)", "ku": "kurdski", "ku_TR": "kurdski (Turska)", @@ -403,6 +405,7 @@ "mr_IN": "marathski (Indija)", "ms": "malajski", "ms_BN": "malajski (Brunej)", + "ms_ID": "malajski (Indonezija)", "ms_MY": "malajski (Malezija)", "ms_SG": "malajski (Singapur)", "mt": "malteški", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindski", + "sd_Arab": "sindski (arapsko pismo)", + "sd_Arab_PK": "sindski (arapsko pismo, Pakistan)", + "sd_Deva": "sindski (devangari pismo)", + "sd_Deva_IN": "sindski (devangari pismo, Indija)", "sd_PK": "sindski (Pakistan)", "se": "sjeverni sami", "se_FI": "sjeverni sami (Finska)", @@ -524,6 +531,10 @@ "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", "sr_XK": "srpski (Kosovo)", + "su": "sundanski", + "su_ID": "sundanski (Indonezija)", + "su_Latn": "sundanski (latinica)", + "su_Latn_ID": "sundanski (latinica, Indonezija)", "sv": "švedski", "sv_AX": "švedski (Ålandski otoci)", "sv_FI": "švedski (Finska)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hu.json b/src/Symfony/Component/Intl/Resources/data/locales/hu.json index 400f12e2835c..c93195a5745e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -365,6 +365,8 @@ "ko_KP": "koreai (Észak-Korea)", "ko_KR": "koreai (Dél-Korea)", "ks": "kasmíri", + "ks_Arab": "kasmíri (Arab)", + "ks_Arab_IN": "kasmíri (Arab, India)", "ks_IN": "kasmíri (India)", "ku": "kurd", "ku_TR": "kurd (Törökország)", @@ -403,6 +405,7 @@ "mr_IN": "maráthi (India)", "ms": "maláj", "ms_BN": "maláj (Brunei)", + "ms_ID": "maláj (Indonézia)", "ms_MY": "maláj (Malajzia)", "ms_SG": "maláj (Szingapúr)", "mt": "máltai", @@ -483,6 +486,10 @@ "rw": "kinyarvanda", "rw_RW": "kinyarvanda (Ruanda)", "sd": "szindhi", + "sd_Arab": "szindhi (Arab)", + "sd_Arab_PK": "szindhi (Arab, Pakisztán)", + "sd_Deva": "szindhi (Devanagári)", + "sd_Deva_IN": "szindhi (Devanagári, India)", "sd_PK": "szindhi (Pakisztán)", "se": "északi számi", "se_FI": "északi számi (Finnország)", @@ -524,6 +531,10 @@ "sr_ME": "szerb (Montenegró)", "sr_RS": "szerb (Szerbia)", "sr_XK": "szerb (Koszovó)", + "su": "szundanéz", + "su_ID": "szundanéz (Indonézia)", + "su_Latn": "szundanéz (Latin)", + "su_Latn_ID": "szundanéz (Latin, Indonézia)", "sv": "svéd", "sv_AX": "svéd (Åland-szigetek)", "sv_FI": "svéd (Finnország)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hy.json b/src/Symfony/Component/Intl/Resources/data/locales/hy.json index d563070909ba..613f342c27fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -365,6 +365,8 @@ "ko_KP": "կորեերեն (Հյուսիսային Կորեա)", "ko_KR": "կորեերեն (Հարավային Կորեա)", "ks": "քաշմիրերեն", + "ks_Arab": "քաշմիրերեն (արաբական)", + "ks_Arab_IN": "քաշմիրերեն (արաբական, Հնդկաստան)", "ks_IN": "քաշմիրերեն (Հնդկաստան)", "ku": "քրդերեն", "ku_TR": "քրդերեն (Թուրքիա)", @@ -403,6 +405,7 @@ "mr_IN": "մարաթի (Հնդկաստան)", "ms": "մալայերեն", "ms_BN": "մալայերեն (Բրունեյ)", + "ms_ID": "մալայերեն (Ինդոնեզիա)", "ms_MY": "մալայերեն (Մալայզիա)", "ms_SG": "մալայերեն (Սինգապուր)", "mt": "մալթայերեն", @@ -483,6 +486,10 @@ "rw": "կինյառուանդա", "rw_RW": "կինյառուանդա (Ռուանդա)", "sd": "սինդհի", + "sd_Arab": "սինդհի (արաբական)", + "sd_Arab_PK": "սինդհի (արաբական, Պակիստան)", + "sd_Deva": "սինդհի (դեւանագարի)", + "sd_Deva_IN": "սինդհի (դեւանագարի, Հնդկաստան)", "sd_PK": "սինդհի (Պակիստան)", "se": "հյուսիսային սաամի", "se_FI": "հյուսիսային սաամի (Ֆինլանդիա)", @@ -524,6 +531,10 @@ "sr_ME": "սերբերեն (Չեռնոգորիա)", "sr_RS": "սերբերեն (Սերբիա)", "sr_XK": "սերբերեն (Կոսովո)", + "su": "սունդաներեն", + "su_ID": "սունդաներեն (Ինդոնեզիա)", + "su_Latn": "սունդաներեն (լատինական)", + "su_Latn_ID": "սունդաներեն (լատինական, Ինդոնեզիա)", "sv": "շվեդերեն", "sv_AX": "շվեդերեն (Ալանդյան կղզիներ)", "sv_FI": "շվեդերեն (Ֆինլանդիա)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ia.json b/src/Symfony/Component/Intl/Resources/data/locales/ia.json index 05207a48f33a..834b83624b54 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ia.json @@ -318,6 +318,8 @@ "ko_KP": "coreano (Corea del Nord)", "ko_KR": "coreano (Corea del Sud)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabe)", + "ks_Arab_IN": "kashmiri (arabe, India)", "ks_IN": "kashmiri (India)", "ku": "kurdo", "ku_TR": "kurdo (Turchia)", @@ -352,6 +354,7 @@ "mr": "marathi", "mr_IN": "marathi (India)", "ms": "malay", + "ms_ID": "malay (Indonesia)", "ms_MY": "malay (Malaysia)", "mt": "maltese", "mt_MT": "maltese (Malta)", @@ -421,6 +424,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabe)", + "sd_Arab_PK": "sindhi (arabe, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "sami del nord", "se_FI": "sami del nord (Finlandia)", @@ -459,6 +466,10 @@ "sr_ME": "serbo (Montenegro)", "sr_RS": "serbo (Serbia)", "sr_XK": "serbo (Kosovo)", + "su": "sundanese", + "su_ID": "sundanese (Indonesia)", + "su_Latn": "sundanese (latin)", + "su_Latn_ID": "sundanese (latin, Indonesia)", "sv": "svedese", "sv_AX": "svedese (Insulas Åland)", "sv_FI": "svedese (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/id.json b/src/Symfony/Component/Intl/Resources/data/locales/id.json index aab75440cae6..68c025a79e71 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -365,6 +365,8 @@ "ko_KP": "Korea (Korea Utara)", "ko_KR": "Korea (Korea Selatan)", "ks": "Kashmir", + "ks_Arab": "Kashmir (Arab)", + "ks_Arab_IN": "Kashmir (Arab, India)", "ks_IN": "Kashmir (India)", "ku": "Kurdi", "ku_TR": "Kurdi (Turki)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (India)", "ms": "Melayu", "ms_BN": "Melayu (Brunei)", + "ms_ID": "Melayu (Indonesia)", "ms_MY": "Melayu (Malaysia)", "ms_SG": "Melayu (Singapura)", "mt": "Malta", @@ -483,6 +486,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "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 Utara", "se_FI": "Sami Utara (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "Serbia (Montenegro)", "sr_RS": "Serbia (Serbia)", "sr_XK": "Serbia (Kosovo)", + "su": "Sunda", + "su_ID": "Sunda (Indonesia)", + "su_Latn": "Sunda (Latin)", + "su_Latn_ID": "Sunda (Latin, Indonesia)", "sv": "Swedia", "sv_AX": "Swedia (Kepulauan Aland)", "sv_FI": "Swedia (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ig.json b/src/Symfony/Component/Intl/Resources/data/locales/ig.json index f21e43395df1..0da5074238e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ig.json @@ -5,25 +5,39 @@ "am": "Amariikị", "am_ET": "Amariikị (Ethiopia)", "ar": "Arabiikị", + "ar_AE": "Arabiikị (Obodo United Arab Emirates)", + "ar_BH": "Arabiikị (Obodo Bahrain)", "ar_DJ": "Arabiikị (Djibouti)", "ar_DZ": "Arabiikị (Algeria)", "ar_EG": "Arabiikị (Egypt)", "ar_EH": "Arabiikị (Ọdịda Anyanwụ Sahara)", "ar_ER": "Arabiikị (Eritrea)", + "ar_IL": "Arabiikị (Obodo Israel)", + "ar_IQ": "Arabiikị (Obodo Iraq)", + "ar_JO": "Arabiikị (Obodo Jordan)", "ar_KM": "Arabiikị (Comorosu)", + "ar_KW": "Arabiikị (Obodo Kuwait)", + "ar_LB": "Arabiikị (Obodo Lebanon)", "ar_LY": "Arabiikị (Libyia)", "ar_MA": "Arabiikị (Morocco)", "ar_MR": "Arabiikị (Mauritania)", + "ar_OM": "Arabiikị (Obodo Oman)", + "ar_PS": "Arabiikị (Obodo dị iche iche dị n’okpuru mba Palestine)", + "ar_QA": "Arabiikị (Obodo Qatar)", + "ar_SA": "Arabiikị (Obodo Saudi Arabia)", "ar_SD": "Arabiikị (Sudan)", "ar_SO": "Arabiikị (Somalia)", "ar_SS": "Arabiikị (South Sudan)", + "ar_SY": "Arabiikị (Obodo Syria)", "ar_TD": "Arabiikị (Chad)", "ar_TN": "Arabiikị (Tunisia)", + "ar_YE": "Arabiikị (Obodo Yemen)", "be": "Belaruusu", "be_BY": "Belaruusu (Belarus)", "bg": "Bọlụgarịa", "bg_BG": "Bọlụgarịa (Bulgaria)", "bn": "Bengali", + "bn_BD": "Bengali (Obodo Bangladesh)", "bn_IN": "Bengali (Mba India)", "cs": "Cheekị", "cs_CZ": "Cheekị (Czechia)", @@ -36,8 +50,10 @@ "de_LI": "Asụsụ Jaman (Liechtenstein)", "de_LU": "Asụsụ Jaman (Luxembourg)", "el": "Giriikị", + "el_CY": "Giriikị (Obodo Cyprus)", "el_GR": "Giriikị (Greece)", "en": "Asụsụ Bekee", + "en_AE": "Asụsụ Bekee (Obodo United Arab Emirates)", "en_AG": "Asụsụ Bekee (Antigua & Barbuda)", "en_AI": "Asụsụ Bekee (Anguilla)", "en_AS": "Asụsụ Bekee (American Samoa)", @@ -56,6 +72,7 @@ "en_CK": "Asụsụ Bekee (Agwaetiti Cook)", "en_CM": "Asụsụ Bekee (Cameroon)", "en_CX": "Asụsụ Bekee (Agwaetiti Christmas)", + "en_CY": "Asụsụ Bekee (Obodo Cyprus)", "en_DE": "Asụsụ Bekee (Mba Germany)", "en_DG": "Asụsụ Bekee (Diego Garcia)", "en_DK": "Asụsụ Bekee (Denmark)", @@ -73,7 +90,9 @@ "en_GM": "Asụsụ Bekee (Gambia)", "en_GU": "Asụsụ Bekee (Guam)", "en_GY": "Asụsụ Bekee (Guyana)", + "en_HK": "Asụsụ Bekee (Honk Kong mba nwere ndozi pụrụ iche n’obodo China)", "en_IE": "Asụsụ Bekee (Ireland)", + "en_IL": "Asụsụ Bekee (Obodo Israel)", "en_IM": "Asụsụ Bekee (Isle of Man)", "en_IN": "Asụsụ Bekee (Mba India)", "en_IO": "Asụsụ Bekee (British Indian Ocean Territory)", @@ -88,11 +107,13 @@ "en_LS": "Asụsụ Bekee (Lesotho)", "en_MG": "Asụsụ Bekee (Madagaskar)", "en_MH": "Asụsụ Bekee (Agwaetiti Marshall)", + "en_MO": "Asụsụ Bekee (Obodo Macao nwere ndozi pụrụ iche na mba China)", "en_MP": "Asụsụ Bekee (Agwaetiti Northern Mariana)", "en_MS": "Asụsụ Bekee (Montserrat)", "en_MT": "Asụsụ Bekee (Malta)", "en_MU": "Asụsụ Bekee (Mauritius)", "en_MW": "Asụsụ Bekee (Malawi)", + "en_MY": "Asụsụ Bekee (Malaysia)", "en_NA": "Asụsụ Bekee (Namibia)", "en_NF": "Asụsụ Bekee (Agwaetiti Norfolk)", "en_NG": "Asụsụ Bekee (Naịjịrịa)", @@ -102,6 +123,7 @@ "en_NZ": "Asụsụ Bekee (New Zealand)", "en_PG": "Asụsụ Bekee (Papua New Guinea)", "en_PH": "Asụsụ Bekee (Philippines)", + "en_PK": "Asụsụ Bekee (Obodo Pakistan)", "en_PN": "Asụsụ Bekee (Agwaetiti Pitcairn)", "en_PR": "Asụsụ Bekee (Puerto Rico)", "en_PW": "Asụsụ Bekee (Palau)", @@ -163,6 +185,8 @@ "es_UY": "Asụsụ Spanish (Uruguay)", "es_VE": "Asụsụ Spanish (Venezuela)", "fa": "Peshan", + "fa_AF": "Peshan (Mba Afghanistan)", + "fa_IR": "Peshan (Obodo Iran)", "fr": "Asụsụ Fụrench", "fr_BE": "Asụsụ Fụrench (Belgium)", "fr_BF": "Asụsụ Fụrench (Burkina Faso)", @@ -203,6 +227,7 @@ "fr_RW": "Asụsụ Fụrench (Rwanda)", "fr_SC": "Asụsụ Fụrench (Seychelles)", "fr_SN": "Asụsụ Fụrench (Senegal)", + "fr_SY": "Asụsụ Fụrench (Obodo Syria)", "fr_TD": "Asụsụ Fụrench (Chad)", "fr_TG": "Asụsụ Fụrench (Togo)", "fr_TN": "Asụsụ Fụrench (Tunisia)", @@ -218,6 +243,7 @@ "hu": "Magịya", "hu_HU": "Magịya (Hungary)", "id": "Indonisia", + "id_ID": "Indonisia (Indonesia)", "ig": "Asụsụ Igbo", "ig_NG": "Asụsụ Igbo (Naịjịrịa)", "it": "Asụsụ Italian", @@ -228,13 +254,22 @@ "ja": "Asụsụ Japanese", "ja_JP": "Asụsụ Japanese (Mba Japan)", "jv": "Java", + "jv_ID": "Java (Indonesia)", "km": "Keme, Etiti", + "km_KH": "Keme, Etiti (Cambodia)", "ko": "Koria", + "ko_KP": "Koria (Mba Ugwu Korea)", + "ko_KR": "Koria (Mba South Korea)", "ms": "Maleyi", + "ms_BN": "Maleyi (Brunei)", + "ms_ID": "Maleyi (Indonesia)", + "ms_MY": "Maleyi (Malaysia)", "ms_SG": "Maleyi (Singapore)", "my": "Mịanma", + "my_MM": "Mịanma (Myanmar [Burma])", "ne": "Nepali", "ne_IN": "Nepali (Mba India)", + "ne_NP": "Nepali (Obodo Nepal)", "nl": "Dọọch", "nl_AW": "Dọọch (Aruba)", "nl_BE": "Dọọch (Belgium)", @@ -245,7 +280,9 @@ "nl_SX": "Dọọch (Sint Maarten)", "pa": "Punjabi", "pa_Arab": "Punjabi (Mkpụrụ Okwu Arabic)", + "pa_Arab_PK": "Punjabi (Mkpụrụ Okwu Arabic, Obodo Pakistan)", "pa_IN": "Punjabi (Mba India)", + "pa_PK": "Punjabi (Obodo Pakistan)", "pl": "Poliishi", "pl_PL": "Poliishi (Poland)", "pt": "Asụsụ Portuguese", @@ -256,6 +293,7 @@ "pt_GQ": "Asụsụ Portuguese (Equatorial Guinea)", "pt_GW": "Asụsụ Portuguese (Guinea-Bissau)", "pt_LU": "Asụsụ Portuguese (Luxembourg)", + "pt_MO": "Asụsụ Portuguese (Obodo Macao nwere ndozi pụrụ iche na mba China)", "pt_MZ": "Asụsụ Portuguese (Mozambik)", "pt_PT": "Asụsụ Portuguese (Portugal)", "pt_ST": "Asụsụ Portuguese (São Tomé & Príncipe)", @@ -265,6 +303,8 @@ "ro_RO": "Rumenia (Romania)", "ru": "Asụsụ Russian", "ru_BY": "Asụsụ Russian (Belarus)", + "ru_KG": "Asụsụ Russian (Obodo Kyrgyzstan)", + "ru_KZ": "Asụsụ Russian (Obodo Kazakhstan)", "ru_MD": "Asụsụ Russian (Moldova)", "ru_RU": "Asụsụ Russian (Mba Russia)", "ru_UA": "Asụsụ Russian (Ukraine)", @@ -281,14 +321,19 @@ "sv_SE": "Sụwidiishi (Sweden)", "ta": "Tamụlụ", "ta_IN": "Tamụlụ (Mba India)", + "ta_LK": "Tamụlụ (Obodo Sri Lanka)", + "ta_MY": "Tamụlụ (Malaysia)", "ta_SG": "Tamụlụ (Singapore)", "th": "Taị", "th_TH": "Taị (Thailand)", "tr": "Tọkiishi", + "tr_CY": "Tọkiishi (Obodo Cyprus)", + "tr_TR": "Tọkiishi (Obodo Turkey)", "uk": "Ukureenị", "uk_UA": "Ukureenị (Ukraine)", "ur": "Urudu", "ur_IN": "Urudu (Mba India)", + "ur_PK": "Urudu (Obodo Pakistan)", "vi": "Viyetịnaamụ", "vi_VN": "Viyetịnaamụ (Vietnam)", "yo": "Yoruba", @@ -296,11 +341,19 @@ "yo_NG": "Yoruba (Naịjịrịa)", "zh": "Mandarịịnị", "zh_CN": "Mandarịịnị (Mba China)", + "zh_HK": "Mandarịịnị (Honk Kong mba nwere ndozi pụrụ iche n’obodo China)", "zh_Hans": "Mandarịịnị (Nke dị mfe)", "zh_Hans_CN": "Mandarịịnị (Nke dị mfe, Mba China)", + "zh_Hans_HK": "Mandarịịnị (Nke dị mfe, Honk Kong mba nwere ndozi pụrụ iche n’obodo China)", + "zh_Hans_MO": "Mandarịịnị (Nke dị mfe, Obodo Macao nwere ndozi pụrụ iche na mba China)", "zh_Hans_SG": "Mandarịịnị (Nke dị mfe, Singapore)", "zh_Hant": "Mandarịịnị (Izugbe)", + "zh_Hant_HK": "Mandarịịnị (Izugbe, Honk Kong mba nwere ndozi pụrụ iche n’obodo China)", + "zh_Hant_MO": "Mandarịịnị (Izugbe, Obodo Macao nwere ndozi pụrụ iche na mba China)", + "zh_Hant_TW": "Mandarịịnị (Izugbe, Obodo Taiwan)", + "zh_MO": "Mandarịịnị (Obodo Macao nwere ndozi pụrụ iche na mba China)", "zh_SG": "Mandarịịnị (Singapore)", + "zh_TW": "Mandarịịnị (Obodo Taiwan)", "zu": "Zulu", "zu_ZA": "Zulu (South Africa)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/is.json b/src/Symfony/Component/Intl/Resources/data/locales/is.json index aa65e552c76d..57d78c5389d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -365,6 +365,8 @@ "ko_KP": "kóreska (Norður-Kórea)", "ko_KR": "kóreska (Suður-Kórea)", "ks": "kasmírska", + "ks_Arab": "kasmírska (arabískt)", + "ks_Arab_IN": "kasmírska (arabískt, Indland)", "ks_IN": "kasmírska (Indland)", "ku": "kúrdíska", "ku_TR": "kúrdíska (Tyrkland)", @@ -403,6 +405,7 @@ "mr_IN": "maratí (Indland)", "ms": "malaíska", "ms_BN": "malaíska (Brúnei)", + "ms_ID": "malaíska (Indónesía)", "ms_MY": "malaíska (Malasía)", "ms_SG": "malaíska (Singapúr)", "mt": "maltneska", @@ -483,6 +486,10 @@ "rw": "kínjarvanda", "rw_RW": "kínjarvanda (Rúanda)", "sd": "sindí", + "sd_Arab": "sindí (arabískt)", + "sd_Arab_PK": "sindí (arabískt, Pakistan)", + "sd_Deva": "sindí (devanagari)", + "sd_Deva_IN": "sindí (devanagari, Indland)", "sd_PK": "sindí (Pakistan)", "se": "norðursamíska", "se_FI": "norðursamíska (Finnland)", @@ -524,6 +531,10 @@ "sr_ME": "serbneska (Svartfjallaland)", "sr_RS": "serbneska (Serbía)", "sr_XK": "serbneska (Kósóvó)", + "su": "súndanska", + "su_ID": "súndanska (Indónesía)", + "su_Latn": "súndanska (latneskt)", + "su_Latn_ID": "súndanska (latneskt, Indónesía)", "sv": "sænska", "sv_AX": "sænska (Álandseyjar)", "sv_FI": "sænska (Finnland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/it.json b/src/Symfony/Component/Intl/Resources/data/locales/it.json index da22b42b0cee..41b8145da73d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -365,6 +365,8 @@ "ko_KP": "coreano (Corea del Nord)", "ko_KR": "coreano (Corea del Sud)", "ks": "kashmiri", + "ks_Arab": "kashmiri (arabo)", + "ks_Arab_IN": "kashmiri (arabo, India)", "ks_IN": "kashmiri (India)", "ku": "curdo", "ku_TR": "curdo (Turchia)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (India)", "ms": "malese", "ms_BN": "malese (Brunei)", + "ms_ID": "malese (Indonesia)", "ms_MY": "malese (Malaysia)", "ms_SG": "malese (Singapore)", "mt": "maltese", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabo)", + "sd_Arab_PK": "sindhi (arabo, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "sami del nord", "se_FI": "sami del nord (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "serbo (Montenegro)", "sr_RS": "serbo (Serbia)", "sr_XK": "serbo (Kosovo)", + "su": "sundanese", + "su_ID": "sundanese (Indonesia)", + "su_Latn": "sundanese (latino)", + "su_Latn_ID": "sundanese (latino, Indonesia)", "sv": "svedese", "sv_AX": "svedese (Isole Åland)", "sv_FI": "svedese (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ja.json b/src/Symfony/Component/Intl/Resources/data/locales/ja.json index 5081f13a6c30..a9da6713cbf1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -365,6 +365,8 @@ "ko_KP": "韓国語 (北朝鮮)", "ko_KR": "韓国語 (韓国)", "ks": "カシミール語", + "ks_Arab": "カシミール語 (アラビア文字)", + "ks_Arab_IN": "カシミール語 (アラビア文字、インド)", "ks_IN": "カシミール語 (インド)", "ku": "クルド語", "ku_TR": "クルド語 (トルコ)", @@ -403,6 +405,7 @@ "mr_IN": "マラーティー語 (インド)", "ms": "マレー語", "ms_BN": "マレー語 (ブルネイ)", + "ms_ID": "マレー語 (インドネシア)", "ms_MY": "マレー語 (マレーシア)", "ms_SG": "マレー語 (シンガポール)", "mt": "マルタ語", @@ -483,6 +486,10 @@ "rw": "キニアルワンダ語", "rw_RW": "キニアルワンダ語 (ルワンダ)", "sd": "シンド語", + "sd_Arab": "シンド語 (アラビア文字)", + "sd_Arab_PK": "シンド語 (アラビア文字、パキスタン)", + "sd_Deva": "シンド語 (デーバナーガリー文字)", + "sd_Deva_IN": "シンド語 (デーバナーガリー文字、インド)", "sd_PK": "シンド語 (パキスタン)", "se": "北サーミ語", "se_FI": "北サーミ語 (フィンランド)", @@ -524,6 +531,10 @@ "sr_ME": "セルビア語 (モンテネグロ)", "sr_RS": "セルビア語 (セルビア)", "sr_XK": "セルビア語 (コソボ)", + "su": "スンダ語", + "su_ID": "スンダ語 (インドネシア)", + "su_Latn": "スンダ語 (ラテン文字)", + "su_Latn_ID": "スンダ語 (ラテン文字、インドネシア)", "sv": "スウェーデン語", "sv_AX": "スウェーデン語 (オーランド諸島)", "sv_FI": "スウェーデン語 (フィンランド)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/jv.json b/src/Symfony/Component/Intl/Resources/data/locales/jv.json index 1f593a88f830..074202a8df37 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/jv.json @@ -1,8 +1,8 @@ { "Names": { - "af": "af", - "af_NA": "af (Namibia)", - "af_ZA": "af (Afrika Kidul)", + "af": "Afrika", + "af_NA": "Afrika (Namibia)", + "af_ZA": "Afrika (Afrika Kidul)", "ak": "Akan", "ak_GH": "Akan (Ghana)", "am": "Amharik", @@ -42,8 +42,8 @@ "az_Cyrl_AZ": "Azerbaijan (Sirilik, Azerbaijan)", "az_Latn": "Azerbaijan (Latin)", "az_Latn_AZ": "Azerbaijan (Latin, Azerbaijan)", - "be": "be", - "be_BY": "be (Bélarus)", + "be": "Belarus", + "be_BY": "Belarus (Bélarus)", "bg": "Bulgaria", "bg_BG": "Bulgaria (Bulgari)", "bm": "Bambara", @@ -54,12 +54,12 @@ "bo_CN": "Tibet (Tyongkok)", "br": "Breton", "br_FR": "Breton (Prancis)", - "bs": "bs", - "bs_BA": "bs (Bosnia lan Hèrségovina)", - "bs_Cyrl": "bs (Sirilik)", - "bs_Cyrl_BA": "bs (Sirilik, Bosnia lan Hèrségovina)", - "bs_Latn": "bs (Latin)", - "bs_Latn_BA": "bs (Latin, Bosnia lan Hèrségovina)", + "bs": "Bosnia lan Hercegovina", + "bs_BA": "Bosnia lan Hercegovina (Bosnia lan Hèrségovina)", + "bs_Cyrl": "Bosnia lan Hercegovina (Sirilik)", + "bs_Cyrl_BA": "Bosnia lan Hercegovina (Sirilik, Bosnia lan Hèrségovina)", + "bs_Latn": "Bosnia lan Hercegovina (Latin)", + "bs_Latn_BA": "Bosnia lan Hercegovina (Latin, Bosnia lan Hèrségovina)", "ca": "Katala", "ca_AD": "Katala (Andora)", "ca_ES": "Katala (Sepanyol)", @@ -356,6 +356,7 @@ "ko": "Korea", "ko_KR": "Korea (Koréa Kidul)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (hija’iyah)", "ku": "Kurdis", "ku_TR": "Kurdis (Turki)", "kw": "Kernowek", @@ -389,6 +390,7 @@ "mr": "Marathi", "ms": "Melayu", "ms_BN": "Melayu (Brunéi)", + "ms_ID": "Melayu (Indonésia)", "ms_MY": "Melayu (Malaysia)", "ms_SG": "Melayu (Singapura)", "mt": "Malta", @@ -420,8 +422,8 @@ "os_GE": "Ossetia (Géorgia)", "os_RU": "Ossetia (Rusia)", "pa": "Punjab", - "pa_Arab": "Punjab (Arab)", - "pa_Arab_PK": "Punjab (Arab, Pakistan)", + "pa_Arab": "Punjab (hija’iyah)", + "pa_Arab_PK": "Punjab (hija’iyah, Pakistan)", "pa_Guru": "Punjab (Gurmukhi)", "pa_PK": "Punjab (Pakistan)", "pl": "Polandia", @@ -463,6 +465,9 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (hija’iyah)", + "sd_Arab_PK": "Sindhi (hija’iyah, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", "sd_PK": "Sindhi (Pakistan)", "se": "Sami Sisih Lor", "se_FI": "Sami Sisih Lor (Finlan)", @@ -501,6 +506,10 @@ "sr_ME": "Serbia (Montenégro)", "sr_RS": "Serbia (Sèrbi)", "sr_XK": "Serbia (Kosovo)", + "su": "Sunda", + "su_ID": "Sunda (Indonésia)", + "su_Latn": "Sunda (Latin)", + "su_Latn_ID": "Sunda (Latin, Indonésia)", "sv": "Swedia", "sv_AX": "Swedia (Kapuloan Alan)", "sv_FI": "Swedia (Finlan)", @@ -539,8 +548,8 @@ "ur_PK": "Urdu (Pakistan)", "uz": "Uzbek", "uz_AF": "Uzbek (Afganistan)", - "uz_Arab": "Uzbek (Arab)", - "uz_Arab_AF": "Uzbek (Arab, Afganistan)", + "uz_Arab": "Uzbek (hija’iyah)", + "uz_Arab_AF": "Uzbek (hija’iyah, Afganistan)", "uz_Cyrl": "Uzbek (Sirilik)", "uz_Cyrl_UZ": "Uzbek (Sirilik, Usbèkistan)", "uz_Latn": "Uzbek (Latin)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ka.json b/src/Symfony/Component/Intl/Resources/data/locales/ka.json index c0ea1fa260bd..baacfc637fa1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -365,6 +365,8 @@ "ko_KP": "კორეული (ჩრდილოეთ კორეა)", "ko_KR": "კორეული (სამხრეთ კორეა)", "ks": "ქაშმირული", + "ks_Arab": "ქაშმირული (არაბული)", + "ks_Arab_IN": "ქაშმირული (არაბული, ინდოეთი)", "ks_IN": "ქაშმირული (ინდოეთი)", "ku": "ქურთული", "ku_TR": "ქურთული (თურქეთი)", @@ -403,6 +405,7 @@ "mr_IN": "მარათჰი (ინდოეთი)", "ms": "მალაიური", "ms_BN": "მალაიური (ბრუნეი)", + "ms_ID": "მალაიური (ინდონეზია)", "ms_MY": "მალაიური (მალაიზია)", "ms_SG": "მალაიური (სინგაპური)", "mt": "მალტური", @@ -483,6 +486,10 @@ "rw": "კინიარუანდა", "rw_RW": "კინიარუანდა (რუანდა)", "sd": "სინდჰური", + "sd_Arab": "სინდჰური (არაბული)", + "sd_Arab_PK": "სინდჰური (არაბული, პაკისტანი)", + "sd_Deva": "სინდჰური (დევანაგარი)", + "sd_Deva_IN": "სინდჰური (დევანაგარი, ინდოეთი)", "sd_PK": "სინდჰური (პაკისტანი)", "se": "ჩრდილოეთ საამური", "se_FI": "ჩრდილოეთ საამური (ფინეთი)", @@ -524,6 +531,10 @@ "sr_ME": "სერბული (მონტენეგრო)", "sr_RS": "სერბული (სერბეთი)", "sr_XK": "სერბული (კოსოვო)", + "su": "სუნდური", + "su_ID": "სუნდური (ინდონეზია)", + "su_Latn": "სუნდური (ლათინური)", + "su_Latn_ID": "სუნდური (ლათინური, ინდონეზია)", "sv": "შვედური", "sv_AX": "შვედური (ალანდის კუნძულები)", "sv_FI": "შვედური (ფინეთი)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ki.json b/src/Symfony/Component/Intl/Resources/data/locales/ki.json index f439120cc1a5..bd985ce97082 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/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 8ac16b895265..ab414b8cc9c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -365,6 +365,8 @@ "ko_KP": "корей тілі (Солтүстік Корея)", "ko_KR": "корей тілі (Оңтүстік Корея)", "ks": "кашмир тілі", + "ks_Arab": "кашмир тілі (араб жазуы)", + "ks_Arab_IN": "кашмир тілі (араб жазуы, Үндістан)", "ks_IN": "кашмир тілі (Үндістан)", "ku": "күрд тілі", "ku_TR": "күрд тілі (Түркия)", @@ -403,6 +405,7 @@ "mr_IN": "маратхи тілі (Үндістан)", "ms": "малай тілі", "ms_BN": "малай тілі (Бруней)", + "ms_ID": "малай тілі (Индонезия)", "ms_MY": "малай тілі (Малайзия)", "ms_SG": "малай тілі (Сингапур)", "mt": "мальта тілі", @@ -483,6 +486,10 @@ "rw": "киньяруанда тілі", "rw_RW": "киньяруанда тілі (Руанда)", "sd": "синдхи тілі", + "sd_Arab": "синдхи тілі (араб жазуы)", + "sd_Arab_PK": "синдхи тілі (араб жазуы, Пәкістан)", + "sd_Deva": "синдхи тілі (деванагари жазуы)", + "sd_Deva_IN": "синдхи тілі (деванагари жазуы, Үндістан)", "sd_PK": "синдхи тілі (Пәкістан)", "se": "солтүстік саам тілі", "se_FI": "солтүстік саам тілі (Финляндия)", @@ -524,6 +531,10 @@ "sr_ME": "серб тілі (Черногория)", "sr_RS": "серб тілі (Сербия)", "sr_XK": "серб тілі (Косово)", + "su": "сундан тілі", + "su_ID": "сундан тілі (Индонезия)", + "su_Latn": "сундан тілі (латын жазуы)", + "su_Latn_ID": "сундан тілі (латын жазуы, Индонезия)", "sv": "швед тілі", "sv_AX": "швед тілі (Аланд аралдары)", "sv_FI": "швед тілі (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index c94ca52d75c6..85adb65bc641 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -365,6 +365,8 @@ "ko_KP": "កូរ៉េ (កូរ៉េ​ខាង​ជើង)", "ko_KR": "កូរ៉េ (កូរ៉េ​ខាង​ត្បូង)", "ks": "កាស្មៀរ", + "ks_Arab": "កាស្មៀរ (អារ៉ាប់)", + "ks_Arab_IN": "កាស្មៀរ (អារ៉ាប់, ឥណ្ឌា)", "ks_IN": "កាស្មៀរ (ឥណ្ឌា)", "ku": "ឃឺដ", "ku_TR": "ឃឺដ (តួកគី)", @@ -403,6 +405,7 @@ "mr_IN": "ម៉ារ៉ាធី (ឥណ្ឌា)", "ms": "ម៉ាឡេ", "ms_BN": "ម៉ាឡេ (ព្រុយណេ)", + "ms_ID": "ម៉ាឡេ (ឥណ្ឌូណេស៊ី)", "ms_MY": "ម៉ាឡេ (ម៉ាឡេស៊ី)", "ms_SG": "ម៉ាឡេ (សិង្ហបុរី)", "mt": "ម៉ាល់តា", @@ -483,6 +486,10 @@ "rw": "គិនយ៉ាវ៉ាន់ដា", "rw_RW": "គិនយ៉ាវ៉ាន់ដា (រវ៉ាន់ដា)", "sd": "ស៊ីនឌី", + "sd_Arab": "ស៊ីនឌី (អារ៉ាប់)", + "sd_Arab_PK": "ស៊ីនឌី (អារ៉ាប់, ប៉ាគីស្ថាន)", + "sd_Deva": "ស៊ីនឌី (ដាវ៉ាន់ណាការិ)", + "sd_Deva_IN": "ស៊ីនឌី (ដាវ៉ាន់ណាការិ, ឥណ្ឌា)", "sd_PK": "ស៊ីនឌី (ប៉ាគីស្ថាន)", "se": "សាមីខាងជើង", "se_FI": "សាមីខាងជើង (ហ្វាំងឡង់)", @@ -524,6 +531,10 @@ "sr_ME": "ស៊ែប (ម៉ុងតេណេហ្គ្រោ)", "sr_RS": "ស៊ែប (សែប៊ី)", "sr_XK": "ស៊ែប (កូសូវ៉ូ)", + "su": "ស៊ូដង់", + "su_ID": "ស៊ូដង់ (ឥណ្ឌូណេស៊ី)", + "su_Latn": "ស៊ូដង់ (ឡាតាំង)", + "su_Latn_ID": "ស៊ូដង់ (ឡាតាំង, ឥណ្ឌូណេស៊ី)", "sv": "ស៊ុយអែត", "sv_AX": "ស៊ុយអែត (កោះ​អាឡង់)", "sv_FI": "ស៊ុយអែត (ហ្វាំងឡង់)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index dc1a7ddde920..4cc2f36dbbb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -365,6 +365,8 @@ "ko_KP": "ಕೊರಿಯನ್ (ಉತ್ತರ ಕೊರಿಯಾ)", "ko_KR": "ಕೊರಿಯನ್ (ದಕ್ಷಿಣ ಕೊರಿಯಾ)", "ks": "ಕಾಶ್ಮೀರಿ", + "ks_Arab": "ಕಾಶ್ಮೀರಿ (ಅರೇಬಿಕ್)", + "ks_Arab_IN": "ಕಾಶ್ಮೀರಿ (ಅರೇಬಿಕ್, ಭಾರತ)", "ks_IN": "ಕಾಶ್ಮೀರಿ (ಭಾರತ)", "ku": "ಕುರ್ದಿಷ್", "ku_TR": "ಕುರ್ದಿಷ್ (ಟರ್ಕಿ)", @@ -403,6 +405,7 @@ "mr_IN": "ಮರಾಠಿ (ಭಾರತ)", "ms": "ಮಲಯ್", "ms_BN": "ಮಲಯ್ (ಬ್ರೂನಿ)", + "ms_ID": "ಮಲಯ್ (ಇಂಡೋನೇಶಿಯಾ)", "ms_MY": "ಮಲಯ್ (ಮಲೇಶಿಯಾ)", "ms_SG": "ಮಲಯ್ (ಸಿಂಗಪುರ್)", "mt": "ಮಾಲ್ಟೀಸ್", @@ -483,6 +486,10 @@ "rw": "ಕಿನ್ಯಾರ್‌ವಾಂಡಾ", "rw_RW": "ಕಿನ್ಯಾರ್‌ವಾಂಡಾ (ರುವಾಂಡಾ)", "sd": "ಸಿಂಧಿ", + "sd_Arab": "ಸಿಂಧಿ (ಅರೇಬಿಕ್)", + "sd_Arab_PK": "ಸಿಂಧಿ (ಅರೇಬಿಕ್, ಪಾಕಿಸ್ತಾನ)", + "sd_Deva": "ಸಿಂಧಿ (ದೇವನಾಗರಿ)", + "sd_Deva_IN": "ಸಿಂಧಿ (ದೇವನಾಗರಿ, ಭಾರತ)", "sd_PK": "ಸಿಂಧಿ (ಪಾಕಿಸ್ತಾನ)", "se": "ಉತ್ತರ ಸಾಮಿ", "se_FI": "ಉತ್ತರ ಸಾಮಿ (ಫಿನ್‌ಲ್ಯಾಂಡ್)", @@ -524,6 +531,10 @@ "sr_ME": "ಸೆರ್ಬಿಯನ್ (ಮೊಂಟೆನೆಗ್ರೋ)", "sr_RS": "ಸೆರ್ಬಿಯನ್ (ಸೆರ್ಬಿಯಾ)", "sr_XK": "ಸೆರ್ಬಿಯನ್ (ಕೊಸೊವೊ)", + "su": "ಸುಂಡಾನೀಸ್", + "su_ID": "ಸುಂಡಾನೀಸ್ (ಇಂಡೋನೇಶಿಯಾ)", + "su_Latn": "ಸುಂಡಾನೀಸ್ (ಲ್ಯಾಟಿನ್)", + "su_Latn_ID": "ಸುಂಡಾನೀಸ್ (ಲ್ಯಾಟಿನ್, ಇಂಡೋನೇಶಿಯಾ)", "sv": "ಸ್ವೀಡಿಷ್", "sv_AX": "ಸ್ವೀಡಿಷ್ (ಆಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳು)", "sv_FI": "ಸ್ವೀಡಿಷ್ (ಫಿನ್‌ಲ್ಯಾಂಡ್)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index b6eccf3d0da5..379abe096792 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -365,6 +365,8 @@ "ko_KP": "한국어(북한)", "ko_KR": "한국어(대한민국)", "ks": "카슈미르어", + "ks_Arab": "카슈미르어(아랍 문자)", + "ks_Arab_IN": "카슈미르어(아랍 문자, 인도)", "ks_IN": "카슈미르어(인도)", "ku": "쿠르드어", "ku_TR": "쿠르드어(터키)", @@ -403,6 +405,7 @@ "mr_IN": "마라티어(인도)", "ms": "말레이어", "ms_BN": "말레이어(브루나이)", + "ms_ID": "말레이어(인도네시아)", "ms_MY": "말레이어(말레이시아)", "ms_SG": "말레이어(싱가포르)", "mt": "몰타어", @@ -483,6 +486,10 @@ "rw": "르완다어", "rw_RW": "르완다어(르완다)", "sd": "신디어", + "sd_Arab": "신디어(아랍 문자)", + "sd_Arab_PK": "신디어(아랍 문자, 파키스탄)", + "sd_Deva": "신디어(데바나가리 문자)", + "sd_Deva_IN": "신디어(데바나가리 문자, 인도)", "sd_PK": "신디어(파키스탄)", "se": "북부 사미어", "se_FI": "북부 사미어(핀란드)", @@ -524,6 +531,10 @@ "sr_ME": "세르비아어(몬테네그로)", "sr_RS": "세르비아어(세르비아)", "sr_XK": "세르비아어(코소보)", + "su": "순다어", + "su_ID": "순다어(인도네시아)", + "su_Latn": "순다어(로마자)", + "su_Latn_ID": "순다어(로마자, 인도네시아)", "sv": "스웨덴어", "sv_AX": "스웨덴어(올란드 제도)", "sv_FI": "스웨덴어(핀란드)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index d76a8eaf9d35..0394347aa2aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -356,6 +356,8 @@ "ko_KP": "کوریَن (شُمٲلی کورِیا)", "ko_KR": "کوریَن (جنوٗبی کورِیا)", "ks": "کٲشُر", + "ks_Arab": "کٲشُر (اَربی)", + "ks_Arab_IN": "کٲشُر (اَربی, ہِندوستان)", "ks_IN": "کٲشُر (ہِندوستان)", "ku": "کُردِش", "ku_TR": "کُردِش (تُرکی)", @@ -393,6 +395,7 @@ "mr_IN": "مَرٲٹھۍ (ہِندوستان)", "ms": "مَلَے", "ms_BN": "مَلَے (بُرنٔے)", + "ms_ID": "مَلَے (اِنڑونیشِیا)", "ms_MY": "مَلَے (مَلیشِیا)", "ms_SG": "مَلَے (سِنگاپوٗر)", "mt": "مَلتیٖس", @@ -471,6 +474,10 @@ "rw": "کِنیاوِندا", "rw_RW": "کِنیاوِندا (روٗوانڈا)", "sd": "سِندی", + "sd_Arab": "سِندی (اَربی)", + "sd_Arab_PK": "سِندی (اَربی, پاکِستان)", + "sd_Deva": "سِندی (دیوناگری)", + "sd_Deva_IN": "سِندی (دیوناگری, ہِندوستان)", "sd_PK": "سِندی (پاکِستان)", "se": "شُمٲلی سَمی", "se_FI": "شُمٲلی سَمی (فِنلینڑ)", @@ -507,6 +514,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/ku.json b/src/Symfony/Component/Intl/Resources/data/locales/ku.json index ea767897dcbf..22b885ee6ea1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ku.json @@ -264,7 +264,6 @@ "fr_LU": "frensî (Lûksembûrg)", "fr_MA": "frensî (Maroko)", "fr_MC": "frensî (Monako)", - "fr_MF": "frensî (MF)", "fr_MG": "frensî (Madagaskar)", "fr_ML": "frensî (Malî)", "fr_MQ": "frensî (Martinique)", @@ -342,6 +341,8 @@ "ko_KP": "koreyî (Korêya Bakur)", "ko_KR": "koreyî (Korêya Başûr)", "ks": "keşmîrî", + "ks_Arab": "keşmîrî (erebî)", + "ks_Arab_IN": "keşmîrî (erebî, Hindistan)", "ks_IN": "keşmîrî (Hindistan)", "ku": "kurdî", "ku_TR": "kurdî (Tirkiye)", @@ -378,6 +379,7 @@ "mr_IN": "maratî (Hindistan)", "ms": "malezî", "ms_BN": "malezî (Brûney)", + "ms_ID": "malezî (Îndonezya)", "ms_MY": "malezî (Malezya)", "ms_SG": "malezî (Singapûr)", "mt": "maltayî", @@ -445,6 +447,10 @@ "rw": "kînyariwandayî", "rw_RW": "kînyariwandayî (Rwanda)", "sd": "sindhî", + "sd_Arab": "sindhî (erebî)", + "sd_Arab_PK": "sindhî (erebî, Pakistan)", + "sd_Deva": "sindhî (devanagarî)", + "sd_Deva_IN": "sindhî (devanagarî, Hindistan)", "sd_PK": "sindhî (Pakistan)", "se": "samiya bakur", "se_FI": "samiya bakur (Fînlenda)", @@ -482,6 +488,10 @@ "sr_ME": "sirbî (Montenegro)", "sr_RS": "sirbî (Serbistan)", "sr_XK": "sirbî (Kosovo)", + "su": "sundanî", + "su_ID": "sundanî (Îndonezya)", + "su_Latn": "sundanî (latînî)", + "su_Latn_ID": "sundanî (latînî, Îndonezya)", "sv": "swêdî", "sv_FI": "swêdî (Fînlenda)", "sv_SE": "swêdî (Swêd)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ky.json b/src/Symfony/Component/Intl/Resources/data/locales/ky.json index 0dcd9054daa8..0601eca33d16 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -365,6 +365,8 @@ "ko_KP": "корейче (Түндүк Корея)", "ko_KR": "корейче (Түштүк Корея)", "ks": "кашмирче", + "ks_Arab": "кашмирче (Араб)", + "ks_Arab_IN": "кашмирче (Араб, Индия)", "ks_IN": "кашмирче (Индия)", "ku": "курдча", "ku_TR": "курдча (Түркия)", @@ -403,6 +405,7 @@ "mr_IN": "маратиче (Индия)", "ms": "малайча", "ms_BN": "малайча (Бруней)", + "ms_ID": "малайча (Индонезия)", "ms_MY": "малайча (Малайзия)", "ms_SG": "малайча (Сингапур)", "mt": "малтизче", @@ -483,6 +486,10 @@ "rw": "руандача", "rw_RW": "руандача (Руанда)", "sd": "синдхиче", + "sd_Arab": "синдхиче (Араб)", + "sd_Arab_PK": "синдхиче (Араб, Пакистан)", + "sd_Deva": "синдхиче (Деванагари)", + "sd_Deva_IN": "синдхиче (Деванагари, Индия)", "sd_PK": "синдхиче (Пакистан)", "se": "түндүк саамиче", "se_FI": "түндүк саамиче (Финляндия)", @@ -524,6 +531,10 @@ "sr_ME": "сербче (Черногория)", "sr_RS": "сербче (Сербия)", "sr_XK": "сербче (Косово)", + "su": "сунданча", + "su_ID": "сунданча (Индонезия)", + "su_Latn": "сунданча (Латын)", + "su_Latn_ID": "сунданча (Латын, Индонезия)", "sv": "шведче", "sv_AX": "шведче (Аланд аралдары)", "sv_FI": "шведче (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index f3ce93ebdd02..3c5d63d086ce 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -365,6 +365,8 @@ "ko_KP": "Koreanesch (Nordkorea)", "ko_KR": "Koreanesch (Südkorea)", "ks": "Kaschmiresch", + "ks_Arab": "Kaschmiresch (Arabesch)", + "ks_Arab_IN": "Kaschmiresch (Arabesch, Indien)", "ks_IN": "Kaschmiresch (Indien)", "ku": "Kurdesch", "ku_TR": "Kurdesch (Tierkei)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (Indien)", "ms": "Malaiesch", "ms_BN": "Malaiesch (Brunei)", + "ms_ID": "Malaiesch (Indonesien)", "ms_MY": "Malaiesch (Malaysia)", "ms_SG": "Malaiesch (Singapur)", "mt": "Maltesesch", @@ -483,6 +486,10 @@ "rw": "Ruandesch", "rw_RW": "Ruandesch (Ruanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabesch)", + "sd_Arab_PK": "Sindhi (Arabesch, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, Indien)", "sd_PK": "Sindhi (Pakistan)", "se": "Nordsamesch", "se_FI": "Nordsamesch (Finnland)", @@ -524,6 +531,10 @@ "sr_ME": "Serbesch (Montenegro)", "sr_RS": "Serbesch (Serbien)", "sr_XK": "Serbesch (Kosovo)", + "su": "Sundanesesch", + "su_ID": "Sundanesesch (Indonesien)", + "su_Latn": "Sundanesesch (Laténgesch)", + "su_Latn_ID": "Sundanesesch (Laténgesch, Indonesien)", "sv": "Schwedesch", "sv_AX": "Schwedesch (Ålandinselen)", "sv_FI": "Schwedesch (Finnland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lg.json b/src/Symfony/Component/Intl/Resources/data/locales/lg.json index 3937d29830ad..79799492e239 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 3ed687b2e121..f6349e383a34 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/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index 090ad7f291f2..bb5b722bf30a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -365,6 +365,8 @@ "ko_KP": "ເກົາຫລີ (ເກົາຫລີເໜືອ)", "ko_KR": "ເກົາຫລີ (ເກົາຫລີໃຕ້)", "ks": "ຄາສເມຍຣິ", + "ks_Arab": "ຄາສເມຍຣິ (ອາຣາບິກ)", + "ks_Arab_IN": "ຄາສເມຍຣິ (ອາຣາບິກ, ອິນເດຍ)", "ks_IN": "ຄາສເມຍຣິ (ອິນເດຍ)", "ku": "ເຄີດິສ", "ku_TR": "ເຄີດິສ (ເທີຄີ)", @@ -403,6 +405,7 @@ "mr_IN": "ມາຣາທີ (ອິນເດຍ)", "ms": "ມາເລ", "ms_BN": "ມາເລ (ບຣູໄນ)", + "ms_ID": "ມາເລ (ອິນໂດເນເຊຍ)", "ms_MY": "ມາເລ (ມາເລເຊຍ)", "ms_SG": "ມາເລ (ສິງກະໂປ)", "mt": "ມອລທີສ", @@ -483,6 +486,10 @@ "rw": "ຄິນຢາວານດາ", "rw_RW": "ຄິນຢາວານດາ (ຣວັນດາ)", "sd": "ສິນທິ", + "sd_Arab": "ສິນທິ (ອາຣາບິກ)", + "sd_Arab_PK": "ສິນທິ (ອາຣາບິກ, ປາກິດສະຖານ)", + "sd_Deva": "ສິນທິ (ດີວານາກາຣີ)", + "sd_Deva_IN": "ສິນທິ (ດີວານາກາຣີ, ອິນເດຍ)", "sd_PK": "ສິນທິ (ປາກິດສະຖານ)", "se": "ຊາມິເໜືອ", "se_FI": "ຊາມິເໜືອ (ຟິນແລນ)", @@ -524,6 +531,10 @@ "sr_ME": "ເຊີບຽນ (ມອນເຕເນໂກຣ)", "sr_RS": "ເຊີບຽນ (ເຊີເບຍ)", "sr_XK": "ເຊີບຽນ (ໂຄໂຊໂວ)", + "su": "ຊຸນແດນນີສ", + "su_ID": "ຊຸນແດນນີສ (ອິນໂດເນເຊຍ)", + "su_Latn": "ຊຸນແດນນີສ (ລາຕິນ)", + "su_Latn_ID": "ຊຸນແດນນີສ (ລາຕິນ, ອິນໂດເນເຊຍ)", "sv": "ສະວີດິຊ", "sv_AX": "ສະວີດິຊ (ຫມູ່ເກາະໂອລັນ)", "sv_FI": "ສະວີດິຊ (ຟິນແລນ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index 20d47722bf1d..83019bebcc4a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -365,6 +365,8 @@ "ko_KP": "korėjiečių (Šiaurės Korėja)", "ko_KR": "korėjiečių (Pietų Korėja)", "ks": "kašmyrų", + "ks_Arab": "kašmyrų (arabų)", + "ks_Arab_IN": "kašmyrų (arabų, Indija)", "ks_IN": "kašmyrų (Indija)", "ku": "kurdų", "ku_TR": "kurdų (Turkija)", @@ -403,6 +405,7 @@ "mr_IN": "maratų (Indija)", "ms": "malajiečių", "ms_BN": "malajiečių (Brunėjus)", + "ms_ID": "malajiečių (Indonezija)", "ms_MY": "malajiečių (Malaizija)", "ms_SG": "malajiečių (Singapūras)", "mt": "maltiečių", @@ -483,6 +486,10 @@ "rw": "kinjaruandų", "rw_RW": "kinjaruandų (Ruanda)", "sd": "sindų", + "sd_Arab": "sindų (arabų)", + "sd_Arab_PK": "sindų (arabų, Pakistanas)", + "sd_Deva": "sindų (devanagari)", + "sd_Deva_IN": "sindų (devanagari, Indija)", "sd_PK": "sindų (Pakistanas)", "se": "šiaurės samių", "se_FI": "šiaurės samių (Suomija)", @@ -524,6 +531,10 @@ "sr_ME": "serbų (Juodkalnija)", "sr_RS": "serbų (Serbija)", "sr_XK": "serbų (Kosovas)", + "su": "sundų", + "su_ID": "sundų (Indonezija)", + "su_Latn": "sundų (lotynų)", + "su_Latn_ID": "sundų (lotynų, Indonezija)", "sv": "švedų", "sv_AX": "švedų (Alandų Salos)", "sv_FI": "švedų (Suomija)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lu.json b/src/Symfony/Component/Intl/Resources/data/locales/lu.json index 20b2ae4b2a80..442b229c2d66 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/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index 1e3fd4b78fb2..08beeda67689 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -365,6 +365,8 @@ "ko_KP": "korejiešu (Ziemeļkoreja)", "ko_KR": "korejiešu (Dienvidkoreja)", "ks": "kašmiriešu", + "ks_Arab": "kašmiriešu (arābu)", + "ks_Arab_IN": "kašmiriešu (arābu, Indija)", "ks_IN": "kašmiriešu (Indija)", "ku": "kurdu", "ku_TR": "kurdu (Turcija)", @@ -403,6 +405,7 @@ "mr_IN": "marathu (Indija)", "ms": "malajiešu", "ms_BN": "malajiešu (Bruneja)", + "ms_ID": "malajiešu (Indonēzija)", "ms_MY": "malajiešu (Malaizija)", "ms_SG": "malajiešu (Singapūra)", "mt": "maltiešu", @@ -483,6 +486,10 @@ "rw": "kiņaruanda", "rw_RW": "kiņaruanda (Ruanda)", "sd": "sindhu", + "sd_Arab": "sindhu (arābu)", + "sd_Arab_PK": "sindhu (arābu, Pakistāna)", + "sd_Deva": "sindhu (dēvanāgari)", + "sd_Deva_IN": "sindhu (dēvanāgari, Indija)", "sd_PK": "sindhu (Pakistāna)", "se": "ziemeļsāmu", "se_FI": "ziemeļsāmu (Somija)", @@ -524,6 +531,10 @@ "sr_ME": "serbu (Melnkalne)", "sr_RS": "serbu (Serbija)", "sr_XK": "serbu (Kosova)", + "su": "zundu", + "su_ID": "zundu (Indonēzija)", + "su_Latn": "zundu (latīņu)", + "su_Latn_ID": "zundu (latīņu, Indonēzija)", "sv": "zviedru", "sv_AX": "zviedru (Olandes salas)", "sv_FI": "zviedru (Somija)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index 9104fa86ac37..89d1d94dc748 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 c6ba587dd4df..19997680121e 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/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 3e2483033a8f..1ecd8afef94f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -365,6 +365,8 @@ "ko_KP": "корејски (Северна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турција)", @@ -403,6 +405,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -483,6 +486,10 @@ "rw": "руандски", "rw_RW": "руандски (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "северен сами", "se_FI": "северен сами (Финска)", @@ -524,6 +531,10 @@ "sr_ME": "српски (Црна Гора)", "sr_RS": "српски (Србија)", "sr_XK": "српски (Косово)", + "su": "сундски", + "su_ID": "сундски (Индонезија)", + "su_Latn": "сундски (латинично писмо)", + "su_Latn_ID": "сундски (латинично писмо, Индонезија)", "sv": "шведски", "sv_AX": "шведски (Оландски Острови)", "sv_FI": "шведски (Финска)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index bd9467b5c829..469593347832 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -365,6 +365,8 @@ "ko_KP": "കൊറിയൻ (ഉത്തരകൊറിയ)", "ko_KR": "കൊറിയൻ (ദക്ഷിണകൊറിയ)", "ks": "കാശ്‌മീരി", + "ks_Arab": "കാശ്‌മീരി (അറബിക്)", + "ks_Arab_IN": "കാശ്‌മീരി (അറബിക്, ഇന്ത്യ)", "ks_IN": "കാശ്‌മീരി (ഇന്ത്യ)", "ku": "കുർദ്ദിഷ്", "ku_TR": "കുർദ്ദിഷ് (തുർക്കി)", @@ -403,6 +405,7 @@ "mr_IN": "മറാത്തി (ഇന്ത്യ)", "ms": "മലെയ്", "ms_BN": "മലെയ് (ബ്രൂണൈ)", + "ms_ID": "മലെയ് (ഇന്തോനേഷ്യ)", "ms_MY": "മലെയ് (മലേഷ്യ)", "ms_SG": "മലെയ് (സിംഗപ്പൂർ)", "mt": "മാൾട്ടീസ്", @@ -483,6 +486,10 @@ "rw": "കിന്യാർവാണ്ട", "rw_RW": "കിന്യാർവാണ്ട (റുവാണ്ട)", "sd": "സിന്ധി", + "sd_Arab": "സിന്ധി (അറബിക്)", + "sd_Arab_PK": "സിന്ധി (അറബിക്, പാക്കിസ്ഥാൻ)", + "sd_Deva": "സിന്ധി (ദേവനാഗരി)", + "sd_Deva_IN": "സിന്ധി (ദേവനാഗരി, ഇന്ത്യ)", "sd_PK": "സിന്ധി (പാക്കിസ്ഥാൻ)", "se": "വടക്കൻ സമി", "se_FI": "വടക്കൻ സമി (ഫിൻലാൻഡ്)", @@ -524,6 +531,10 @@ "sr_ME": "സെർബിയൻ (മോണ്ടെനെഗ്രോ)", "sr_RS": "സെർബിയൻ (സെർബിയ)", "sr_XK": "സെർബിയൻ (കൊസോവൊ)", + "su": "സുണ്ടാനീസ്", + "su_ID": "സുണ്ടാനീസ് (ഇന്തോനേഷ്യ)", + "su_Latn": "സുണ്ടാനീസ് (ലാറ്റിൻ)", + "su_Latn_ID": "സുണ്ടാനീസ് (ലാറ്റിൻ, ഇന്തോനേഷ്യ)", "sv": "സ്വീഡിഷ്", "sv_AX": "സ്വീഡിഷ് (അലൻഡ് ദ്വീപുകൾ)", "sv_FI": "സ്വീഡിഷ് (ഫിൻലാൻഡ്)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index f5aadf036257..926f4c9037b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -365,6 +365,8 @@ "ko_KP": "солонгос (Хойд Солонгос)", "ko_KR": "солонгос (Өмнөд Солонгос)", "ks": "кашмир", + "ks_Arab": "кашмир (араб)", + "ks_Arab_IN": "кашмир (араб, Энэтхэг)", "ks_IN": "кашмир (Энэтхэг)", "ku": "курд", "ku_TR": "курд (Турк)", @@ -403,6 +405,7 @@ "mr_IN": "марати (Энэтхэг)", "ms": "малай", "ms_BN": "малай (Бруней)", + "ms_ID": "малай (Индонез)", "ms_MY": "малай (Малайз)", "ms_SG": "малай (Сингапур)", "mt": "малта", @@ -483,6 +486,10 @@ "rw": "киньяруанда", "rw_RW": "киньяруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (араб)", + "sd_Arab_PK": "синдхи (араб, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Энэтхэг)", "sd_PK": "синдхи (Пакистан)", "se": "хойд сами", "se_FI": "хойд сами (Финлянд)", @@ -524,6 +531,10 @@ "sr_ME": "серб (Монтенегро)", "sr_RS": "серб (Серби)", "sr_XK": "серб (Косово)", + "su": "сундан", + "su_ID": "сундан (Индонез)", + "su_Latn": "сундан (латин)", + "su_Latn_ID": "сундан (латин, Индонез)", "sv": "швед", "sv_AX": "швед (Аландын арлууд)", "sv_FI": "швед (Финлянд)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index e81387ba50fa..24c35490b3b2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -365,6 +365,8 @@ "ko_KP": "कोरियन (उत्तर कोरिया)", "ko_KR": "कोरियन (दक्षिण कोरिया)", "ks": "काश्मीरी", + "ks_Arab": "काश्मीरी (अरबी)", + "ks_Arab_IN": "काश्मीरी (अरबी, भारत)", "ks_IN": "काश्मीरी (भारत)", "ku": "कुर्दिश", "ku_TR": "कुर्दिश (तुर्की)", @@ -403,6 +405,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलय", "ms_BN": "मलय (ब्रुनेई)", + "ms_ID": "मलय (इंडोनेशिया)", "ms_MY": "मलय (मलेशिया)", "ms_SG": "मलय (सिंगापूर)", "mt": "माल्टिज्", @@ -483,6 +486,10 @@ "rw": "किन्यार्वान्डा", "rw_RW": "किन्यार्वान्डा (रवांडा)", "sd": "सिंधी", + "sd_Arab": "सिंधी (अरबी)", + "sd_Arab_PK": "सिंधी (अरबी, पाकिस्तान)", + "sd_Deva": "सिंधी (देवनागरी)", + "sd_Deva_IN": "सिंधी (देवनागरी, भारत)", "sd_PK": "सिंधी (पाकिस्तान)", "se": "उत्तरी सामी", "se_FI": "उत्तरी सामी (फिनलंड)", @@ -524,6 +531,10 @@ "sr_ME": "सर्बियन (मोंटेनेग्रो)", "sr_RS": "सर्बियन (सर्बिया)", "sr_XK": "सर्बियन (कोसोव्हो)", + "su": "सुंदानीज", + "su_ID": "सुंदानीज (इंडोनेशिया)", + "su_Latn": "सुंदानीज (लॅटिन)", + "su_Latn_ID": "सुंदानीज (लॅटिन, इंडोनेशिया)", "sv": "स्वीडिश", "sv_AX": "स्वीडिश (अ‍ॅलँड बेटे)", "sv_FI": "स्वीडिश (फिनलंड)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 6b54c431cff8..ebd59d528534 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -234,6 +234,19 @@ "fa_AF": "Parsi (Afghanistan)", "fa_IR": "Parsi (Iran)", "ff": "Fulah", + "ff_Adlm": "Fulah (Adlam)", + "ff_Adlm_BF": "Fulah (Adlam, Burkina Faso)", + "ff_Adlm_CM": "Fulah (Adlam, Cameroon)", + "ff_Adlm_GH": "Fulah (Adlam, Ghana)", + "ff_Adlm_GM": "Fulah (Adlam, Gambia)", + "ff_Adlm_GN": "Fulah (Adlam, Guinea)", + "ff_Adlm_GW": "Fulah (Adlam, Guinea Bissau)", + "ff_Adlm_LR": "Fulah (Adlam, Liberia)", + "ff_Adlm_MR": "Fulah (Adlam, Mauritania)", + "ff_Adlm_NE": "Fulah (Adlam, Niger)", + "ff_Adlm_NG": "Fulah (Adlam, Nigeria)", + "ff_Adlm_SL": "Fulah (Adlam, Sierra Leone)", + "ff_Adlm_SN": "Fulah (Adlam, Senegal)", "ff_CM": "Fulah (Cameroon)", "ff_GN": "Fulah (Guinea)", "ff_Latn": "Fulah (Latin)", @@ -365,6 +378,8 @@ "ko_KP": "Korea (Korea Utara)", "ko_KR": "Korea (Korea Selatan)", "ks": "Kashmir", + "ks_Arab": "Kashmir (Arab)", + "ks_Arab_IN": "Kashmir (Arab, India)", "ks_IN": "Kashmir (India)", "ku": "Kurdish", "ku_TR": "Kurdish (Turki)", @@ -403,6 +418,7 @@ "mr_IN": "Marathi (India)", "ms": "Melayu", "ms_BN": "Melayu (Brunei)", + "ms_ID": "Melayu (Indonesia)", "ms_MY": "Melayu (Malaysia)", "ms_SG": "Melayu (Singapura)", "mt": "Malta", @@ -483,6 +499,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "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 Utara", "se_FI": "Sami Utara (Finland)", @@ -524,6 +544,10 @@ "sr_ME": "Serbia (Montenegro)", "sr_RS": "Serbia (Serbia)", "sr_XK": "Serbia (Kosovo)", + "su": "Sunda", + "su_ID": "Sunda (Indonesia)", + "su_Latn": "Sunda (Latin)", + "su_Latn_ID": "Sunda (Latin, Indonesia)", "sv": "Sweden", "sv_AX": "Sweden (Kepulauan Aland)", "sv_FI": "Sweden (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mt.json b/src/Symfony/Component/Intl/Resources/data/locales/mt.json index f412c1b48e89..42b6eb1e62f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -365,6 +365,8 @@ "ko_KP": "Korean (il-Korea ta’ Fuq)", "ko_KR": "Korean (il-Korea t’Isfel)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (Għarbi)", + "ks_Arab_IN": "Kashmiri (Għarbi, l-Indja)", "ks_IN": "Kashmiri (l-Indja)", "ku": "Kurd", "ku_TR": "Kurd (it-Turkija)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi (l-Indja)", "ms": "Malay", "ms_BN": "Malay (il-Brunei)", + "ms_ID": "Malay (l-Indoneżja)", "ms_MY": "Malay (il-Malasja)", "ms_SG": "Malay (Singapore)", "mt": "Malti", @@ -481,6 +484,8 @@ "rw": "Kinjarwanda", "rw_RW": "Kinjarwanda (ir-Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Għarbi)", + "sd_Arab_PK": "Sindhi (Għarbi, il-Pakistan)", "sd_PK": "Sindhi (il-Pakistan)", "se": "Sami tat-Tramuntana", "se_FI": "Sami tat-Tramuntana (il-Finlandja)", @@ -522,6 +527,10 @@ "sr_ME": "Serb (il-Montenegro)", "sr_RS": "Serb (is-Serbja)", "sr_XK": "Serb (il-Kosovo)", + "su": "Sundaniż", + "su_ID": "Sundaniż (l-Indoneżja)", + "su_Latn": "Sundaniż (Latin)", + "su_Latn_ID": "Sundaniż (Latin, l-Indoneżja)", "sv": "Żvediż", "sv_AX": "Żvediż (il-Gżejjer Aland)", "sv_FI": "Żvediż (il-Finlandja)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/my.json b/src/Symfony/Component/Intl/Resources/data/locales/my.json index 5a9bf1e4d74e..413971f7c8f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -365,6 +365,8 @@ "ko_KP": "ကိုရီးယား (မြောက်ကိုရီးယား)", "ko_KR": "ကိုရီးယား (တောင်ကိုရီးယား)", "ks": "ကက်ရှ်မီးယား", + "ks_Arab": "ကက်ရှ်မီးယား (အာရေဗျ)", + "ks_Arab_IN": "ကက်ရှ်မီးယား (အာရေဗျ၊ အိန္ဒိယ)", "ks_IN": "ကက်ရှ်မီးယား (အိန္ဒိယ)", "ku": "ကဒ်", "ku_TR": "ကဒ် (တူရကီ)", @@ -403,6 +405,7 @@ "mr_IN": "မာရသီ (အိန္ဒိယ)", "ms": "မလေး", "ms_BN": "မလေး (ဘရူနိုင်း)", + "ms_ID": "မလေး (အင်ဒိုနီးရှား)", "ms_MY": "မလေး (မလေးရှား)", "ms_SG": "မလေး (စင်္ကာပူ)", "mt": "မော်လ်တာ", @@ -483,6 +486,10 @@ "rw": "ကင်ရာဝန်ဒါ", "rw_RW": "ကင်ရာဝန်ဒါ (ရဝန်ဒါ)", "sd": "စင်ဒီ", + "sd_Arab": "စင်ဒီ (အာရေဗျ)", + "sd_Arab_PK": "စင်ဒီ (အာရေဗျ၊ ပါကစ္စတန်)", + "sd_Deva": "စင်ဒီ (ဒီဗနာဂရီ)", + "sd_Deva_IN": "စင်ဒီ (ဒီဗနာဂရီ၊ အိန္ဒိယ)", "sd_PK": "စင်ဒီ (ပါကစ္စတန်)", "se": "မြောက် ဆာမိ", "se_FI": "မြောက် ဆာမိ (ဖင်လန်)", @@ -522,6 +529,10 @@ "sr_ME": "ဆားဘီးယား (မွန်တီနိဂရိုး)", "sr_RS": "ဆားဘီးယား (ဆားဘီးယား)", "sr_XK": "ဆားဘီးယား (ကိုဆိုဗို)", + "su": "ဆူဒန်", + "su_ID": "ဆူဒန် (အင်ဒိုနီးရှား)", + "su_Latn": "ဆူဒန် (လက်တင်)", + "su_Latn_ID": "ဆူဒန် (လက်တင်၊ အင်ဒိုနီးရှား)", "sv": "ဆွီဒင်", "sv_AX": "ဆွီဒင် (အာလန်ကျွန်း)", "sv_FI": "ဆွီဒင် (ဖင်လန်)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index 5b95d64aebf9..621eca9df02d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -365,6 +365,8 @@ "ko_KP": "koreansk (Nord-Korea)", "ko_KR": "koreansk (Sør-Korea)", "ks": "kasjmiri", + "ks_Arab": "kasjmiri (arabisk)", + "ks_Arab_IN": "kasjmiri (arabisk, India)", "ks_IN": "kasjmiri (India)", "ku": "kurdisk", "ku_TR": "kurdisk (Tyrkia)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (India)", "ms": "malayisk", "ms_BN": "malayisk (Brunei)", + "ms_ID": "malayisk (Indonesia)", "ms_MY": "malayisk (Malaysia)", "ms_SG": "malayisk (Singapore)", "mt": "maltesisk", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabisk)", + "sd_Arab_PK": "sindhi (arabisk, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "nordsamisk", "se_FI": "nordsamisk (Finland)", @@ -524,6 +531,10 @@ "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbia)", "sr_XK": "serbisk (Kosovo)", + "su": "sundanesisk", + "su_ID": "sundanesisk (Indonesia)", + "su_Latn": "sundanesisk (latinsk)", + "su_Latn_ID": "sundanesisk (latinsk, Indonesia)", "sv": "svensk", "sv_AX": "svensk (Åland)", "sv_FI": "svensk (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nd.json b/src/Symfony/Component/Intl/Resources/data/locales/nd.json index 6a59cd7da657..61cb7f4df856 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/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index 0c67fdd75f16..7ae21cb03b5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -365,6 +365,8 @@ "ko_KP": "कोरियाली (उत्तर कोरिया)", "ko_KR": "कोरियाली (दक्षिण कोरिया)", "ks": "कास्मिरी", + "ks_Arab": "कास्मिरी (अरबी)", + "ks_Arab_IN": "कास्मिरी (अरबी, भारत)", "ks_IN": "कास्मिरी (भारत)", "ku": "कुर्दी", "ku_TR": "कुर्दी (टर्की)", @@ -403,6 +405,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलाय", "ms_BN": "मलाय (ब्रुनाइ)", + "ms_ID": "मलाय (इन्डोनेशिया)", "ms_MY": "मलाय (मलेसिया)", "ms_SG": "मलाय (सिङ्गापुर)", "mt": "माल्टिज", @@ -483,6 +486,10 @@ "rw": "किन्यारवान्डा", "rw_RW": "किन्यारवान्डा (रवाण्डा)", "sd": "सिन्धी", + "sd_Arab": "सिन्धी (अरबी)", + "sd_Arab_PK": "सिन्धी (अरबी, पाकिस्तान)", + "sd_Deva": "सिन्धी (देवानागरी)", + "sd_Deva_IN": "सिन्धी (देवानागरी, भारत)", "sd_PK": "सिन्धी (पाकिस्तान)", "se": "उत्तरी सामी", "se_FI": "उत्तरी सामी (फिनल्याण्ड)", @@ -522,6 +529,10 @@ "sr_ME": "सर्बियाली (मोन्टेनिग्रो)", "sr_RS": "सर्बियाली (सर्बिया)", "sr_XK": "सर्बियाली (कोसोभो)", + "su": "सुडानी", + "su_ID": "सुडानी (इन्डोनेशिया)", + "su_Latn": "सुडानी (ल्याटिन)", + "su_Latn_ID": "सुडानी (ल्याटिन, इन्डोनेशिया)", "sv": "स्विडिस", "sv_AX": "स्विडिस (अलान्ड टापुहरु)", "sv_FI": "स्विडिस (फिनल्याण्ड)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index d34a7bee9b61..83ba8218b7ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -234,6 +234,19 @@ "fa_AF": "Perzisch (Afghanistan)", "fa_IR": "Perzisch (Iran)", "ff": "Fulah", + "ff_Adlm": "Fulah (Adlam)", + "ff_Adlm_BF": "Fulah (Adlam, Burkina Faso)", + "ff_Adlm_CM": "Fulah (Adlam, Kameroen)", + "ff_Adlm_GH": "Fulah (Adlam, Ghana)", + "ff_Adlm_GM": "Fulah (Adlam, Gambia)", + "ff_Adlm_GN": "Fulah (Adlam, Guinee)", + "ff_Adlm_GW": "Fulah (Adlam, Guinee-Bissau)", + "ff_Adlm_LR": "Fulah (Adlam, Liberia)", + "ff_Adlm_MR": "Fulah (Adlam, Mauritanië)", + "ff_Adlm_NE": "Fulah (Adlam, Niger)", + "ff_Adlm_NG": "Fulah (Adlam, Nigeria)", + "ff_Adlm_SL": "Fulah (Adlam, Sierra Leone)", + "ff_Adlm_SN": "Fulah (Adlam, Senegal)", "ff_CM": "Fulah (Kameroen)", "ff_GN": "Fulah (Guinee)", "ff_Latn": "Fulah (Latijns)", @@ -365,6 +378,8 @@ "ko_KP": "Koreaans (Noord-Korea)", "ko_KR": "Koreaans (Zuid-Korea)", "ks": "Kasjmiri", + "ks_Arab": "Kasjmiri (Arabisch)", + "ks_Arab_IN": "Kasjmiri (Arabisch, India)", "ks_IN": "Kasjmiri (India)", "ku": "Koerdisch", "ku_TR": "Koerdisch (Turkije)", @@ -403,6 +418,7 @@ "mr_IN": "Marathi (India)", "ms": "Maleis", "ms_BN": "Maleis (Brunei)", + "ms_ID": "Maleis (Indonesië)", "ms_MY": "Maleis (Maleisië)", "ms_SG": "Maleis (Singapore)", "mt": "Maltees", @@ -483,6 +499,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "sd": "Sindhi", + "sd_Arab": "Sindhi (Arabisch)", + "sd_Arab_PK": "Sindhi (Arabisch, Pakistan)", + "sd_Deva": "Sindhi (Devanagari)", + "sd_Deva_IN": "Sindhi (Devanagari, India)", "sd_PK": "Sindhi (Pakistan)", "se": "Noord-Samisch", "se_FI": "Noord-Samisch (Finland)", @@ -524,6 +544,10 @@ "sr_ME": "Servisch (Montenegro)", "sr_RS": "Servisch (Servië)", "sr_XK": "Servisch (Kosovo)", + "su": "Soendanees", + "su_ID": "Soendanees (Indonesië)", + "su_Latn": "Soendanees (Latijns)", + "su_Latn_ID": "Soendanees (Latijns, Indonesië)", "sv": "Zweeds", "sv_AX": "Zweeds (Åland)", "sv_FI": "Zweeds (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nn.json b/src/Symfony/Component/Intl/Resources/data/locales/nn.json index 3fc0d3619ef9..0cead5030811 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -365,6 +365,8 @@ "ko_KP": "koreansk (Nord-Korea)", "ko_KR": "koreansk (Sør-Korea)", "ks": "kasjmiri", + "ks_Arab": "kasjmiri (arabisk)", + "ks_Arab_IN": "kasjmiri (arabisk, India)", "ks_IN": "kasjmiri (India)", "ku": "kurdisk", "ku_TR": "kurdisk (Tyrkia)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (India)", "ms": "malayisk", "ms_BN": "malayisk (Brunei)", + "ms_ID": "malayisk (Indonesia)", "ms_MY": "malayisk (Malaysia)", "ms_SG": "malayisk (Singapore)", "mt": "maltesisk", @@ -483,6 +486,10 @@ "rw": "kinjarwanda", "rw_RW": "kinjarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabisk)", + "sd_Arab_PK": "sindhi (arabisk, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, India)", "sd_PK": "sindhi (Pakistan)", "se": "nordsamisk", "se_FI": "nordsamisk (Finland)", @@ -524,6 +531,10 @@ "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbia)", "sr_XK": "serbisk (Kosovo)", + "su": "sundanesisk", + "su_ID": "sundanesisk (Indonesia)", + "su_Latn": "sundanesisk (latinsk)", + "su_Latn_ID": "sundanesisk (latinsk, Indonesia)", "sv": "svensk", "sv_AX": "svensk (Åland)", "sv_FI": "svensk (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/om.json b/src/Symfony/Component/Intl/Resources/data/locales/om.json index dc89f7b3dbd0..24d80a8cdc87 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/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index 1192e528937d..1dbd9aa6dbf0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -365,6 +365,8 @@ "ko_KP": "କୋରିଆନ୍ (ଉତ୍ତର କୋରିଆ)", "ko_KR": "କୋରିଆନ୍ (ଦକ୍ଷିଣ କୋରିଆ)", "ks": "କାଶ୍ମିରୀ", + "ks_Arab": "କାଶ୍ମିରୀ (ଆରବିକ୍)", + "ks_Arab_IN": "କାଶ୍ମିରୀ (ଆରବିକ୍, ଭାରତ)", "ks_IN": "କାଶ୍ମିରୀ (ଭାରତ)", "ku": "କୁର୍ଦ୍ଦିଶ୍", "ku_TR": "କୁର୍ଦ୍ଦିଶ୍ (ତୁର୍କୀ)", @@ -403,6 +405,7 @@ "mr_IN": "ମରାଠୀ (ଭାରତ)", "ms": "ମାଲୟ", "ms_BN": "ମାଲୟ (ବ୍ରୁନେଇ)", + "ms_ID": "ମାଲୟ (ଇଣ୍ଡୋନେସିଆ)", "ms_MY": "ମାଲୟ (ମାଲେସିଆ)", "ms_SG": "ମାଲୟ (ସିଙ୍ଗାପୁର୍)", "mt": "ମାଲଟୀଜ୍", @@ -483,6 +486,10 @@ "rw": "କିନ୍ୟାରୱାଣ୍ଡା", "rw_RW": "କିନ୍ୟାରୱାଣ୍ଡା (ରାୱାଣ୍ଡା)", "sd": "ସିନ୍ଧୀ", + "sd_Arab": "ସିନ୍ଧୀ (ଆରବିକ୍)", + "sd_Arab_PK": "ସିନ୍ଧୀ (ଆରବିକ୍, ପାକିସ୍ତାନ)", + "sd_Deva": "ସିନ୍ଧୀ (ଦେବନଗରୀ)", + "sd_Deva_IN": "ସିନ୍ଧୀ (ଦେବନଗରୀ, ଭାରତ)", "sd_PK": "ସିନ୍ଧୀ (ପାକିସ୍ତାନ)", "se": "ଉତ୍ତର ସାମି", "se_FI": "ଉତ୍ତର ସାମି (ଫିନଲ୍ୟାଣ୍ଡ)", @@ -524,6 +531,10 @@ "sr_ME": "ସର୍ବିୟ (ମଣ୍ଟେନିଗ୍ରୋ)", "sr_RS": "ସର୍ବିୟ (ସର୍ବିଆ)", "sr_XK": "ସର୍ବିୟ (କୋସୋଭୋ)", + "su": "ସୁଦାନୀଜ୍", + "su_ID": "ସୁଦାନୀଜ୍ (ଇଣ୍ଡୋନେସିଆ)", + "su_Latn": "ସୁଦାନୀଜ୍ (ଲାଟିନ୍)", + "su_Latn_ID": "ସୁଦାନୀଜ୍ (ଲାଟିନ୍, ଇଣ୍ଡୋନେସିଆ)", "sv": "ସ୍ୱେଡିସ୍", "sv_AX": "ସ୍ୱେଡିସ୍ (ଅଲାଣ୍ଡ ଦ୍ଵୀପପୁଞ୍ଜ)", "sv_FI": "ସ୍ୱେଡିସ୍ (ଫିନଲ୍ୟାଣ୍ଡ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 24277a92a2c0..dcb922bda13e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -365,6 +365,8 @@ "ko_KP": "ਕੋਰੀਆਈ (ਉੱਤਰ ਕੋਰੀਆ)", "ko_KR": "ਕੋਰੀਆਈ (ਦੱਖਣ ਕੋਰੀਆ)", "ks": "ਕਸ਼ਮੀਰੀ", + "ks_Arab": "ਕਸ਼ਮੀਰੀ (ਅਰਬੀ)", + "ks_Arab_IN": "ਕਸ਼ਮੀਰੀ (ਅਰਬੀ, ਭਾਰਤ)", "ks_IN": "ਕਸ਼ਮੀਰੀ (ਭਾਰਤ)", "ku": "ਕੁਰਦਿਸ਼", "ku_TR": "ਕੁਰਦਿਸ਼ (ਤੁਰਕੀ)", @@ -403,6 +405,7 @@ "mr_IN": "ਮਰਾਠੀ (ਭਾਰਤ)", "ms": "ਮਲਯ", "ms_BN": "ਮਲਯ (ਬਰੂਨੇਈ)", + "ms_ID": "ਮਲਯ (ਇੰਡੋਨੇਸ਼ੀਆ)", "ms_MY": "ਮਲਯ (ਮਲੇਸ਼ੀਆ)", "ms_SG": "ਮਲਯ (ਸਿੰਗਾਪੁਰ)", "mt": "ਮਾਲਟੀਜ਼", @@ -483,6 +486,10 @@ "rw": "ਕਿਨਿਆਰਵਾਂਡਾ", "rw_RW": "ਕਿਨਿਆਰਵਾਂਡਾ (ਰਵਾਂਡਾ)", "sd": "ਸਿੰਧੀ", + "sd_Arab": "ਸਿੰਧੀ (ਅਰਬੀ)", + "sd_Arab_PK": "ਸਿੰਧੀ (ਅਰਬੀ, ਪਾਕਿਸਤਾਨ)", + "sd_Deva": "ਸਿੰਧੀ (ਦੇਵਨਾਗਰੀ)", + "sd_Deva_IN": "ਸਿੰਧੀ (ਦੇਵਨਾਗਰੀ, ਭਾਰਤ)", "sd_PK": "ਸਿੰਧੀ (ਪਾਕਿਸਤਾਨ)", "se": "ਉੱਤਰੀ ਸਾਮੀ", "se_FI": "ਉੱਤਰੀ ਸਾਮੀ (ਫਿਨਲੈਂਡ)", @@ -522,6 +529,10 @@ "sr_ME": "ਸਰਬੀਆਈ (ਮੋਂਟੇਨੇਗਰੋ)", "sr_RS": "ਸਰਬੀਆਈ (ਸਰਬੀਆ)", "sr_XK": "ਸਰਬੀਆਈ (ਕੋਸੋਵੋ)", + "su": "ਸੂੰਡਾਨੀ", + "su_ID": "ਸੂੰਡਾਨੀ (ਇੰਡੋਨੇਸ਼ੀਆ)", + "su_Latn": "ਸੂੰਡਾਨੀ (ਲਾਤੀਨੀ)", + "su_Latn_ID": "ਸੂੰਡਾਨੀ (ਲਾਤੀਨੀ, ਇੰਡੋਨੇਸ਼ੀਆ)", "sv": "ਸਵੀਡਿਸ਼", "sv_AX": "ਸਵੀਡਿਸ਼ (ਅਲੈਂਡ ਟਾਪੂ)", "sv_FI": "ਸਵੀਡਿਸ਼ (ਫਿਨਲੈਂਡ)", 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 3f16fec4b99e..f11e87aecd89 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/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index ef97142745f6..a78f24990230 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -365,6 +365,8 @@ "ko_KP": "koreański (Korea Północna)", "ko_KR": "koreański (Korea Południowa)", "ks": "kaszmirski", + "ks_Arab": "kaszmirski (arabskie)", + "ks_Arab_IN": "kaszmirski (arabskie, Indie)", "ks_IN": "kaszmirski (Indie)", "ku": "kurdyjski", "ku_TR": "kurdyjski (Turcja)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (Indie)", "ms": "malajski", "ms_BN": "malajski (Brunei)", + "ms_ID": "malajski (Indonezja)", "ms_MY": "malajski (Malezja)", "ms_SG": "malajski (Singapur)", "mt": "maltański", @@ -483,6 +486,10 @@ "rw": "kinya-ruanda", "rw_RW": "kinya-ruanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabskie)", + "sd_Arab_PK": "sindhi (arabskie, Pakistan)", + "sd_Deva": "sindhi (dewanagari)", + "sd_Deva_IN": "sindhi (dewanagari, Indie)", "sd_PK": "sindhi (Pakistan)", "se": "północnolapoński", "se_FI": "północnolapoński (Finlandia)", @@ -524,6 +531,10 @@ "sr_ME": "serbski (Czarnogóra)", "sr_RS": "serbski (Serbia)", "sr_XK": "serbski (Kosowo)", + "su": "sundajski", + "su_ID": "sundajski (Indonezja)", + "su_Latn": "sundajski (łacińskie)", + "su_Latn_ID": "sundajski (łacińskie, Indonezja)", "sv": "szwedzki", "sv_AX": "szwedzki (Wyspy Alandzkie)", "sv_FI": "szwedzki (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ps.json b/src/Symfony/Component/Intl/Resources/data/locales/ps.json index 531ec24a30a2..cf17c1ebc5b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ps.json @@ -365,6 +365,8 @@ "ko_KP": "کوریایی (شمالی کوریا)", "ko_KR": "کوریایی (سویلي کوریا)", "ks": "کشمیري", + "ks_Arab": "کشمیري (عربي)", + "ks_Arab_IN": "کشمیري (عربي, هند)", "ks_IN": "کشمیري (هند)", "ku": "کردي", "ku_TR": "کردي (ترکي)", @@ -403,6 +405,7 @@ "mr_IN": "مراټهي (هند)", "ms": "ملایا", "ms_BN": "ملایا (برونائي)", + "ms_ID": "ملایا (اندونیزیا)", "ms_MY": "ملایا (مالیزیا)", "ms_SG": "ملایا (سينگاپور)", "mt": "مالټايي", @@ -481,6 +484,10 @@ "rw": "کینیارونډا", "rw_RW": "کینیارونډا (روندا)", "sd": "سندهي", + "sd_Arab": "سندهي (عربي)", + "sd_Arab_PK": "سندهي (عربي, پاکستان)", + "sd_Deva": "سندهي (دیواناګري)", + "sd_Deva_IN": "سندهي (دیواناګري, هند)", "sd_PK": "سندهي (پاکستان)", "se": "شمالي سامي", "se_FI": "شمالي سامي (فنلینډ)", @@ -520,6 +527,10 @@ "sr_ME": "سربيائي (مونټینیګرو)", "sr_RS": "سربيائي (سربيا)", "sr_XK": "سربيائي (کوسوو)", + "su": "سوډاني", + "su_ID": "سوډاني (اندونیزیا)", + "su_Latn": "سوډاني (لاتين\/لاتيني)", + "su_Latn_ID": "سوډاني (لاتين\/لاتيني, اندونیزیا)", "sv": "سویډنی", "sv_AX": "سویډنی (الاند ټاپوان)", "sv_FI": "سویډنی (فنلینډ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 84f45713cc70..c88862c7560d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -365,6 +365,8 @@ "ko_KP": "coreano (Coreia do Norte)", "ko_KR": "coreano (Coreia do Sul)", "ks": "caxemira", + "ks_Arab": "caxemira (árabe)", + "ks_Arab_IN": "caxemira (árabe, Índia)", "ks_IN": "caxemira (Índia)", "ku": "curdo", "ku_TR": "curdo (Turquia)", @@ -403,6 +405,7 @@ "mr_IN": "marati (Índia)", "ms": "malaio", "ms_BN": "malaio (Brunei)", + "ms_ID": "malaio (Indonésia)", "ms_MY": "malaio (Malásia)", "ms_SG": "malaio (Singapura)", "mt": "maltês", @@ -483,6 +486,10 @@ "rw": "quiniaruanda", "rw_RW": "quiniaruanda (Ruanda)", "sd": "sindi", + "sd_Arab": "sindi (árabe)", + "sd_Arab_PK": "sindi (árabe, Paquistão)", + "sd_Deva": "sindi (devanágari)", + "sd_Deva_IN": "sindi (devanágari, Índia)", "sd_PK": "sindi (Paquistão)", "se": "sami setentrional", "se_FI": "sami setentrional (Finlândia)", @@ -524,6 +531,10 @@ "sr_ME": "sérvio (Montenegro)", "sr_RS": "sérvio (Sérvia)", "sr_XK": "sérvio (Kosovo)", + "su": "sundanês", + "su_ID": "sundanês (Indonésia)", + "su_Latn": "sundanês (latim)", + "su_Latn_ID": "sundanês (latim, Indonésia)", "sv": "sueco", "sv_AX": "sueco (Ilhas Aland)", "sv_FI": "sueco (Finlândia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/qu.json b/src/Symfony/Component/Intl/Resources/data/locales/qu.json index 57a9afa1ba99..3d01a5f08bd0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -382,6 +382,7 @@ "mr_IN": "Marathi Simi (India)", "ms": "Malayo Simi", "ms_BN": "Malayo Simi (Brunéi)", + "ms_ID": "Malayo Simi (Indonesia)", "ms_MY": "Malayo Simi (Malasia)", "ms_SG": "Malayo Simi (Singapur)", "mt": "Maltes Simi", @@ -487,6 +488,8 @@ "sr_ME": "Serbio Simi (Montenegro)", "sr_RS": "Serbio Simi (Serbia)", "sr_XK": "Serbio Simi (Kosovo)", + "su": "Sundanés Simi", + "su_ID": "Sundanés Simi (Indonesia)", "sv": "Sueco Simi", "sv_AX": "Sueco Simi (Islas Åland)", "sv_FI": "Sueco Simi (Finlandia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index a76f0636b8a0..4f3a620c4542 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -359,6 +359,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)", @@ -396,6 +398,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", @@ -473,6 +476,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)", @@ -509,6 +516,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 bfb924b37e2f..a66eb522bc74 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/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index 1c0511753df9..08c28cdc7b73 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -365,6 +365,8 @@ "ko_KP": "coreeană (Coreea de Nord)", "ko_KR": "coreeană (Coreea de Sud)", "ks": "cașmiră", + "ks_Arab": "cașmiră (arabă)", + "ks_Arab_IN": "cașmiră (arabă, India)", "ks_IN": "cașmiră (India)", "ku": "kurdă", "ku_TR": "kurdă (Turcia)", @@ -403,6 +405,7 @@ "mr_IN": "marathi (India)", "ms": "malaeză", "ms_BN": "malaeză (Brunei)", + "ms_ID": "malaeză (Indonezia)", "ms_MY": "malaeză (Malaysia)", "ms_SG": "malaeză (Singapore)", "mt": "malteză", @@ -483,6 +486,10 @@ "rw": "kinyarwanda", "rw_RW": "kinyarwanda (Rwanda)", "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 de nord", "se_FI": "sami de nord (Finlanda)", @@ -524,6 +531,10 @@ "sr_ME": "sârbă (Muntenegru)", "sr_RS": "sârbă (Serbia)", "sr_XK": "sârbă (Kosovo)", + "su": "sundaneză", + "su_ID": "sundaneză (Indonezia)", + "su_Latn": "sundaneză (latină)", + "su_Latn_ID": "sundaneză (latină, Indonezia)", "sv": "suedeză", "sv_AX": "suedeză (Insulele Åland)", "sv_FI": "suedeză (Finlanda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 7670e4e4eaf0..e110099679e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -365,6 +365,8 @@ "ko_KP": "корейский (КНДР)", "ko_KR": "корейский (Республика Корея)", "ks": "кашмири", + "ks_Arab": "кашмири (арабица)", + "ks_Arab_IN": "кашмири (арабица, Индия)", "ks_IN": "кашмири (Индия)", "ku": "курдский", "ku_TR": "курдский (Турция)", @@ -403,6 +405,7 @@ "mr_IN": "маратхи (Индия)", "ms": "малайский", "ms_BN": "малайский (Бруней-Даруссалам)", + "ms_ID": "малайский (Индонезия)", "ms_MY": "малайский (Малайзия)", "ms_SG": "малайский (Сингапур)", "mt": "мальтийский", @@ -483,6 +486,10 @@ "rw": "киньяруанда", "rw_RW": "киньяруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (арабица)", + "sd_Arab_PK": "синдхи (арабица, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Индия)", "sd_PK": "синдхи (Пакистан)", "se": "северносаамский", "se_FI": "северносаамский (Финляндия)", @@ -524,6 +531,10 @@ "sr_ME": "сербский (Черногория)", "sr_RS": "сербский (Сербия)", "sr_XK": "сербский (Косово)", + "su": "сунданский", + "su_ID": "сунданский (Индонезия)", + "su_Latn": "сунданский (латиница)", + "su_Latn_ID": "сунданский (латиница, Индонезия)", "sv": "шведский", "sv_AX": "шведский (Аландские о-ва)", "sv_FI": "шведский (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rw.json b/src/Symfony/Component/Intl/Resources/data/locales/rw.json index 1d4dde907942..08950f661853 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.json b/src/Symfony/Component/Intl/Resources/data/locales/sd.json index fdd3f06f25ee..825d71844b3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sd.json @@ -365,6 +365,8 @@ "ko_KP": "ڪوريائي (اتر ڪوريا)", "ko_KR": "ڪوريائي (ڏکڻ ڪوريا)", "ks": "ڪشميري", + "ks_Arab": "ڪشميري (عربي)", + "ks_Arab_IN": "ڪشميري (عربي, انڊيا)", "ks_IN": "ڪشميري (انڊيا)", "ku": "ڪردي", "ku_TR": "ڪردي (ترڪي)", @@ -403,6 +405,7 @@ "mr_IN": "مراٺي (انڊيا)", "ms": "ملي", "ms_BN": "ملي (برونائي)", + "ms_ID": "ملي (انڊونيشيا)", "ms_MY": "ملي (ملائيشيا)", "ms_SG": "ملي (سينگاپور)", "mt": "مالٽي", @@ -481,6 +484,10 @@ "rw": "ڪنيار وانڊا", "rw_RW": "ڪنيار وانڊا (روانڊا)", "sd": "سنڌي", + "sd_Arab": "سنڌي (عربي)", + "sd_Arab_PK": "سنڌي (عربي, پاڪستان)", + "sd_Deva": "سنڌي (ديوناگري)", + "sd_Deva_IN": "سنڌي (ديوناگري, انڊيا)", "sd_PK": "سنڌي (پاڪستان)", "se": "اتر سامي", "se_FI": "اتر سامي (فن لينڊ)", @@ -520,6 +527,10 @@ "sr_ME": "سربيائي (مونٽي نيگرو)", "sr_RS": "سربيائي (سربيا)", "sr_XK": "سربيائي (ڪوسووو)", + "su": "سوڊاني", + "su_ID": "سوڊاني (انڊونيشيا)", + "su_Latn": "سوڊاني (لاطيني)", + "su_Latn_ID": "سوڊاني (لاطيني, انڊونيشيا)", "sv": "سويڊني", "sv_AX": "سويڊني (الند ٻيٽ)", "sv_FI": "سويڊني (فن لينڊ)", 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 000000000000..b5dd4bd5f1b5 --- /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 e85ac4c00b53..7edb9816baec 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/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index b62be10f5203..1a9ad006c460 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -365,6 +365,8 @@ "ko_KP": "කොරියානු (උතුරු කොරියාව)", "ko_KR": "කොරියානු (දකුණු කොරියාව)", "ks": "කාෂ්මීර්", + "ks_Arab": "කාෂ්මීර් (අරාබි)", + "ks_Arab_IN": "කාෂ්මීර් (අරාබි, ඉන්දියාව)", "ks_IN": "කාෂ්මීර් (ඉන්දියාව)", "ku": "කුර්දි", "ku_TR": "කුර්දි (තුර්කිය)", @@ -403,6 +405,7 @@ "mr_IN": "මරාති (ඉන්දියාව)", "ms": "මැලේ", "ms_BN": "මැලේ (බෲනායි)", + "ms_ID": "මැලේ (ඉන්දුනීසියාව)", "ms_MY": "මැලේ (මැලේසියාව)", "ms_SG": "මැලේ (සිංගප්පූරුව)", "mt": "මොල්ටිස්", @@ -481,6 +484,10 @@ "rw": "කින්යර්වන්ඩා", "rw_RW": "කින්යර්වන්ඩා (රුවන්ඩාව)", "sd": "සින්ධි", + "sd_Arab": "සින්ධි (අරාබි)", + "sd_Arab_PK": "සින්ධි (අරාබි, පාකිස්තානය)", + "sd_Deva": "සින්ධි (දේවනාගරී)", + "sd_Deva_IN": "සින්ධි (දේවනාගරී, ඉන්දියාව)", "sd_PK": "සින්ධි (පාකිස්තානය)", "se": "උතුරු සාමි", "se_FI": "උතුරු සාමි (ෆින්ලන්තය)", @@ -520,6 +527,10 @@ "sr_ME": "සර්බියානු (මොන්ටෙනීග්‍රෝ)", "sr_RS": "සර්බියානු (සර්බියාව)", "sr_XK": "සර්බියානු (කොසෝවෝ)", + "su": "සන්ඩනීසියානු", + "su_ID": "සන්ඩනීසියානු (ඉන්දුනීසියාව)", + "su_Latn": "සන්ඩනීසියානු (ලතින්)", + "su_Latn_ID": "සන්ඩනීසියානු (ලතින්, ඉන්දුනීසියාව)", "sv": "ස්වීඩන්", "sv_AX": "ස්වීඩන් (ඕලන්ඩ් දූපත්)", "sv_FI": "ස්වීඩන් (ෆින්ලන්තය)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index 0ea80fb539d8..a112f078192a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -365,6 +365,8 @@ "ko_KP": "kórejčina (Severná Kórea)", "ko_KR": "kórejčina (Južná Kórea)", "ks": "kašmírčina", + "ks_Arab": "kašmírčina (arabské)", + "ks_Arab_IN": "kašmírčina (arabské, India)", "ks_IN": "kašmírčina (India)", "ku": "kurdčina", "ku_TR": "kurdčina (Turecko)", @@ -403,6 +405,7 @@ "mr_IN": "maráthčina (India)", "ms": "malajčina", "ms_BN": "malajčina (Brunej)", + "ms_ID": "malajčina (Indonézia)", "ms_MY": "malajčina (Malajzia)", "ms_SG": "malajčina (Singapur)", "mt": "maltčina", @@ -483,6 +486,10 @@ "rw": "rwandčina", "rw_RW": "rwandčina (Rwanda)", "sd": "sindhčina", + "sd_Arab": "sindhčina (arabské)", + "sd_Arab_PK": "sindhčina (arabské, Pakistan)", + "sd_Deva": "sindhčina (dévanágarí)", + "sd_Deva_IN": "sindhčina (dévanágarí, India)", "sd_PK": "sindhčina (Pakistan)", "se": "saamčina [severná]", "se_FI": "saamčina [severná] (Fínsko)", @@ -524,6 +531,10 @@ "sr_ME": "srbčina (Čierna Hora)", "sr_RS": "srbčina (Srbsko)", "sr_XK": "srbčina (Kosovo)", + "su": "sundčina", + "su_ID": "sundčina (Indonézia)", + "su_Latn": "sundčina (latinka)", + "su_Latn_ID": "sundčina (latinka, Indonézia)", "sv": "švédčina", "sv_AX": "švédčina (Alandy)", "sv_FI": "švédčina (Fínsko)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sl.json b/src/Symfony/Component/Intl/Resources/data/locales/sl.json index fbf854cd6647..a71231892bce 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -365,6 +365,8 @@ "ko_KP": "korejščina (Severna Koreja)", "ko_KR": "korejščina (Južna Koreja)", "ks": "kašmirščina", + "ks_Arab": "kašmirščina (arabski)", + "ks_Arab_IN": "kašmirščina (arabski, Indija)", "ks_IN": "kašmirščina (Indija)", "ku": "kurdščina", "ku_TR": "kurdščina (Turčija)", @@ -403,6 +405,7 @@ "mr_IN": "maratščina (Indija)", "ms": "malajščina", "ms_BN": "malajščina (Brunej)", + "ms_ID": "malajščina (Indonezija)", "ms_MY": "malajščina (Malezija)", "ms_SG": "malajščina (Singapur)", "mt": "malteščina", @@ -483,6 +486,10 @@ "rw": "ruandščina", "rw_RW": "ruandščina (Ruanda)", "sd": "sindščina", + "sd_Arab": "sindščina (arabski)", + "sd_Arab_PK": "sindščina (arabski, Pakistan)", + "sd_Deva": "sindščina (devanagarščica)", + "sd_Deva_IN": "sindščina (devanagarščica, Indija)", "sd_PK": "sindščina (Pakistan)", "se": "severna samijščina", "se_FI": "severna samijščina (Finska)", @@ -524,6 +531,10 @@ "sr_ME": "srbščina (Črna gora)", "sr_RS": "srbščina (Srbija)", "sr_XK": "srbščina (Kosovo)", + "su": "sundanščina", + "su_ID": "sundanščina (Indonezija)", + "su_Latn": "sundanščina (latinica)", + "su_Latn_ID": "sundanščina (latinica, Indonezija)", "sv": "švedščina", "sv_AX": "švedščina (Ålandski otoki)", "sv_FI": "švedščina (Finska)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sn.json b/src/Symfony/Component/Intl/Resources/data/locales/sn.json index 1995f988e2f9..5ba752a61733 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/so.json b/src/Symfony/Component/Intl/Resources/data/locales/so.json index 6f59e2993810..6047a4d9cdf4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/so.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/so.json @@ -130,6 +130,7 @@ "en_GI": "Ingiriisi (Gibraltar)", "en_GM": "Ingiriisi (Gambiya)", "en_GU": "Ingiriisi (Guaam)", + "en_GY": "Ingiriisi (Guyana)", "en_HK": "Ingiriisi (Hong Kong)", "en_IE": "Ingiriisi (Ayrlaand)", "en_IL": "Ingiriisi (Israaʼiil)", @@ -203,6 +204,7 @@ "es_BR": "Isbaanish (Baraasiil)", "es_BZ": "Isbaanish (Beliis)", "es_CL": "Isbaanish (Jili)", + "es_CO": "Isbaanish (Koloombiya)", "es_CR": "Isbaanish (Kosta Riika)", "es_CU": "Isbaanish (Kuuba)", "es_DO": "Isbaanish (Jamhuuriyaddda Dominika)", @@ -232,6 +234,19 @@ "fa_AF": "Faarisi (Afgaanistaan)", "fa_IR": "Faarisi (Iiraan)", "ff": "Fuulah", + "ff_Adlm": "Fuulah (Adlam)", + "ff_Adlm_BF": "Fuulah (Adlam, Burkiina Faaso)", + "ff_Adlm_CM": "Fuulah (Adlam, Kaameruun)", + "ff_Adlm_GH": "Fuulah (Adlam, Gaana)", + "ff_Adlm_GM": "Fuulah (Adlam, Gambiya)", + "ff_Adlm_GN": "Fuulah (Adlam, Gini)", + "ff_Adlm_GW": "Fuulah (Adlam, Gini-Bisaaw)", + "ff_Adlm_LR": "Fuulah (Adlam, Laybeeriya)", + "ff_Adlm_MR": "Fuulah (Adlam, Muritaaniya)", + "ff_Adlm_NE": "Fuulah (Adlam, Nayjer)", + "ff_Adlm_NG": "Fuulah (Adlam, Nayjeeriya)", + "ff_Adlm_SL": "Fuulah (Adlam, Siraaliyoon)", + "ff_Adlm_SN": "Fuulah (Adlam, Sinigaal)", "ff_CM": "Fuulah (Kaameruun)", "ff_GN": "Fuulah (Gini)", "ff_Latn": "Fuulah (Laatiin)", @@ -363,6 +378,8 @@ "ko_KP": "Kuuriyaan (Kuuriyada Waqooyi)", "ko_KR": "Kuuriyaan (Kuuriyada Koonfureed)", "ks": "Kaashmiir", + "ks_Arab": "Kaashmiir (Carabi)", + "ks_Arab_IN": "Kaashmiir (Carabi, Hindiya)", "ks_IN": "Kaashmiir (Hindiya)", "ku": "Kurdishka", "ku_TR": "Kurdishka (Turki)", @@ -401,6 +418,7 @@ "mr_IN": "Maarati (Hindiya)", "ms": "Malaay", "ms_BN": "Malaay (Buruneeya)", + "ms_ID": "Malaay (Indoneesiya)", "ms_MY": "Malaay (Malaysia)", "ms_SG": "Malaay (Singaboor)", "mt": "Maltiis", @@ -436,6 +454,8 @@ "pa": "Bunjaabi", "pa_Arab": "Bunjaabi (Carabi)", "pa_Arab_PK": "Bunjaabi (Carabi, Bakistaan)", + "pa_Guru": "Bunjaabi (Luuqada gujarati)", + "pa_Guru_IN": "Bunjaabi (Luuqada gujarati, Hindiya)", "pa_IN": "Bunjaabi (Hindiya)", "pa_PK": "Bunjaabi (Bakistaan)", "pl": "Boolish", @@ -477,6 +497,10 @@ "rw": "Ruwaandha", "rw_RW": "Ruwaandha (Ruwanda)", "sd": "Siindhi", + "sd_Arab": "Siindhi (Carabi)", + "sd_Arab_PK": "Siindhi (Carabi, Bakistaan)", + "sd_Deva": "Siindhi (Dhefangaari)", + "sd_Deva_IN": "Siindhi (Dhefangaari, Hindiya)", "sd_PK": "Siindhi (Bakistaan)", "se": "Koonfurta Saami", "se_FI": "Koonfurta Saami (Finland)", @@ -516,6 +540,10 @@ "sr_ME": "Seerbiyaan (Moontenegro)", "sr_RS": "Seerbiyaan (Seerbiya)", "sr_XK": "Seerbiyaan (Koosofo)", + "su": "Suudaaniis", + "su_ID": "Suudaaniis (Indoneesiya)", + "su_Latn": "Suudaaniis (Laatiin)", + "su_Latn_ID": "Suudaaniis (Laatiin, Indoneesiya)", "sv": "Swiidhis", "sv_AX": "Swiidhis (Jasiiradda Aland)", "sv_FI": "Swiidhis (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index b7a3d6c194c1..d8c96db16111 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -365,6 +365,8 @@ "ko_KP": "koreanisht (Kore e Veriut)", "ko_KR": "koreanisht (Kore e Jugut)", "ks": "kashmirisht", + "ks_Arab": "kashmirisht (arabik)", + "ks_Arab_IN": "kashmirisht (arabik, Indi)", "ks_IN": "kashmirisht (Indi)", "ku": "kurdisht", "ku_TR": "kurdisht (Turqi)", @@ -403,6 +405,7 @@ "mr_IN": "maratisht (Indi)", "ms": "malajisht", "ms_BN": "malajisht (Brunei)", + "ms_ID": "malajisht (Indonezi)", "ms_MY": "malajisht (Malajzi)", "ms_SG": "malajisht (Singapor)", "mt": "maltisht", @@ -483,6 +486,10 @@ "rw": "kiniaruandisht", "rw_RW": "kiniaruandisht (Ruandë)", "sd": "sindisht", + "sd_Arab": "sindisht (arabik)", + "sd_Arab_PK": "sindisht (arabik, Pakistan)", + "sd_Deva": "sindisht (devanagar)", + "sd_Deva_IN": "sindisht (devanagar, Indi)", "sd_PK": "sindisht (Pakistan)", "se": "samishte veriore", "se_FI": "samishte veriore (Finlandë)", @@ -524,6 +531,10 @@ "sr_ME": "serbisht (Mal i Zi)", "sr_RS": "serbisht (Serbi)", "sr_XK": "serbisht (Kosovë)", + "su": "sundanisht", + "su_ID": "sundanisht (Indonezi)", + "su_Latn": "sundanisht (latin)", + "su_Latn_ID": "sundanisht (latin, Indonezi)", "sv": "suedisht", "sv_AX": "suedisht (Ishujt Alandë)", "sv_FI": "suedisht (Finlandë)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr.json b/src/Symfony/Component/Intl/Resources/data/locales/sr.json index 5693494997a7..81582b7065f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -365,6 +365,8 @@ "ko_KP": "корејски (Северна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турска)", @@ -403,6 +405,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -483,6 +486,10 @@ "rw": "кињаруанда", "rw_RW": "кињаруанда (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "северни сами", "se_FI": "северни сами (Финска)", @@ -524,6 +531,10 @@ "sr_ME": "српски (Црна Гора)", "sr_RS": "српски (Србија)", "sr_XK": "српски (Косово)", + "su": "сундански", + "su_ID": "сундански (Индонезија)", + "su_Latn": "сундански (латиница)", + "su_Latn_ID": "сундански (латиница, Индонезија)", "sv": "шведски", "sv_AX": "шведски (Оландска Острва)", "sv_FI": "шведски (Финска)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json index 9d73623d0349..4bb46b819b60 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -365,6 +365,8 @@ "ko_KP": "korejski (Severna Koreja)", "ko_KR": "korejski (Južna Koreja)", "ks": "kašmirski", + "ks_Arab": "kašmirski (arapsko pismo)", + "ks_Arab_IN": "kašmirski (arapsko pismo, Indija)", "ks_IN": "kašmirski (Indija)", "ku": "kurdski", "ku_TR": "kurdski (Turska)", @@ -403,6 +405,7 @@ "mr_IN": "marati (Indija)", "ms": "malajski", "ms_BN": "malajski (Brunej)", + "ms_ID": "malajski (Indonezija)", "ms_MY": "malajski (Malezija)", "ms_SG": "malajski (Singapur)", "mt": "malteški", @@ -483,6 +486,10 @@ "rw": "kinjaruanda", "rw_RW": "kinjaruanda (Ruanda)", "sd": "sindi", + "sd_Arab": "sindi (arapsko pismo)", + "sd_Arab_PK": "sindi (arapsko pismo, Pakistan)", + "sd_Deva": "sindi (devanagari)", + "sd_Deva_IN": "sindi (devanagari, Indija)", "sd_PK": "sindi (Pakistan)", "se": "severni sami", "se_FI": "severni sami (Finska)", @@ -524,6 +531,10 @@ "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", "sr_XK": "srpski (Kosovo)", + "su": "sundanski", + "su_ID": "sundanski (Indonezija)", + "su_Latn": "sundanski (latinica)", + "su_Latn_ID": "sundanski (latinica, Indonezija)", "sv": "švedski", "sv_AX": "švedski (Olandska Ostrva)", "sv_FI": "švedski (Finska)", 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 000000000000..e8ee0efb8e69 --- /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/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index d2f4e38b694e..1848180a260e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -234,6 +234,19 @@ "fa_AF": "persiska (Afghanistan)", "fa_IR": "persiska (Iran)", "ff": "fulani", + "ff_Adlm": "fulani (adlamiska)", + "ff_Adlm_BF": "fulani (adlamiska, Burkina Faso)", + "ff_Adlm_CM": "fulani (adlamiska, Kamerun)", + "ff_Adlm_GH": "fulani (adlamiska, Ghana)", + "ff_Adlm_GM": "fulani (adlamiska, Gambia)", + "ff_Adlm_GN": "fulani (adlamiska, Guinea)", + "ff_Adlm_GW": "fulani (adlamiska, Guinea-Bissau)", + "ff_Adlm_LR": "fulani (adlamiska, Liberia)", + "ff_Adlm_MR": "fulani (adlamiska, Mauretanien)", + "ff_Adlm_NE": "fulani (adlamiska, Niger)", + "ff_Adlm_NG": "fulani (adlamiska, Nigeria)", + "ff_Adlm_SL": "fulani (adlamiska, Sierra Leone)", + "ff_Adlm_SN": "fulani (adlamiska, Senegal)", "ff_CM": "fulani (Kamerun)", "ff_GN": "fulani (Guinea)", "ff_Latn": "fulani (latinska)", @@ -365,6 +378,8 @@ "ko_KP": "koreanska (Nordkorea)", "ko_KR": "koreanska (Sydkorea)", "ks": "kashmiriska", + "ks_Arab": "kashmiriska (arabiska)", + "ks_Arab_IN": "kashmiriska (arabiska, Indien)", "ks_IN": "kashmiriska (Indien)", "ku": "kurdiska", "ku_TR": "kurdiska (Turkiet)", @@ -403,6 +418,7 @@ "mr_IN": "marathi (Indien)", "ms": "malajiska", "ms_BN": "malajiska (Brunei)", + "ms_ID": "malajiska (Indonesien)", "ms_MY": "malajiska (Malaysia)", "ms_SG": "malajiska (Singapore)", "mt": "maltesiska", @@ -483,6 +499,10 @@ "rw": "kinjarwanda", "rw_RW": "kinjarwanda (Rwanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arabiska)", + "sd_Arab_PK": "sindhi (arabiska, Pakistan)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, Indien)", "sd_PK": "sindhi (Pakistan)", "se": "nordsamiska", "se_FI": "nordsamiska (Finland)", @@ -524,6 +544,10 @@ "sr_ME": "serbiska (Montenegro)", "sr_RS": "serbiska (Serbien)", "sr_XK": "serbiska (Kosovo)", + "su": "sundanesiska", + "su_ID": "sundanesiska (Indonesien)", + "su_Latn": "sundanesiska (latinska)", + "su_Latn_ID": "sundanesiska (latinska, Indonesien)", "sv": "svenska", "sv_AX": "svenska (Åland)", "sv_FI": "svenska (Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw.json b/src/Symfony/Component/Intl/Resources/data/locales/sw.json index b603d415a62c..d3fa9227c772 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -365,6 +365,8 @@ "ko_KP": "Kikorea (Korea Kaskazini)", "ko_KR": "Kikorea (Korea Kusini)", "ks": "Kikashmiri", + "ks_Arab": "Kikashmiri (Kiarabu)", + "ks_Arab_IN": "Kikashmiri (Kiarabu, India)", "ks_IN": "Kikashmiri (India)", "ku": "Kikurdi", "ku_TR": "Kikurdi (Uturuki)", @@ -403,6 +405,7 @@ "mr_IN": "Kimarathi (India)", "ms": "Kimalei", "ms_BN": "Kimalei (Brunei)", + "ms_ID": "Kimalei (Indonesia)", "ms_MY": "Kimalei (Malesia)", "ms_SG": "Kimalei (Singapore)", "mt": "Kimalta", @@ -483,6 +486,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Rwanda)", "sd": "Kisindhi", + "sd_Arab": "Kisindhi (Kiarabu)", + "sd_Arab_PK": "Kisindhi (Kiarabu, Pakistani)", + "sd_Deva": "Kisindhi (Kidevanagari)", + "sd_Deva_IN": "Kisindhi (Kidevanagari, India)", "sd_PK": "Kisindhi (Pakistani)", "se": "Kisami cha Kaskazini", "se_FI": "Kisami cha Kaskazini (Ufini)", @@ -524,6 +531,10 @@ "sr_ME": "Kiserbia (Montenegro)", "sr_RS": "Kiserbia (Serbia)", "sr_XK": "Kiserbia (Kosovo)", + "su": "Kisunda", + "su_ID": "Kisunda (Indonesia)", + "su_Latn": "Kisunda (Kilatini)", + "su_Latn_ID": "Kisunda (Kilatini, Indonesia)", "sv": "Kiswidi", "sv_AX": "Kiswidi (Visiwa vya Aland)", "sv_FI": "Kiswidi (Ufini)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ta.json b/src/Symfony/Component/Intl/Resources/data/locales/ta.json index b5cccdcbca32..fb230d73619e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -365,6 +365,8 @@ "ko_KP": "கொரியன் (வட கொரியா)", "ko_KR": "கொரியன் (தென் கொரியா)", "ks": "காஷ்மிரி", + "ks_Arab": "காஷ்மிரி (அரபிக்)", + "ks_Arab_IN": "காஷ்மிரி (அரபிக், இந்தியா)", "ks_IN": "காஷ்மிரி (இந்தியா)", "ku": "குர்திஷ்", "ku_TR": "குர்திஷ் (துருக்கி)", @@ -403,6 +405,7 @@ "mr_IN": "மராத்தி (இந்தியா)", "ms": "மலாய்", "ms_BN": "மலாய் (புருனே)", + "ms_ID": "மலாய் (இந்தோனேசியா)", "ms_MY": "மலாய் (மலேசியா)", "ms_SG": "மலாய் (சிங்கப்பூர்)", "mt": "மால்டிஸ்", @@ -483,6 +486,10 @@ "rw": "கின்யாருவான்டா", "rw_RW": "கின்யாருவான்டா (ருவாண்டா)", "sd": "சிந்தி", + "sd_Arab": "சிந்தி (அரபிக்)", + "sd_Arab_PK": "சிந்தி (அரபிக், பாகிஸ்தான்)", + "sd_Deva": "சிந்தி (தேவநாகரி)", + "sd_Deva_IN": "சிந்தி (தேவநாகரி, இந்தியா)", "sd_PK": "சிந்தி (பாகிஸ்தான்)", "se": "வடக்கு சமி", "se_FI": "வடக்கு சமி (பின்லாந்து)", @@ -524,6 +531,10 @@ "sr_ME": "செர்பியன் (மான்டேனெக்ரோ)", "sr_RS": "செர்பியன் (செர்பியா)", "sr_XK": "செர்பியன் (கொசோவோ)", + "su": "சுண்டானீஸ்", + "su_ID": "சுண்டானீஸ் (இந்தோனேசியா)", + "su_Latn": "சுண்டானீஸ் (லத்தின்)", + "su_Latn_ID": "சுண்டானீஸ் (லத்தின், இந்தோனேசியா)", "sv": "ஸ்வீடிஷ்", "sv_AX": "ஸ்வீடிஷ் (ஆலந்து தீவுகள்)", "sv_FI": "ஸ்வீடிஷ் (பின்லாந்து)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index 385dd4573a19..10c4865fd0ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -365,6 +365,8 @@ "ko_KP": "కొరియన్ (ఉత్తర కొరియా)", "ko_KR": "కొరియన్ (దక్షిణ కొరియా)", "ks": "కాశ్మీరి", + "ks_Arab": "కాశ్మీరి (అరబిక్)", + "ks_Arab_IN": "కాశ్మీరి (అరబిక్, భారతదేశం)", "ks_IN": "కాశ్మీరి (భారతదేశం)", "ku": "కుర్దిష్", "ku_TR": "కుర్దిష్ (టర్కీ)", @@ -403,6 +405,7 @@ "mr_IN": "మరాఠీ (భారతదేశం)", "ms": "మలయ్", "ms_BN": "మలయ్ (బ్రూనే)", + "ms_ID": "మలయ్ (ఇండోనేషియా)", "ms_MY": "మలయ్ (మలేషియా)", "ms_SG": "మలయ్ (సింగపూర్)", "mt": "మాల్టీస్", @@ -483,6 +486,10 @@ "rw": "కిన్యర్వాండా", "rw_RW": "కిన్యర్వాండా (రువాండా)", "sd": "సింధీ", + "sd_Arab": "సింధీ (అరబిక్)", + "sd_Arab_PK": "సింధీ (అరబిక్, పాకిస్తాన్)", + "sd_Deva": "సింధీ (దేవనాగరి)", + "sd_Deva_IN": "సింధీ (దేవనాగరి, భారతదేశం)", "sd_PK": "సింధీ (పాకిస్తాన్)", "se": "ఉత్తర సామి", "se_FI": "ఉత్తర సామి (ఫిన్లాండ్)", @@ -524,6 +531,10 @@ "sr_ME": "సెర్బియన్ (మాంటెనెగ్రో)", "sr_RS": "సెర్బియన్ (సెర్బియా)", "sr_XK": "సెర్బియన్ (కొసోవో)", + "su": "సండానీస్", + "su_ID": "సండానీస్ (ఇండోనేషియా)", + "su_Latn": "సండానీస్ (లాటిన్)", + "su_Latn_ID": "సండానీస్ (లాటిన్, ఇండోనేషియా)", "sv": "స్వీడిష్", "sv_AX": "స్వీడిష్ (ఆలాండ్ దీవులు)", "sv_FI": "స్వీడిష్ (ఫిన్లాండ్)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tg.json b/src/Symfony/Component/Intl/Resources/data/locales/tg.json index 4f9138dcbb4a..3c5c7befba7c 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/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index 7cf4abdc9873..32c7fd1d95bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -365,6 +365,8 @@ "ko_KP": "เกาหลี (เกาหลีเหนือ)", "ko_KR": "เกาหลี (เกาหลีใต้)", "ks": "แคชเมียร์", + "ks_Arab": "แคชเมียร์ (อาหรับ)", + "ks_Arab_IN": "แคชเมียร์ (อาหรับ, อินเดีย)", "ks_IN": "แคชเมียร์ (อินเดีย)", "ku": "เคิร์ด", "ku_TR": "เคิร์ด (ตุรกี)", @@ -403,6 +405,7 @@ "mr_IN": "มราฐี (อินเดีย)", "ms": "มาเลย์", "ms_BN": "มาเลย์ (บรูไน)", + "ms_ID": "มาเลย์ (อินโดนีเซีย)", "ms_MY": "มาเลย์ (มาเลเซีย)", "ms_SG": "มาเลย์ (สิงคโปร์)", "mt": "มอลตา", @@ -483,6 +486,10 @@ "rw": "รวันดา", "rw_RW": "รวันดา (รวันดา)", "sd": "สินธิ", + "sd_Arab": "สินธิ (อาหรับ)", + "sd_Arab_PK": "สินธิ (อาหรับ, ปากีสถาน)", + "sd_Deva": "สินธิ (เทวนาครี)", + "sd_Deva_IN": "สินธิ (เทวนาครี, อินเดีย)", "sd_PK": "สินธิ (ปากีสถาน)", "se": "ซามิเหนือ", "se_FI": "ซามิเหนือ (ฟินแลนด์)", @@ -524,6 +531,10 @@ "sr_ME": "เซอร์เบีย (มอนเตเนโกร)", "sr_RS": "เซอร์เบีย (เซอร์เบีย)", "sr_XK": "เซอร์เบีย (โคโซโว)", + "su": "ซุนดา", + "su_ID": "ซุนดา (อินโดนีเซีย)", + "su_Latn": "ซุนดา (ละติน)", + "su_Latn_ID": "ซุนดา (ละติน, อินโดนีเซีย)", "sv": "สวีเดน", "sv_AX": "สวีเดน (หมู่เกาะโอลันด์)", "sv_FI": "สวีเดน (ฟินแลนด์)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ti.json b/src/Symfony/Component/Intl/Resources/data/locales/ti.json index bffb74d5f119..8167ef00afcd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ti.json @@ -322,6 +322,7 @@ "mr_IN": "ማራቲኛ (ህንዲ)", "ms": "ማላይኛ", "ms_BN": "ማላይኛ (ብሩኒ)", + "ms_ID": "ማላይኛ (ኢንዶኔዢያ)", "ms_MY": "ማላይኛ (ማሌዢያ)", "ms_SG": "ማላይኛ (ሲንጋፖር)", "mt": "ማልቲስኛ", @@ -396,6 +397,10 @@ "sr_ME": "ሰርቢኛ (ሞንቴኔግሮ)", "sr_RS": "ሰርቢኛ (ሰርቢያ)", "sr_XK": "ሰርቢኛ (ኮሶቮ)", + "su": "ሱዳንኛ", + "su_ID": "ሱዳንኛ (ኢንዶኔዢያ)", + "su_Latn": "ሱዳንኛ (ላቲን)", + "su_Latn_ID": "ሱዳንኛ (ላቲን, ኢንዶኔዢያ)", "sv": "ስዊድንኛ", "sv_AX": "ስዊድንኛ (ደሴታት ኣላንድ)", "sv_FI": "ስዊድንኛ (ፊንላንድ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tk.json b/src/Symfony/Component/Intl/Resources/data/locales/tk.json index 93f7b6315ba6..aaa86a37144d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tk.json @@ -365,6 +365,8 @@ "ko_KP": "koreý dili (Demirgazyk Koreýa)", "ko_KR": "koreý dili (Günorta Koreýa)", "ks": "kaşmiri dili", + "ks_Arab": "kaşmiri dili (Arap elipbiýi)", + "ks_Arab_IN": "kaşmiri dili (Arap elipbiýi, Hindistan)", "ks_IN": "kaşmiri dili (Hindistan)", "ku": "kürt dili", "ku_TR": "kürt dili (Türkiýe)", @@ -403,6 +405,7 @@ "mr_IN": "marathi dili (Hindistan)", "ms": "malaý dili", "ms_BN": "malaý dili (Bruneý)", + "ms_ID": "malaý dili (Indoneziýa)", "ms_MY": "malaý dili (Malaýziýa)", "ms_SG": "malaý dili (Singapur)", "mt": "malta dili", @@ -481,6 +484,10 @@ "rw": "kinýaruanda dili", "rw_RW": "kinýaruanda dili (Ruanda)", "sd": "sindhi dili", + "sd_Arab": "sindhi dili (Arap elipbiýi)", + "sd_Arab_PK": "sindhi dili (Arap elipbiýi, Pakistan)", + "sd_Deva": "sindhi dili (Dewanagari elipbiýi)", + "sd_Deva_IN": "sindhi dili (Dewanagari elipbiýi, Hindistan)", "sd_PK": "sindhi dili (Pakistan)", "se": "demirgazyk saam dili", "se_FI": "demirgazyk saam dili (Finlýandiýa)", @@ -520,6 +527,10 @@ "sr_ME": "serb dili (Montenegro)", "sr_RS": "serb dili (Serbiýa)", "sr_XK": "serb dili (Kosowo)", + "su": "sundan dili", + "su_ID": "sundan dili (Indoneziýa)", + "su_Latn": "sundan dili (Latyn elipbiýi)", + "su_Latn_ID": "sundan dili (Latyn elipbiýi, Indoneziýa)", "sv": "şwed dili", "sv_AX": "şwed dili (Aland adalary)", "sv_FI": "şwed dili (Finlýandiýa)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/to.json b/src/Symfony/Component/Intl/Resources/data/locales/to.json index cab64a1346f5..2165c40a2922 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -365,6 +365,8 @@ "ko_KP": "lea fakakōlea (Kōlea tokelau)", "ko_KR": "lea fakakōlea (Kōlea tonga)", "ks": "lea fakakāsimila", + "ks_Arab": "lea fakakāsimila (tohinima fakaʻalepea)", + "ks_Arab_IN": "lea fakakāsimila (tohinima fakaʻalepea, ʻInitia)", "ks_IN": "lea fakakāsimila (ʻInitia)", "ku": "lea fakakulitī", "ku_TR": "lea fakakulitī (Toake)", @@ -403,6 +405,7 @@ "mr_IN": "lea fakamalati (ʻInitia)", "ms": "lea fakamalei", "ms_BN": "lea fakamalei (Pulunei)", + "ms_ID": "lea fakamalei (ʻInitonēsia)", "ms_MY": "lea fakamalei (Malēsia)", "ms_SG": "lea fakamalei (Singapoa)", "mt": "lea fakamalita", @@ -483,6 +486,10 @@ "rw": "lea fakakiniāuanita", "rw_RW": "lea fakakiniāuanita (Luanitā)", "sd": "lea fakasīniti", + "sd_Arab": "lea fakasīniti (tohinima fakaʻalepea)", + "sd_Arab_PK": "lea fakasīniti (tohinima fakaʻalepea, Pākisitani)", + "sd_Deva": "lea fakasīniti (tohinima fakaʻinitia-tevanākalī)", + "sd_Deva_IN": "lea fakasīniti (tohinima fakaʻinitia-tevanākalī, ʻInitia)", "sd_PK": "lea fakasīniti (Pākisitani)", "se": "lea fakasami-tokelau", "se_FI": "lea fakasami-tokelau (Finilani)", @@ -524,6 +531,10 @@ "sr_ME": "lea fakasēpia (Monitenikalo)", "sr_RS": "lea fakasēpia (Sēpia)", "sr_XK": "lea fakasēpia (Kōsovo)", + "su": "lea fakasunitā", + "su_ID": "lea fakasunitā (ʻInitonēsia)", + "su_Latn": "lea fakasunitā (tohinima fakalatina)", + "su_Latn_ID": "lea fakasunitā (tohinima fakalatina, ʻInitonēsia)", "sv": "lea fakasuēteni", "sv_AX": "lea fakasuēteni (ʻOtumotu ʻAlani)", "sv_FI": "lea fakasuēteni (Finilani)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tr.json b/src/Symfony/Component/Intl/Resources/data/locales/tr.json index 351b510ba68f..b691482ddc1b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -365,6 +365,8 @@ "ko_KP": "Korece (Kuzey Kore)", "ko_KR": "Korece (Güney Kore)", "ks": "Keşmir dili", + "ks_Arab": "Keşmir dili (Arap)", + "ks_Arab_IN": "Keşmir dili (Arap, Hindistan)", "ks_IN": "Keşmir dili (Hindistan)", "ku": "Kürtçe", "ku_TR": "Kürtçe (Türkiye)", @@ -403,6 +405,7 @@ "mr_IN": "Marathi dili (Hindistan)", "ms": "Malayca", "ms_BN": "Malayca (Brunei)", + "ms_ID": "Malayca (Endonezya)", "ms_MY": "Malayca (Malezya)", "ms_SG": "Malayca (Singapur)", "mt": "Maltaca", @@ -483,6 +486,10 @@ "rw": "Kinyarwanda", "rw_RW": "Kinyarwanda (Ruanda)", "sd": "Sindhi dili", + "sd_Arab": "Sindhi dili (Arap)", + "sd_Arab_PK": "Sindhi dili (Arap, Pakistan)", + "sd_Deva": "Sindhi dili (Devanagari)", + "sd_Deva_IN": "Sindhi dili (Devanagari, Hindistan)", "sd_PK": "Sindhi dili (Pakistan)", "se": "Kuzey Laponcası", "se_FI": "Kuzey Laponcası (Finlandiya)", @@ -524,6 +531,10 @@ "sr_ME": "Sırpça (Karadağ)", "sr_RS": "Sırpça (Sırbistan)", "sr_XK": "Sırpça (Kosova)", + "su": "Sunda dili", + "su_ID": "Sunda dili (Endonezya)", + "su_Latn": "Sunda dili (Latin)", + "su_Latn_ID": "Sunda dili (Latin, Endonezya)", "sv": "İsveççe", "sv_AX": "İsveççe (Åland Adaları)", "sv_FI": "İsveççe (Finlandiya)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tt.json b/src/Symfony/Component/Intl/Resources/data/locales/tt.json index 3bd10013c09f..6ed38150defb 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/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 45328fd29e08..d1550c18d4f2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -365,6 +365,8 @@ "ko_KP": "كورېيەچە (چاۋشيەن)", "ko_KR": "كورېيەچە (كورېيە)", "ks": "كەشمىرچە", + "ks_Arab": "كەشمىرچە (ئەرەب)", + "ks_Arab_IN": "كەشمىرچە (ئەرەب، ھىندىستان)", "ks_IN": "كەشمىرچە (ھىندىستان)", "ku": "كۇردچە", "ku_TR": "كۇردچە (تۈركىيە)", @@ -403,6 +405,7 @@ "mr_IN": "ماراتىچە (ھىندىستان)", "ms": "مالايچە", "ms_BN": "مالايچە (بىرۇنېي)", + "ms_ID": "مالايچە (ھىندونېزىيە)", "ms_MY": "مالايچە (مالايسىيا)", "ms_SG": "مالايچە (سىنگاپور)", "mt": "مالتاچە", @@ -483,6 +486,10 @@ "rw": "كېنىيەرىۋانداچە", "rw_RW": "كېنىيەرىۋانداچە (رىۋاندا)", "sd": "سىندىچە", + "sd_Arab": "سىندىچە (ئەرەب)", + "sd_Arab_PK": "سىندىچە (ئەرەب، پاكىستان)", + "sd_Deva": "سىندىچە (دېۋاناگارى)", + "sd_Deva_IN": "سىندىچە (دېۋاناگارى، ھىندىستان)", "sd_PK": "سىندىچە (پاكىستان)", "se": "شىمالىي سامىچە", "se_FI": "شىمالىي سامىچە (فىنلاندىيە)", @@ -524,6 +531,10 @@ "sr_ME": "سېربچە (قارا تاغ)", "sr_RS": "سېربچە (سېربىيە)", "sr_XK": "سېربچە (كوسوۋو)", + "su": "سۇنداچە", + "su_ID": "سۇنداچە (ھىندونېزىيە)", + "su_Latn": "سۇنداچە (لاتىنچە)", + "su_Latn_ID": "سۇنداچە (لاتىنچە، ھىندونېزىيە)", "sv": "شىۋېدچە", "sv_AX": "شىۋېدچە (ئالاند ئاراللىرى)", "sv_FI": "شىۋېدچە (فىنلاندىيە)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index b4fbc58fde9e..411e175d24ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -234,6 +234,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": "фула (латиниця)", @@ -365,6 +378,8 @@ "ko_KP": "корейська (Північна Корея)", "ko_KR": "корейська (Південна Корея)", "ks": "кашмірська", + "ks_Arab": "кашмірська (арабиця)", + "ks_Arab_IN": "кашмірська (арабиця, Індія)", "ks_IN": "кашмірська (Індія)", "ku": "курдська", "ku_TR": "курдська (Туреччина)", @@ -403,6 +418,7 @@ "mr_IN": "маратхі (Індія)", "ms": "малайська", "ms_BN": "малайська (Бруней)", + "ms_ID": "малайська (Індонезія)", "ms_MY": "малайська (Малайзія)", "ms_SG": "малайська (Сінгапур)", "mt": "мальтійська", @@ -483,6 +499,10 @@ "rw": "кіньяруанда", "rw_RW": "кіньяруанда (Руанда)", "sd": "сіндхі", + "sd_Arab": "сіндхі (арабиця)", + "sd_Arab_PK": "сіндхі (арабиця, Пакистан)", + "sd_Deva": "сіндхі (деванагарі)", + "sd_Deva_IN": "сіндхі (деванагарі, Індія)", "sd_PK": "сіндхі (Пакистан)", "se": "північносаамська", "se_FI": "північносаамська (Фінляндія)", @@ -524,6 +544,10 @@ "sr_ME": "сербська (Чорногорія)", "sr_RS": "сербська (Сербія)", "sr_XK": "сербська (Косово)", + "su": "сунданська", + "su_ID": "сунданська (Індонезія)", + "su_Latn": "сунданська (латиниця)", + "su_Latn_ID": "сунданська (латиниця, Індонезія)", "sv": "шведська", "sv_AX": "шведська (Аландські Острови)", "sv_FI": "шведська (Фінляндія)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index 82e912947b9c..4482657089fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -365,6 +365,8 @@ "ko_KP": "کوریائی (شمالی کوریا)", "ko_KR": "کوریائی (جنوبی کوریا)", "ks": "کشمیری", + "ks_Arab": "کشمیری (عربی)", + "ks_Arab_IN": "کشمیری (عربی،بھارت)", "ks_IN": "کشمیری (بھارت)", "ku": "کردش", "ku_TR": "کردش (ترکی)", @@ -403,6 +405,7 @@ "mr_IN": "مراٹهی (بھارت)", "ms": "مالے", "ms_BN": "مالے (برونائی)", + "ms_ID": "مالے (انڈونیشیا)", "ms_MY": "مالے (ملائشیا)", "ms_SG": "مالے (سنگاپور)", "mt": "مالٹی", @@ -483,6 +486,10 @@ "rw": "کینیاروانڈا", "rw_RW": "کینیاروانڈا (روانڈا)", "sd": "سندھی", + "sd_Arab": "سندھی (عربی)", + "sd_Arab_PK": "سندھی (عربی،پاکستان)", + "sd_Deva": "سندھی (دیوناگری)", + "sd_Deva_IN": "سندھی (دیوناگری،بھارت)", "sd_PK": "سندھی (پاکستان)", "se": "شمالی سامی", "se_FI": "شمالی سامی (فن لینڈ)", @@ -524,6 +531,10 @@ "sr_ME": "سربین (مونٹے نیگرو)", "sr_RS": "سربین (سربیا)", "sr_XK": "سربین (کوسووو)", + "su": "سنڈانیز", + "su_ID": "سنڈانیز (انڈونیشیا)", + "su_Latn": "سنڈانیز (لاطینی)", + "su_Latn_ID": "سنڈانیز (لاطینی،انڈونیشیا)", "sv": "سویڈش", "sv_AX": "سویڈش (آلینڈ آئلینڈز)", "sv_FI": "سویڈش (فن لینڈ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index ebe002e2cf59..8872f2dd7009 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -365,6 +365,8 @@ "ko_KP": "koreyscha (Shimoliy Koreya)", "ko_KR": "koreyscha (Janubiy Koreya)", "ks": "kashmircha", + "ks_Arab": "kashmircha (arab)", + "ks_Arab_IN": "kashmircha (arab, Hindiston)", "ks_IN": "kashmircha (Hindiston)", "ku": "kurdcha", "ku_TR": "kurdcha (Turkiya)", @@ -403,6 +405,7 @@ "mr_IN": "maratxi (Hindiston)", "ms": "malay", "ms_BN": "malay (Bruney)", + "ms_ID": "malay (Indoneziya)", "ms_MY": "malay (Malayziya)", "ms_SG": "malay (Singapur)", "mt": "maltiy", @@ -481,6 +484,10 @@ "rw": "kinyaruanda", "rw_RW": "kinyaruanda (Ruanda)", "sd": "sindhi", + "sd_Arab": "sindhi (arab)", + "sd_Arab_PK": "sindhi (arab, Pokiston)", + "sd_Deva": "sindhi (devanagari)", + "sd_Deva_IN": "sindhi (devanagari, Hindiston)", "sd_PK": "sindhi (Pokiston)", "se": "shimoliy saam", "se_FI": "shimoliy saam (Finlandiya)", @@ -520,6 +527,10 @@ "sr_ME": "serbcha (Chernogoriya)", "sr_RS": "serbcha (Serbiya)", "sr_XK": "serbcha (Kosovo)", + "su": "sundan", + "su_ID": "sundan (Indoneziya)", + "su_Latn": "sundan (lotin)", + "su_Latn_ID": "sundan (lotin, Indoneziya)", "sv": "shved", "sv_AX": "shved (Aland orollari)", "sv_FI": "shved (Finlandiya)", 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 54bede996fa4..6684bbd7f061 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/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json index e5b3fea1235b..999a556369bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -364,6 +364,8 @@ "ko_KP": "корейсча (Шимолий Корея)", "ko_KR": "корейсча (Жанубий Корея)", "ks": "кашмирча", + "ks_Arab": "кашмирча (Араб)", + "ks_Arab_IN": "кашмирча (Араб, Ҳиндистон)", "ks_IN": "кашмирча (Ҳиндистон)", "ku": "курдча", "ku_TR": "курдча (Туркия)", @@ -402,6 +404,7 @@ "mr_IN": "маратхи (Ҳиндистон)", "ms": "малай тил", "ms_BN": "малай тил (Бруней)", + "ms_ID": "малай тил (Индонезия)", "ms_MY": "малай тил (Малайзия)", "ms_SG": "малай тил (Сингапур)", "mt": "малтача", @@ -479,6 +482,10 @@ "rw": "киняруанда", "rw_RW": "киняруанда (Руанда)", "sd": "синдҳи", + "sd_Arab": "синдҳи (Араб)", + "sd_Arab_PK": "синдҳи (Араб, Покистон)", + "sd_Deva": "синдҳи (Девангари)", + "sd_Deva_IN": "синдҳи (Девангари, Ҳиндистон)", "sd_PK": "синдҳи (Покистон)", "se": "шимолий саамча", "se_FI": "шимолий саамча (Финляндия)", @@ -518,6 +525,10 @@ "sr_ME": "сербча (Черногория)", "sr_RS": "сербча (Сербия)", "sr_XK": "сербча (Косово)", + "su": "сунданча", + "su_ID": "сунданча (Индонезия)", + "su_Latn": "сунданча (Лотин)", + "su_Latn_ID": "сунданча (Лотин, Индонезия)", "sv": "шведча", "sv_AX": "шведча (Аланд ороллари)", "sv_FI": "шведча (Финляндия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index 1861fd4e65ae..1783bc3a5eb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -365,6 +365,8 @@ "ko_KP": "Tiếng Hàn (Triều Tiên)", "ko_KR": "Tiếng Hàn (Hàn Quốc)", "ks": "Tiếng Kashmir", + "ks_Arab": "Tiếng Kashmir (Chữ Ả Rập)", + "ks_Arab_IN": "Tiếng Kashmir (Chữ Ả Rập, Ấn Độ)", "ks_IN": "Tiếng Kashmir (Ấn Độ)", "ku": "Tiếng Kurd", "ku_TR": "Tiếng Kurd (Thổ Nhĩ Kỳ)", @@ -403,6 +405,7 @@ "mr_IN": "Tiếng Marathi (Ấn Độ)", "ms": "Tiếng Mã Lai", "ms_BN": "Tiếng Mã Lai (Brunei)", + "ms_ID": "Tiếng Mã Lai (Indonesia)", "ms_MY": "Tiếng Mã Lai (Malaysia)", "ms_SG": "Tiếng Mã Lai (Singapore)", "mt": "Tiếng Malta", @@ -483,6 +486,10 @@ "rw": "Tiếng Kinyarwanda", "rw_RW": "Tiếng Kinyarwanda (Rwanda)", "sd": "Tiếng Sindhi", + "sd_Arab": "Tiếng Sindhi (Chữ Ả Rập)", + "sd_Arab_PK": "Tiếng Sindhi (Chữ Ả Rập, Pakistan)", + "sd_Deva": "Tiếng Sindhi (Chữ Devanagari)", + "sd_Deva_IN": "Tiếng Sindhi (Chữ Devanagari, Ấn Độ)", "sd_PK": "Tiếng Sindhi (Pakistan)", "se": "Tiếng Sami Miền Bắc", "se_FI": "Tiếng Sami Miền Bắc (Phần Lan)", @@ -524,6 +531,10 @@ "sr_ME": "Tiếng Serbia (Montenegro)", "sr_RS": "Tiếng Serbia (Serbia)", "sr_XK": "Tiếng Serbia (Kosovo)", + "su": "Tiếng Sunda", + "su_ID": "Tiếng Sunda (Indonesia)", + "su_Latn": "Tiếng Sunda (Chữ La tinh)", + "su_Latn_ID": "Tiếng Sunda (Chữ La tinh, Indonesia)", "sv": "Tiếng Thụy Điển", "sv_AX": "Tiếng Thụy Điển (Quần đảo Åland)", "sv_FI": "Tiếng Thụy Điển (Phần Lan)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/wo.json b/src/Symfony/Component/Intl/Resources/data/locales/wo.json index e62246fac40d..a0fa8d1c8ccd 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 285f02498600..7d694a79dcde 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -340,6 +340,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/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index 5455d17358e3..8b5c81ed61ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -47,9 +47,14 @@ "be_BY": "Èdè Belarusi (Orílẹ́ède Bélárúsì)", "bg": "Èdè Bugaria", "bg_BG": "Èdè Bugaria (Orílẹ́ède Bùùgáríà)", + "bm": "Báḿbàrà", + "bm_ML": "Báḿbàrà (Orílẹ́ède Mali)", "bn": "Èdè Bengali", "bn_BD": "Èdè Bengali (Orílẹ́ède Bángáládésì)", "bn_IN": "Èdè Bengali (Orílẹ́ède India)", + "bo": "Tibetán", + "bo_CN": "Tibetán (Orilẹ̀-èdè Ṣáínà)", + "bo_IN": "Tibetán (Orílẹ́ède India)", "br": "Èdè Bretoni", "br_FR": "Èdè Bretoni (Orílẹ́ède Faranse)", "bs": "Èdè Bosnia", @@ -63,6 +68,8 @@ "ca_ES": "Èdè Catala (Orílẹ́ède Sipani)", "ca_FR": "Èdè Catala (Orílẹ́ède Faranse)", "ca_IT": "Èdè Catala (Orílẹ́ède Itáli)", + "ce": "Chechen", + "ce_RU": "Chechen (Orílẹ́ède Rọṣia)", "cs": "Èdè seeki", "cs_CZ": "Èdè seeki (Orílẹ́ède ṣẹ́ẹ́kì)", "cy": "Èdè Welshi", @@ -78,6 +85,11 @@ "de_IT": "Èdè Jámánì (Orílẹ́ède Itáli)", "de_LI": "Èdè Jámánì (Orílẹ́ède Lẹṣitẹnisiteni)", "de_LU": "Èdè Jámánì (Orílẹ́ède Lusemogi)", + "dz": "Dzongkha", + "dz_BT": "Dzongkha (Orílẹ́ède Bútánì)", + "ee": "Ewè", + "ee_GH": "Ewè (Orílẹ́ède Gana)", + "ee_TG": "Ewè (Orílẹ́ède Togo)", "el": "Èdè Giriki", "el_CY": "Èdè Giriki (Orílẹ́ède Kúrúsì)", "el_GR": "Èdè Giriki (Orílẹ́ède Geriisi)", @@ -96,11 +108,14 @@ "en_BW": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Bọ̀tìsúwánà)", "en_BZ": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Bèlísẹ̀)", "en_CA": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Kánádà)", + "en_CC": "Èdè Gẹ̀ẹ́sì (Erékùsù Cocos [Keeling])", "en_CH": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède switiṣilandi)", "en_CK": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etíokun Kùúkù)", "en_CM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Kamerúúnì)", + "en_CX": "Èdè Gẹ̀ẹ́sì (Erékùsù Christmas)", "en_CY": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Kúrúsì)", "en_DE": "Èdè Gẹ̀ẹ́sì (Orílẹèdè Jámánì)", + "en_DG": "Èdè Gẹ̀ẹ́sì (Diego Gaṣia)", "en_DK": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Dẹ́mákì)", "en_DM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Dòmíníkà)", "en_ER": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Eritira)", @@ -110,15 +125,19 @@ "en_FM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Makoronesia)", "en_GB": "Èdè Gẹ̀ẹ́sì (Orílẹ́èdè Gẹ̀ẹ́sì)", "en_GD": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Genada)", + "en_GG": "Èdè Gẹ̀ẹ́sì (Guernsey)", "en_GH": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Gana)", "en_GI": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Gibaratara)", "en_GM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Gambia)", "en_GU": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Guamu)", "en_GY": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Guyana)", + "en_HK": "Èdè Gẹ̀ẹ́sì (Hong Kong SAR ti Ṣáìnà)", "en_IE": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Ailandi)", "en_IL": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Iserẹli)", + "en_IM": "Èdè Gẹ̀ẹ́sì (Isle of Man)", "en_IN": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède India)", "en_IO": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etíkun Índíánì ti Ìlú Bírítísì)", + "en_JE": "Èdè Gẹ̀ẹ́sì (Jersey)", "en_JM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Jamaika)", "en_KE": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Kenya)", "en_KI": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Kiribati)", @@ -129,6 +148,7 @@ "en_LS": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Lesoto)", "en_MG": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Madasika)", "en_MH": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etikun Máṣali)", + "en_MO": "Èdè Gẹ̀ẹ́sì (Macao SAR ti Ṣáìnà)", "en_MP": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etikun Guusu Mariana)", "en_MS": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Motserati)", "en_MT": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Malata)", @@ -158,6 +178,7 @@ "en_SI": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Silofania)", "en_SL": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Siria looni)", "en_SS": "Èdè Gẹ̀ẹ́sì (Gúúsù Sudan)", + "en_SX": "Èdè Gẹ̀ẹ́sì (Sint Maarten)", "en_SZ": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Saṣiland)", "en_TC": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tọọki ati Etikun Kakọsi)", "en_TK": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tokelau)", @@ -166,6 +187,7 @@ "en_TV": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tufalu)", "en_TZ": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tàǹsáníà)", "en_UG": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Uganda)", + "en_UM": "Èdè Gẹ̀ẹ́sì (Àwọn Erékùsù Kékèké Agbègbè US)", "en_US": "Èdè Gẹ̀ẹ́sì (Orílẹ̀-èdè Amẹrikà)", "en_VC": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Fisẹnnti ati Genadina)", "en_VG": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etíkun Fágínì ti ìlú Bírítísì)", @@ -186,11 +208,13 @@ "es_CR": "Èdè Sípáníìṣì (Orílẹ́ède Kuusita Ríkà)", "es_CU": "Èdè Sípáníìṣì (Orílẹ́ède Kúbà)", "es_DO": "Èdè Sípáníìṣì (Orilẹ́ède Dòmíníkánì)", + "es_EA": "Èdè Sípáníìṣì (Seuta àti Melilla)", "es_EC": "Èdè Sípáníìṣì (Orílẹ́ède Ekuádò)", "es_ES": "Èdè Sípáníìṣì (Orílẹ́ède Sipani)", "es_GQ": "Èdè Sípáníìṣì (Orílẹ́ède Ekutoria Gini)", "es_GT": "Èdè Sípáníìṣì (Orílẹ́ède Guatemala)", "es_HN": "Èdè Sípáníìṣì (Orílẹ́ède Hondurasi)", + "es_IC": "Èdè Sípáníìṣì (Ẹrékùsù Kánárì)", "es_MX": "Èdè Sípáníìṣì (Orílẹ́ède Mesiko)", "es_NI": "Èdè Sípáníìṣì (Orílẹ́ède NIkaragua)", "es_PA": "Èdè Sípáníìṣì (Orílẹ́ède Panama)", @@ -231,11 +255,13 @@ "fi_FI": "Èdè Finisi (Orílẹ́ède Filandi)", "fo": "Èdè Faroesi", "fo_DK": "Èdè Faroesi (Orílẹ́ède Dẹ́mákì)", + "fo_FO": "Èdè Faroesi (Àwọn Erékùsù ti Faroe)", "fr": "Èdè Faransé", "fr_BE": "Èdè Faransé (Orílẹ́ède Bégíọ́mù)", "fr_BF": "Èdè Faransé (Orílẹ́ède Bùùkíná Fasò)", "fr_BI": "Èdè Faransé (Orílẹ́ède Bùùrúndì)", "fr_BJ": "Èdè Faransé (Orílẹ́ède Bẹ̀nẹ̀)", + "fr_BL": "Èdè Faransé (St. Barthélemy)", "fr_CA": "Èdè Faransé (Orílẹ́ède Kánádà)", "fr_CD": "Èdè Faransé (Orilẹ́ède Kóngò)", "fr_CF": "Èdè Faransé (Orílẹ́ède Àrin gùngun Áfíríkà)", @@ -256,6 +282,7 @@ "fr_LU": "Èdè Faransé (Orílẹ́ède Lusemogi)", "fr_MA": "Èdè Faransé (Orílẹ́ède Moroko)", "fr_MC": "Èdè Faransé (Orílẹ́ède Monako)", + "fr_MF": "Èdè Faransé (St. Martin)", "fr_MG": "Èdè Faransé (Orílẹ́ède Madasika)", "fr_ML": "Èdè Faransé (Orílẹ́ède Mali)", "fr_MQ": "Èdè Faransé (Orílẹ́ède Matinikuwi)", @@ -287,6 +314,8 @@ "gl_ES": "Èdè Galicia (Orílẹ́ède Sipani)", "gu": "Èdè Gujarati", "gu_IN": "Èdè Gujarati (Orílẹ́ède India)", + "gv": "Máǹkì", + "gv_IM": "Máǹkì (Isle of Man)", "ha": "Èdè Hausa", "ha_GH": "Èdè Hausa (Orílẹ́ède Gana)", "ha_NE": "Èdè Hausa (Orílẹ́ède Nàìjá)", @@ -307,6 +336,8 @@ "id_ID": "Èdè Indonéṣíà (Orílẹ́ède Indonesia)", "ig": "Èdè Yíbò", "ig_NG": "Èdè Yíbò (Orilẹ̀-èdè Nàìjíríà)", + "ii": "Ṣíkuán Yì", + "ii_CN": "Ṣíkuán Yì (Orilẹ̀-èdè Ṣáínà)", "is": "Èdè Icelandic", "is_IS": "Èdè Icelandic (Orílẹ́ède Aṣilandi)", "it": "Èdè Ítálì", @@ -320,6 +351,12 @@ "jv_ID": "Èdè Javanasi (Orílẹ́ède Indonesia)", "ka": "Èdè Georgia", "ka_GE": "Èdè Georgia (Orílẹ́ède Gọgia)", + "ki": "Kíkúyù", + "ki_KE": "Kíkúyù (Orílẹ́ède Kenya)", + "kk": "Kaṣakì", + "kk_KZ": "Kaṣakì (Orílẹ́ède Kaṣaṣatani)", + "kl": "Kalaalísùtì", + "kl_GL": "Kalaalísùtì (Orílẹ́ède Gerelandi)", "km": "Èdè kameri", "km_KH": "Èdè kameri (Orílẹ́ède Kàmùbódíà)", "kn": "Èdè Kannada", @@ -327,39 +364,94 @@ "ko": "Èdè Kòríà", "ko_KP": "Èdè Kòríà (Orílẹ́ède Guusu Kọria)", "ko_KR": "Èdè Kòríà (Orílẹ́ède Ariwa Kọria)", + "ks": "Kaṣímirì", + "ks_Arab": "Kaṣímirì (èdè Lárúbáwá)", + "ks_Arab_IN": "Kaṣímirì (èdè Lárúbáwá, Orílẹ́ède India)", + "ks_IN": "Kaṣímirì (Orílẹ́ède India)", + "ku": "Kọdiṣì", + "ku_TR": "Kọdiṣì (Orílẹ́ède Tọọki)", + "kw": "Kọ́nììṣì", + "kw_GB": "Kọ́nììṣì (Orílẹ́èdè Gẹ̀ẹ́sì)", + "ky": "Kírígíìsì", + "ky_KG": "Kírígíìsì (Orílẹ́ède Kuriṣisitani)", + "lb": "Lùṣẹ́mbọ́ọ̀gì", + "lb_LU": "Lùṣẹ́mbọ́ọ̀gì (Orílẹ́ède Lusemogi)", + "lg": "Ganda", + "lg_UG": "Ganda (Orílẹ́ède Uganda)", + "ln": "Lìǹgálà", + "ln_AO": "Lìǹgálà (Orílẹ́ède Ààngólà)", + "ln_CD": "Lìǹgálà (Orilẹ́ède Kóngò)", + "ln_CF": "Lìǹgálà (Orílẹ́ède Àrin gùngun Áfíríkà)", + "ln_CG": "Lìǹgálà (Orílẹ́ède Kóngò)", + "lo": "Láò", + "lo_LA": "Láò (Orílẹ́ède Laosi)", "lt": "Èdè Lithuania", "lt_LT": "Èdè Lithuania (Orílẹ́ède Lituania)", + "lu": "Lúbà-Katanga", + "lu_CD": "Lúbà-Katanga (Orilẹ́ède Kóngò)", "lv": "Èdè Latvianu", "lv_LV": "Èdè Latvianu (Orílẹ́ède Latifia)", + "mg": "Malagasì", + "mg_MG": "Malagasì (Orílẹ́ède Madasika)", + "mi": "Màórì", + "mi_NZ": "Màórì (Orílẹ́ède ṣilandi Titun)", "mk": "Èdè Macedonia", "mk_MK": "Èdè Macedonia (Àríwá Macedonia)", + "ml": "Málàyálámù", + "ml_IN": "Málàyálámù (Orílẹ́ède India)", + "mn": "Mòngólíà", + "mn_MN": "Mòngólíà (Orílẹ́ède Mogolia)", "mr": "Èdè marathi", "mr_IN": "Èdè marathi (Orílẹ́ède India)", "ms": "Èdè Malaya", "ms_BN": "Èdè Malaya (Orílẹ́ède Búrúnẹ́lì)", + "ms_ID": "Èdè Malaya (Orílẹ́ède Indonesia)", "ms_MY": "Èdè Malaya (Orílẹ́ède Malasia)", "ms_SG": "Èdè Malaya (Orílẹ́ède Singapo)", "mt": "Èdè Malta", "mt_MT": "Èdè Malta (Orílẹ́ède Malata)", "my": "Èdè Bumiisi", "my_MM": "Èdè Bumiisi (Orílẹ́ède Manamari)", + "nb": "Nọ́ọ́wè Bokímàl", + "nb_NO": "Nọ́ọ́wè Bokímàl (Orílẹ́ède Nọọwii)", + "nb_SJ": "Nọ́ọ́wè Bokímàl (Svalbard & Jan Mayen)", + "nd": "Àríwá Ndebele", + "nd_ZW": "Àríwá Ndebele (Orílẹ́ède ṣimibabe)", "ne": "Èdè Nepali", "ne_IN": "Èdè Nepali (Orílẹ́ède India)", "ne_NP": "Èdè Nepali (Orílẹ́ède Nepa)", "nl": "Èdè Dọ́ọ̀ṣì", "nl_AW": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Árúbà)", "nl_BE": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Bégíọ́mù)", + "nl_BQ": "Èdè Dọ́ọ̀ṣì (Caribbean Netherlands)", + "nl_CW": "Èdè Dọ́ọ̀ṣì (Curaçao)", "nl_NL": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Nedalandi)", "nl_SR": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Surinami)", + "nl_SX": "Èdè Dọ́ọ̀ṣì (Sint Maarten)", + "nn": "Nọ́ọ́wè Nínọ̀sìkì", + "nn_NO": "Nọ́ọ́wè Nínọ̀sìkì (Orílẹ́ède Nọọwii)", "no": "Èdè Norway", "no_NO": "Èdè Norway (Orílẹ́ède Nọọwii)", + "om": "Òròmọ́", + "om_ET": "Òròmọ́ (Orílẹ́ède Etopia)", + "om_KE": "Òròmọ́ (Orílẹ́ède Kenya)", + "or": "Òdíà", + "or_IN": "Òdíà (Orílẹ́ède India)", + "os": "Ọṣẹ́tíìkì", + "os_GE": "Ọṣẹ́tíìkì (Orílẹ́ède Gọgia)", + "os_RU": "Ọṣẹ́tíìkì (Orílẹ́ède Rọṣia)", "pa": "Èdè Punjabi", "pa_Arab": "Èdè Punjabi (èdè Lárúbáwá)", "pa_Arab_PK": "Èdè Punjabi (èdè Lárúbáwá, Orílẹ́ède Pakisitan)", + "pa_Guru": "Èdè Punjabi (Gurumúkhì)", + "pa_Guru_IN": "Èdè Punjabi (Gurumúkhì, Orílẹ́ède India)", "pa_IN": "Èdè Punjabi (Orílẹ́ède India)", "pa_PK": "Èdè Punjabi (Orílẹ́ède Pakisitan)", "pl": "Èdè Póláǹdì", "pl_PL": "Èdè Póláǹdì (Orílẹ́ède Polandi)", + "ps": "Páshítò", + "ps_AF": "Páshítò (Orílẹ́ède Àfùgànístánì)", + "ps_PK": "Páshítò (Orílẹ́ède Pakisitan)", "pt": "Èdè Pọtogí", "pt_AO": "Èdè Pọtogí (Orílẹ́ède Ààngólà)", "pt_BR": "Èdè Pọtogí (Orilẹ̀-èdè Bàràsílì)", @@ -368,10 +460,19 @@ "pt_GQ": "Èdè Pọtogí (Orílẹ́ède Ekutoria Gini)", "pt_GW": "Èdè Pọtogí (Orílẹ́ède Gene-Busau)", "pt_LU": "Èdè Pọtogí (Orílẹ́ède Lusemogi)", + "pt_MO": "Èdè Pọtogí (Macao SAR ti Ṣáìnà)", "pt_MZ": "Èdè Pọtogí (Orílẹ́ède Moṣamibiku)", "pt_PT": "Èdè Pọtogí (Orílẹ́ède Pọ́túgà)", "pt_ST": "Èdè Pọtogí (Orílẹ́ède Sao tomi ati piriiṣipi)", "pt_TL": "Èdè Pọtogí (Orílẹ́ède ÌlàOòrùn Tímọ̀)", + "qu": "Kúẹ́ńjùà", + "qu_BO": "Kúẹ́ńjùà (Orílẹ́ède Bọ̀lífíyà)", + "qu_EC": "Kúẹ́ńjùà (Orílẹ́ède Ekuádò)", + "qu_PE": "Kúẹ́ńjùà (Orílẹ́ède Peru)", + "rm": "Rómáǹṣì", + "rm_CH": "Rómáǹṣì (Orílẹ́ède switiṣilandi)", + "rn": "Rúńdì", + "rn_BI": "Rúńdì (Orílẹ́ède Bùùrúndì)", "ro": "Èdè Romania", "ro_MD": "Èdè Romania (Orílẹ́ède Modofia)", "ro_RO": "Èdè Romania (Orílẹ́ède Romaniya)", @@ -385,7 +486,17 @@ "rw": "Èdè Ruwanda", "rw_RW": "Èdè Ruwanda (Orílẹ́ède Ruwanda)", "sd": "Èdè Sindhi", + "sd_Arab": "Èdè Sindhi (èdè Lárúbáwá)", + "sd_Arab_PK": "Èdè Sindhi (èdè Lárúbáwá, Orílẹ́ède Pakisitan)", + "sd_Deva": "Èdè Sindhi (Dẹfanagárì)", + "sd_Deva_IN": "Èdè Sindhi (Dẹfanagárì, Orílẹ́ède India)", "sd_PK": "Èdè Sindhi (Orílẹ́ède Pakisitan)", + "se": "Apáàríwá Sami", + "se_FI": "Apáàríwá Sami (Orílẹ́ède Filandi)", + "se_NO": "Apáàríwá Sami (Orílẹ́ède Nọọwii)", + "se_SE": "Apáàríwá Sami (Orílẹ́ède Swidini)", + "sg": "Sango", + "sg_CF": "Sango (Orílẹ́ède Àrin gùngun Áfíríkà)", "sh": "Èdè Serbo-Croatiani", "sh_BA": "Èdè Serbo-Croatiani (Orílẹ́ède Bọ̀síníà àti Ẹtisẹgófínà)", "si": "Èdè Sinhalese", @@ -394,6 +505,8 @@ "sk_SK": "Èdè Slovaki (Orílẹ́ède Silofakia)", "sl": "Èdè Slovenia", "sl_SI": "Èdè Slovenia (Orílẹ́ède Silofania)", + "sn": "Ṣọnà", + "sn_ZW": "Ṣọnà (Orílẹ́ède ṣimibabe)", "so": "Èdè ara Somalia", "so_DJ": "Èdè ara Somalia (Orílẹ́ède Díbọ́ótì)", "so_ET": "Èdè ara Somalia (Orílẹ́ède Etopia)", @@ -407,12 +520,23 @@ "sr_BA": "Èdè Serbia (Orílẹ́ède Bọ̀síníà àti Ẹtisẹgófínà)", "sr_Cyrl": "Èdè Serbia (èdè ilẹ̀ Rọ́ṣíà)", "sr_Cyrl_BA": "Èdè Serbia (èdè ilẹ̀ Rọ́ṣíà, Orílẹ́ède Bọ̀síníà àti Ẹtisẹgófínà)", + "sr_Cyrl_ME": "Èdè Serbia (èdè ilẹ̀ Rọ́ṣíà, Montenegro)", + "sr_Cyrl_RS": "Èdè Serbia (èdè ilẹ̀ Rọ́ṣíà, Serbia)", "sr_Cyrl_XK": "Èdè Serbia (èdè ilẹ̀ Rọ́ṣíà, Kòsófò)", "sr_Latn": "Èdè Serbia (Èdè Látìn)", "sr_Latn_BA": "Èdè Serbia (Èdè Látìn, Orílẹ́ède Bọ̀síníà àti Ẹtisẹgófínà)", + "sr_Latn_ME": "Èdè Serbia (Èdè Látìn, Montenegro)", + "sr_Latn_RS": "Èdè Serbia (Èdè Látìn, Serbia)", "sr_Latn_XK": "Èdè Serbia (Èdè Látìn, Kòsófò)", + "sr_ME": "Èdè Serbia (Montenegro)", + "sr_RS": "Èdè Serbia (Serbia)", "sr_XK": "Èdè Serbia (Kòsófò)", + "su": "Èdè Sudani", + "su_ID": "Èdè Sudani (Orílẹ́ède Indonesia)", + "su_Latn": "Èdè Sudani (Èdè Látìn)", + "su_Latn_ID": "Èdè Sudani (Èdè Látìn, Orílẹ́ède Indonesia)", "sv": "Èdè Suwidiisi", + "sv_AX": "Èdè Suwidiisi (Àwọn Erékùsù ti Åland)", "sv_FI": "Èdè Suwidiisi (Orílẹ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílẹ́ède Swidini)", "sw": "Èdè Swahili", @@ -427,6 +551,8 @@ "ta_SG": "Èdè Tamili (Orílẹ́ède Singapo)", "te": "Èdè Telugu", "te_IN": "Èdè Telugu (Orílẹ́ède India)", + "tg": "Tàjíìkì", + "tg_TJ": "Tàjíìkì (Orílẹ́ède Takisitani)", "th": "Èdè Tai", "th_TH": "Èdè Tai (Orílẹ́ède Tailandi)", "ti": "Èdè Tigrinya", @@ -434,9 +560,15 @@ "ti_ET": "Èdè Tigrinya (Orílẹ́ède Etopia)", "tk": "Èdè Turkmen", "tk_TM": "Èdè Turkmen (Orílẹ́ède Tọọkimenisita)", + "to": "Tóńgàn", + "to_TO": "Tóńgàn (Orílẹ́ède Tonga)", "tr": "Èdè Tọọkisi", "tr_CY": "Èdè Tọọkisi (Orílẹ́ède Kúrúsì)", "tr_TR": "Èdè Tọọkisi (Orílẹ́ède Tọọki)", + "tt": "Tatarí", + "tt_RU": "Tatarí (Orílẹ́ède Rọṣia)", + "ug": "Yúgọ̀", + "ug_CN": "Yúgọ̀ (Orilẹ̀-èdè Ṣáínà)", "uk": "Èdè Ukania", "uk_UA": "Èdè Ukania (Orílẹ́ède Ukarini)", "ur": "Èdè Udu", @@ -453,6 +585,8 @@ "uz_UZ": "Èdè Uzbek (Orílẹ́ède Nṣibẹkisitani)", "vi": "Èdè Jetinamu", "vi_VN": "Èdè Jetinamu (Orílẹ́ède Fẹtinami)", + "wo": "Wọ́lọ́ọ̀fù", + "wo_SN": "Wọ́lọ́ọ̀fù (Orílẹ́ède Sẹnẹga)", "xh": "Èdè Xhosa", "xh_ZA": "Èdè Xhosa (Gúúṣù Áfíríkà)", "yi": "Èdè Yiddishi", @@ -461,11 +595,17 @@ "yo_NG": "Èdè Yorùbá (Orilẹ̀-èdè Nàìjíríà)", "zh": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà", "zh_CN": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Orilẹ̀-èdè Ṣáínà)", + "zh_HK": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Hong Kong SAR ti Ṣáìnà)", "zh_Hans": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (tí wọ́n mú rọrùn.)", "zh_Hans_CN": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (tí wọ́n mú rọrùn., Orilẹ̀-èdè Ṣáínà)", + "zh_Hans_HK": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (tí wọ́n mú rọrùn., Hong Kong SAR ti Ṣáìnà)", + "zh_Hans_MO": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (tí wọ́n mú rọrùn., Macao SAR ti Ṣáìnà)", "zh_Hans_SG": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (tí wọ́n mú rọrùn., Orílẹ́ède Singapo)", "zh_Hant": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Hans àtọwọ́dọ́wọ́)", + "zh_Hant_HK": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Hans àtọwọ́dọ́wọ́, Hong Kong SAR ti Ṣáìnà)", + "zh_Hant_MO": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Hans àtọwọ́dọ́wọ́, Macao SAR ti Ṣáìnà)", "zh_Hant_TW": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Hans àtọwọ́dọ́wọ́, Orílẹ́ède Taiwani)", + "zh_MO": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Macao SAR ti Ṣáìnà)", "zh_SG": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Orílẹ́ède Singapo)", "zh_TW": "Èdè Mandarin tí wọ́n ń sọ lórílẹ̀-èdè Ṣáínà (Orílẹ́ède Taiwani)", "zu": "Èdè Ṣulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json index e2792408412c..22761a9eaceb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json @@ -37,8 +37,11 @@ "az_Latn_AZ": "Èdè Azerbaijani (Èdè Látìn, Orílɛ́ède Asɛ́bájánì)", "be_BY": "Èdè Belarusi (Orílɛ́ède Bélárúsì)", "bg_BG": "Èdè Bugaria (Orílɛ́ède Bùùgáríà)", + "bm_ML": "Báḿbàrà (Orílɛ́ède Mali)", "bn_BD": "Èdè Bengali (Orílɛ́ède Bángáládésì)", "bn_IN": "Èdè Bengali (Orílɛ́ède India)", + "bo_CN": "Tibetán (Orilɛ̀-èdè Sháínà)", + "bo_IN": "Tibetán (Orílɛ́ède India)", "br_FR": "Èdè Bretoni (Orílɛ́ède Faranse)", "bs_BA": "Èdè Bosnia (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", "bs_Cyrl": "Èdè Bosnia (èdè ilɛ̀ Rɔ́shíà)", @@ -48,6 +51,7 @@ "ca_ES": "Èdè Catala (Orílɛ́ède Sipani)", "ca_FR": "Èdè Catala (Orílɛ́ède Faranse)", "ca_IT": "Èdè Catala (Orílɛ́ède Itáli)", + "ce_RU": "Chechen (Orílɛ́ède Rɔshia)", "cs_CZ": "Èdè seeki (Orílɛ́ède shɛ́ɛ́kì)", "cy_GB": "Èdè Welshi (Orílɛ́èdè Gɛ̀ɛ́sì)", "da": "Èdè Ilɛ̀ Denmark", @@ -60,6 +64,9 @@ "de_IT": "Èdè Jámánì (Orílɛ́ède Itáli)", "de_LI": "Èdè Jámánì (Orílɛ́ède Lɛshitɛnisiteni)", "de_LU": "Èdè Jámánì (Orílɛ́ède Lusemogi)", + "dz_BT": "Dzongkha (Orílɛ́ède Bútánì)", + "ee_GH": "Ewè (Orílɛ́ède Gana)", + "ee_TG": "Ewè (Orílɛ́ède Togo)", "el_CY": "Èdè Giriki (Orílɛ́ède Kúrúsì)", "el_GR": "Èdè Giriki (Orílɛ́ède Geriisi)", "en": "Èdè Gɛ̀ɛ́sì", @@ -77,11 +84,14 @@ "en_BW": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Bɔ̀tìsúwánà)", "en_BZ": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Bèlísɛ̀)", "en_CA": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Kánádà)", + "en_CC": "Èdè Gɛ̀ɛ́sì (Erékùsù Cocos [Keeling])", "en_CH": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède switishilandi)", "en_CK": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etíokun Kùúkù)", "en_CM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Kamerúúnì)", + "en_CX": "Èdè Gɛ̀ɛ́sì (Erékùsù Christmas)", "en_CY": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Kúrúsì)", "en_DE": "Èdè Gɛ̀ɛ́sì (Orílɛèdè Jámánì)", + "en_DG": "Èdè Gɛ̀ɛ́sì (Diego Gashia)", "en_DK": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Dɛ́mákì)", "en_DM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Dòmíníkà)", "en_ER": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Eritira)", @@ -91,15 +101,19 @@ "en_FM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Makoronesia)", "en_GB": "Èdè Gɛ̀ɛ́sì (Orílɛ́èdè Gɛ̀ɛ́sì)", "en_GD": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Genada)", + "en_GG": "Èdè Gɛ̀ɛ́sì (Guernsey)", "en_GH": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Gana)", "en_GI": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Gibaratara)", "en_GM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Gambia)", "en_GU": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Guamu)", "en_GY": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Guyana)", + "en_HK": "Èdè Gɛ̀ɛ́sì (Hong Kong SAR ti Sháìnà)", "en_IE": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Ailandi)", "en_IL": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Iserɛli)", + "en_IM": "Èdè Gɛ̀ɛ́sì (Isle of Man)", "en_IN": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède India)", "en_IO": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etíkun Índíánì ti Ìlú Bírítísì)", + "en_JE": "Èdè Gɛ̀ɛ́sì (Jersey)", "en_JM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Jamaika)", "en_KE": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Kenya)", "en_KI": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Kiribati)", @@ -110,6 +124,7 @@ "en_LS": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Lesoto)", "en_MG": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Madasika)", "en_MH": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etikun Máshali)", + "en_MO": "Èdè Gɛ̀ɛ́sì (Macao SAR ti Sháìnà)", "en_MP": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etikun Guusu Mariana)", "en_MS": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Motserati)", "en_MT": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Malata)", @@ -139,6 +154,7 @@ "en_SI": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Silofania)", "en_SL": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Siria looni)", "en_SS": "Èdè Gɛ̀ɛ́sì (Gúúsù Sudan)", + "en_SX": "Èdè Gɛ̀ɛ́sì (Sint Maarten)", "en_SZ": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Sashiland)", "en_TC": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tɔɔki ati Etikun Kakɔsi)", "en_TK": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tokelau)", @@ -147,6 +163,7 @@ "en_TV": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tufalu)", "en_TZ": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tàǹsáníà)", "en_UG": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Uganda)", + "en_UM": "Èdè Gɛ̀ɛ́sì (Àwɔn Erékùsù Kékèké Agbègbè US)", "en_US": "Èdè Gɛ̀ɛ́sì (Orílɛ̀-èdè Amɛrikà)", "en_VC": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Fisɛnnti ati Genadina)", "en_VG": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etíkun Fágínì ti ìlú Bírítísì)", @@ -166,11 +183,13 @@ "es_CR": "Èdè Sípáníìshì (Orílɛ́ède Kuusita Ríkà)", "es_CU": "Èdè Sípáníìshì (Orílɛ́ède Kúbà)", "es_DO": "Èdè Sípáníìshì (Orilɛ́ède Dòmíníkánì)", + "es_EA": "Èdè Sípáníìshì (Seuta àti Melilla)", "es_EC": "Èdè Sípáníìshì (Orílɛ́ède Ekuádò)", "es_ES": "Èdè Sípáníìshì (Orílɛ́ède Sipani)", "es_GQ": "Èdè Sípáníìshì (Orílɛ́ède Ekutoria Gini)", "es_GT": "Èdè Sípáníìshì (Orílɛ́ède Guatemala)", "es_HN": "Èdè Sípáníìshì (Orílɛ́ède Hondurasi)", + "es_IC": "Èdè Sípáníìshì (Ɛrékùsù Kánárì)", "es_MX": "Èdè Sípáníìshì (Orílɛ́ède Mesiko)", "es_NI": "Èdè Sípáníìshì (Orílɛ́ède NIkaragua)", "es_PA": "Èdè Sípáníìshì (Orílɛ́ède Panama)", @@ -204,6 +223,7 @@ "ff_SN": "Èdè Fúlàní (Orílɛ́ède Sɛnɛga)", "fi_FI": "Èdè Finisi (Orílɛ́ède Filandi)", "fo_DK": "Èdè Faroesi (Orílɛ́ède Dɛ́mákì)", + "fo_FO": "Èdè Faroesi (Àwɔn Erékùsù ti Faroe)", "fr_BE": "Èdè Faransé (Orílɛ́ède Bégíɔ́mù)", "fr_BF": "Èdè Faransé (Orílɛ́ède Bùùkíná Fasò)", "fr_BI": "Èdè Faransé (Orílɛ́ède Bùùrúndì)", @@ -266,6 +286,8 @@ "id": "Èdè Indonéshíà", "id_ID": "Èdè Indonéshíà (Orílɛ́ède Indonesia)", "ig_NG": "Èdè Yíbò (Orilɛ̀-èdè Nàìjíríà)", + "ii": "Shíkuán Yì", + "ii_CN": "Shíkuán Yì (Orilɛ̀-èdè Sháínà)", "is_IS": "Èdè Icelandic (Orílɛ́ède Ashilandi)", "it_CH": "Èdè Ítálì (Orílɛ́ède switishilandi)", "it_IT": "Èdè Ítálì (Orílɛ́ède Itáli)", @@ -273,30 +295,76 @@ "ja_JP": "Èdè Jàpáànù (Orílɛ́ède Japani)", "jv_ID": "Èdè Javanasi (Orílɛ́ède Indonesia)", "ka_GE": "Èdè Georgia (Orílɛ́ède Gɔgia)", + "ki_KE": "Kíkúyù (Orílɛ́ède Kenya)", + "kk": "Kashakì", + "kk_KZ": "Kashakì (Orílɛ́ède Kashashatani)", + "kl_GL": "Kalaalísùtì (Orílɛ́ède Gerelandi)", "km_KH": "Èdè kameri (Orílɛ́ède Kàmùbódíà)", "kn_IN": "Èdè Kannada (Orílɛ́ède India)", "ko_KP": "Èdè Kòríà (Orílɛ́ède Guusu Kɔria)", "ko_KR": "Èdè Kòríà (Orílɛ́ède Ariwa Kɔria)", + "ks": "Kashímirì", + "ks_Arab": "Kashímirì (èdè Lárúbáwá)", + "ks_Arab_IN": "Kashímirì (èdè Lárúbáwá, Orílɛ́ède India)", + "ks_IN": "Kashímirì (Orílɛ́ède India)", + "ku": "Kɔdishì", + "ku_TR": "Kɔdishì (Orílɛ́ède Tɔɔki)", + "kw": "Kɔ́nììshì", + "kw_GB": "Kɔ́nììshì (Orílɛ́èdè Gɛ̀ɛ́sì)", + "ky_KG": "Kírígíìsì (Orílɛ́ède Kurishisitani)", + "lb": "Lùshɛ́mbɔ́ɔ̀gì", + "lb_LU": "Lùshɛ́mbɔ́ɔ̀gì (Orílɛ́ède Lusemogi)", + "lg_UG": "Ganda (Orílɛ́ède Uganda)", + "ln_AO": "Lìǹgálà (Orílɛ́ède Ààngólà)", + "ln_CD": "Lìǹgálà (Orilɛ́ède Kóngò)", + "ln_CF": "Lìǹgálà (Orílɛ́ède Àrin gùngun Áfíríkà)", + "ln_CG": "Lìǹgálà (Orílɛ́ède Kóngò)", + "lo_LA": "Láò (Orílɛ́ède Laosi)", "lt_LT": "Èdè Lithuania (Orílɛ́ède Lituania)", + "lu_CD": "Lúbà-Katanga (Orilɛ́ède Kóngò)", "lv_LV": "Èdè Latvianu (Orílɛ́ède Latifia)", + "mg_MG": "Malagasì (Orílɛ́ède Madasika)", + "mi_NZ": "Màórì (Orílɛ́ède shilandi Titun)", + "ml_IN": "Málàyálámù (Orílɛ́ède India)", + "mn_MN": "Mòngólíà (Orílɛ́ède Mogolia)", "mr_IN": "Èdè marathi (Orílɛ́ède India)", "ms_BN": "Èdè Malaya (Orílɛ́ède Búrúnɛ́lì)", + "ms_ID": "Èdè Malaya (Orílɛ́ède Indonesia)", "ms_MY": "Èdè Malaya (Orílɛ́ède Malasia)", "ms_SG": "Èdè Malaya (Orílɛ́ède Singapo)", "mt_MT": "Èdè Malta (Orílɛ́ède Malata)", "my_MM": "Èdè Bumiisi (Orílɛ́ède Manamari)", + "nb": "Nɔ́ɔ́wè Bokímàl", + "nb_NO": "Nɔ́ɔ́wè Bokímàl (Orílɛ́ède Nɔɔwii)", + "nb_SJ": "Nɔ́ɔ́wè Bokímàl (Svalbard & Jan Mayen)", + "nd_ZW": "Àríwá Ndebele (Orílɛ́ède shimibabe)", "ne_IN": "Èdè Nepali (Orílɛ́ède India)", "ne_NP": "Èdè Nepali (Orílɛ́ède Nepa)", "nl": "Èdè Dɔ́ɔ̀shì", "nl_AW": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Árúbà)", "nl_BE": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Bégíɔ́mù)", + "nl_BQ": "Èdè Dɔ́ɔ̀shì (Caribbean Netherlands)", + "nl_CW": "Èdè Dɔ́ɔ̀shì (Curaçao)", "nl_NL": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Nedalandi)", "nl_SR": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Surinami)", + "nl_SX": "Èdè Dɔ́ɔ̀shì (Sint Maarten)", + "nn": "Nɔ́ɔ́wè Nínɔ̀sìkì", + "nn_NO": "Nɔ́ɔ́wè Nínɔ̀sìkì (Orílɛ́ède Nɔɔwii)", "no_NO": "Èdè Norway (Orílɛ́ède Nɔɔwii)", + "om": "Òròmɔ́", + "om_ET": "Òròmɔ́ (Orílɛ́ède Etopia)", + "om_KE": "Òròmɔ́ (Orílɛ́ède Kenya)", + "or_IN": "Òdíà (Orílɛ́ède India)", + "os": "Ɔshɛ́tíìkì", + "os_GE": "Ɔshɛ́tíìkì (Orílɛ́ède Gɔgia)", + "os_RU": "Ɔshɛ́tíìkì (Orílɛ́ède Rɔshia)", "pa_Arab_PK": "Èdè Punjabi (èdè Lárúbáwá, Orílɛ́ède Pakisitan)", + "pa_Guru_IN": "Èdè Punjabi (Gurumúkhì, Orílɛ́ède India)", "pa_IN": "Èdè Punjabi (Orílɛ́ède India)", "pa_PK": "Èdè Punjabi (Orílɛ́ède Pakisitan)", "pl_PL": "Èdè Póláǹdì (Orílɛ́ède Polandi)", + "ps_AF": "Páshítò (Orílɛ́ède Àfùgànístánì)", + "ps_PK": "Páshítò (Orílɛ́ède Pakisitan)", "pt": "Èdè Pɔtogí", "pt_AO": "Èdè Pɔtogí (Orílɛ́ède Ààngólà)", "pt_BR": "Èdè Pɔtogí (Orilɛ̀-èdè Bàràsílì)", @@ -305,10 +373,18 @@ "pt_GQ": "Èdè Pɔtogí (Orílɛ́ède Ekutoria Gini)", "pt_GW": "Èdè Pɔtogí (Orílɛ́ède Gene-Busau)", "pt_LU": "Èdè Pɔtogí (Orílɛ́ède Lusemogi)", + "pt_MO": "Èdè Pɔtogí (Macao SAR ti Sháìnà)", "pt_MZ": "Èdè Pɔtogí (Orílɛ́ède Moshamibiku)", "pt_PT": "Èdè Pɔtogí (Orílɛ́ède Pɔ́túgà)", "pt_ST": "Èdè Pɔtogí (Orílɛ́ède Sao tomi ati piriishipi)", "pt_TL": "Èdè Pɔtogí (Orílɛ́ède ÌlàOòrùn Tímɔ̀)", + "qu": "Kúɛ́ńjùà", + "qu_BO": "Kúɛ́ńjùà (Orílɛ́ède Bɔ̀lífíyà)", + "qu_EC": "Kúɛ́ńjùà (Orílɛ́ède Ekuádò)", + "qu_PE": "Kúɛ́ńjùà (Orílɛ́ède Peru)", + "rm": "Rómáǹshì", + "rm_CH": "Rómáǹshì (Orílɛ́ède switishilandi)", + "rn_BI": "Rúńdì (Orílɛ́ède Bùùrúndì)", "ro_MD": "Èdè Romania (Orílɛ́ède Modofia)", "ro_RO": "Èdè Romania (Orílɛ́ède Romaniya)", "ru": "Èdè Rɔ́shíà", @@ -319,11 +395,20 @@ "ru_RU": "Èdè Rɔ́shíà (Orílɛ́ède Rɔshia)", "ru_UA": "Èdè Rɔ́shíà (Orílɛ́ède Ukarini)", "rw_RW": "Èdè Ruwanda (Orílɛ́ède Ruwanda)", + "sd_Arab_PK": "Èdè Sindhi (èdè Lárúbáwá, Orílɛ́ède Pakisitan)", + "sd_Deva": "Èdè Sindhi (Dɛfanagárì)", + "sd_Deva_IN": "Èdè Sindhi (Dɛfanagárì, Orílɛ́ède India)", "sd_PK": "Èdè Sindhi (Orílɛ́ède Pakisitan)", + "se_FI": "Apáàríwá Sami (Orílɛ́ède Filandi)", + "se_NO": "Apáàríwá Sami (Orílɛ́ède Nɔɔwii)", + "se_SE": "Apáàríwá Sami (Orílɛ́ède Swidini)", + "sg_CF": "Sango (Orílɛ́ède Àrin gùngun Áfíríkà)", "sh_BA": "Èdè Serbo-Croatiani (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", "si_LK": "Èdè Sinhalese (Orílɛ́ède Siri Lanka)", "sk_SK": "Èdè Slovaki (Orílɛ́ède Silofakia)", "sl_SI": "Èdè Slovenia (Orílɛ́ède Silofania)", + "sn": "Shɔnà", + "sn_ZW": "Shɔnà (Orílɛ́ède shimibabe)", "so_DJ": "Èdè ara Somalia (Orílɛ́ède Díbɔ́ótì)", "so_ET": "Èdè ara Somalia (Orílɛ́ède Etopia)", "so_KE": "Èdè ara Somalia (Orílɛ́ède Kenya)", @@ -332,8 +417,13 @@ "sr_BA": "Èdè Serbia (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", "sr_Cyrl": "Èdè Serbia (èdè ilɛ̀ Rɔ́shíà)", "sr_Cyrl_BA": "Èdè Serbia (èdè ilɛ̀ Rɔ́shíà, Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", + "sr_Cyrl_ME": "Èdè Serbia (èdè ilɛ̀ Rɔ́shíà, Montenegro)", + "sr_Cyrl_RS": "Èdè Serbia (èdè ilɛ̀ Rɔ́shíà, Serbia)", "sr_Cyrl_XK": "Èdè Serbia (èdè ilɛ̀ Rɔ́shíà, Kòsófò)", "sr_Latn_BA": "Èdè Serbia (Èdè Látìn, Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", + "su_ID": "Èdè Sudani (Orílɛ́ède Indonesia)", + "su_Latn_ID": "Èdè Sudani (Èdè Látìn, Orílɛ́ède Indonesia)", + "sv_AX": "Èdè Suwidiisi (Àwɔn Erékùsù ti Åland)", "sv_FI": "Èdè Suwidiisi (Orílɛ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílɛ́ède Swidini)", "sw_CD": "Èdè Swahili (Orilɛ́ède Kóngò)", @@ -345,13 +435,18 @@ "ta_MY": "Èdè Tamili (Orílɛ́ède Malasia)", "ta_SG": "Èdè Tamili (Orílɛ́ède Singapo)", "te_IN": "Èdè Telugu (Orílɛ́ède India)", + "tg_TJ": "Tàjíìkì (Orílɛ́ède Takisitani)", "th_TH": "Èdè Tai (Orílɛ́ède Tailandi)", "ti_ER": "Èdè Tigrinya (Orílɛ́ède Eritira)", "ti_ET": "Èdè Tigrinya (Orílɛ́ède Etopia)", "tk_TM": "Èdè Turkmen (Orílɛ́ède Tɔɔkimenisita)", + "to_TO": "Tóńgàn (Orílɛ́ède Tonga)", "tr": "Èdè Tɔɔkisi", "tr_CY": "Èdè Tɔɔkisi (Orílɛ́ède Kúrúsì)", "tr_TR": "Èdè Tɔɔkisi (Orílɛ́ède Tɔɔki)", + "tt_RU": "Tatarí (Orílɛ́ède Rɔshia)", + "ug": "Yúgɔ̀", + "ug_CN": "Yúgɔ̀ (Orilɛ̀-èdè Sháínà)", "uk_UA": "Èdè Ukania (Orílɛ́ède Ukarini)", "ur_IN": "Èdè Udu (Orílɛ́ède India)", "ur_PK": "Èdè Udu (Orílɛ́ède Pakisitan)", @@ -362,16 +457,24 @@ "uz_Latn_UZ": "Èdè Uzbek (Èdè Látìn, Orílɛ́ède Nshibɛkisitani)", "uz_UZ": "Èdè Uzbek (Orílɛ́ède Nshibɛkisitani)", "vi_VN": "Èdè Jetinamu (Orílɛ́ède Fɛtinami)", + "wo": "Wɔ́lɔ́ɔ̀fù", + "wo_SN": "Wɔ́lɔ́ɔ̀fù (Orílɛ́ède Sɛnɛga)", "xh_ZA": "Èdè Xhosa (Gúúshù Áfíríkà)", "yo_BJ": "Èdè Yorùbá (Orílɛ́ède Bɛ̀nɛ̀)", "yo_NG": "Èdè Yorùbá (Orilɛ̀-èdè Nàìjíríà)", "zh": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà", "zh_CN": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Orilɛ̀-èdè Sháínà)", + "zh_HK": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Hong Kong SAR ti Sháìnà)", "zh_Hans": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (tí wɔ́n mú rɔrùn.)", "zh_Hans_CN": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (tí wɔ́n mú rɔrùn., Orilɛ̀-èdè Sháínà)", + "zh_Hans_HK": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (tí wɔ́n mú rɔrùn., Hong Kong SAR ti Sháìnà)", + "zh_Hans_MO": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (tí wɔ́n mú rɔrùn., Macao SAR ti Sháìnà)", "zh_Hans_SG": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (tí wɔ́n mú rɔrùn., Orílɛ́ède Singapo)", "zh_Hant": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Hans àtɔwɔ́dɔ́wɔ́)", + "zh_Hant_HK": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Hans àtɔwɔ́dɔ́wɔ́, Hong Kong SAR ti Sháìnà)", + "zh_Hant_MO": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Hans àtɔwɔ́dɔ́wɔ́, Macao SAR ti Sháìnà)", "zh_Hant_TW": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Hans àtɔwɔ́dɔ́wɔ́, Orílɛ́ède Taiwani)", + "zh_MO": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Macao SAR ti Sháìnà)", "zh_SG": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Orílɛ́ède Singapo)", "zh_TW": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè Sháínà (Orílɛ́ède Taiwani)", "zu": "Èdè Shulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh.json b/src/Symfony/Component/Intl/Resources/data/locales/zh.json index 7270ffccad51..1525a99e4082 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -234,6 +234,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": "富拉语(拉丁文)", @@ -365,6 +378,8 @@ "ko_KP": "韩语(朝鲜)", "ko_KR": "韩语(韩国)", "ks": "克什米尔语", + "ks_Arab": "克什米尔语(阿拉伯文)", + "ks_Arab_IN": "克什米尔语(阿拉伯文,印度)", "ks_IN": "克什米尔语(印度)", "ku": "库尔德语", "ku_TR": "库尔德语(土耳其)", @@ -403,6 +418,7 @@ "mr_IN": "马拉地语(印度)", "ms": "马来语", "ms_BN": "马来语(文莱)", + "ms_ID": "马来语(印度尼西亚)", "ms_MY": "马来语(马来西亚)", "ms_SG": "马来语(新加坡)", "mt": "马耳他语", @@ -483,6 +499,10 @@ "rw": "卢旺达语", "rw_RW": "卢旺达语(卢旺达)", "sd": "信德语", + "sd_Arab": "信德语(阿拉伯文)", + "sd_Arab_PK": "信德语(阿拉伯文,巴基斯坦)", + "sd_Deva": "信德语(天城文)", + "sd_Deva_IN": "信德语(天城文,印度)", "sd_PK": "信德语(巴基斯坦)", "se": "北方萨米语", "se_FI": "北方萨米语(芬兰)", @@ -524,6 +544,10 @@ "sr_ME": "塞尔维亚语(黑山)", "sr_RS": "塞尔维亚语(塞尔维亚)", "sr_XK": "塞尔维亚语(科索沃)", + "su": "巽他语", + "su_ID": "巽他语(印度尼西亚)", + "su_Latn": "巽他语(拉丁文)", + "su_Latn_ID": "巽他语(拉丁文,印度尼西亚)", "sv": "瑞典语", "sv_AX": "瑞典语(奥兰群岛)", "sv_FI": "瑞典语(芬兰)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json index 7b237d39a290..9a1ee8c46672 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -234,6 +234,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": "富拉文(拉丁文)", @@ -365,6 +378,8 @@ "ko_KP": "韓文(北韓)", "ko_KR": "韓文(南韓)", "ks": "喀什米爾文", + "ks_Arab": "喀什米爾文(阿拉伯文)", + "ks_Arab_IN": "喀什米爾文(阿拉伯文,印度)", "ks_IN": "喀什米爾文(印度)", "ku": "庫德文", "ku_TR": "庫德文(土耳其)", @@ -403,6 +418,7 @@ "mr_IN": "馬拉地文(印度)", "ms": "馬來文", "ms_BN": "馬來文(汶萊)", + "ms_ID": "馬來文(印尼)", "ms_MY": "馬來文(馬來西亞)", "ms_SG": "馬來文(新加坡)", "mt": "馬爾他文", @@ -483,6 +499,10 @@ "rw": "盧安達文", "rw_RW": "盧安達文(盧安達)", "sd": "信德文", + "sd_Arab": "信德文(阿拉伯文)", + "sd_Arab_PK": "信德文(阿拉伯文,巴基斯坦)", + "sd_Deva": "信德文(天城文)", + "sd_Deva_IN": "信德文(天城文,印度)", "sd_PK": "信德文(巴基斯坦)", "se": "北薩米文", "se_FI": "北薩米文(芬蘭)", @@ -524,6 +544,10 @@ "sr_ME": "塞爾維亞文(蒙特內哥羅)", "sr_RS": "塞爾維亞文(塞爾維亞)", "sr_XK": "塞爾維亞文(科索沃)", + "su": "巽他文", + "su_ID": "巽他文(印尼)", + "su_Latn": "巽他文(拉丁文)", + "su_Latn_ID": "巽他文(拉丁文,印尼)", "sv": "瑞典文", "sv_AX": "瑞典文(奧蘭群島)", "sv_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 86f5a319399e..6997574a089e 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 @@ -88,6 +88,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": "富拉文(拉丁字母,喀麥隆)", @@ -190,6 +199,8 @@ "sr_Latn_RS": "塞爾維亞文(拉丁字母,塞爾維亞)", "sr_Latn_XK": "塞爾維亞文(拉丁字母,科索沃)", "sr_ME": "塞爾維亞文(黑山)", + "su_Latn": "巽他文(拉丁字母)", + "su_Latn_ID": "巽他文(拉丁字母,印尼)", "sw_KE": "史瓦希里文(肯尼亞)", "sw_TZ": "史瓦希里文(坦桑尼亞)", "ta": "泰米爾文", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index f3d1f345448f..8f0838e26759 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -365,6 +365,8 @@ "ko_KP": "isi-Korean (i-North Korea)", "ko_KR": "isi-Korean (i-South Korea)", "ks": "isi-Kashmiri", + "ks_Arab": "isi-Kashmiri (isi-Arabic)", + "ks_Arab_IN": "isi-Kashmiri (isi-Arabic, i-India)", "ks_IN": "isi-Kashmiri (i-India)", "ku": "isi-Kurdish", "ku_TR": "isi-Kurdish (i-Turkey)", @@ -403,6 +405,7 @@ "mr_IN": "isi-Marathi (i-India)", "ms": "isi-Malay", "ms_BN": "isi-Malay (i-Brunei)", + "ms_ID": "isi-Malay (i-Indonesia)", "ms_MY": "isi-Malay (i-Malaysia)", "ms_SG": "isi-Malay (i-Singapore)", "mt": "isi-Maltese", @@ -483,6 +486,10 @@ "rw": "isi-Kinyarwanda", "rw_RW": "isi-Kinyarwanda (i-Rwanda)", "sd": "isi-Sindhi", + "sd_Arab": "isi-Sindhi (isi-Arabic)", + "sd_Arab_PK": "isi-Sindhi (isi-Arabic, i-Pakistan)", + "sd_Deva": "isi-Sindhi (isi-Devanagari)", + "sd_Deva_IN": "isi-Sindhi (isi-Devanagari, i-India)", "sd_PK": "isi-Sindhi (i-Pakistan)", "se": "isi-Northern Sami", "se_FI": "isi-Northern Sami (i-Finland)", @@ -524,6 +531,10 @@ "sr_ME": "isi-Serbian (i-Montenegro)", "sr_RS": "isi-Serbian (i-Serbia)", "sr_XK": "isi-Serbian (i-Kosovo)", + "su": "isi-Sundanese", + "su_ID": "isi-Sundanese (i-Indonesia)", + "su_Latn": "isi-Sundanese (isi-Latin)", + "su_Latn_ID": "isi-Sundanese (isi-Latin, i-Indonesia)", "sv": "isi-Swedish", "sv_AX": "isi-Swedish (i-Åland Islands)", "sv_FI": "isi-Swedish (i-Finland)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index 61b63f35bac9..5254bbcb0001 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": { "AC": "Ascensioneiland", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index a1aacb308012..181378fb8c7e 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 db65b1d9ff89..b6f41ecfaba2 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": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index c93ddeea94b3..9c0a06668388 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": { "AC": "جزيرة أسينشيون", "AD": "أندورا", @@ -248,6 +247,8 @@ "VU": "فانواتو", "WF": "جزر والس وفوتونا", "WS": "ساموا", + "XA": "لكنات تجريبية غير أصلية", + "XB": "لكنات تجريبية ثنائية الاتجاه", "XK": "كوسوفو", "YE": "اليمن", "YT": "مايوت", 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 147fe60bf268..da98dc35b286 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": { "EA": "سبتة ومليلية", "MS": "مونتيسيرات", 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 e4def07a8b2a..1d1ec898ae2a 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": { "AC": "جزيرة أسينشين", "EA": "سبتة ومليلية", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index 1e7372d17583..27cd5e3a32b3 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": { "AC": "এচেনচিয়ন দ্বীপ", "AD": "আন্দোৰা", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index ed594387f237..e258d699f645 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": { "AC": "Askenson adası", "AD": "Andorra", 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 7b529326fe23..e40a66fddcb9 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": { "AC": "Аскенсон адасы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index b703fd80b31f..97f89ab0dbbd 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": { "AC": "Востраў Узнясення", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index 98103fc8cd7f..00f083a4d737 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": { "AC": "остров Възнесение", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index f6b06d0e0821..0028fe58569f 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 63cff023c7de..4f4bc03463d6 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": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "আন্ডোরা", 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 c3f8efe974af..0dd956bc9831 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 54830071fbd4..a7db7ce43b92 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 98588d8002b2..270749c2590f 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 1b80ce1e9d94..0ab74d4f8c2a 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": { "AC": "Enez Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 68c9810cb32e..0bdf99207b37 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": { "AC": "Ostrvo Ascension", "AD": "Andora", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Ostrva Valis i Futuna", "WS": "Samoa", + "XA": "Pseudo naglasci", + "XB": "Pseudo bidi", "XK": "Kosovo", "YE": "Jemen", "YT": "Majote", 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 62bf00613c47..861baa0b0e38 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": { "AC": "Острво Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ca.json b/src/Symfony/Component/Intl/Resources/data/regions/ca.json index c896fdd622bb..3937512645cd 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": { "AC": "Illa de l’Ascensió", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index 333fbe4be777..7fc21a9fd32f 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": { "AC": "Айъадаларан гӀайре", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index 71572db78a8c..1c24cbac64d5 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cy.json b/src/Symfony/Component/Intl/Resources/data/regions/cy.json index 1027e248ea5e..8aa2c04477c3 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": { "AC": "Ynys Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 9f2d2df662bf..810f27e181b6 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": { "AC": "Ascensionøen", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index 3b2608fba75b..d916b1a05632 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": { "AC": "Ascension", "AD": "Andorra", 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 6330c51857fc..7e275cddfe6c 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 3c7daab639ed..98fb65cda7d8 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 9a946f36a646..024412b615d5 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": { "AC": "ཨེ་སེན་ཤུན་ཚོ་གླིང༌", "AD": "ཨཱན་དོ་ར", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index 550c896c46e9..9b46dfc309b6 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": { "AC": "Ascension ƒudomekpo nutome", "AD": "Andorra nutome", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/el.json b/src/Symfony/Component/Intl/Resources/data/regions/el.json index 951d6a008876..3efa943368ef 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": { "AC": "Νήσος Ασενσιόν", "AD": "Ανδόρα", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index b258071a120a..cc2001ace026 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": { "AC": "Ascension Island", "AD": "Andorra", 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 6bc6012632d2..1c068efea4be 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 eff29f21f725..46844787b6ec 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 abfbb71d1db9..72b3484640c5 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 2e6c035004d7..920d9b1ec26c 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": { "AC": "Isla de la Ascensión", "AD": "Andorra", 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 9104af3d780c..f979170bb19b 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": { "AC": "Isla Ascensión", "BA": "Bosnia-Herzegovina", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 89aeea6c5e59..43d2eca200b5 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 10835c3bd320..94ed2372e815 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 9da9e4c46f34..5479cc4ba80b 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", 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 9da9e4c46f34..5479cc4ba80b 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 76c239647fb1..d0bb31d419d5 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": { "AC": "Isla de la Ascensión", "BA": "Bosnia y Herzegovina", 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 832fa10ba912..c3451f1c914c 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", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index d949fbec401f..7fe8f986b777 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": { "AC": "Ascensioni saar", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eu.json b/src/Symfony/Component/Intl/Resources/data/regions/eu.json index 9f88e2c21b21..9d681f0e1a78 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": { "AC": "Ascension uhartea", "AD": "Andorra", @@ -249,6 +248,7 @@ "WF": "Wallis eta Futuna", "WS": "Samoa", "XA": "Sasiazentuak", + "XB": "pseudobidia", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index f09fb16c617f..55b578f14ce4 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": { "AC": "جزایر آسنسیون", "AD": "آندورا", @@ -248,6 +247,7 @@ "VU": "وانواتو", "WF": "والیس و فوتونا", "WS": "ساموآ", + "XA": "انگلیسی با لهجه خارجی", "XB": "مجازی - دوجهته", "XK": "کوزوو", "YE": "یمن", 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 0c14e3aff910..fafb80cdc356 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 68bd9c40dd7d..4b95dbe6725b 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 000000000000..6b0a5f48ec38 --- /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 180de4025f32..9a85c9ce1516 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": { "AC": "Ascension-saari", "AD": "Andorra", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Wallis ja Futuna", "WS": "Samoa", + "XA": "pseudoaksentit", + "XB": "kaksisuuntainen pseudo", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index 6fb69a88d0f5..ae05fedb4f10 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index 0bf3acec5e25..64ffc8a14a25 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": { "AC": "Île de l’Ascension", "AD": "Andorre", 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 2790802091bf..cf740a41e672 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 379bc73078aa..e4d7e25cec12 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": { "AC": "île de l’Ascension", "AX": "îles d’Åland", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fy.json b/src/Symfony/Component/Intl/Resources/data/regions/fy.json index 3eb69d074b97..55f8663997b3 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ga.json b/src/Symfony/Component/Intl/Resources/data/regions/ga.json index d8796559dd47..ee937437e7cb 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": { "AC": "Oileán na Deascabhála", "AD": "Andóra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gd.json b/src/Symfony/Component/Intl/Resources/data/regions/gd.json index 17faa6791c5c..bca08c7d7e02 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": { "AC": "Eilean na Deasgabhalach", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index f2d9deac9a61..3d6974cf6c99 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": { "AC": "Illa de Ascensión", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index 1b7a22373c07..b211bed1cec0 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": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index 8fa5295acfe6..0d251032cab9 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 89f5c757484b..eaf2a0f36573 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", @@ -221,6 +234,7 @@ "TZ": "Tanzaniya", "UA": "Yukaran", "UG": "Yuganda", + "UM": "Rukunin Tsibirin U.S", "US": "Amurka", "UY": "Yurigwai", "UZ": "Uzubekistan", @@ -233,6 +247,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 9328661d0e44..0d6253ff7aed 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": { "AC": "האי אסנשן", "AD": "אנדורה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index 423dca4904a3..7ee6d5163082 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": { "AC": "असेंशन द्वीप", "AD": "एंडोरा", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index 882e54bffd1e..9725daf07414 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": { "AC": "Otok Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index 8b9fb63a5090..0273de149b75 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": { "AC": "Ascension-sziget", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hy.json b/src/Symfony/Component/Intl/Resources/data/regions/hy.json index 8f29690f8b9e..df72a5851c5e 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": { "AC": "Համբարձման կղզի", "AD": "Անդորրա", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ia.json b/src/Symfony/Component/Intl/Resources/data/regions/ia.json index c856d206ce0a..7b70cb8addee 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 8672fce3a0e5..1d84a47c383d 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": { "AC": "Pulau Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 5a040d4d55a3..026074141185 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,11 +1,13 @@ { - "Version": "36.1", "Names": { "AC": "Ascension Island", "AD": "Andorra", + "AE": "Obodo United Arab Emirates", + "AF": "Mba Afghanistan", "AG": "Antigua & Barbuda", "AI": "Anguilla", "AL": "Albania", + "AM": "Obodo Armenia", "AO": "Angola", "AQ": "Antarctica", "AR": "Argentina", @@ -14,19 +16,24 @@ "AU": "Australia", "AW": "Aruba", "AX": "Agwaetiti Aland", + "AZ": "Obodo Azerbaijan", "BA": "Bosnia & Herzegovina", "BB": "Barbados", + "BD": "Obodo Bangladesh", "BE": "Belgium", "BF": "Burkina Faso", "BG": "Bulgaria", + "BH": "Obodo Bahrain", "BI": "Burundi", "BJ": "Binin", "BL": "St. Barthélemy", "BM": "Bemuda", + "BN": "Brunei", "BO": "Bolivia", "BQ": "Caribbean Netherlands", "BR": "Mba Brazil", "BS": "Bahamas", + "BT": "Obodo Bhutan", "BW": "Botswana", "BY": "Belarus", "BZ": "Belize", @@ -47,6 +54,7 @@ "CV": "Cape Verde", "CW": "Kurakao", "CX": "Agwaetiti Christmas", + "CY": "Obodo Cyprus", "CZ": "Czechia", "DE": "Mba Germany", "DG": "Diego Garcia", @@ -72,6 +80,7 @@ "GA": "Gabon", "GB": "Mba United Kingdom", "GD": "Grenada", + "GE": "Obodo Georgia", "GF": "Frenchi Guiana", "GG": "Guernsey", "GH": "Ghana", @@ -87,27 +96,42 @@ "GU": "Guam", "GW": "Guinea-Bissau", "GY": "Guyana", + "HK": "Honk Kong mba nwere ndozi pụrụ iche n’obodo China", "HN": "Honduras", "HR": "Croatia", "HT": "Hati", "HU": "Hungary", "IC": "Agwaetiti Kanarị", + "ID": "Indonesia", "IE": "Ireland", + "IL": "Obodo Israel", "IM": "Isle of Man", "IN": "Mba India", "IO": "British Indian Ocean Territory", + "IQ": "Obodo Iraq", + "IR": "Obodo Iran", "IS": "Iceland", "IT": "Mba Italy", "JE": "Jersey", "JM": "Jamaika", + "JO": "Obodo Jordan", "JP": "Mba Japan", "KE": "Kenya", + "KG": "Obodo Kyrgyzstan", + "KH": "Cambodia", "KI": "Kiribati", "KM": "Comorosu", "KN": "St. Kitts & Nevis", + "KP": "Mba Ugwu Korea", + "KR": "Mba South Korea", + "KW": "Obodo Kuwait", "KY": "Agwaetiti Cayman", + "KZ": "Obodo Kazakhstan", + "LA": "Laos", + "LB": "Obodo Lebanon", "LC": "St. Lucia", "LI": "Liechtenstein", + "LK": "Obodo Sri Lanka", "LR": "Liberia", "LS": "Lesotho", "LT": "Lithuania", @@ -123,6 +147,9 @@ "MH": "Agwaetiti Marshall", "MK": "North Macedonia", "ML": "Mali", + "MM": "Myanmar (Burma)", + "MN": "Obodo Mongolia", + "MO": "Obodo Macao nwere ndozi pụrụ iche na mba China", "MP": "Agwaetiti Northern Mariana", "MQ": "Martinique", "MR": "Mauritania", @@ -132,6 +159,7 @@ "MV": "Maldivesa", "MW": "Malawi", "MX": "Mexico", + "MY": "Malaysia", "MZ": "Mozambik", "NA": "Namibia", "NC": "New Caledonia", @@ -141,26 +169,32 @@ "NI": "Nicaragua", "NL": "Netherlands", "NO": "Norway", + "NP": "Obodo Nepal", "NR": "Nauru", "NU": "Niue", "NZ": "New Zealand", + "OM": "Obodo Oman", "PA": "Panama", "PE": "Peru", "PF": "Frenchi Polynesia", "PG": "Papua New Guinea", "PH": "Philippines", + "PK": "Obodo Pakistan", "PL": "Poland", "PM": "St. Pierre & Miquelon", "PN": "Agwaetiti Pitcairn", "PR": "Puerto Rico", + "PS": "Obodo dị iche iche dị n’okpuru mba Palestine", "PT": "Portugal", "PW": "Palau", "PY": "Paraguay", + "QA": "Obodo Qatar", "RE": "Réunion", "RO": "Romania", "RS": "Serbia", "RU": "Mba Russia", "RW": "Rwanda", + "SA": "Obodo Saudi Arabia", "SB": "Agwaetiti Solomon", "SC": "Seychelles", "SD": "Sudan", @@ -179,6 +213,7 @@ "ST": "São Tomé & Príncipe", "SV": "El Salvador", "SX": "Sint Maarten", + "SY": "Obodo Syria", "SZ": "Eswatini", "TA": "Tristan da Cunha", "TC": "Agwaetiti Turks na Caicos", @@ -186,18 +221,23 @@ "TF": "Ụmụ ngalaba Frenchi Southern", "TG": "Togo", "TH": "Thailand", + "TJ": "Obodo Tajikistan", "TK": "Tokelau", "TL": "Timor-Leste", + "TM": "Obodo Turkmenistan", "TN": "Tunisia", "TO": "Tonga", + "TR": "Obodo Turkey", "TT": "Trinidad & Tobago", "TV": "Tuvalu", + "TW": "Obodo Taiwan", "TZ": "Tanzania", "UA": "Ukraine", "UG": "Uganda", "UM": "Obere Agwaetiti Dị Na Mpụga U.S", "US": "Mba United States", "UY": "Uruguay", + "UZ": "Obodo Uzbekistan", "VA": "Vatican City", "VC": "St. Vincent & Grenadines", "VE": "Venezuela", @@ -210,6 +250,7 @@ "XA": "Pseudo-Accents", "XB": "Pseudo-Bidi", "XK": "Kosovo", + "YE": "Obodo Yemen", "YT": "Mayotte", "ZA": "South Africa", "ZM": "Zambia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ii.json b/src/Symfony/Component/Intl/Resources/data/regions/ii.json index e127bd312916..0117144ce774 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 8672fce3a0e5..1d84a47c383d 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": { "AC": "Pulau Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index 089cde1cf3f8..ea29164d0aa1 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": { "AC": "Ascension-eyja", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index 309e854a571d..2b103f87cafc 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": { "AC": "Isola Ascensione", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index 9328661d0e44..0d6253ff7aed 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": { "AC": "האי אסנשן", "AD": "אנדורה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index 2dc9cf19db90..6bc908d8cef3 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": { "AC": "アセンション島", "AD": "アンドラ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/jv.json b/src/Symfony/Component/Intl/Resources/data/regions/jv.json index a4b90311739b..00184b275bee 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": { "AC": "Pulo Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index 1ea9c7cc4ee1..b240dbd4720f 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": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 4721b21eac76..3da7764e3fcd 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 251d8a6fd863..17e0e7fe572f 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": { "AC": "Әскенжін аралы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kl.json b/src/Symfony/Component/Intl/Resources/data/regions/kl.json index 4ba056cba39f..13afcfc18f2d 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 4fd91f93c29a..7ad463f4535c 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": { "AC": "កោះ​អាសេនសិន", "AD": "អង់ដូរ៉ា", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index ffc91ade01d6..c143314bb103 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": { "AC": "ಅಸೆನ್ಶನ್ ದ್ವೀಪ", "AD": "ಅಂಡೋರಾ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index 4916a1c7671b..67585a65af3e 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": { "AC": "어센션 섬", "AD": "안도라", 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 4248255f8701..300a3860862f 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 d73905538fda..c54978292d62 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 889e923122d7..ed4b018238b7 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î", @@ -129,7 +128,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 3313ad49e4d7..0e44c30187a3 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 0496522ba5ee..2c18e297bfe3 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": { "AC": "Вознесение аралы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index e4da6831b7d6..55e6a35fb701 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lg.json b/src/Symfony/Component/Intl/Resources/data/regions/lg.json index 1ea6ace3e04b..4632723f03dc 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 ed9233a9cb93..28221c831971 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 02a9ff575eeb..611e6b209efe 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": { "AC": "ເກາະອາເຊນຊັນ", "AD": "ອັນດໍຣາ", @@ -248,6 +247,8 @@ "VU": "ວານົວຕູ", "WF": "ວາລລິສ ແລະ ຟູຕູນາ", "WS": "ຊາມົວ", + "XA": "Pseudo-Accents", + "XB": "Pseudo-Bidi", "XK": "ໂຄໂຊໂວ", "YE": "ເຢເມນ", "YT": "ມາຢັອດ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index 8c8a1c22b66d..9d4adca096de 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": { "AC": "Dangun Žengimo sala", "AD": "Andora", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Volisas ir Futūna", "WS": "Samoa", + "XA": "pseudo A", + "XB": "pseudo B", "XK": "Kosovas", "YE": "Jemenas", "YT": "Majotas", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lu.json b/src/Symfony/Component/Intl/Resources/data/regions/lu.json index 5443fad09b4c..e34e101e2a2c 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 5af1172a0c96..b2a6acdf6380 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": { "AC": "Debesbraukšanas sala", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index 714a32e4c041..3b393aca675b 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": [ "AC", "AD", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mg.json b/src/Symfony/Component/Intl/Resources/data/regions/mg.json index 3ffda70e8fc0..923bc3fedd68 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 3996948eb2d3..9c6d494b69fe 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 0247d5d4715b..0b64fb25e3b6 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": { "AC": "Остров Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ml.json b/src/Symfony/Component/Intl/Resources/data/regions/ml.json index 4fc0d21c83b7..91d12d8956bf 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": { "AC": "അസൻഷൻ ദ്വീപ്", "AD": "അൻഡോറ", @@ -249,6 +248,7 @@ "WF": "വാലിസ് ആന്റ് ഫ്യൂച്യുന", "WS": "സമോവ", "XA": "കൃത്രിമ ഉച്ചാരണം", + "XB": "സൂഡോ-ബായഡീ", "XK": "കൊസോവൊ", "YE": "യെമൻ", "YT": "മയോട്ടി", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mn.json b/src/Symfony/Component/Intl/Resources/data/regions/mn.json index b438b3691215..49a0e2f5111c 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": { "AC": "Асенсион арал", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index 3b3f86d3b3de..a2429f3a9662 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": { "AC": "Insula Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index b4d4cc93c4c9..55d056ee94ab 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": { "AC": "अ‍ॅसेन्शियन बेट", "AD": "अँडोरा", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index bc8d1c53ed75..149317006e5b 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": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Wallis dan Futuna", "WS": "Samoa", + "XA": "Aksen Pseudo", + "XB": "Bidi Pseudo", "XK": "Kosovo", "YE": "Yaman", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mt.json b/src/Symfony/Component/Intl/Resources/data/regions/mt.json index 32f41a0574b4..22178e8282b0 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": { "AC": "Ascension Island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/my.json b/src/Symfony/Component/Intl/Resources/data/regions/my.json index 9734a2f11472..3da6d4fcb2da 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": { "AC": "အဆန်းရှင်းကျွန်း", "AD": "အန်ဒိုရာ", @@ -248,6 +247,8 @@ "VU": "ဗနွားတူ", "WF": "ဝေါလစ်နှင့် ဖူကျူးနား", "WS": "ဆမိုးအား", + "XA": "နိုင်ငံခြားသံ", + "XB": "စာပြောင်းပြန်", "XK": "ကိုဆိုဗို", "YE": "ယီမင်", "YT": "မေယော့", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index 816e5825ab12..8bdf70291ab6 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index 990cf645687b..a76d2fa462e9 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 af4a6dbf33a1..df6647f1f2f6 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": { "AC": "असेन्सन टापु", "AD": "अन्डोर्रा", @@ -248,6 +247,7 @@ "VU": "भानुआतु", "WF": "वालिस र फुटुना", "WS": "सामोआ", + "XA": "सिउडो-एक्सेन्ट्स", "XB": "सिउडो-बिडी", "XK": "कोसोभो", "YE": "येमेन", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index a09ada12e024..8f19f43116d3 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index 906b471690bc..5471178d7452 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/no.json b/src/Symfony/Component/Intl/Resources/data/regions/no.json index 816e5825ab12..8bdf70291ab6 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 13abe3b82b6f..f92c488adea1 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 11986ff24cc2..2fd9d5bc3b31 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": { "AC": "ଆସେନସିଅନ୍‌ ଦ୍ୱୀପ", "AD": "ଆଣ୍ଡୋରା", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index 9cf4834a00ec..522f86136747 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 dc9faea01528..984ba3c040d5 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": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", 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 cacbcd241e97..c6baa58f6144 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 10bf0b5e243a..ea4b766c406e 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": { "AC": "Wyspa Wniebowstąpienia", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ps.json b/src/Symfony/Component/Intl/Resources/data/regions/ps.json index 0a621e6fb0ca..ba2eb7729425 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": { "AC": "اسينشان ټاپو", "AD": "اندورا", 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 c7e81fe75dbd..94d4ee734f01 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 7f5937b974af..dc856c95257f 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": { "AC": "Ilha de Ascensão", "AD": "Andorra", 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 976bde2ea818..9814f1b1b5fd 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 179054017f8f..e0fd0820d39f 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": { "AC": "Islas Ascensión", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index 49b4a0b9e003..3134a51377be 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 8d2518d95095..ab20b91bb454 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 3b3f86d3b3de..a2429f3a9662 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": { "AC": "Insula Ascension", "AD": "Andorra", 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 ae9c4052bbbc..14afe5c9aaa0 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 ea6bf36f8855..16a3a1efd215 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": { "AC": "о-в Вознесения", "AD": "Андорра", 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 048ab3c6a152..78833e07a3f0 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": { "AC": "О-в Вознесения", "AE": "Объединенные Арабские Эмираты", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rw.json b/src/Symfony/Component/Intl/Resources/data/regions/rw.json index 2c3d6b09cb99..27349d87e747 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 2aaf79338da0..241f0d6fe237 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": { "AC": "طلوع ٻيٽ", "AD": "اندورا", 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 000000000000..ebc796d29edb --- /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 57d4d0c3f766..ad054b5a2dce 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": { "AC": "Ascension", "AD": "Andorra", 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 f052eb91b42c..5d99dc8595d8 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 eb0a28682e94..cb854c27eec9 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 26ea85413ce9..45fb33005d14 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": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Valis i Futuna", "WS": "Samoa", + "XA": "Pseudoakcenti", + "XB": "Pseudobidi", "XK": "Kosovo", "YE": "Jemen", "YT": "Majot", 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 177c2e776c0c..3b51e765ddb2 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 fb675c497506..b5a6c931111c 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": { "AC": "ඇසෙන්ෂන් දිවයින", "AD": "ඇන්ඩෝරාව", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index 0bdedd11c59a..eb1f50733760 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index 75696d8ea962..acdd42feb70d 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": { "AC": "Otok Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sn.json b/src/Symfony/Component/Intl/Resources/data/regions/sn.json index 233be84b5b3d..2b42480f8552 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 020c65aa0b34..910d6da20740 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": { "AC": "Jasiiradda Asensiyoon", "AD": "Andora", @@ -49,6 +48,7 @@ "CL": "Jili", "CM": "Kaameruun", "CN": "Shiinaha", + "CO": "Koloombiya", "CR": "Kosta Riika", "CU": "Kuuba", "CV": "Jasiiradda Kayb Faarde", @@ -95,6 +95,7 @@ "GT": "Guwaatamaala", "GU": "Guaam", "GW": "Gini-Bisaaw", + "GY": "Guyana", "HK": "Hong Kong", "HN": "Honduras", "HR": "Korweeshiya", @@ -246,6 +247,8 @@ "VU": "Fanuaatu", "WF": "Walis & Futuna", "WS": "Samoowa", + "XA": "Shigshiga", + "XB": "Pseudo-Bidi", "XK": "Koosofo", "YE": "Yaman", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sq.json b/src/Symfony/Component/Intl/Resources/data/regions/sq.json index 1c0f61abe85c..64684ee418a7 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": { "AC": "Ishulli Asenshion", "AD": "Andorrë", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index 6e7d4c404093..a719549a85a8 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": { "AC": "Острво Асенсион", "AD": "Андора", @@ -248,6 +247,8 @@ "VU": "Вануату", "WF": "Валис и Футуна", "WS": "Самоа", + "XA": "Псеудоакценти", + "XB": "Псеудобиди", "XK": "Косово", "YE": "Јемен", "YT": "Мајот", 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 1dbbf5aff385..d95ffde3443c 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 1dbbf5aff385..d95ffde3443c 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 8461dee0d9fa..7220e77cd791 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 5f08e093fb8b..edec66ba1c79 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 26ea85413ce9..45fb33005d14 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": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Valis i Futuna", "WS": "Samoa", + "XA": "Pseudoakcenti", + "XB": "Pseudobidi", "XK": "Kosovo", "YE": "Jemen", "YT": "Majot", 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 177c2e776c0c..3b51e765ddb2 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 33df6ef6eca3..aa494b8ae008 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 eca2feb71884..5960c06a418c 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 33df6ef6eca3..aa494b8ae008 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 5f08e093fb8b..edec66ba1c79 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 000000000000..3b9ff0e2b5da --- /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 d9b20eddc6c4..de29f1925f14 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": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index 0c1f9011cd74..31c5741bd903 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": { "AC": "Kisiwa cha Ascension", "AD": "Andorra", 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 2fdded51ec53..c0798f1690d5 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 faa6ef2ae68d..da46e70c2189 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 6a8d33022e5b..a8c2b62313c3 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": { "AC": "அஷன்ஷியன் தீவு", "AD": "அன்டோரா", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index d4cbecb59fae..f68c6b97ad84 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": { "AC": "అసెన్షన్ దీవి", "AD": "ఆండోరా", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tg.json b/src/Symfony/Component/Intl/Resources/data/regions/tg.json index 50702f99709f..9ec231f41b9e 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": { "AC": "Асунсон", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index f4ba4abb0ce2..2f461f5fc1ab 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": { "AC": "เกาะแอสเซนชัน", "AD": "อันดอร์รา", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ti.json b/src/Symfony/Component/Intl/Resources/data/regions/ti.json index 13cc0346e7a3..186375561eda 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": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tk.json b/src/Symfony/Component/Intl/Resources/data/regions/tk.json index bd2c1ddf7996..2b443eb5cd8a 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": { "AC": "Beýgeliş adasy", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index f130352bbf56..2d3704437ca1 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": { "AC": "Acsencion island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/to.json b/src/Symfony/Component/Intl/Resources/data/regions/to.json index 51322484b816..4eaee2e18e13 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": { "AC": "Motu ʻAsenisini", "AD": "ʻAnitola", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index 77888c7a8a4b..b510a46c25ad 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": { "AC": "Ascension Adası", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tt.json b/src/Symfony/Component/Intl/Resources/data/regions/tt.json index b8a1d7d8173b..6d14d41a6e07 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 73d2630bd377..bfbc44dc53a1 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": { "AC": "ئاسسېنسىيون ئارىلى", "AD": "ئاندوررا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uk.json b/src/Symfony/Component/Intl/Resources/data/regions/uk.json index 1dc8ce6cd093..b29808b29ab7 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": { "AC": "Острів Вознесіння", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur.json b/src/Symfony/Component/Intl/Resources/data/regions/ur.json index 6be2959421f9..62d90c6b4d20 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": { "AC": "اسینشن آئلینڈ", "AD": "انڈورا", 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 39cddd629bf4..105f391ab1a4 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": { "AC": "جزیرہ اسینشن", "AX": "جزائر آلینڈ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz.json b/src/Symfony/Component/Intl/Resources/data/regions/uz.json index b03ffaf3bd3e..a6e453deb140 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": { "AC": "Me’roj oroli", "AD": "Andorra", 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 092fc95b4250..7e6cbfb36846 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 97722ae687cb..66fe8a964640 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": { "AC": "Меърож ороли", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/vi.json b/src/Symfony/Component/Intl/Resources/data/regions/vi.json index 8a8aaf830e29..209f5eaaefb5 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": { "AC": "Đảo Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/wo.json b/src/Symfony/Component/Intl/Resources/data/regions/wo.json index 64a1757cc96c..4abcc4594616 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 a6d834ebd16a..53ed2bf605c2 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 774111a3d308..406279d2f218 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 6ce011714310..293d4c23e7af 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo.json @@ -1,6 +1,6 @@ { - "Version": "36.1", "Names": { + "AC": "Erékùsù Ascension", "AD": "Orílẹ́ède Ààndórà", "AE": "Orílẹ́ède Ẹmirate ti Awọn Arabu", "AF": "Orílẹ́ède Àfùgànístánì", @@ -9,11 +9,13 @@ "AL": "Orílẹ́ède Àlùbàníánì", "AM": "Orílẹ́ède Améníà", "AO": "Orílẹ́ède Ààngólà", + "AQ": "Antakítíkà", "AR": "Orílẹ́ède Agentínà", "AS": "Sámóánì ti Orílẹ́ède Àméríkà", "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ì", @@ -24,9 +26,11 @@ "BH": "Orílẹ́ède Báránì", "BI": "Orílẹ́ède Bùùrúndì", "BJ": "Orílẹ́ède Bẹ̀nẹ̀", + "BL": "St. Barthélemy", "BM": "Orílẹ́ède Bémúdà", "BN": "Orílẹ́ède Búrúnẹ́lì", "BO": "Orílẹ́ède Bọ̀lífíyà", + "BQ": "Caribbean Netherlands", "BR": "Orilẹ̀-èdè Bàràsílì", "BS": "Orílẹ́ède Bàhámásì", "BT": "Orílẹ́ède Bútánì", @@ -34,6 +38,7 @@ "BY": "Orílẹ́ède Bélárúsì", "BZ": "Orílẹ́ède Bèlísẹ̀", "CA": "Orílẹ́ède Kánádà", + "CC": "Erékùsù Cocos (Keeling)", "CD": "Orilẹ́ède Kóngò", "CF": "Orílẹ́ède Àrin gùngun Áfíríkà", "CG": "Orílẹ́ède Kóngò", @@ -47,14 +52,18 @@ "CR": "Orílẹ́ède Kuusita Ríkà", "CU": "Orílẹ́ède Kúbà", "CV": "Orílẹ́ède Etíokun Kápé féndè", + "CW": "Curaçao", + "CX": "Erékùsù Christmas", "CY": "Orílẹ́ède Kúrúsì", "CZ": "Orílẹ́ède ṣẹ́ẹ́kì", "DE": "Orílẹèdè Jámánì", + "DG": "Diego Gaṣia", "DJ": "Orílẹ́ède Díbọ́ótì", "DK": "Orílẹ́ède Dẹ́mákì", "DM": "Orílẹ́ède Dòmíníkà", "DO": "Orilẹ́ède Dòmíníkánì", "DZ": "Orílẹ́ède Àlùgèríánì", + "EA": "Seuta àti Melilla", "EC": "Orílẹ́ède Ekuádò", "EE": "Orílẹ́ède Esitonia", "EG": "Orílẹ́ède Égípítì", @@ -66,12 +75,14 @@ "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ì", "GD": "Orílẹ́ède Genada", "GE": "Orílẹ́ède Gọgia", "GF": "Orílẹ́ède Firenṣi Guana", + "GG": "Guernsey", "GH": "Orílẹ́ède Gana", "GI": "Orílẹ́ède Gibaratara", "GL": "Orílẹ́ède Gerelandi", @@ -80,23 +91,28 @@ "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 Ṣáì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", + "IM": "Isle of Man", "IN": "Orílẹ́ède India", "IO": "Orílẹ́ède Etíkun Índíánì ti Ìlú Bírítísì", "IQ": "Orílẹ́ède Iraki", "IR": "Orílẹ́ède Irani", "IS": "Orílẹ́ède Aṣilandi", "IT": "Orílẹ́ède Itáli", + "JE": "Jersey", "JM": "Orílẹ́ède Jamaika", "JO": "Orílẹ́ède Jọdani", "JP": "Orílẹ́ède Japani", @@ -125,12 +141,15 @@ "MA": "Orílẹ́ède Moroko", "MC": "Orílẹ́ède Monako", "MD": "Orílẹ́ède Modofia", + "ME": "Montenegro", + "MF": "St. Martin", "MG": "Orílẹ́ède Madasika", "MH": "Orílẹ́ède Etikun Máṣali", "MK": "Àríwá Macedonia", "ML": "Orílẹ́ède Mali", "MM": "Orílẹ́ède Manamari", "MN": "Orílẹ́ède Mogolia", + "MO": "Macao SAR ti Ṣáìnà", "MP": "Orílẹ́ède Etikun Guusu Mariana", "MQ": "Orílẹ́ède Matinikuwi", "MR": "Orílẹ́ède Maritania", @@ -172,6 +191,7 @@ "QA": "Orílẹ́ède Kota", "RE": "Orílẹ́ède Riuniyan", "RO": "Orílẹ́ède Romaniya", + "RS": "Serbia", "RU": "Orílẹ́ède Rọṣia", "RW": "Orílẹ́ède Ruwanda", "SA": "Orílẹ́ède Saudi Arabia", @@ -182,6 +202,7 @@ "SG": "Orílẹ́ède Singapo", "SH": "Orílẹ́ède Hẹlena", "SI": "Orílẹ́ède Silofania", + "SJ": "Svalbard & Jan Mayen", "SK": "Orílẹ́ède Silofakia", "SL": "Orílẹ́ède Siria looni", "SM": "Orílẹ́ède Sani Marino", @@ -191,8 +212,10 @@ "SS": "Gúúsù Sudan", "ST": "Orílẹ́ède Sao tomi ati piriiṣipi", "SV": "Orílẹ́ède Ẹẹsáfádò", + "SX": "Sint Maarten", "SY": "Orílẹ́ède Siria", "SZ": "Orílẹ́ède Saṣiland", + "TA": "Tristan da Kunha", "TC": "Orílẹ́ède Tọọki ati Etikun Kakọsi", "TD": "Orílẹ́ède ṣààdì", "TF": "Agbègbè Gúúsù Faranṣé", @@ -211,6 +234,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 Nṣibẹkisitani", @@ -223,6 +247,8 @@ "VU": "Orílẹ́ède Faniatu", "WF": "Orílẹ́ède Wali ati futuna", "WS": "Orílẹ́ède Samọ", + "XA": "Pseudo-Accents", + "XB": "Pseudo-Bidi", "XK": "Kòsófò", "YE": "Orílẹ́ède yemeni", "YT": "Orílẹ́ède Mayote", 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 450e3c3b2c09..66bac5abf661 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 0156e477dc04..b184b87aba26 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": { "AC": "阿森松岛", "AD": "安道尔", 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 92aa77ef43e1..5e2c1723bf9e 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 d8aae6f6da56..2ef4edb649ed 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": { "AC": "阿森松島", "AD": "安道爾", 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 92aa77ef43e1..5e2c1723bf9e 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 4520aad3e854..f8963e307db7 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": { "AC": "i-Ascension Island", "AD": "i-Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index 4556e5522897..3b6840b34e8d 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 e7ccc11a8dfc..b6a39d37e690 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 c5e865a5d78c..a6af6285df1f 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 1e448d021b8d..e1794933130e 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 e501eae3c265..a9cbabdb3328 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 5aff7ca78e71..1664f752ca5e 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 0ef0da0691a0..fcbe207e0f27 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 5c00881bb890..f308a6c1786d 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 ee06a77b58df..3a985e047873 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 240a93878c57..811849d07a5a 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 fdfd221368e9..037eac3cd625 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 b64b7cc9fc43..f4be718cec89 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 0fe4d9ed24cf..32fd6dfe3881 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 5076f6549632..351a4c1dfbaf 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 6a9a7601e9ea..d6315f434701 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 e622ae45363f..b7a471dc70fb 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 e25078e1bf5f..f9a452ec1a33 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 597d9d84c67e..b4239ab3cd00 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 e2baf9264bab..ce644faf4117 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 1f788f72fc77..5969aef4e53d 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 c5e4b50f28ba..c24e0669ce98 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 5c8743fbdf4f..068289c45e6f 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 0d0c6e0f29e5..bc2644d27953 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 41212b08daa2..ef3616aa6d61 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 874fbd053582..e5e480496f13 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 a8cccd7a4c97..746716b83a68 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 0f3e0f4baead..8e8e7776713e 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 4f09be2e3c18..e4ec3edee033 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 a1356cb99641..564f0ff0ed75 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 d88e7d838be7..534bbbc02349 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 15bb1b29877f..ee0f4283a646 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 5d626e5e8d3c..a96118178bdf 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 149b212e8390..c8aac9b6aac8 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 000000000000..754209266684 --- /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 b7f6e9d9d5db..bd4b34ff2012 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 c221e02ffa66..eccd3d7fc160 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 d915ea212691..88424a6c1c7d 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 2c022b7b56eb..51b5c72a6e21 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 9f0213440a8b..3478d41cef6e 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 de17a6cbdc9d..8867308fcbc8 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 01a6dd10379c..3d1fdf56afd5 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 62f119364b7e..5720ae46a712 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 09787d68851f..a6aca9b683fb 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 30d64172dc28..fe5256625912 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json @@ -1,10 +1,10 @@ { - "Version": "36.1", "Names": { "Arab": "Larabci", "Armn": "Armeniyawa", "Beng": "Bangla", "Bopo": "Bopomofo", + "Brai": "Rubutun Makafi", "Cyrl": "Cyrillic", "Deva": "Devanagari", "Ethi": "Ethiopic", @@ -13,12 +13,34 @@ "Gujr": "Gujarati", "Guru": "Gurmukhi", "Hanb": "Han with Bopomofo", + "Hang": "Yaren Hangul", + "Hani": "Mutanen Han na ƙasar Sin", "Hans": "Sauƙaƙaƙƙen", "Hant": "Na gargajiya", "Hebr": "Ibrananci", + "Hira": "Tsarin Rubutun Hiragana", + "Hrkt": "kalaman Jafananci", + "Jpan": "Jafanis", + "Kana": "Tsarin Rubutun Katakana", + "Khmr": "Yaren Khmer", + "Knda": "Yaren Kannada", + "Kore": "Koriya", + "Laoo": "Mutanen Laos", "Latn": "Latin", + "Mlym": "Yaren Malayalam", + "Mong": "Na kasar Mongolia", + "Mymr": "Ƙasar Myanmar", + "Orya": "Yaren Odia", + "Sinh": "Yaren Sinhala", + "Taml": "Yaren Tamil", + "Telu": "Yaren Telugu", + "Thaa": "Yaren Thaana", + "Tibt": "Yaren Tibet", + "Zmth": "Alamar Lissafi", + "Zsye": "Alama ta hoto", "Zsym": "Alamomi", "Zxxx": "Ba rubutacce ba", + "Zyyy": "Gama-gari", "Zzzz": "Rubutun da ba sani ba" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/he.json b/src/Symfony/Component/Intl/Resources/data/scripts/he.json index c9f6f3816982..88e537994d9f 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 143443dcf8df..379394bd58d6 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 c0473c5cbbc9..9ffb32ce03e8 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 7113c51a2c21..3398765ae9bf 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 e69f99cd5f15..eec43db29632 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 596a37e0b931..c7e9c4fa6dde 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 26ff2ecd5bc9..208a8f420ebe 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 5d957f66bb50..4005a913f5ec 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 31288014b3d8..0a1f6e05d8a0 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 26ff2ecd5bc9..208a8f420ebe 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 641c4899fe71..2c47ace480bb 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 be8e5e7f530e..1f5f829792ff 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 c9f6f3816982..88e537994d9f 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 4487e35e00a5..628541164a13 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 15db11319e56..7ab503148ebd 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 4007ef0f1919..e8e29a236399 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 fce53fa65ad2..99300660103b 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 7d7fbf37e472..3a8b09de367e 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 cf273c076d95..40e0928302e0 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 9cbfba369597..b4d8d69f7cef 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 08ab0414e4c1..968d9b28818b 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 50bf7830538c..7e4cdc23422b 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 41b4b16af140..036485e81c68 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 4405665de39a..121c3e393911 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 2e62f312e681..6d69b4a14b30 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 a8f7837281ea..862e3f598346 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 0d98aaa32ecd..136bfa8d1b67 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 b7556560a6d0..fbfdc993baba 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 bbfe6cf87f93..9f0c4c29a0ad 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 1739d840acae..6e6394caac1f 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 49f4db1feb01..25cbb1e6a856 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 1e91832edb6b..42535f43ebb1 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 0cfc01586a59..7c2da8b93c02 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 d50443ec487d..bbe16d344b86 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 1cfba128ac17..b230a9baf7d6 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 0fe26f9960c0..c27ed06c7998 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 4ba2ff7e93c3..4a71f94e464a 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 cf1a7a4d5009..7bbaf02f4f46 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 fcc3a5331995..ebd77afded8a 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 00c0968195dc..738a827e7674 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 c34d942feaae..c2b58c8c99ae 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 cf1a7a4d5009..7bbaf02f4f46 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 ee0a35d57522..7eb86bdfff44 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 cb3720efedf6..54c93d9c2350 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 731650bb489b..f0328735edb0 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 34ddfc98dbd2..83ce48402328 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 3c4fd193491c..1f9898b47965 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 7cdd4a568556..50c14075e33d 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 20ea2fa68fa3..928b7723ecc6 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 37b01d982a6f..5ee17fbb4786 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 392c4491b932..6e3908cb896f 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 d29151f44910..d3e1bb390ba5 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 0cfc01586a59..7c2da8b93c02 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 3ab523710003..81b6a889e09c 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 d7de324f54cf..ee85ade3ff8d 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 000000000000..1671ee2bdb13 --- /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 c467385ec18a..8a8be9c2cc9b 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 bd0afa6d8a9f..bc72f73e7875 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 34374f83ffb4..85ec59841e27 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 459779da8372..6c03cd0c5a95 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 e525197a9d69..60a59cf00556 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 741a2fe3c09d..eb1b9ac87fbf 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 2170b1b6e52a..dcb60bad4137 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 3a19fc2193d8..4e2ea0079430 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 1a757229045e..5af809092cf3 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 34374f83ffb4..85ec59841e27 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 000000000000..9a9267a25dd6 --- /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 c0fb0b1715c5..14924e9c05b7 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 e4dabe529f5f..721a14c22390 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 09c0ff4bfe0b..ecc3088ccc0d 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 bae59865fe22..a841edf54b64 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 83a4b5219654..c706943e8fe5 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 948cd93aef51..d4cd486e569d 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 ca50c7454a31..2aa47e48e784 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 a36cf3771d37..c0289201353f 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 aa4f521924b3..56a713a0db75 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 ee59ad9c6f21..002fd9656c94 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 b4e0aba2ae6a..f6fb47afbfa7 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 d3be655ad833..b76fa18d094e 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 21c303dd7ffc..935e31f04d55 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 ff20a5e044a0..ac6699ecec09 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 9cb64c70fad4..78e8c48f3dc8 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 fe9c9859df67..ecdd49629faa 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 54b834215e07..1d56897d2caf 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 16cf4cfed89e..a2e55d0bb55a 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 e21150aa95c8..0b40606789de 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 e046fb2e9692..4c9fecf561de 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 a9d31724946a..76ddf9338828 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 59f1b83831d5..dc2fbd6f67ab 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 2c32fe7e4556..12a9fef9913a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json @@ -1,14 +1,46 @@ { - "Version": "36.1", "Names": { "Arab": "èdè Lárúbáwá", + "Armn": "Àmẹ́níà", + "Beng": "Báńgílà", + "Bopo": "Bopomófò", + "Brai": "Bíráìlè", "Cyrl": "èdè ilẹ̀ Rọ́ṣíà", + "Deva": "Dẹfanagárì", + "Ethi": "Ẹtiópíìkì", + "Geor": "Jọ́jíànù", + "Grek": "Jọ́jíà", + "Gujr": "Gujaráti", + "Guru": "Gurumúkhì", + "Hanb": "Han pẹ̀lú Bopomófò", + "Hang": "Háńgùlù", + "Hani": "Háànù", "Hans": "tí wọ́n mú rọrùn.", "Hant": "Hans àtọwọ́dọ́wọ́", + "Hebr": "Hébérù", + "Hira": "Hiragánà", + "Hrkt": "ìlànà àfọwọ́kọ ará Jàpánù", "Jpan": "èdè jàpáànù", + "Kana": "Katakánà", + "Khmr": "Kẹmẹ̀", + "Knda": "Kanada", "Kore": "Kóríà", + "Laoo": "Láò", "Latn": "Èdè Látìn", + "Mlym": "Málàyálámù", + "Mong": "Mòngólíà", + "Mymr": "Myánmarà", + "Orya": "Òdíà", + "Sinh": "Sìnhálà", + "Taml": "Támílì", + "Telu": "Télúgù", + "Thaa": "Taana", + "Tibt": "Tíbétán", + "Zmth": "Àmì Ìṣèsìrò", + "Zsye": "Émójì", + "Zsym": "Àwọn àmì", "Zxxx": "Aikọsilẹ", + "Zyyy": "Wọ́pọ̀", "Zzzz": "Ìṣọwọ́kọ̀wé àìmọ̀" } } 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 6d6003d5ea80..7bb43dad8ee0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json @@ -1,10 +1,20 @@ { - "Version": "36.1", "Names": { + "Armn": "Àmɛ́níà", "Cyrl": "èdè ilɛ̀ Rɔ́shíà", + "Deva": "Dɛfanagárì", + "Ethi": "Ɛtiópíìkì", + "Geor": "Jɔ́jíànù", + "Grek": "Jɔ́jíà", + "Hanb": "Han pɛ̀lú Bopomófò", "Hans": "tí wɔ́n mú rɔrùn.", "Hant": "Hans àtɔwɔ́dɔ́wɔ́", + "Hrkt": "ìlànà àfɔwɔ́kɔ ará Jàpánù", + "Khmr": "Kɛmɛ̀", + "Zmth": "Àmì Ìshèsìrò", + "Zsym": "Àwɔn àmì", "Zxxx": "Aikɔsilɛ", + "Zyyy": "Wɔ́pɔ̀", "Zzzz": "Ìshɔwɔ́kɔ̀wé àìmɔ̀" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json index 15cf647dd967..eaf37cf197e1 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 edea872a6e10..08cd7e5f438e 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 88ef005a3947..477565da4dfa 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 edea872a6e10..08cd7e5f438e 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 5f1601277565..1f5bdd432f55 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/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 4afa81b96f43..e85cbeb31d49 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 f649dcff98ea..efd8e138cc9a 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php @@ -269,6 +269,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', @@ -406,6 +419,8 @@ abstract class AbstractDataProviderTest extends TestCase 'ko_KP', 'ko_KR', 'ks', + 'ks_Arab', + 'ks_Arab_IN', 'ks_IN', 'ku', 'ku_TR', @@ -445,6 +460,7 @@ abstract class AbstractDataProviderTest extends TestCase 'mr_IN', 'ms', 'ms_BN', + 'ms_ID', 'ms_MY', 'ms_SG', 'mt', @@ -526,6 +542,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', @@ -575,6 +595,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', @@ -669,12 +693,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', @@ -689,6 +715,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 5c279065a192..fac70202b94f 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractScriptDataProviderTest.php @@ -28,6 +28,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Aghb', 'Ahom', 'Arab', + 'Aran', 'Armi', 'Armn', 'Avst', @@ -48,12 +49,14 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Cari', 'Cham', 'Cher', + 'Chrs', 'Cirt', 'Copt', 'Cprt', 'Cyrl', 'Cyrs', 'Deva', + 'Diak', 'Dogr', 'Dsrt', 'Dupl', @@ -98,6 +101,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Khar', 'Khmr', 'Khoj', + 'Kits', 'Knda', 'Kore', 'Kpel', @@ -204,6 +208,7 @@ abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest 'Wole', 'Xpeo', 'Xsux', + 'Yezi', 'Yiii', 'Zanb', 'Zinh', From d8964fb8b7c2b460570bc70597e59eff8316253e Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Sat, 16 May 2020 11:23:27 +0000 Subject: [PATCH 32/81] [HttpKernel] Fix that the `Store` would not save responses with the X-Content-Digest header present --- .../Component/HttpKernel/HttpCache/Store.php | 29 ++++++++++--------- .../HttpKernel/Tests/HttpCache/StoreTest.php | 21 ++++++++++++++ 2 files changed, 36 insertions(+), 14 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/HttpCache/Store.php b/src/Symfony/Component/HttpKernel/HttpCache/Store.php index c831ba2ac3ff..fd04a7b23d1d 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/Store.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/Store.php @@ -177,19 +177,15 @@ public function write(Request $request, Response $response) $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.'); - } - - $response->headers->set('X-Content-Digest', $digest); + if (!$this->save($digest, $response->getContent(), false)) { + throw new \RuntimeException('Unable to store the entity.'); + } - 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 @@ -362,15 +358,20 @@ private function load($key) /** * Save data for the given key. * - * @param string $key The store key - * @param string $data The data to store + * @param string $key The store key + * @param string $data The data to store + * @param bool $overwrite Whether existing data should be overwritten * * @return bool */ - private function save($key, $data) + private function save($key, $data, $overwrite = true) { $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 77cb34cfa555..07c41542697e 100644 --- a/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/HttpCache/StoreTest.php @@ -97,6 +97,27 @@ public function testSetsTheXContentDigestResponseHeaderBeforeStoring() $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(); From 040d01e53b82be9f1f185858463f4ad7482ce907 Mon Sep 17 00:00:00 2001 From: Giuseppe Campanelli Date: Mon, 18 May 2020 16:01:03 -0400 Subject: [PATCH 33/81] [Validator] Add missing translations of nn locale --- .../Resources/translations/validators.nn.xlf | 160 ++++++++++++++++++ 1 file changed, 160 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.nn.xlf index e5881330e8eb..db804d3b68ee 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. + From 5aa25ceb414dfa32c83c396744355edb931bdef7 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 18:09:19 +0200 Subject: [PATCH 34/81] [PhpUnitBridge] fix installing under PHP >= 8 --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 41445d93ab12..6a756cfd2a77 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -87,6 +87,31 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ rename("phpunit-$PHPUNIT_VERSION", "phpunit-$PHPUNIT_VERSION.old"); passthru(sprintf('\\' === DIRECTORY_SEPARATOR ? 'rmdir /S /Q %s': 'rm -rf %s', "phpunit-$PHPUNIT_VERSION.old")); } + + $info = array(); + foreach (explode("\n", `$COMPOSER info -a -n phpunit/phpunit "$PHPUNIT_VERSION.*"`) as $line) { + $line = rtrim($line); + + if (!$info && preg_match('/^versions +: /', $line)) { + $info['versions'] = explode(', ', ltrim(substr($line, 9), ': ')); + } elseif (isset($info['requires'])) { + if ('' === $line) { + break; + } + + $line = explode(' ', $line, 2); + $info['requires'][$line[0]] = $line[1]; + } elseif ($info && 'requires' === $line) { + $info['requires'] = array(); + } + } + + if (1 === \count($info['versions'])) { + $passthruOrFail("$COMPOSER create-project --ignore-platform-reqs --no-install --prefer-dist --no-scripts --no-plugins --no-progress --ansi -s dev phpunit/phpunit $PHPUNIT_VERSION_DIR \"$PHPUNIT_VERSION.*\""); + } else { + $passthruOrFail("$COMPOSER create-project --ignore-platform-reqs --no-install --prefer-dist --no-scripts --no-plugins --no-progress --ansi phpunit/phpunit $PHPUNIT_VERSION_DIR \"$PHPUNIT_VERSION.*\""); + } + $passthruOrFail("$COMPOSER create-project --no-install --prefer-dist --no-scripts --no-plugins --no-progress --ansi phpunit/phpunit phpunit-$PHPUNIT_VERSION \"$PHPUNIT_VERSION.*\""); @copy("phpunit-$PHPUNIT_VERSION/phpunit.xsd", 'phpunit.xsd'); chdir("phpunit-$PHPUNIT_VERSION"); @@ -97,6 +122,9 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ $passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\""); } + if ($info['requires']['php'] !== $phpVersion = preg_replace('{\^([\d\.]++)$}', '>=$1', $info['requires']['php'])) { + $passthruOrFail("$COMPOSER require --no-update \"php:$phpVersion\""); + } $passthruOrFail("$COMPOSER config --unset platform.php"); if (file_exists($path = $root.'/vendor/symfony/phpunit-bridge')) { $passthruOrFail("$COMPOSER require --no-update symfony/phpunit-bridge \"*@dev\""); From b6151ed6ccf16f5cca8661d6e4e9023ce8eecd4b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 19:29:51 +0200 Subject: [PATCH 35/81] [PhpUnitBridge] fix leftover --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 6a756cfd2a77..64966bb61ad7 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -112,7 +112,6 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ $passthruOrFail("$COMPOSER create-project --ignore-platform-reqs --no-install --prefer-dist --no-scripts --no-plugins --no-progress --ansi phpunit/phpunit $PHPUNIT_VERSION_DIR \"$PHPUNIT_VERSION.*\""); } - $passthruOrFail("$COMPOSER create-project --no-install --prefer-dist --no-scripts --no-plugins --no-progress --ansi phpunit/phpunit phpunit-$PHPUNIT_VERSION \"$PHPUNIT_VERSION.*\""); @copy("phpunit-$PHPUNIT_VERSION/phpunit.xsd", 'phpunit.xsd'); chdir("phpunit-$PHPUNIT_VERSION"); if ($SYMFONY_PHPUNIT_REMOVE) { From 606715b6eca987cfe8d0e3a8be6571e637f0c4ef Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 23:49:59 +0200 Subject: [PATCH 36/81] [PhpUnitBridge] fix installing on PHP 8 --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 64966bb61ad7..bf4fbb0c286e 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -121,10 +121,9 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ $passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\""); } - if ($info['requires']['php'] !== $phpVersion = preg_replace('{\^([\d\.]++)$}', '>=$1', $info['requires']['php'])) { - $passthruOrFail("$COMPOSER require --no-update \"php:$phpVersion\""); + if (preg_match('{\^(\d++\.\d++)[\d\.]*)$}', $info['requires']['php'], $phpVersion)) { + $passthruOrFail("$COMPOSER config platform.php \"$phpVersion[1].99\""); } - $passthruOrFail("$COMPOSER config --unset platform.php"); if (file_exists($path = $root.'/vendor/symfony/phpunit-bridge')) { $passthruOrFail("$COMPOSER require --no-update symfony/phpunit-bridge \"*@dev\""); $passthruOrFail("$COMPOSER config repositories.phpunit-bridge path ".escapeshellarg(str_replace('/', DIRECTORY_SEPARATOR, $path))); From c101259192c46405d5b3d91f855d0446220fecc5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 23:58:15 +0200 Subject: [PATCH 37/81] [PhpUnitBridge] fix installing on PHP 8 (bis) --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index bf4fbb0c286e..67dcfbef6ce0 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -89,7 +89,7 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ } $info = array(); - foreach (explode("\n", `$COMPOSER info -a -n phpunit/phpunit "$PHPUNIT_VERSION.*"`) as $line) { + foreach (explode("\n", `$COMPOSER info --no-ansi -a -n phpunit/phpunit "$PHPUNIT_VERSION.*"`) as $line) { $line = rtrim($line); if (!$info && preg_match('/^versions +: /', $line)) { From 5ec5bfb23c304f536c2f9d33b8f1eed3d712891f Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 21 May 2020 00:01:37 +0200 Subject: [PATCH 38/81] [PhpUnitBridge] fix installing on PHP 8 (ter) --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 67dcfbef6ce0..e416a23a599f 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -121,8 +121,10 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ $passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\""); } - if (preg_match('{\^(\d++\.\d++)[\d\.]*)$}', $info['requires']['php'], $phpVersion)) { + if (preg_match('{\^(\d++\.\d++)[\d\.]*$}', $info['requires']['php'], $phpVersion) && version_compare($phpVersion[1], PHP_VERSION, '<')) { $passthruOrFail("$COMPOSER config platform.php \"$phpVersion[1].99\""); + } else { + $passthruOrFail("$COMPOSER config --unset platform.php"); } if (file_exists($path = $root.'/vendor/symfony/phpunit-bridge')) { $passthruOrFail("$COMPOSER require --no-update symfony/phpunit-bridge \"*@dev\""); From 53b1677a4e82d7c11b3dc99eeb4c1c2264947ef5 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 21 May 2020 13:30:55 +0200 Subject: [PATCH 39/81] Address deprecation of ReflectionType::getClass(). --- .../Compiler/AutowirePass.php | 11 +++++++++- .../Controller/ControllerResolver.php | 20 ++++++++++++++++++- .../OptionsResolver/OptionsResolver.php | 18 ++++++++++++++++- 3 files changed, 46 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php index 91b279c77a25..d97f121ab9c3 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -525,7 +525,16 @@ private static function getResourceMetadataForMethod(\ReflectionMethod $method) $methodArgumentsMetadata = []; foreach ($method->getParameters() as $parameter) { try { - $class = $parameter->getClass(); + if (method_exists($parameter, 'getType')) { + $type = $parameter->getType(); + if ($type && !$type->isBuiltin()) { + $class = new \ReflectionClass(method_exists($type, 'getName') ? $type->getName() : (string) $type); + } else { + $class = null; + } + } else { + $class = $parameter->getClass(); + } } catch (\ReflectionException $e) { // type-hint is against a non-existent class $class = false; diff --git a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php index e3a7211c1be2..688d574cebe0 100644 --- a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php +++ b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php @@ -136,7 +136,7 @@ protected function doGetArguments(Request $request, $controller, array $paramete } else { $arguments[] = $attributes[$param->name]; } - } elseif ($param->getClass() && $param->getClass()->isInstance($request)) { + } elseif ($this->typeMatchesRequestClass($param, $request)) { $arguments[] = $request; } elseif ($param->isDefaultValueAvailable()) { $arguments[] = $param->getDefaultValue(); @@ -260,4 +260,22 @@ private function getControllerError($callable) return $message; } + + /** + * @return bool + */ + private function typeMatchesRequestClass(\ReflectionParameter $param, Request $request) + { + if (!method_exists($param, 'getType')) { + return $param->getClass() && $param->getClass()->isInstance($request); + } + + if (!($type = $param->getType()) || $type->isBuiltin()) { + return false; + } + + $class = new \ReflectionClass(method_exists($type, 'getName') ? $type->getName() : (string) $type); + + return $class && $class->isInstance($request); + } } diff --git a/src/Symfony/Component/OptionsResolver/OptionsResolver.php b/src/Symfony/Component/OptionsResolver/OptionsResolver.php index fd8a603fe24c..7354caf8a6fe 100644 --- a/src/Symfony/Component/OptionsResolver/OptionsResolver.php +++ b/src/Symfony/Component/OptionsResolver/OptionsResolver.php @@ -146,7 +146,7 @@ public function setDefault($option, $value) $reflClosure = new \ReflectionFunction($value); $params = $reflClosure->getParameters(); - if (isset($params[0]) && null !== ($class = $params[0]->getClass()) && Options::class === $class->name) { + if (isset($params[0]) && Options::class === $this->getParameterClassName($params[0])) { // Initialize the option if no previous value exists if (!isset($this->defaults[$option])) { $this->defaults[$option] = null; @@ -1066,4 +1066,20 @@ private static function isValueValidType($type, $value) { return (\function_exists($isFunction = 'is_'.$type) && $isFunction($value)) || $value instanceof $type; } + + /** + * @return string|null + */ + private function getParameterClassName(\ReflectionParameter $parameter) + { + if (!method_exists($parameter, 'getType')) { + return ($class = $parameter->getClass()) ? $class->name : null; + } + + if (!($type = $parameter->getType()) || $type->isBuiltin()) { + return null; + } + + return method_exists($type, 'getName') ? $type->getName() : (string) $type; + } } From 573d0dd493d494093fd78c20caa252c7da0b2a21 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 21 May 2020 16:02:48 +0200 Subject: [PATCH 40/81] [Debug] Skip test that would trigger a fatal error on php 8. --- src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php b/src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php index 86ecf16df02c..3cde54b3cd1b 100644 --- a/src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php +++ b/src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php @@ -97,6 +97,9 @@ public function testUnsilencing() $this->assertStringMatchesFormat('%aParse error%a', $output); } + /** + * @requires PHP < 8.0 + */ public function testStacking() { // the ContextErrorException must not be loaded to test the workaround From dd902d939f45469d7b76b40ea7deaa6ffcf63010 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 21 May 2020 20:33:26 +0200 Subject: [PATCH 41/81] [PhpUnitBridge] fix setting platform.php --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index e416a23a599f..f0c7c4085aba 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -121,7 +121,7 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ $passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\""); } - if (preg_match('{\^(\d++\.\d++)[\d\.]*$}', $info['requires']['php'], $phpVersion) && version_compare($phpVersion[1], PHP_VERSION, '<')) { + if (preg_match('{\^((\d++\.)\d++)[\d\.]*$}', $info['requires']['php'], $phpVersion) && version_compare($phpVersion[2].'99', PHP_VERSION, '<')) { $passthruOrFail("$COMPOSER config platform.php \"$phpVersion[1].99\""); } else { $passthruOrFail("$COMPOSER config --unset platform.php"); From d333aae1874f451e22cc492432c3edb335a5ed07 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 21 May 2020 21:40:39 +0200 Subject: [PATCH 42/81] never directly validate Existence (Required/Optional) constraints --- .../Tests/Validator/RecursiveValidatorTest.php | 16 ++++++++++++++++ .../Validator/RecursiveContextualValidator.php | 5 +++++ 2 files changed, 21 insertions(+) diff --git a/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php b/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php index 31871c3f9a1e..484236241c7f 100644 --- a/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php @@ -19,6 +19,8 @@ use Symfony\Component\Validator\Constraints\Length; use Symfony\Component\Validator\Constraints\NotBlank; use Symfony\Component\Validator\Constraints\NotNull; +use Symfony\Component\Validator\Constraints\Optional; +use Symfony\Component\Validator\Constraints\Required; use Symfony\Component\Validator\ConstraintValidatorFactory; use Symfony\Component\Validator\Context\ExecutionContextFactory; use Symfony\Component\Validator\Mapping\ClassMetadata; @@ -157,4 +159,18 @@ public function testAllConstraintValidateAllGroupsForNestedConstraints() $this->assertInstanceOf(NotBlank::class, $violations->get(0)->getConstraint()); $this->assertInstanceOf(Length::class, $violations->get(1)->getConstraint()); } + + public function testRequiredConstraintIsIgnored() + { + $violations = $this->validator->validate([], new Required()); + + $this->assertCount(0, $violations); + } + + public function testOptionalConstraintIsIgnored() + { + $violations = $this->validator->validate([], new Optional()); + + $this->assertCount(0, $violations); + } } diff --git a/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php b/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php index a204cd91f619..24206bfc27d9 100644 --- a/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php +++ b/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php @@ -13,6 +13,7 @@ use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\Constraints\Composite; +use Symfony\Component\Validator\Constraints\Existence; use Symfony\Component\Validator\Constraints\GroupSequence; use Symfony\Component\Validator\Constraints\Valid; use Symfony\Component\Validator\ConstraintValidatorFactoryInterface; @@ -790,6 +791,10 @@ private function validateInGroup($value, $cacheKey, MetadataInterface $metadata, $context->setGroup($group); foreach ($metadata->findConstraints($group) as $constraint) { + if ($constraint instanceof Existence) { + continue; + } + // Prevent duplicate validation of constraints, in the case // that constraints belong to multiple validated groups if (null !== $cacheKey) { From 1d20b514f2b3876b7d1b54c75316bf3a77bfff3c Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 12:18:15 +0200 Subject: [PATCH 43/81] [Debug] Undefined variables raise a warning in php 8. --- .../Debug/Tests/ErrorHandlerTest.php | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php index 01c63aea88e3..118935e769db 100644 --- a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php @@ -101,9 +101,14 @@ public function testNotice() $this->fail('ErrorException expected'); } catch (\ErrorException $exception) { // if an exception is thrown, the test passed - $this->assertEquals(E_NOTICE, $exception->getSeverity()); + if (\PHP_VERSION_ID < 80000) { + $this->assertEquals(E_NOTICE, $exception->getSeverity()); + $this->assertRegExp('/^Notice: Undefined variable: (foo|bar)/', $exception->getMessage()); + } else { + $this->assertEquals(E_WARNING, $exception->getSeverity()); + $this->assertRegExp('/^Warning: Undefined variable \$(foo|bar)/', $exception->getMessage()); + } $this->assertEquals(__FILE__, $exception->getFile()); - $this->assertRegExp('/^Notice: Undefined variable: (foo|bar)/', $exception->getMessage()); $trace = $exception->getTrace(); @@ -247,11 +252,17 @@ public function testHandleError() $line = null; $logArgCheck = function ($level, $message, $context) use (&$line) { - $this->assertEquals('Notice: Undefined variable: undefVar', $message); $this->assertArrayHasKey('exception', $context); $exception = $context['exception']; + + if (\PHP_VERSION_ID < 80000) { + $this->assertEquals('Notice: Undefined variable: undefVar', $message); + $this->assertSame(E_NOTICE, $exception->getSeverity()); + } else { + $this->assertEquals('Warning: Undefined variable $undefVar', $message); + $this->assertSame(E_WARNING, $exception->getSeverity()); + } $this->assertInstanceOf(SilencedErrorContext::class, $exception); - $this->assertSame(E_NOTICE, $exception->getSeverity()); $this->assertSame(__FILE__, $exception->getFile()); $this->assertSame($line, $exception->getLine()); $this->assertNotEmpty($exception->getTrace()); @@ -265,8 +276,13 @@ public function testHandleError() ; $handler = ErrorHandler::register(); - $handler->setDefaultLogger($logger, E_NOTICE); - $handler->screamAt(E_NOTICE); + if (\PHP_VERSION_ID < 80000) { + $handler->setDefaultLogger($logger, E_NOTICE); + $handler->screamAt(E_NOTICE); + } else { + $handler->setDefaultLogger($logger, E_WARNING); + $handler->screamAt(E_WARNING); + } unset($undefVar); $line = __LINE__ + 1; @$undefVar++; From 8adbadede7716ffbea90a5fdc4bcb3444258ab9c Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 11:54:22 +0200 Subject: [PATCH 44/81] [Config] Removed implicit cast of ReflectionProperty to string. --- .../Component/Config/Resource/ReflectionClassResource.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Config/Resource/ReflectionClassResource.php b/src/Symfony/Component/Config/Resource/ReflectionClassResource.php index 4c8f89cd3f20..cfab1f6c10a6 100644 --- a/src/Symfony/Component/Config/Resource/ReflectionClassResource.php +++ b/src/Symfony/Component/Config/Resource/ReflectionClassResource.php @@ -139,7 +139,11 @@ private function generateSignature(\ReflectionClass $class) $defaults = $class->getDefaultProperties(); foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED) as $p) { - yield $p->getDocComment().$p; + yield $p->getDocComment(); + yield $p->isDefault() ? '' : ''; + yield $p->isPublic() ? 'public' : 'protected'; + yield $p->isStatic() ? 'static' : ''; + yield '$'.$p->name; yield print_r(isset($defaults[$p->name]) && !\is_object($defaults[$p->name]) ? $defaults[$p->name] : null, true); } } From 593897c9e1fae362d4cea8e940e52d7ba034682b Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 13:12:29 +0200 Subject: [PATCH 45/81] [Debug] php 8 does not pass $context to error handlers. --- .../Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php b/src/Symfony/Component/Debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php index d449c40cc76d..bb2fba51f032 100644 --- a/src/Symfony/Component/Debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +++ b/src/Symfony/Component/Debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php @@ -15,8 +15,8 @@ public static function register() return $handler; } - public function handleError($type, $message, $file, $line, $context) + public function handleError() { - return \call_user_func(self::$previous, $type, $message, $file, $line, $context); + return \call_user_func_array(self::$previous, \func_get_args()); } } From 1bbfdcbb8dff99ad52cfa26300dca56d09d87a3c Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 15:23:31 +0200 Subject: [PATCH 46/81] [HttpKernel] Prevent calling method_exists() with non-string values. --- .../Component/HttpKernel/Controller/ControllerResolver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php index e3a7211c1be2..e01c72545488 100644 --- a/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php +++ b/src/Symfony/Component/HttpKernel/Controller/ControllerResolver.php @@ -77,7 +77,7 @@ public function getController(Request $request) throw new \InvalidArgumentException(sprintf('Controller "%s" for URI "%s" is not callable.', \get_class($controller), $request->getPathInfo())); } - if (false === strpos($controller, ':')) { + if (\is_string($controller) && false === strpos($controller, ':')) { if (method_exists($controller, '__invoke')) { return $this->instantiateController($controller); } elseif (\function_exists($controller)) { From d4045897d657afa39b8f57492ccac897786fb146 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 15:42:59 +0200 Subject: [PATCH 47/81] [Intl] Fix call to ReflectionProperty::getValue() for static properties. --- .../Tests/NumberFormatter/AbstractNumberFormatterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php b/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php index f64131a61b8c..ac317d21bf5f 100644 --- a/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php @@ -602,7 +602,7 @@ public function testGetSymbol() $r = new \ReflectionProperty('Symfony\Component\Intl\NumberFormatter\NumberFormatter', 'enSymbols'); $r->setAccessible(true); - $expected = $r->getValue('Symfony\Component\Intl\NumberFormatter\NumberFormatter'); + $expected = $r->getValue(); for ($i = 0; $i <= 17; ++$i) { $this->assertSame($expected[1][$i], $decimalFormatter->getSymbol($i)); @@ -619,7 +619,7 @@ public function testGetTextAttribute() $r = new \ReflectionProperty('Symfony\Component\Intl\NumberFormatter\NumberFormatter', 'enTextAttributes'); $r->setAccessible(true); - $expected = $r->getValue('Symfony\Component\Intl\NumberFormatter\NumberFormatter'); + $expected = $r->getValue(); for ($i = 0; $i <= 5; ++$i) { $this->assertSame($expected[1][$i], $decimalFormatter->getTextAttribute($i)); From 7100c3ce1b8bfd2cffbbacfc376961da32c5a801 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 16:26:18 +0200 Subject: [PATCH 48/81] [PropertyAccess] Parse php 8 TypeErrors correctly. --- .../PropertyAccess/PropertyAccessor.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php index 6f715d620418..3bb5d6dcf799 100644 --- a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php +++ b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php @@ -255,12 +255,15 @@ public static function handleError($type, $message, $file, $line, $context = []) private static function throwInvalidArgumentException($message, $trace, $i, $previous = null) { - // the type mismatch is not caused by invalid arguments (but e.g. by an incompatible return type hint of the writer method) - if (0 !== strpos($message, 'Argument ')) { + if (!isset($trace[$i]['file']) || __FILE__ !== $trace[$i]['file']) { return; } - if (isset($trace[$i]['file']) && __FILE__ === $trace[$i]['file']) { + if (\PHP_VERSION_ID < 80000) { + if (0 !== strpos($message, 'Argument ')) { + return; + } + $pos = strpos($message, $delim = 'must be of the type ') ?: (strpos($message, $delim = 'must be an instance of ') ?: strpos($message, $delim = 'must implement interface ')); $pos += \strlen($delim); $j = strpos($message, ',', $pos); @@ -269,6 +272,12 @@ private static function throwInvalidArgumentException($message, $trace, $i, $pre throw new InvalidArgumentException(sprintf('Expected argument of type "%s", "%s" given.', $message, 'NULL' === $type ? 'null' : $type), 0, $previous); } + + if (preg_match('/^\S+::\S+\(\): Argument #\d+ \(\$\S+\) must be of type (\S+), (\S+) given/', $message, $matches)) { + list(, $expectedType, $actualType) = $matches; + + throw new InvalidArgumentException(sprintf('Expected argument of type "%s", "%s" given.', $expectedType, 'NULL' === $actualType ? 'null' : $actualType), 0, $previous); + } } /** @@ -471,7 +480,7 @@ private function readProperty($zval, $property) $result[self::VALUE] = $object->{$access[self::ACCESS_NAME]}(); } catch (\TypeError $e) { // handle uninitialized properties in PHP >= 7 - if (preg_match((sprintf('/^Return value of %s::%s\(\) must be of the type (\w+), null returned$/', preg_quote(\get_class($object)), $access[self::ACCESS_NAME])), $e->getMessage(), $matches)) { + if (preg_match((sprintf('/^Return value of %s::%s\(\) must be of (?:the )?type (\w+), null returned$/', preg_quote(\get_class($object)), $access[self::ACCESS_NAME])), $e->getMessage(), $matches)) { throw new AccessException(sprintf('The method "%s::%s()" returned "null", but expected type "%3$s". Did you forget to initialize a property or to make the return type nullable using "?%3$s"?', \get_class($object), $access[self::ACCESS_NAME], $matches[1]), 0, $e); } From 1da347e5ba96f3ebd5950aa0ac5540d51a1d5722 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 14:25:04 +0200 Subject: [PATCH 49/81] [VarDumper] ReflectionFunction::isDisabled() is deprecated. --- src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php b/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php index 1543bbfdfa00..067da6bbd3d9 100644 --- a/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php @@ -333,6 +333,10 @@ private static function addExtra(&$a, \Reflector $c) private static function addMap(&$a, \Reflector $c, $map, $prefix = Caster::PREFIX_VIRTUAL) { foreach ($map as $k => $m) { + if (\PHP_VERSION_ID >= 80000 && 'isDisabled' === $k) { + continue; + } + if (method_exists($c, $m) && false !== ($m = $c->$m()) && null !== $m) { $a[$prefix.$k] = $m instanceof \Reflector ? $m->name : $m; } From 8f3f67f82aa0f23e8c0c709fa8f446b5dd75e9b4 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 18:14:17 +0200 Subject: [PATCH 50/81] [Validator] Catch expected ValueError. --- .../Validator/Constraints/LengthValidator.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Validator/Constraints/LengthValidator.php b/src/Symfony/Component/Validator/Constraints/LengthValidator.php index 01955ed03571..0c11dfca8466 100644 --- a/src/Symfony/Component/Validator/Constraints/LengthValidator.php +++ b/src/Symfony/Component/Validator/Constraints/LengthValidator.php @@ -39,8 +39,14 @@ public function validate($value, Constraint $constraint) $stringValue = (string) $value; - if (!$invalidCharset = !@mb_check_encoding($stringValue, $constraint->charset)) { - $length = mb_strlen($stringValue, $constraint->charset); + try { + $invalidCharset = !@mb_check_encoding($stringValue, $constraint->charset); + } catch (\ValueError $e) { + if (!str_starts_with($e->getMessage(), 'mb_check_encoding(): Argument #2 ($encoding) must be a valid encoding')) { + throw $e; + } + + $invalidCharset = true; } if ($invalidCharset) { @@ -54,6 +60,8 @@ public function validate($value, Constraint $constraint) return; } + $length = mb_strlen($stringValue, $constraint->charset); + if (null !== $constraint->max && $length > $constraint->max) { $this->context->buildViolation($constraint->min == $constraint->max ? $constraint->exactMessage : $constraint->maxMessage) ->setParameter('{{ value }}', $this->formatValue($stringValue)) From b1db13728b6ef102d77c2355a5b0b7a0586340dd Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 18:49:08 +0200 Subject: [PATCH 51/81] [DomCrawler] Catch expected ValueError. --- src/Symfony/Component/DomCrawler/Crawler.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php index 1cc72cc132d4..1f8f99332416 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -193,10 +193,11 @@ public function addHtmlContent($content, $charset = 'UTF-8') // Convert charset to HTML-entities to work around bugs in DOMDocument::loadHTML() $content = mb_convert_encoding($content, 'HTML-ENTITIES', $charset); } catch (\Exception $e) { + } catch (\ValueError $e) { + } finally { + restore_error_handler(); } - restore_error_handler(); - if ('' !== trim($content)) { @$dom->loadHTML($content); } From 1090738264e0ebc816ede60f42365c8694b8b165 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 09:54:48 +0200 Subject: [PATCH 52/81] Skip Doctrine DBAL on php 8 until we have a compatible version. --- .../Bridge/Doctrine/Tests/Form/Type/EntityTypeTest.php | 7 +++++++ .../Tests/Security/User/EntityUserProviderTest.php | 7 +++++++ .../Validator/Constraints/UniqueEntityValidatorTest.php | 7 +++++++ .../SecurityBundle/Tests/Functional/SetAclCommandTest.php | 7 +++++++ .../Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php | 5 +++++ .../Component/Cache/Tests/Simple/PdoDbalCacheTest.php | 5 +++++ src/Symfony/Component/Cache/composer.json | 2 +- 7 files changed, 39 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Doctrine/Tests/Form/Type/EntityTypeTest.php b/src/Symfony/Bridge/Doctrine/Tests/Form/Type/EntityTypeTest.php index 7bb57d707ddd..4d5691e22333 100644 --- a/src/Symfony/Bridge/Doctrine/Tests/Form/Type/EntityTypeTest.php +++ b/src/Symfony/Bridge/Doctrine/Tests/Form/Type/EntityTypeTest.php @@ -61,6 +61,13 @@ class EntityTypeTest extends BaseTypeTest protected static $supportedFeatureSetVersion = 304; + public static function setUpBeforeClass() + { + if (\PHP_VERSION_ID >= 80000) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + protected function setUp() { $this->em = DoctrineTestHelper::createTestEntityManager(); diff --git a/src/Symfony/Bridge/Doctrine/Tests/Security/User/EntityUserProviderTest.php b/src/Symfony/Bridge/Doctrine/Tests/Security/User/EntityUserProviderTest.php index 8916f8fb929e..e43940d85c32 100644 --- a/src/Symfony/Bridge/Doctrine/Tests/Security/User/EntityUserProviderTest.php +++ b/src/Symfony/Bridge/Doctrine/Tests/Security/User/EntityUserProviderTest.php @@ -23,6 +23,13 @@ class EntityUserProviderTest extends TestCase { + public static function setUpBeforeClass() + { + if (\PHP_VERSION_ID >= 80000) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + public function testRefreshUserGetsUserByPrimaryKey() { $em = DoctrineTestHelper::createTestEntityManager(); diff --git a/src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php b/src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php index 77d15999905b..ba772e58fd04 100644 --- a/src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php +++ b/src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php @@ -63,6 +63,13 @@ class UniqueEntityValidatorTest extends ConstraintValidatorTestCase protected $repositoryFactory; + public static function setUpBeforeClass() + { + if (\PHP_VERSION_ID >= 80000) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + protected function setUp() { $this->repositoryFactory = new TestRepositoryFactory(); diff --git a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/SetAclCommandTest.php b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/SetAclCommandTest.php index 8eb70c09c1ed..892a51f9bd27 100644 --- a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/SetAclCommandTest.php +++ b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/SetAclCommandTest.php @@ -40,6 +40,13 @@ class SetAclCommandTest extends AbstractWebTestCase const OBJECT_CLASS = 'Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\AclBundle\Entity\Car'; const SECURITY_CLASS = 'Symfony\Component\Security\Core\User\User'; + public static function setUpBeforeClass() + { + if (\PHP_VERSION_ID >= 80000) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + public function testSetAclUser() { $objectId = 1; diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php index aa53958cfab3..351972da4869 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Tests\Adapter; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -30,6 +31,10 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoAdapter(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); diff --git a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php index 4da2b603cf88..79fd97a752a2 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Tests\Simple; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use Symfony\Component\Cache\Simple\PdoCache; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -30,6 +31,10 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoCache(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); diff --git a/src/Symfony/Component/Cache/composer.json b/src/Symfony/Component/Cache/composer.json index e13cd9675160..3d82799e0032 100644 --- a/src/Symfony/Component/Cache/composer.json +++ b/src/Symfony/Component/Cache/composer.json @@ -29,7 +29,7 @@ "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "~1.6", - "doctrine/dbal": "~2.4", + "doctrine/dbal": "~2.4|~3.0", "predis/predis": "~1.0" }, "conflict": { From d12b3b6a72a912200f8cb9745a484379462b8c91 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 11:12:58 +0200 Subject: [PATCH 53/81] [Cache] allow DBAL v3 --- .../Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php | 5 ----- .../Component/Cache/Tests/Simple/PdoDbalCacheTest.php | 5 ----- src/Symfony/Component/Cache/composer.json | 6 +++--- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php index 351972da4869..aa53958cfab3 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php @@ -12,7 +12,6 @@ namespace Symfony\Component\Cache\Tests\Adapter; use Doctrine\DBAL\DriverManager; -use Doctrine\DBAL\Version; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -31,10 +30,6 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } - if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { - self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); - } - self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoAdapter(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); diff --git a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php index 79fd97a752a2..4da2b603cf88 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php @@ -12,7 +12,6 @@ namespace Symfony\Component\Cache\Tests\Simple; use Doctrine\DBAL\DriverManager; -use Doctrine\DBAL\Version; use Symfony\Component\Cache\Simple\PdoCache; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -31,10 +30,6 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } - if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { - self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); - } - self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoCache(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); diff --git a/src/Symfony/Component/Cache/composer.json b/src/Symfony/Component/Cache/composer.json index 3d82799e0032..652e9a4a539c 100644 --- a/src/Symfony/Component/Cache/composer.json +++ b/src/Symfony/Component/Cache/composer.json @@ -28,9 +28,9 @@ }, "require-dev": { "cache/integration-tests": "dev-master", - "doctrine/cache": "~1.6", - "doctrine/dbal": "~2.4|~3.0", - "predis/predis": "~1.0" + "doctrine/cache": "^1.6", + "doctrine/dbal": "^2.4|^3.0", + "predis/predis": "^1.0" }, "conflict": { "symfony/var-dumper": "<3.3" From 49fd0efb12434655c60f317d6757b65dfddbbe88 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 11:54:14 +0200 Subject: [PATCH 54/81] [Cache] Accessing undefined constants raises an Error in php8 --- .../Cache/Tests/Adapter/MemcachedAdapterTest.php | 10 ++++++++-- .../Cache/Tests/Simple/MemcachedCacheTest.php | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php index 3a996079ad96..8fe807f88001 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php @@ -66,8 +66,14 @@ public function testOptions() */ public function testBadOptions($name, $value) { - $this->expectException('ErrorException'); - $this->expectExceptionMessage('constant(): Couldn\'t find constant Memcached::'); + if (\PHP_VERSION_ID < 80000) { + $this->expectException('ErrorException'); + $this->expectExceptionMessage('constant(): Couldn\'t find constant Memcached::'); + } else { + $this->expectException('Error'); + $this->expectExceptionMessage('Undefined class constant \'Memcached::'); + } + MemcachedAdapter::createConnection([], [$name => $value]); } diff --git a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php index 21332232bcfa..92fc7d2a8796 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php @@ -76,8 +76,14 @@ public function testOptions() */ public function testBadOptions($name, $value) { - $this->expectException('ErrorException'); - $this->expectExceptionMessage('constant(): Couldn\'t find constant Memcached::'); + if (\PHP_VERSION_ID < 80000) { + $this->expectException('ErrorException'); + $this->expectExceptionMessage('constant(): Couldn\'t find constant Memcached::'); + } else { + $this->expectException('Error'); + $this->expectExceptionMessage('Undefined class constant \'Memcached::'); + } + MemcachedCache::createConnection([], [$name => $value]); } From 08084f370dd78c7f2673a906b1e2eab25008624f Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 22:42:37 +0200 Subject: [PATCH 55/81] Add php 8 to travis. --- .travis.yml | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4251d2fa0247..c066f308a1a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,11 @@ matrix: env: deps=high - php: 7.4 env: deps=low + - php: nightly + services: [memcached] fast_finish: true + allow_failures: + - php: nightly cache: directories: @@ -54,9 +58,11 @@ before_install: - | # Start Redis cluster - docker pull grokzen/redis-cluster:4.0.8 - docker run -d -p 7000:7000 -p 7001:7001 -p 7002:7002 -p 7003:7003 -p 7004:7004 -p 7005:7005 --name redis-cluster grokzen/redis-cluster:4.0.8 - export REDIS_CLUSTER_HOSTS='localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005' + if [[ $TRAVIS_PHP_VERSION != nightly ]]; then + docker pull grokzen/redis-cluster:4.0.8 + docker run -d -p 7000:7000 -p 7001:7001 -p 7002:7002 -p 7003:7003 -p 7004:7004 -p 7005:7005 --name redis-cluster grokzen/redis-cluster:4.0.8 + export REDIS_CLUSTER_HOSTS='localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005' + fi - | # General configuration @@ -157,11 +163,14 @@ before_install: echo opcache.enable_cli = 1 >> $INI echo hhvm.jit = 0 >> $INI echo apc.enable_cli = 1 >> $INI - echo extension = redis.so >> $INI - echo extension = memcached.so >> $INI if [[ $PHP = 5.* ]]; then + echo extension = redis.so >> $INI + echo extension = memcached.so >> $INI echo extension = memcache.so >> $INI echo extension = mongo.so >> $INI + elif [[ $PHP = 7.* ]]; then + echo extension = redis.so >> $INI + echo extension = memcached.so >> $INI fi done @@ -183,6 +192,8 @@ before_install: elif [[ $PHP = 7.* ]]; then tfold ext.apcu tpecl apcu-5.1.17 apcu.so $INI tfold ext.mongodb tpecl mongodb-1.6.0 mongodb.so $INI + elif [[ $PHP = nightly ]]; then + tfold ext.memcached tpecl memcached-3.1.5 memcached.so $INI fi done @@ -249,6 +260,13 @@ install: export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort) fi + - | + # Set composer's platform to php 7.4 if we're on php 8. + echo $PHP + if [[ $PHP = nightly ]]; then + composer config platform.php 7.4.6 + fi + - | # Install symfony/flex if [[ $deps = low ]]; then From 9bc1ab62cf6338735d15067c7f08b1ca54aa6570 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 13:22:31 +0200 Subject: [PATCH 56/81] [VarDumper] fix PHP 8 support --- .../Component/VarDumper/Caster/Caster.php | 20 ++++++++++++++++--- .../Component/VarDumper/Caster/SplCaster.php | 16 ++++----------- .../VarDumper/Cloner/AbstractCloner.php | 7 +++---- .../VarDumper/Tests/Caster/CasterTest.php | 2 +- .../VarDumper/Tests/Caster/PdoCasterTest.php | 3 ++- .../Tests/Caster/ReflectionCasterTest.php | 4 ++-- .../VarDumper/Tests/Caster/SplCasterTest.php | 18 +++++++++++------ .../VarDumper/Tests/Dumper/CliDumperTest.php | 1 + 8 files changed, 42 insertions(+), 29 deletions(-) diff --git a/src/Symfony/Component/VarDumper/Caster/Caster.php b/src/Symfony/Component/VarDumper/Caster/Caster.php index c279249a4d66..a78410f2f792 100644 --- a/src/Symfony/Component/VarDumper/Caster/Caster.php +++ b/src/Symfony/Component/VarDumper/Caster/Caster.php @@ -46,7 +46,7 @@ class Caster * * @return array The array-cast of the object, with prefixed dynamic properties */ - public static function castObject($obj, $class, $hasDebugInfo = false) + public static function castObject($obj, $class, $hasDebugInfo = false, $debugClass = null) { if ($class instanceof \ReflectionClass) { @trigger_error(sprintf('Passing a ReflectionClass to "%s()" is deprecated since Symfony 3.3 and will be unsupported in 4.0. Pass the class name as string instead.', __METHOD__), E_USER_DEPRECATED); @@ -71,6 +71,17 @@ public static function castObject($obj, $class, $hasDebugInfo = false) if ($a) { static $publicProperties = []; + if (null === $debugClass) { + if (\PHP_VERSION_ID >= 80000) { + $debugClass = get_debug_type($obj); + } else { + $debugClass = $class; + + if (isset($debugClass[15]) && "\0" === $debugClass[15]) { + $debugClass = (get_parent_class($debugClass) ?: key(class_implements($debugClass)) ?: 'class').'@anonymous'; + } + } + } $i = 0; $prefixedKeys = []; @@ -84,8 +95,8 @@ public static function castObject($obj, $class, $hasDebugInfo = false) if (!isset($publicProperties[$class][$k])) { $prefixedKeys[$i] = self::PREFIX_DYNAMIC.$k; } - } elseif (isset($k[16]) && "\0" === $k[16] && 0 === strpos($k, "\0class@anonymous\0")) { - $prefixedKeys[$i] = "\0".get_parent_class($class).'@anonymous'.strrchr($k, "\0"); + } elseif ($debugClass !== $class && 1 === strpos($k, $class)) { + $prefixedKeys[$i] = "\0".$debugClass.strrchr($k, "\0"); } ++$i; } @@ -101,6 +112,9 @@ public static function castObject($obj, $class, $hasDebugInfo = false) if ($hasDebugInfo && \is_array($debugInfo)) { foreach ($debugInfo as $k => $v) { if (!isset($k[0]) || "\0" !== $k[0]) { + if (\array_key_exists(self::PREFIX_DYNAMIC.$k, $a)) { + continue; + } $k = self::PREFIX_VIRTUAL.$k; } diff --git a/src/Symfony/Component/VarDumper/Caster/SplCaster.php b/src/Symfony/Component/VarDumper/Caster/SplCaster.php index b557b689d352..53df3de2392e 100644 --- a/src/Symfony/Component/VarDumper/Caster/SplCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/SplCaster.php @@ -160,15 +160,6 @@ public static function castFileObject(\SplFileObject $c, array $a, Stub $stub, $ return $a; } - public static function castFixedArray(\SplFixedArray $c, array $a, Stub $stub, $isNested) - { - $a += [ - Caster::PREFIX_VIRTUAL.'storage' => $c->toArray(), - ]; - - return $a; - } - public static function castObjectStorage(\SplObjectStorage $c, array $a, Stub $stub, $isNested) { $storage = []; @@ -200,14 +191,16 @@ public static function castOuterIterator(\OuterIterator $c, array $a, Stub $stub private static function castSplArray($c, array $a, Stub $stub, $isNested) { $prefix = Caster::PREFIX_VIRTUAL; - $class = $stub->class; $flags = $c->getFlags(); if (!($flags & \ArrayObject::STD_PROP_LIST)) { $c->setFlags(\ArrayObject::STD_PROP_LIST); - $a = Caster::castObject($c, $class); + $a = Caster::castObject($c, \get_class($c), method_exists($c, '__debugInfo'), $stub->class); $c->setFlags($flags); } + if (\PHP_VERSION_ID < 70400) { + $a[$prefix.'storage'] = $c->getArrayCopy(); + } $a += [ $prefix.'flag::STD_PROP_LIST' => (bool) ($flags & \ArrayObject::STD_PROP_LIST), $prefix.'flag::ARRAY_AS_PROPS' => (bool) ($flags & \ArrayObject::ARRAY_AS_PROPS), @@ -215,7 +208,6 @@ private static function castSplArray($c, array $a, Stub $stub, $isNested) if ($c instanceof \ArrayObject) { $a[$prefix.'iteratorClass'] = new ClassStub($c->getIteratorClass()); } - $a[$prefix.'storage'] = $c->getArrayCopy(); return $a; } diff --git a/src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php b/src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php index aed1a67a1ea1..f424cc4866d2 100644 --- a/src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php +++ b/src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php @@ -102,7 +102,6 @@ abstract class AbstractCloner implements ClonerInterface 'SplDoublyLinkedList' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castDoublyLinkedList'], 'SplFileInfo' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castFileInfo'], 'SplFileObject' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castFileObject'], - 'SplFixedArray' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castFixedArray'], 'SplHeap' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castHeap'], 'SplObjectStorage' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castObjectStorage'], 'SplPriorityQueue' => ['Symfony\Component\VarDumper\Caster\SplCaster', 'castHeap'], @@ -266,8 +265,8 @@ protected function castObject(Stub $stub, $isNested) $obj = $stub->value; $class = $stub->class; - if (isset($class[15]) && "\0" === $class[15] && 0 === strpos($class, "class@anonymous\x00")) { - $stub->class = get_parent_class($class).'@anonymous'; + if ((\PHP_VERSION_ID >= 80000 || (isset($class[15]) && "\0" === $class[15])) && false !== strpos($class, "@anonymous\0")) { + $stub->class = \PHP_VERSION_ID < 80000 ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' : get_debug_type($obj); } if (isset($this->classInfo[$class])) { list($i, $parents, $hasDebugInfo) = $this->classInfo[$class]; @@ -289,7 +288,7 @@ protected function castObject(Stub $stub, $isNested) $this->classInfo[$class] = [$i, $parents, $hasDebugInfo]; } - $a = Caster::castObject($obj, $class, $hasDebugInfo); + $a = Caster::castObject($obj, $class, $hasDebugInfo, $stub->class); try { while ($i--) { diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/CasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/CasterTest.php index 728697b413c4..73800e5f9dc4 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/CasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/CasterTest.php @@ -171,7 +171,7 @@ public function testAnonymousClass() $this->assertDumpMatchesFormat( <<<'EOTXT' -@anonymous { +class@anonymous { -foo: "foo" } EOTXT diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/PdoCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/PdoCasterTest.php index 19bbe0f80c43..fca242cfc6e9 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/PdoCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/PdoCasterTest.php @@ -30,6 +30,7 @@ public function testCastPdo() { $pdo = new \PDO('sqlite::memory:'); $pdo->setAttribute(\PDO::ATTR_STATEMENT_CLASS, ['PDOStatement', [$pdo]]); + $pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); $cast = PdoCaster::castPdo($pdo, [], new Stub(), false); @@ -45,7 +46,7 @@ public function testCastPdo() "\x00~\x00inTransaction" => false "\x00~\x00attributes" => array:9 [ "CASE" => NATURAL - "ERRMODE" => SILENT + "ERRMODE" => EXCEPTION "PERSISTENT" => false "DRIVER_NAME" => "sqlite" "ORACLE_NULLS" => NATURAL diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php index a0c6dc235520..17ad5434beec 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php @@ -49,8 +49,8 @@ public function testReflectionCaster() %A] methods: array:%d [ %A - "export" => ReflectionMethod { - +name: "export" + "__construct" => ReflectionMethod { + +name: "__construct" +class: "ReflectionClass" %A parameters: { $%s: ReflectionParameter { diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php index 67033df09160..a8c37faf3f34 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php @@ -175,14 +175,17 @@ public function testCastArrayObject() $expected = << 123 + ] flag::STD_PROP_LIST: false flag::ARRAY_AS_PROPS: false iteratorClass: "ArrayIterator" - storage: array:1 [ - 0 => 123 - ] } EOTXT; + if (\PHP_VERSION_ID < 70400) { + $expected = str_replace('-storage:', 'storage:', $expected); + } $this->assertDumpEquals($expected, $var); } @@ -196,13 +199,16 @@ public function testArrayIterator() $expected = << 234 ] + flag::STD_PROP_LIST: false + flag::ARRAY_AS_PROPS: false } EOTXT; + if (\PHP_VERSION_ID < 70400) { + $expected = str_replace('-storage:', 'storage:', $expected); + } $this->assertDumpEquals($expected, $var); } diff --git a/src/Symfony/Component/VarDumper/Tests/Dumper/CliDumperTest.php b/src/Symfony/Component/VarDumper/Tests/Dumper/CliDumperTest.php index 9520b4fe102e..7656e0925926 100644 --- a/src/Symfony/Component/VarDumper/Tests/Dumper/CliDumperTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Dumper/CliDumperTest.php @@ -203,6 +203,7 @@ public function provideDumpWithCommaFlagTests() /** * @requires extension xml + * @requires PHP < 8.0 */ public function testXmlResource() { From 232725243bd8be0828bb4a522d954f9a884cd632 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 14:14:15 +0200 Subject: [PATCH 57/81] Run PHP 8 as 7.4.99 --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c066f308a1a6..61445ec1921f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -262,9 +262,8 @@ install: - | # Set composer's platform to php 7.4 if we're on php 8. - echo $PHP if [[ $PHP = nightly ]]; then - composer config platform.php 7.4.6 + composer config platform.php 7.4.99 fi - | From ca695e55e80048cf7b676e325b08b8f0ad5d3d78 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 14:46:57 +0200 Subject: [PATCH 58/81] [Serializer] minor cleanup --- .../Component/Serializer/Normalizer/AbstractNormalizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php index d89c4660bf94..71b1e38d37bd 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php @@ -388,7 +388,7 @@ protected function denormalizeParameter(\ReflectionClass $class, \ReflectionPara try { if (\PHP_VERSION_ID < 70100 && null !== $parameterClass = $parameter->getClass()) { $parameterClass = $parameterClass->name; - } elseif (\PHP_VERSION_ID >= 70100 && $parameter->hasType() && ($parameterType = $parameter->getType()) && !$parameterType->isBuiltin()) { + } elseif (\PHP_VERSION_ID >= 70100 && ($parameterType = $parameter->getType()) && !$parameterType->isBuiltin()) { $parameterClass = $parameterType->getName(); new \ReflectionClass($parameterClass); // throws a \ReflectionException if the class doesn't exist } else { From 896b69c9073f9d3b78ce6e95fd81288756d1b1e3 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 18:25:05 +0200 Subject: [PATCH 59/81] Revert "[Cache] allow DBAL v3" This reverts commit d12b3b6a72a912200f8cb9745a484379462b8c91. --- .../Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php | 5 +++++ .../Component/Cache/Tests/Simple/PdoDbalCacheTest.php | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php index aa53958cfab3..351972da4869 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Tests\Adapter; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -30,6 +31,10 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoAdapter(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); diff --git a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php index 4da2b603cf88..79fd97a752a2 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Tests\Simple; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use Symfony\Component\Cache\Simple\PdoCache; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -30,6 +31,10 @@ public static function setUpBeforeClass() self::markTestSkipped('Extension pdo_sqlite required.'); } + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoCache(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); From 571d46cf01d4ab1c6e285242c19bfb1aaf89278d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 18:55:06 +0200 Subject: [PATCH 60/81] Make PHP 8 green on Travis --- .travis.yml | 3 +-- .../Tests/Compiler/AutowirePassTest.php | 4 ++++ ...gumentsOptionalScalarNotReallyOptional.php | 14 ++++++++++++++ .../Fixtures/includes/autowiring_classes.php | 6 ------ .../Tests/Controller/ArgumentResolverTest.php | 8 ++++---- .../Controller/ControllerResolverTest.php | 8 +++++--- .../ArgumentMetadataFactoryTest.php | 6 +++--- .../Controller/LegacyNullableController.php | 19 +++++++++++++++++++ .../Controller/NullableController.php | 2 +- .../Component/Process/Pipes/UnixPipes.php | 2 +- .../Component/Process/Tests/ProcessTest.php | 9 ++++++++- .../Normalizer/AbstractObjectNormalizer.php | 2 +- .../Normalizer/GetSetMethodNormalizerTest.php | 2 +- .../Tests/Normalizer/ObjectNormalizerTest.php | 4 ++-- 14 files changed, 64 insertions(+), 25 deletions(-) create mode 100644 src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/MultipleArgumentsOptionalScalarNotReallyOptional.php create mode 100644 src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/LegacyNullableController.php diff --git a/.travis.yml b/.travis.yml index 61445ec1921f..50c692fa0191 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,8 +32,6 @@ matrix: - php: nightly services: [memcached] fast_finish: true - allow_failures: - - php: nightly cache: directories: @@ -264,6 +262,7 @@ install: # Set composer's platform to php 7.4 if we're on php 8. if [[ $PHP = nightly ]]; then composer config platform.php 7.4.99 + export SYMFONY_DEPRECATIONS_HELPER=weak fi - | diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php index a32a6c973502..e11154889c29 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php @@ -23,6 +23,7 @@ use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Tests\Fixtures\CaseSensitiveClass; use Symfony\Component\DependencyInjection\Tests\Fixtures\includes\FooVariadic; +use Symfony\Component\DependencyInjection\Tests\Fixtures\includes\MultipleArgumentsOptionalScalarNotReallyOptional; use Symfony\Component\DependencyInjection\TypedReference; require_once __DIR__.'/../Fixtures/includes/autowiring_classes.php'; @@ -473,6 +474,9 @@ public function testNoTypeArgsCannotBeAutowired() (new AutowirePass())->process($container); } + /** + * @requires PHP < 8 + */ public function testOptionalScalarNotReallyOptionalUsesDefaultValue() { $container = new ContainerBuilder(); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/MultipleArgumentsOptionalScalarNotReallyOptional.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/MultipleArgumentsOptionalScalarNotReallyOptional.php new file mode 100644 index 000000000000..dcaaacc1f4d4 --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/MultipleArgumentsOptionalScalarNotReallyOptional.php @@ -0,0 +1,14 @@ +attributes->set('foo', 'foo'); $request->attributes->set('bar', new \stdClass()); - $request->attributes->set('mandatory', 'mandatory'); + $request->attributes->set('last', 'last'); $controller = [new NullableController(), 'action']; - $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], self::$resolver->getArguments($request, $controller)); + $this->assertEquals(['foo', new \stdClass(), 'value', 'last'], self::$resolver->getArguments($request, $controller)); } /** @@ -228,10 +228,10 @@ public function testGetNullableArguments() public function testGetNullableArgumentsWithDefaults() { $request = Request::create('/'); - $request->attributes->set('mandatory', 'mandatory'); + $request->attributes->set('last', 'last'); $controller = [new NullableController(), 'action']; - $this->assertEquals([null, null, 'value', 'mandatory'], self::$resolver->getArguments($request, $controller)); + $this->assertEquals([null, null, 'value', 'last'], self::$resolver->getArguments($request, $controller)); } public function testGetSessionArguments() diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php index d2684791fecb..b0a6b2005894 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php @@ -15,7 +15,7 @@ use Psr\Log\LoggerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Controller\ControllerResolver; -use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\LegacyNullableController; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\VariadicController; class ControllerResolverTest extends TestCase @@ -243,6 +243,7 @@ public function testIfExceptionIsThrownWhenMissingAnArgument() /** * @requires PHP 7.1 + * @requires PHP < 8 * @group legacy */ public function testGetNullableArguments() @@ -253,12 +254,13 @@ public function testGetNullableArguments() $request->attributes->set('foo', 'foo'); $request->attributes->set('bar', new \stdClass()); $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; + $controller = [new LegacyNullableController(), 'action']; $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], $resolver->getArguments($request, $controller)); } /** * @requires PHP 7.1 + * @requires PHP < 8 * @group legacy */ public function testGetNullableArgumentsWithDefaults() @@ -267,7 +269,7 @@ public function testGetNullableArgumentsWithDefaults() $request = Request::create('/'); $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; + $controller = [new LegacyNullableController(), 'action']; $this->assertEquals([null, null, 'value', 'mandatory'], $resolver->getArguments($request, $controller)); } diff --git a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php index e5c62a87caf7..00715462a209 100644 --- a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php @@ -80,7 +80,7 @@ public function testSignature5() $this->assertEquals([ new ArgumentMetadata('foo', 'array', false, true, null, true), - new ArgumentMetadata('bar', null, false, false, null), + new ArgumentMetadata('bar', null, false, true, null, true), ], $arguments); } @@ -122,7 +122,7 @@ public function testNullableTypesSignature() new ArgumentMetadata('foo', 'string', false, false, null, true), new ArgumentMetadata('bar', \stdClass::class, false, false, null, true), new ArgumentMetadata('baz', 'string', false, true, 'value', true), - new ArgumentMetadata('mandatory', null, false, false, null, true), + new ArgumentMetadata('last', 'string', false, true, '', false), ], $arguments); } @@ -142,7 +142,7 @@ private function signature4($foo = 'default', $bar = 500, $baz = []) { } - private function signature5(array $foo = null, $bar) + private function signature5(array $foo = null, $bar = null) { } } diff --git a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/LegacyNullableController.php b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/LegacyNullableController.php new file mode 100644 index 000000000000..23dde69d4815 --- /dev/null +++ b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/LegacyNullableController.php @@ -0,0 +1,19 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller; + +class LegacyNullableController +{ + public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', $mandatory) + { + } +} diff --git a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php index 9db4df7b4c17..aacae0e3e32d 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php +++ b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php @@ -13,7 +13,7 @@ class NullableController { - public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', $mandatory) + public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', string $last = '') { } } diff --git a/src/Symfony/Component/Process/Pipes/UnixPipes.php b/src/Symfony/Component/Process/Pipes/UnixPipes.php index 1ebf2138a56f..5784a315bd99 100644 --- a/src/Symfony/Component/Process/Pipes/UnixPipes.php +++ b/src/Symfony/Component/Process/Pipes/UnixPipes.php @@ -118,7 +118,7 @@ public function readAndWrite($blocking, $close = false) $read[$type = array_search($pipe, $this->pipes, true)] = ''; do { - $data = fread($pipe, self::CHUNK_SIZE); + $data = @fread($pipe, self::CHUNK_SIZE); $read[$type] .= $data; } while (isset($data[0]) && ($close || isset($data[self::CHUNK_SIZE - 1]))); diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index e5335282ca4e..2a5885235102 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -987,16 +987,23 @@ public function provideMethodsThatNeedATerminatedProcess() */ public function testWrongSignal($signal) { - $this->expectException('Symfony\Component\Process\Exception\RuntimeException'); if ('\\' === \DIRECTORY_SEPARATOR) { $this->markTestSkipped('POSIX signals do not work on Windows'); } + if (\PHP_VERSION_ID < 80000 || \is_int($signal)) { + $this->expectException(RuntimeException::class); + } else { + $this->expectException('TypeError'); + } + $process = $this->getProcessForCode('sleep(38);'); $process->start(); try { $process->signal($signal); $this->fail('A RuntimeException must have been thrown'); + } catch (\TypeError $e) { + $process->stop(0); } catch (RuntimeException $e) { $process->stop(0); } diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php index c1fc4ad82f93..78a297b3472b 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php @@ -108,7 +108,7 @@ public function normalize($object, $format = null, array $context = []) * * @return string[] */ - protected function getAttributes($object, $format = null, array $context) + protected function getAttributes($object, $format, array $context) { $class = \get_class($object); $key = $class.'-'.$context['cache_key']; diff --git a/src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php b/src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php index 43536e814414..e18bc6d1d36d 100644 --- a/src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php +++ b/src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php @@ -728,7 +728,7 @@ class GetConstructorArgsWithDefaultValueDummy protected $foo; protected $bar; - public function __construct($foo = [], $bar) + public function __construct($foo = [], $bar = null) { $this->foo = $foo; $this->bar = $bar; diff --git a/src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php b/src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php index 62082e0cd288..e27f1ac12a8c 100644 --- a/src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php +++ b/src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php @@ -925,7 +925,7 @@ class ObjectConstructorArgsWithDefaultValueDummy protected $foo; protected $bar; - public function __construct($foo = [], $bar) + public function __construct($foo = [], $bar = null) { $this->foo = $foo; $this->bar = $bar; @@ -1075,7 +1075,7 @@ class DummyWithConstructorObjectAndDefaultValue private $foo; private $inner; - public function __construct($foo = 'a', ObjectInner $inner) + public function __construct($foo = 'a', ObjectInner $inner = null) { $this->foo = $foo; $this->inner = $inner; From 5ebcd26f06eb0f522f09639a2d2320ba83f7eda4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 19:37:50 +0200 Subject: [PATCH 61/81] [HttpKernel] fix test --- .../Tests/Controller/ControllerResolverTest.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php index b0a6b2005894..d249468e883c 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php @@ -243,11 +243,14 @@ public function testIfExceptionIsThrownWhenMissingAnArgument() /** * @requires PHP 7.1 - * @requires PHP < 8 * @group legacy */ public function testGetNullableArguments() { + if (\PHP_VERSION_ID >= 80000) { + $this->markTestSkipped('PHP < 8 required.'); + } + $resolver = new ControllerResolver(); $request = Request::create('/'); @@ -260,11 +263,14 @@ public function testGetNullableArguments() /** * @requires PHP 7.1 - * @requires PHP < 8 * @group legacy */ public function testGetNullableArgumentsWithDefaults() { + if (\PHP_VERSION_ID >= 80000) { + $this->markTestSkipped('PHP < 8 required.'); + } + $resolver = new ControllerResolver(); $request = Request::create('/'); From e3e1558a0babd2e622d762fcc1a70d3a661ab7d9 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 23:26:28 +0200 Subject: [PATCH 62/81] Enable APCu for the php 8 build. --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.travis.yml b/.travis.yml index 50c692fa0191..ff65ee8a949e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -139,6 +139,23 @@ before_install: } export -f tpecl + install_apcu_dev () { + local ref=$1 + local INI=$2 + + wget https://github.com/krakjoe/apcu/archive/${ref}.zip + unzip ${ref}.zip + cd apcu-${ref} + phpize + ./configure + make + mv modules/apcu.so $(php -r "echo ini_get('extension_dir');") + echo 'extension = apcu.so' >> $INI + cd .. + rm -rf apcu-${ref} ${ref}.zip + } + export -f install_apcu_dev + - | # Install sigchild-enabled PHP to test the Process component on the lowest PHP matrix line if [[ ! $deps && $TRAVIS_PHP_VERSION = ${MIN_PHP%.*} && ! -d php-$MIN_PHP/sapi ]]; then @@ -192,6 +209,7 @@ before_install: tfold ext.mongodb tpecl mongodb-1.6.0 mongodb.so $INI elif [[ $PHP = nightly ]]; then tfold ext.memcached tpecl memcached-3.1.5 memcached.so $INI + tfold ext.apcu install_apcu_dev 9c36db45100d4d27ec33072f4be90f1f5a0108b7 $INI fi done From 83a34a84abac7949ecf3d605abb743074b6ca05d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 24 May 2020 10:55:27 +0200 Subject: [PATCH 63/81] [travis] display deprecations in nightly jobs --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ff65ee8a949e..fd9aa095c9c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -280,7 +280,7 @@ install: # Set composer's platform to php 7.4 if we're on php 8. if [[ $PHP = nightly ]]; then composer config platform.php 7.4.99 - export SYMFONY_DEPRECATIONS_HELPER=weak + export SYMFONY_DEPRECATIONS_HELPER=max[total]=999 fi - | From d4b598c7892df9e349a2a2a9d03e6736e94038b8 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 24 May 2020 14:21:57 +0200 Subject: [PATCH 64/81] Update pull request template for 5.1. --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 859515b3ca55..8da21ec1213f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ | Q | A | ------------- | --- -| Branch? | master for features / 3.4, 4.4 or 5.0 for bug fixes +| Branch? | master for features / 3.4, 4.4, 5.0 or 5.1 for bug fixes | Bug fix? | yes/no | New feature? | yes/no | Deprecations? | yes/no From 9badd716876db332f7aba51422f5d5ec4e1d2a47 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 24 May 2020 17:31:02 +0200 Subject: [PATCH 65/81] [FrameworkBundle] Removed detection of Serializer < 3.2 --- .../CacheWarmer/SerializerCacheWarmerTest.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/SerializerCacheWarmerTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/SerializerCacheWarmerTest.php index 1a244252f1f1..210996d1164b 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/SerializerCacheWarmerTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/SerializerCacheWarmerTest.php @@ -16,7 +16,6 @@ use Symfony\Component\Cache\Adapter\ArrayAdapter; use Symfony\Component\Cache\Adapter\NullAdapter; use Symfony\Component\Cache\Adapter\PhpArrayAdapter; -use Symfony\Component\Serializer\Mapping\Factory\CacheClassMetadataFactory; use Symfony\Component\Serializer\Mapping\Loader\XmlFileLoader; use Symfony\Component\Serializer\Mapping\Loader\YamlFileLoader; @@ -24,10 +23,6 @@ class SerializerCacheWarmerTest extends TestCase { public function testWarmUp() { - if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { - $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); - } - $loaders = [ new XmlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/person.xml'), new YamlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/author.yml'), @@ -58,10 +53,6 @@ public function testWarmUp() public function testWarmUpWithoutLoader() { - if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { - $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); - } - $file = sys_get_temp_dir().'/cache-serializer-without-loader.php'; @unlink($file); @@ -84,10 +75,6 @@ public function testWarmUpWithoutLoader() */ public function testClassAutoloadException() { - if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { - $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); - } - $this->assertFalse(class_exists($mappedClass = 'AClassThatDoesNotExist_FWB_CacheWarmer_SerializerCacheWarmerTest', false)); $warmer = new SerializerCacheWarmer([new YamlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/does_not_exist.yaml')], tempnam(sys_get_temp_dir(), __FUNCTION__), new ArrayAdapter()); @@ -112,10 +99,6 @@ public function testClassAutoloadExceptionWithUnrelatedException() $this->expectException(\DomainException::class); $this->expectExceptionMessage('This exception should not be caught by the warmer.'); - if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { - $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); - } - $this->assertFalse(class_exists($mappedClass = 'AClassThatDoesNotExist_FWB_CacheWarmer_SerializerCacheWarmerTest', false)); $warmer = new SerializerCacheWarmer([new YamlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/does_not_exist.yaml')], tempnam(sys_get_temp_dir(), __FUNCTION__), new ArrayAdapter()); From 50348f2eb70501ec706b6effb9afe073a60c1e6d Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Tue, 26 May 2020 16:53:18 +0200 Subject: [PATCH 66/81] Fixed handling of CSRF logout error --- .../Security/Http/Firewall/ExceptionListener.php | 8 +++++--- .../Http/Tests/Firewall/ExceptionListenerTest.php | 12 ++++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php index 023291768767..a1dfa27855fa 100644 --- a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php @@ -102,7 +102,7 @@ public function onKernelException(GetResponseForExceptionEvent $event) } if ($exception instanceof LogoutException) { - $this->handleLogoutException($exception); + $this->handleLogoutException($event, $exception); return; } @@ -172,10 +172,12 @@ private function handleAccessDeniedException(GetResponseForExceptionEvent $event } } - private function handleLogoutException(LogoutException $exception) + private function handleLogoutException(GetResponseForExceptionEvent $event, LogoutException $exception) { + $event->setException(new AccessDeniedHttpException($exception->getMessage(), $exception)); + if (null !== $this->logger) { - $this->logger->info('A LogoutException was thrown.', ['exception' => $exception]); + $this->logger->info('A LogoutException was thrown; wrapping with AccessDeniedHttpException', ['exception' => $exception]); } } diff --git a/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php index 29899de11f95..74d366311c5f 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php @@ -21,6 +21,7 @@ use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Exception\AccessDeniedException; use Symfony\Component\Security\Core\Exception\AuthenticationException; +use Symfony\Component\Security\Core\Exception\LogoutException; use Symfony\Component\Security\Http\Authorization\AccessDeniedHandlerInterface; use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface; use Symfony\Component\Security\Http\Firewall\ExceptionListener; @@ -160,6 +161,17 @@ public function testAccessDeniedExceptionNotFullFledged(\Exception $exception, \ $this->assertSame(null === $eventException ? $exception : $eventException, $event->getException()->getPrevious()); } + public function testLogoutException() + { + $event = $this->createEvent(new LogoutException('Invalid CSRF.')); + + $listener = $this->createExceptionListener(); + $listener->onKernelException($event); + + $this->assertEquals('Invalid CSRF.', $event->getException()->getMessage()); + $this->assertEquals(403, $event->getException()->getStatusCode()); + } + public function getAccessDeniedExceptionProvider() { return [ From 3d18c1c18509f9ed21635f8daecaa9d09f6fb3bf Mon Sep 17 00:00:00 2001 From: Martin Hujer Date: Wed, 27 May 2020 11:59:50 +0200 Subject: [PATCH 67/81] [Validator] add missing Czech translations --- .../Resources/translations/validators.cs.xlf | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.cs.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.cs.xlf index e637d09aa9fa..ce32f1368de6 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.cs.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.cs.xlf @@ -334,6 +334,54 @@ This value should be valid JSON. Tato hodnota musí být validní JSON. + + This collection should contain only unique elements. + Tato kolekce musí obsahovat pouze unikátní prvky. + + + This value should be positive. + Tato hodnota musí být kladná. + + + This value should be either positive or zero. + Tato hodnota musí být buď kladná nebo nula. + + + This value should be negative. + Tato hodnota musí být záporná. + + + This value should be either negative or zero. + Tato hodnota musí být buď záporná nebo nula. + + + This value is not a valid timezone. + Tato časová zóna neexistuje. + + + This password has been leaked in a data breach, it must not be used. Please use another password. + Zadané heslo bylo součástí úniku dat, takže ho není možné použít. Použijte prosím jiné heslo. + + + This value should be between {{ min }} and {{ max }}. + Hodnota musí být mezi {{ min }} a {{ max }}. + + + This value is not a valid hostname. + Tato hodnota není platný hostname. + + + The number of elements in this collection should be a multiple of {{ compared_value }}. + Počet prvků v této kolekci musí být násobek {{ compared_value }}. + + + This value should satisfy at least one of the following constraints: + Tato hodnota musí splňovat alespoň jedno z následujících omezení: + + + Each element of this collection should satisfy its own set of constraints. + Každý prvek v této kolekci musí splňovat svá vlastní omezení. + From ed518551e119b594be2b57b2fff414cff61d1eec Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Wed, 27 May 2020 23:40:15 +0200 Subject: [PATCH 68/81] Handle fetch mode deprecation of DBAL 2.11. --- .../RememberMe/DoctrineTokenProvider.php | 2 +- .../RememberMe/DoctrineTokenProviderTest.php | 88 +++++++++++++++++++ .../Cache/Tests/Traits/PdoPruneableTrait.php | 4 +- .../Component/Cache/Traits/PdoTrait.php | 8 +- 4 files changed, 98 insertions(+), 4 deletions(-) create mode 100644 src/Symfony/Bridge/Doctrine/Tests/Security/RememberMe/DoctrineTokenProviderTest.php diff --git a/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php b/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php index ef0612df3128..4bbc9f3fcdfb 100644 --- a/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php +++ b/src/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.php @@ -63,7 +63,7 @@ public function loadTokenBySeries($series) $paramValues = ['series' => $series]; $paramTypes = ['series' => \PDO::PARAM_STR]; $stmt = $this->conn->executeQuery($sql, $paramValues, $paramTypes); - $row = $stmt->fetch(\PDO::FETCH_ASSOC); + $row = method_exists($stmt, 'fetchAssociative') ? $stmt->fetchAssociative() : $stmt->fetch(\PDO::FETCH_ASSOC); if ($row) { return new PersistentToken($row['class'], $row['username'], $series, $row['value'], new \DateTime($row['last_used'])); diff --git a/src/Symfony/Bridge/Doctrine/Tests/Security/RememberMe/DoctrineTokenProviderTest.php b/src/Symfony/Bridge/Doctrine/Tests/Security/RememberMe/DoctrineTokenProviderTest.php new file mode 100644 index 000000000000..9c86ecacb29c --- /dev/null +++ b/src/Symfony/Bridge/Doctrine/Tests/Security/RememberMe/DoctrineTokenProviderTest.php @@ -0,0 +1,88 @@ += 80000) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + + public function testCreateNewToken() + { + $provider = $this->bootstrapProvider(); + + $token = new PersistentToken('someClass', 'someUser', 'someSeries', 'tokenValue', new \DateTime('2013-01-26T18:23:51')); + $provider->createNewToken($token); + + $this->assertEquals($provider->loadTokenBySeries('someSeries'), $token); + } + + public function testLoadTokenBySeriesThrowsNotFoundException() + { + $provider = $this->bootstrapProvider(); + + $this->expectException(TokenNotFoundException::class); + $provider->loadTokenBySeries('someSeries'); + } + + public function testUpdateToken() + { + $provider = $this->bootstrapProvider(); + + $token = new PersistentToken('someClass', 'someUser', 'someSeries', 'tokenValue', new \DateTime('2013-01-26T18:23:51')); + $provider->createNewToken($token); + $provider->updateToken('someSeries', 'newValue', $lastUsed = new \DateTime('2014-06-26T22:03:46')); + $token = $provider->loadTokenBySeries('someSeries'); + + $this->assertEquals('newValue', $token->getTokenValue()); + $this->assertEquals($token->getLastUsed(), $lastUsed); + } + + public function testDeleteToken() + { + $provider = $this->bootstrapProvider(); + $token = new PersistentToken('someClass', 'someUser', 'someSeries', 'tokenValue', new \DateTime('2013-01-26T18:23:51')); + $provider->createNewToken($token); + $provider->deleteTokenBySeries('someSeries'); + + $this->expectException(TokenNotFoundException::class); + + $provider->loadTokenBySeries('someSeries'); + } + + /** + * @return DoctrineTokenProvider + */ + private function bootstrapProvider() + { + $connection = DriverManager::getConnection([ + 'driver' => 'pdo_sqlite', + 'url' => 'sqlite:///:memory:', + ]); + $connection->executeUpdate(<<< 'SQL' + CREATE TABLE rememberme_token ( + series char(88) UNIQUE PRIMARY KEY NOT NULL, + value char(88) NOT NULL, + lastUsed datetime NOT NULL, + class varchar(100) NOT NULL, + username varchar(200) NOT NULL + ); +SQL + ); + + return new DoctrineTokenProvider($connection); + } +} diff --git a/src/Symfony/Component/Cache/Tests/Traits/PdoPruneableTrait.php b/src/Symfony/Component/Cache/Tests/Traits/PdoPruneableTrait.php index 3b1e1128ba0d..c5ba9c66d694 100644 --- a/src/Symfony/Component/Cache/Tests/Traits/PdoPruneableTrait.php +++ b/src/Symfony/Component/Cache/Tests/Traits/PdoPruneableTrait.php @@ -24,11 +24,11 @@ protected function isPruned($cache, $name) $getPdoConn = $o->getMethod('getConnection'); $getPdoConn->setAccessible(true); - /** @var \Doctrine\DBAL\Statement $select */ + /** @var \Doctrine\DBAL\Statement|\PDOStatement $select */ $select = $getPdoConn->invoke($cache)->prepare('SELECT 1 FROM cache_items WHERE item_id LIKE :id'); $select->bindValue(':id', sprintf('%%%s', $name)); $select->execute(); - return 0 === \count($select->fetchAll(\PDO::FETCH_COLUMN)); + return 1 !== (int) (method_exists($select, 'fetchOne') ? $select->fetchOne() : $select->fetch(\PDO::FETCH_COLUMN)); } } diff --git a/src/Symfony/Component/Cache/Traits/PdoTrait.php b/src/Symfony/Component/Cache/Traits/PdoTrait.php index ab9054b38d8c..6a9f3c46aea4 100644 --- a/src/Symfony/Component/Cache/Traits/PdoTrait.php +++ b/src/Symfony/Component/Cache/Traits/PdoTrait.php @@ -177,7 +177,13 @@ protected function doFetch(array $ids) } $stmt->execute(); - while ($row = $stmt->fetch(\PDO::FETCH_NUM)) { + if (method_exists($stmt, 'iterateNumeric')) { + $stmt = $stmt->iterateNumeric(); + } else { + $stmt->setFetchMode(\PDO::FETCH_NUM); + } + + foreach ($stmt as $row) { if (null === $row[1]) { $expired[] = $row[0]; } else { From afdda5d764cf002cc8069149b5f4b2033d4324c1 Mon Sep 17 00:00:00 2001 From: Martin Hujer Date: Wed, 27 May 2020 12:01:07 +0200 Subject: [PATCH 69/81] [Form] add missing Czech validators translation --- .../Component/Form/Resources/translations/validators.cs.xlf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/Form/Resources/translations/validators.cs.xlf b/src/Symfony/Component/Form/Resources/translations/validators.cs.xlf index 776da4948181..44d597db980e 100644 --- a/src/Symfony/Component/Form/Resources/translations/validators.cs.xlf +++ b/src/Symfony/Component/Form/Resources/translations/validators.cs.xlf @@ -14,6 +14,10 @@ The CSRF token is invalid. Please try to resubmit the form. CSRF token je neplatný. Zkuste prosím znovu odeslat formulář. + + This value is not a valid HTML5 color. + Tato hodnota není platná HTML5 barva. + From 03b4e986301cbe0c23fd6a56f4ee18afef31139f Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 29 May 2020 02:02:01 +0200 Subject: [PATCH 70/81] [PropertyAccess] Fix TypeError parsing again. --- .../PropertyAccess/PropertyAccessor.php | 10 +++- .../Tests/PropertyAccessorTest.php | 53 +++++++++++++++++++ 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php index 3bb5d6dcf799..99aa9a3ebc32 100644 --- a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php +++ b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php @@ -479,9 +479,15 @@ private function readProperty($zval, $property) try { $result[self::VALUE] = $object->{$access[self::ACCESS_NAME]}(); } catch (\TypeError $e) { + list($trace) = $e->getTrace(); + // handle uninitialized properties in PHP >= 7 - if (preg_match((sprintf('/^Return value of %s::%s\(\) must be of (?:the )?type (\w+), null returned$/', preg_quote(\get_class($object)), $access[self::ACCESS_NAME])), $e->getMessage(), $matches)) { - throw new AccessException(sprintf('The method "%s::%s()" returned "null", but expected type "%3$s". Did you forget to initialize a property or to make the return type nullable using "?%3$s"?', \get_class($object), $access[self::ACCESS_NAME], $matches[1]), 0, $e); + if (__FILE__ === $trace['file'] + && $access[self::ACCESS_NAME] === $trace['function'] + && $object instanceof $trace['class'] + && preg_match((sprintf('/Return value (?:of .*::\w+\(\) )?must be of (?:the )?type (\w+), null returned$/')), $e->getMessage(), $matches) + ) { + throw new AccessException(sprintf('The method "%s::%s()" returned "null", but expected type "%3$s". Did you forget to initialize a property or to make the return type nullable using "?%3$s"?', false === strpos(\get_class($object), "@anonymous\0") ? \get_class($object) : (get_parent_class($object) ?: 'class').'@anonymous', $access[self::ACCESS_NAME], $matches[1]), 0, $e); } throw $e; diff --git a/src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php b/src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php index d8331e76ad81..e1d87a428c26 100644 --- a/src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php +++ b/src/Symfony/Component/PropertyAccess/Tests/PropertyAccessorTest.php @@ -142,6 +142,59 @@ public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetter() $this->propertyAccessor->getValue(new UninitializedPrivateProperty(), 'uninitialized'); } + /** + * @requires PHP 7 + */ + public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousClass() + { + $this->expectException('Symfony\Component\PropertyAccess\Exception\AccessException'); + $this->expectExceptionMessage('The method "class@anonymous::getUninitialized()" returned "null", but expected type "array". Did you forget to initialize a property or to make the return type nullable using "?array"?'); + + $object = eval('return new class() { + private $uninitialized; + + public function getUninitialized(): array + { + return $this->uninitialized; + } + };'); + + $this->propertyAccessor->getValue($object, 'uninitialized'); + } + + /** + * @requires PHP 7 + */ + public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousStdClass() + { + $this->expectException('Symfony\Component\PropertyAccess\Exception\AccessException'); + $this->expectExceptionMessage('The method "stdClass@anonymous::getUninitialized()" returned "null", but expected type "array". Did you forget to initialize a property or to make the return type nullable using "?array"?'); + + $object = eval('return new class() extends \stdClass { + private $uninitialized; + + public function getUninitialized(): array + { + return $this->uninitialized; + } + };'); + + $this->propertyAccessor->getValue($object, 'uninitialized'); + } + + /** + * @requires PHP 7 + */ + public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousChildClass() + { + $this->expectException('Symfony\Component\PropertyAccess\Exception\AccessException'); + $this->expectExceptionMessage('The method "Symfony\Component\PropertyAccess\Tests\Fixtures\UninitializedPrivateProperty@anonymous::getUninitialized()" returned "null", but expected type "array". Did you forget to initialize a property or to make the return type nullable using "?array"?'); + + $object = eval('return new class() extends \Symfony\Component\PropertyAccess\Tests\Fixtures\UninitializedPrivateProperty {};'); + + $this->propertyAccessor->getValue($object, 'uninitialized'); + } + public function testGetValueThrowsExceptionIfNotArrayAccess() { $this->expectException('Symfony\Component\PropertyAccess\Exception\NoSuchIndexException'); From 3ab76e40ff0962c14a86c34a479d169b8e5a1da3 Mon Sep 17 00:00:00 2001 From: Laurent VOULLEMIER Date: Thu, 28 May 2020 22:44:39 +0200 Subject: [PATCH 71/81] Add meaningful message when Process is not installed (ProcessHelper) --- src/Symfony/Component/Console/Helper/ProcessHelper.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/Console/Helper/ProcessHelper.php b/src/Symfony/Component/Console/Helper/ProcessHelper.php index 666f114a23c4..951bb854ec93 100644 --- a/src/Symfony/Component/Console/Helper/ProcessHelper.php +++ b/src/Symfony/Component/Console/Helper/ProcessHelper.php @@ -37,6 +37,10 @@ class ProcessHelper extends Helper */ public function run(OutputInterface $output, $cmd, $error = null, callable $callback = null, $verbosity = OutputInterface::VERBOSITY_VERY_VERBOSE) { + if (!class_exists(Process::class)) { + throw new \LogicException('The Process helper requires the "Process" component. Install "symfony/process" to use it.'); + } + if ($output instanceof ConsoleOutputInterface) { $output = $output->getErrorOutput(); } From 1614595424692f0d536892c351a82ac1c4b800eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Egyed?= Date: Fri, 29 May 2020 09:40:36 +0200 Subject: [PATCH 72/81] Update Hungarian translations --- .../Component/Form/Resources/translations/validators.hu.xlf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf b/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf index 374cfaaea34a..b53f16d6ae91 100644 --- a/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf +++ b/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf @@ -14,6 +14,10 @@ The CSRF token is invalid. Please try to resubmit the form. Érvénytelen CSRF token. Kérem, próbálja újra elküldeni az űrlapot. + + This value is not a valid HTML5 color. + Ez az érték nem egy érvényes HTML5 szín. + From b819d94d1413e426237f35e6b6eddbc380dbccf9 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 19 May 2020 08:35:15 +0200 Subject: [PATCH 73/81] validate subforms in all validation groups --- .../Validator/Constraints/FormValidator.php | 31 +++++++++++++----- .../Validator/ValidatorExtension.php | 4 +-- .../Form/Resources/config/validation.xml | 6 ++-- .../Constraints/FormValidatorTest.php | 6 ++-- .../Validator/ValidatorExtensionTest.php | 32 +++++++++++++++++-- 5 files changed, 61 insertions(+), 18 deletions(-) diff --git a/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php b/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php index 14158f4c1cf7..6a8923ecbf0a 100644 --- a/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php +++ b/src/Symfony/Component/Form/Extension/Validator/Constraints/FormValidator.php @@ -63,12 +63,16 @@ public function validate($form, Constraint $formConstraint) /** @var Constraint[] $constraints */ $constraints = $config->getOption('constraints', []); + $hasChildren = $form->count() > 0; + + if ($hasChildren && $form->isRoot()) { + $this->resolvedGroups = new \SplObjectStorage(); + } + if ($groups instanceof GroupSequence) { // Validate the data, the form AND nested fields in sequence $violationsCount = $this->context->getViolations()->count(); $fieldPropertyPath = \is_object($data) ? 'children[%s]' : 'children%s'; - $hasChildren = $form->count() > 0; - $this->resolvedGroups = $hasChildren ? new \SplObjectStorage() : null; foreach ($groups->groups as $group) { if ($validateDataGraph) { @@ -86,7 +90,8 @@ public function validate($form, Constraint $formConstraint) // sequence recursively, thus some fields could fail // in different steps without breaking early enough $this->resolvedGroups[$field] = (array) $group; - $validator->atPath(sprintf($fieldPropertyPath, $field->getPropertyPath()))->validate($field, $formConstraint); + $fieldFormConstraint = new Form(); + $validator->atPath(sprintf($fieldPropertyPath, $field->getPropertyPath()))->validate($field, $fieldFormConstraint); } } @@ -94,12 +99,9 @@ public function validate($form, Constraint $formConstraint) break; } } - - if ($hasChildren) { - // destroy storage at the end of the sequence to avoid memory leaks - $this->resolvedGroups = null; - } } else { + $fieldPropertyPath = \is_object($data) ? 'children[%s]' : 'children%s'; + if ($validateDataGraph) { $validator->atPath('data')->validate($data, null, $groups); } @@ -125,6 +127,19 @@ public function validate($form, Constraint $formConstraint) } } } + + foreach ($form->all() as $field) { + if ($field->isSubmitted()) { + $this->resolvedGroups[$field] = $groups; + $fieldFormConstraint = new Form(); + $validator->atPath(sprintf($fieldPropertyPath, $field->getPropertyPath()))->validate($field, $fieldFormConstraint); + } + } + } + + if ($hasChildren && $form->isRoot()) { + // destroy storage to avoid memory leaks + $this->resolvedGroups = new \SplObjectStorage(); } } elseif (!$form->isSynchronized()) { $childrenSynchronized = true; diff --git a/src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php b/src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php index a5e38859c088..ac2d61238feb 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php +++ b/src/Symfony/Component/Form/Extension/Validator/ValidatorExtension.php @@ -13,7 +13,7 @@ use Symfony\Component\Form\AbstractExtension; use Symfony\Component\Form\Extension\Validator\Constraints\Form; -use Symfony\Component\Validator\Constraints\Valid; +use Symfony\Component\Validator\Constraints\Traverse; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Validator\ValidatorInterface; @@ -37,7 +37,7 @@ public function __construct(ValidatorInterface $validator) /* @var $metadata ClassMetadata */ $metadata->addConstraint(new Form()); - $metadata->addPropertyConstraint('children', new Valid()); + $metadata->addConstraint(new Traverse(false)); $this->validator = $validator; } diff --git a/src/Symfony/Component/Form/Resources/config/validation.xml b/src/Symfony/Component/Form/Resources/config/validation.xml index b2b935442d46..918f101f4266 100644 --- a/src/Symfony/Component/Form/Resources/config/validation.xml +++ b/src/Symfony/Component/Form/Resources/config/validation.xml @@ -6,8 +6,8 @@ - - - + + + diff --git a/src/Symfony/Component/Form/Tests/Extension/Validator/Constraints/FormValidatorTest.php b/src/Symfony/Component/Form/Tests/Extension/Validator/Constraints/FormValidatorTest.php index 5181e4122516..3d7111f85f3c 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Validator/Constraints/FormValidatorTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Validator/Constraints/FormValidatorTest.php @@ -615,7 +615,8 @@ public function testViolationIfExtraData() $this->assertTrue($form->isSubmitted()); $this->assertTrue($form->isSynchronized()); - $this->expectNoValidate(); + + $this->expectValidateValueAt(0, 'children[child]', $form->get('child'), new Form()); $this->validator->validate($form, new Form()); @@ -638,7 +639,8 @@ public function testViolationFormatIfMultipleExtraFields() $this->assertTrue($form->isSubmitted()); $this->assertTrue($form->isSynchronized()); - $this->expectNoValidate(); + + $this->expectValidateValueAt(0, 'children[child]', $form->get('child'), new Form()); $this->validator->validate($form, new Form()); diff --git a/src/Symfony/Component/Form/Tests/Extension/Validator/ValidatorExtensionTest.php b/src/Symfony/Component/Form/Tests/Extension/Validator/ValidatorExtensionTest.php index cb9b93abdbf6..9793bd78e69e 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Validator/ValidatorExtensionTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Validator/ValidatorExtensionTest.php @@ -54,9 +54,8 @@ public function test2Dot5ValidationApi() $this->assertInstanceOf(FormConstraint::class, $metadata->getConstraints()[0]); $this->assertSame(CascadingStrategy::NONE, $metadata->cascadingStrategy); - $this->assertSame(TraversalStrategy::IMPLICIT, $metadata->traversalStrategy); - $this->assertSame(CascadingStrategy::CASCADE, $metadata->getPropertyMetadata('children')[0]->cascadingStrategy); - $this->assertSame(TraversalStrategy::IMPLICIT, $metadata->getPropertyMetadata('children')[0]->traversalStrategy); + $this->assertSame(TraversalStrategy::NONE, $metadata->traversalStrategy); + $this->assertCount(0, $metadata->getPropertyMetadata('children')); } public function testDataConstraintsInvalidateFormEvenIfFieldIsNotSubmitted() @@ -138,6 +137,33 @@ public function testFieldsValidateInSequenceWithNestedGroupsArray() $this->assertInstanceOf(Length::class, $errors[1]->getCause()->getConstraint()); } + public function testConstraintsInDifferentGroupsOnSingleField() + { + $form = $this->createForm(FormType::class, null, [ + 'validation_groups' => new GroupSequence(['group1', 'group2']), + ]) + ->add('foo', TextType::class, [ + 'constraints' => [ + new NotBlank([ + 'groups' => ['group1'], + ]), + new Length([ + 'groups' => ['group2'], + 'max' => 3, + ]), + ], + ]); + $form->submit([ + 'foo' => 'test@example.com', + ]); + + $errors = $form->getErrors(true); + + $this->assertFalse($form->isValid()); + $this->assertCount(1, $errors); + $this->assertInstanceOf(Length::class, $errors[0]->getCause()->getConstraint()); + } + private function createForm($type, $data = null, array $options = []) { $validator = Validation::createValidatorBuilder() From 5d93b61278bff6a3919081fbcc7d10c1928896f2 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Fri, 29 May 2020 16:03:43 +0200 Subject: [PATCH 74/81] [Console] Fix QuestionHelper::disableStty() --- .../Console/Helper/QuestionHelper.php | 6 ++-- .../Tests/Helper/QuestionHelperTest.php | 30 +++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php index 93e221d36a56..80f6048b8074 100644 --- a/src/Symfony/Component/Console/Helper/QuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php @@ -32,7 +32,7 @@ class QuestionHelper extends Helper { private $inputStream; private static $shell; - private static $stty; + private static $stty = true; /** * Asks a question to the user. @@ -158,7 +158,7 @@ private function doAsk(OutputInterface $output, Question $question) $inputStream = $this->inputStream ?: STDIN; $autocomplete = $question->getAutocompleterValues(); - if (null === $autocomplete || !Terminal::hasSttyAvailable()) { + if (null === $autocomplete || !self::$stty || !Terminal::hasSttyAvailable()) { $ret = false; if ($question->isHidden()) { try { @@ -424,7 +424,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream) return $value; } - if (Terminal::hasSttyAvailable()) { + if (self::$stty && Terminal::hasSttyAvailable()) { $sttyMode = shell_exec('stty -g'); shell_exec('stty -echo'); diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index 4303c020a319..93b762c26186 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -11,6 +11,7 @@ namespace Symfony\Component\Console\Tests\Helper; +use Symfony\Component\Console\Exception\InvalidArgumentException; use Symfony\Component\Console\Formatter\OutputFormatter; use Symfony\Component\Console\Helper\FormatterHelper; use Symfony\Component\Console\Helper\HelperSet; @@ -1013,6 +1014,35 @@ public function testTraversableAutocomplete() $this->assertEquals('FooBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question)); } + public function testDisableSttby() + { + if (!Terminal::hasSttyAvailable()) { + $this->markTestSkipped('`stty` is required to test autocomplete functionality'); + } + + $this->expectException(InvalidArgumentException::class); + $this->expectExceptionMessage('invalid'); + + QuestionHelper::disableStty(); + $dialog = new QuestionHelper(); + $dialog->setHelperSet(new HelperSet([new FormatterHelper()])); + + $question = new ChoiceQuestion('Please select a bundle', [1 => 'AcmeDemoBundle', 4 => 'AsseticBundle']); + $question->setMaxAttempts(1); + + // + // Gives `AcmeDemoBundle` with stty + $inputStream = $this->getInputStream("\033[A\033[A\n\033[B\033[B\n"); + + try { + $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question); + } finally { + $reflection = new \ReflectionProperty(QuestionHelper::class, 'stty'); + $reflection->setAccessible(true); + $reflection->setValue(null, true); + } + } + public function testTraversableMultiselectAutocomplete() { // From ff7d3f4f01541ec130d8b436cc67547b4e99e181 Mon Sep 17 00:00:00 2001 From: Pedro Casado Date: Fri, 22 May 2020 14:37:09 -0300 Subject: [PATCH 75/81] Fixes sprintf(): Too few arguments in form transformer --- .../Bundle/WebServerBundle/Command/ServerLogCommand.php | 2 +- .../Asset/VersionStrategy/JsonManifestVersionStrategy.php | 2 +- src/Symfony/Component/Filesystem/Filesystem.php | 8 ++++---- src/Symfony/Component/Form/Form.php | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Bundle/WebServerBundle/Command/ServerLogCommand.php b/src/Symfony/Bundle/WebServerBundle/Command/ServerLogCommand.php index 75d94321f4f0..40be5a50a427 100644 --- a/src/Symfony/Bundle/WebServerBundle/Command/ServerLogCommand.php +++ b/src/Symfony/Bundle/WebServerBundle/Command/ServerLogCommand.php @@ -99,7 +99,7 @@ protected function execute(InputInterface $input, OutputInterface $output) } if (!$socket = stream_socket_server($host, $errno, $errstr)) { - throw new RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $host)); + throw new RuntimeException(sprintf('Server start failed on "%s": ', $host).$errstr.' '.$errno); } foreach ($this->getLogs($socket) as $clientId => $message) { diff --git a/src/Symfony/Component/Asset/VersionStrategy/JsonManifestVersionStrategy.php b/src/Symfony/Component/Asset/VersionStrategy/JsonManifestVersionStrategy.php index d052317678c8..62f9ff7dbd1e 100644 --- a/src/Symfony/Component/Asset/VersionStrategy/JsonManifestVersionStrategy.php +++ b/src/Symfony/Component/Asset/VersionStrategy/JsonManifestVersionStrategy.php @@ -59,7 +59,7 @@ private function getManifestPath($path) $this->manifestData = json_decode(file_get_contents($this->manifestPath), true); if (0 < json_last_error()) { - throw new \RuntimeException(sprintf('Error parsing JSON from asset manifest file "%s": '.json_last_error_msg(), $this->manifestPath)); + throw new \RuntimeException(sprintf('Error parsing JSON from asset manifest file "%s": ', $this->manifestPath).json_last_error_msg()); } } diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index e2812f8e2252..0b5297ecf066 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -101,7 +101,7 @@ public function mkdir($dirs, $mode = 0777) if (!is_dir($dir)) { // The directory was not created by a concurrent process. Let's throw an exception with a developer friendly error message if we have one if (self::$lastError) { - throw new IOException(sprintf('Failed to create "%s": '.self::$lastError, $dir), 0, null, $dir); + throw new IOException(sprintf('Failed to create "%s": ', $dir).self::$lastError, 0, null, $dir); } throw new IOException(sprintf('Failed to create "%s".', $dir), 0, null, $dir); } @@ -171,16 +171,16 @@ public function remove($files) if (is_link($file)) { // See https://bugs.php.net/52176 if (!(self::box('unlink', $file) || '\\' !== \DIRECTORY_SEPARATOR || self::box('rmdir', $file)) && file_exists($file)) { - throw new IOException(sprintf('Failed to remove symlink "%s": '.self::$lastError, $file)); + throw new IOException(sprintf('Failed to remove symlink "%s": ', $file).self::$lastError); } } elseif (is_dir($file)) { $this->remove(new \FilesystemIterator($file, \FilesystemIterator::CURRENT_AS_PATHNAME | \FilesystemIterator::SKIP_DOTS)); if (!self::box('rmdir', $file) && file_exists($file)) { - throw new IOException(sprintf('Failed to remove directory "%s": '.self::$lastError, $file)); + throw new IOException(sprintf('Failed to remove directory "%s": ', $file).self::$lastError); } } elseif (!self::box('unlink', $file) && file_exists($file)) { - throw new IOException(sprintf('Failed to remove file "%s": '.self::$lastError, $file)); + throw new IOException(sprintf('Failed to remove file "%s": ', $file).self::$lastError); } } } diff --git a/src/Symfony/Component/Form/Form.php b/src/Symfony/Component/Form/Form.php index 93b62a9acff3..70874a2f909a 100644 --- a/src/Symfony/Component/Form/Form.php +++ b/src/Symfony/Component/Form/Form.php @@ -1031,7 +1031,7 @@ private function modelToNorm($value) $value = $transformer->transform($value); } } catch (TransformationFailedException $exception) { - throw new TransformationFailedException(sprintf('Unable to transform data for property path "%s": '.$exception->getMessage(), $this->getPropertyPath()), $exception->getCode(), $exception); + throw new TransformationFailedException(sprintf('Unable to transform data for property path "%s": ', $this->getPropertyPath()).$exception->getMessage(), $exception->getCode(), $exception); } return $value; @@ -1055,7 +1055,7 @@ private function normToModel($value) $value = $transformers[$i]->reverseTransform($value); } } catch (TransformationFailedException $exception) { - throw new TransformationFailedException(sprintf('Unable to reverse value for property path "%s": '.$exception->getMessage(), $this->getPropertyPath()), $exception->getCode(), $exception); + throw new TransformationFailedException(sprintf('Unable to reverse value for property path "%s": ', $this->getPropertyPath()).$exception->getMessage(), $exception->getCode(), $exception); } return $value; @@ -1086,7 +1086,7 @@ private function normToView($value) $value = $transformer->transform($value); } } catch (TransformationFailedException $exception) { - throw new TransformationFailedException(sprintf('Unable to transform value for property path "%s": '.$exception->getMessage(), $this->getPropertyPath()), $exception->getCode(), $exception); + throw new TransformationFailedException(sprintf('Unable to transform value for property path "%s": ', $this->getPropertyPath()).$exception->getMessage(), $exception->getCode(), $exception); } return $value; @@ -1112,7 +1112,7 @@ private function viewToNorm($value) $value = $transformers[$i]->reverseTransform($value); } } catch (TransformationFailedException $exception) { - throw new TransformationFailedException(sprintf('Unable to reverse value for property path "%s": '.$exception->getMessage(), $this->getPropertyPath()), $exception->getCode(), $exception); + throw new TransformationFailedException(sprintf('Unable to reverse value for property path "%s": ', $this->getPropertyPath()).$exception->getMessage(), $exception->getCode(), $exception); } return $value; From d8f282edca9f58bfab51d4300683e40c9423db84 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 30 May 2020 20:58:05 +0200 Subject: [PATCH 76/81] Various cleanups --- src/Symfony/Component/Console/Helper/ProcessHelper.php | 2 +- .../Component/DependencyInjection/EnvVarProcessor.php | 2 +- .../Form/Resources/translations/validators.hu.xlf | 2 +- .../Intl/Data/Bundle/Reader/JsonBundleReader.php | 2 +- .../Component/Ldap/Adapter/ExtLdap/EntryManager.php | 8 ++++---- .../Serializer/Normalizer/DateTimeNormalizer.php | 2 +- .../Component/Translation/Loader/XliffFileLoader.php | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Component/Console/Helper/ProcessHelper.php b/src/Symfony/Component/Console/Helper/ProcessHelper.php index 951bb854ec93..6cafb1facef4 100644 --- a/src/Symfony/Component/Console/Helper/ProcessHelper.php +++ b/src/Symfony/Component/Console/Helper/ProcessHelper.php @@ -38,7 +38,7 @@ class ProcessHelper extends Helper public function run(OutputInterface $output, $cmd, $error = null, callable $callback = null, $verbosity = OutputInterface::VERBOSITY_VERY_VERBOSE) { if (!class_exists(Process::class)) { - throw new \LogicException('The Process helper requires the "Process" component. Install "symfony/process" to use it.'); + throw new \LogicException('The ProcessHelper cannot be run as the Process component is not installed. Try running "compose require symfony/process".'); } if ($output instanceof ConsoleOutputInterface) { diff --git a/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php b/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php index 3410103764e5..cc9fa3b39075 100644 --- a/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php +++ b/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php @@ -125,7 +125,7 @@ public function getEnv($prefix, $name, \Closure $getEnv) $env = json_decode($env, true); if (JSON_ERROR_NONE !== json_last_error()) { - throw new RuntimeException(sprintf('Invalid JSON in env var "%s": '.json_last_error_msg(), $name)); + throw new RuntimeException(sprintf('Invalid JSON in env var "%s": ', $name)).json_last_error_msg(); } if (!\is_array($env)) { diff --git a/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf b/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf index b53f16d6ae91..bc7f6055e484 100644 --- a/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf +++ b/src/Symfony/Component/Form/Resources/translations/validators.hu.xlf @@ -17,7 +17,7 @@ This value is not a valid HTML5 color. Ez az érték nem egy érvényes HTML5 szín. - + diff --git a/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php b/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php index 555dd377c934..1d0cfbad0d24 100644 --- a/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php +++ b/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php @@ -46,7 +46,7 @@ public function read($path, $locale) $data = json_decode(file_get_contents($fileName), true); if (null === $data) { - throw new RuntimeException(sprintf('The resource bundle "%s" contains invalid JSON: '.json_last_error_msg(), $fileName)); + throw new RuntimeException(sprintf('The resource bundle "%s" contains invalid JSON: ', $fileName).json_last_error_msg()); } return $data; diff --git a/src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php b/src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php index 789672e7b22e..26f99fc9caff 100644 --- a/src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php +++ b/src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php @@ -38,7 +38,7 @@ public function add(Entry $entry) $con = $this->getConnectionResource(); if (!@ldap_add($con, $entry->getDn(), $entry->getAttributes())) { - throw new LdapException(sprintf('Could not add entry "%s": '.ldap_error($con), $entry->getDn())); + throw new LdapException(sprintf('Could not add entry "%s": ', $entry->getDn()).ldap_error($con)); } return $this; @@ -52,7 +52,7 @@ public function update(Entry $entry) $con = $this->getConnectionResource(); if (!@ldap_modify($con, $entry->getDn(), $entry->getAttributes())) { - throw new LdapException(sprintf('Could not update entry "%s": '.ldap_error($con), $entry->getDn())); + throw new LdapException(sprintf('Could not update entry "%s": ', $entry->getDn()).ldap_error($con)); } } @@ -64,7 +64,7 @@ public function remove(Entry $entry) $con = $this->getConnectionResource(); if (!@ldap_delete($con, $entry->getDn())) { - throw new LdapException(sprintf('Could not remove entry "%s": '.ldap_error($con), $entry->getDn())); + throw new LdapException(sprintf('Could not remove entry "%s": ', $entry->getDn()).ldap_error($con)); } } @@ -76,7 +76,7 @@ public function rename(Entry $entry, $newRdn, $removeOldRdn = true) $con = $this->getConnectionResource(); if (!@ldap_rename($con, $entry->getDn(), $newRdn, null, $removeOldRdn)) { - throw new LdapException(sprintf('Could not rename entry "%s" to "%s": '.ldap_error($con), $entry->getDn(), $newRdn)); + throw new LdapException(sprintf('Could not rename entry "%s" to "%s": ', $entry->getDn(), $newRdn).ldap_error($con)); } } diff --git a/src/Symfony/Component/Serializer/Normalizer/DateTimeNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/DateTimeNormalizer.php index 3217bc38beaf..fef57d120d63 100644 --- a/src/Symfony/Component/Serializer/Normalizer/DateTimeNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/DateTimeNormalizer.php @@ -101,7 +101,7 @@ public function denormalize($data, $type, $format = null, array $context = []) $dateTimeErrors = \DateTime::class === $type ? \DateTime::getLastErrors() : \DateTimeImmutable::getLastErrors(); - throw new NotNormalizableValueException(sprintf('Parsing datetime string "%s" using format "%s" resulted in %d errors:.'."\n".'%s', $data, $dateTimeFormat, $dateTimeErrors['error_count'], implode("\n", $this->formatDateTimeErrors($dateTimeErrors['errors'])))); + throw new NotNormalizableValueException(sprintf('Parsing datetime string "%s" using format "%s" resulted in %d errors: ', $data, $dateTimeFormat, $dateTimeErrors['error_count'])."\n".implode("\n", $this->formatDateTimeErrors($dateTimeErrors['errors']))); } try { diff --git a/src/Symfony/Component/Translation/Loader/XliffFileLoader.php b/src/Symfony/Component/Translation/Loader/XliffFileLoader.php index 0a6ff16b1756..14a2668c2768 100644 --- a/src/Symfony/Component/Translation/Loader/XliffFileLoader.php +++ b/src/Symfony/Component/Translation/Loader/XliffFileLoader.php @@ -194,7 +194,7 @@ private function validateSchema($file, \DOMDocument $dom, $schema) if (!@$dom->schemaValidateSource($schema)) { libxml_disable_entity_loader($disableEntities); - throw new InvalidResourceException(sprintf('Invalid resource provided: "%s"; Errors: '.implode("\n", $this->getXmlErrors($internalErrors)), $file)); + throw new InvalidResourceException(sprintf('Invalid resource provided: "%s"; Errors: ', $file).implode("\n", $this->getXmlErrors($internalErrors))); } libxml_disable_entity_loader($disableEntities); From d6966c3147fd145248095034bfa8f395485e11b7 Mon Sep 17 00:00:00 2001 From: Laurent VOULLEMIER Date: Sat, 30 May 2020 21:50:06 +0200 Subject: [PATCH 77/81] Fix abstract method name in PHP doc block --- src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php b/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php index 2a715e35d771..10bddfbc94ea 100644 --- a/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php +++ b/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php @@ -22,7 +22,7 @@ /** * AnnotationClassLoader loads routing information from a PHP class and its methods. * - * You need to define an implementation for the getRouteDefaults() method. Most of the + * You need to define an implementation for the configureRoute() method. Most of the * time, this method should define some PHP callable to be called for the route * (a controller in MVC speak). * From fa31260e5eb647c2487def360dbd7dc969dd81f0 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 30 May 2020 23:06:01 +0200 Subject: [PATCH 78/81] [DI] fix typo --- src/Symfony/Component/DependencyInjection/EnvVarProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php b/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php index cc9fa3b39075..6b7ccf2e188b 100644 --- a/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php +++ b/src/Symfony/Component/DependencyInjection/EnvVarProcessor.php @@ -125,7 +125,7 @@ public function getEnv($prefix, $name, \Closure $getEnv) $env = json_decode($env, true); if (JSON_ERROR_NONE !== json_last_error()) { - throw new RuntimeException(sprintf('Invalid JSON in env var "%s": ', $name)).json_last_error_msg(); + throw new RuntimeException(sprintf('Invalid JSON in env var "%s": ', $name).json_last_error_msg()); } if (!\is_array($env)) { From c1b56cd1f8db3cb98e6d9d70175ee08c44b40f5d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 31 May 2020 07:13:42 +0200 Subject: [PATCH 79/81] updated CHANGELOG for 3.4.41 --- CHANGELOG-3.4.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index 7fc92f86eb32..dfd39c33e34d 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,41 @@ in 3.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1 +* 3.4.41 (2020-05-31) + + * bug #36894 [Validator] never directly validate Existence (Required/Optional) constraints (xabbuh) + * bug #37007 [Console] Fix QuestionHelper::disableStty() (chalasr) + * bug #36865 [Form] validate subforms in all validation groups (xabbuh) + * bug #36907 Fixes sprintf(): Too few arguments in form transformer (pedrocasado) + * bug #37000 Add meaningful message when using ProcessHelper and Process is not installed (l-vo) + * bug #36987 Handle fetch mode deprecation of DBAL 2.11. (derrabus) + * bug #36974 [Security] Fixed handling of CSRF logout error (wouterj) + * bug #36920 [VarDumper] fix PHP 8 support (nicolas-grekas) + * bug #36917 [Cache] Accessing undefined constants raises an Error in php8 (derrabus) + * bug #36891 Address deprecation of ReflectionType::getClass() (derrabus) + * bug #36899 [VarDumper] ReflectionFunction::isDisabled() is deprecated (derrabus) + * bug #36905 [Validator] Catch expected ValueError (derrabus) + * bug #36906 [DomCrawler] Catch expected ValueError (derrabus) + * bug #36904 [PropertyAccess] Parse php 8 TypeErrors correctly (derrabus) + * bug #36896 [Config] Removed implicit cast of ReflectionProperty to string (derrabus) + * bug #36882 [PhpUnitBridge] fix installing under PHP >= 8 (nicolas-grekas) + * bug #36833 [HttpKernel] Fix that the `Store` would not save responses with the X-Content-Digest header present (mpdude) + * bug #36867 [PhpUnitBridge] fix bad detection of unsilenced deprecations (nicolas-grekas) + * bug #36855 [HttpKernel] Fix error logger when stderr is redirected to /dev/null (fabpot) + * bug #36592 [BrowserKit] Allow Referer set by history to be overridden (Slamdunk) + * bug #36794 [Serializer] fix issue with PHP 8 (nicolas-grekas) + * bug #36743 [Yaml] Fix escaped quotes in quoted multi-line string (ossinkine) + * bug #36569 [PhpUnitBridge] Mark parent class also covered in CoverageListener (lyrixx) + * bug #36690 [Yaml] prevent notice for invalid octal numbers on PHP 7.4 (xabbuh) + * bug #36497 [Filesystem] Handle paths on different drives (crishoj) + * bug #36678 [WebProfiler] Do not add src-elem CSP directives if they do not exist (ndench) + * bug #36501 [DX] Show the ParseException message in all YAML file loaders (fancyweb) + * bug #36683 [Yaml] fix parse error when unindented collections contain a comment (wdiesveld) + * bug #36672 [Validator] Skip validation when email is an empty object (acrobat) + * bug #36673 [PhpUnitBridge] fix PHP 5.3 compat again (nicolas-grekas) + * bug #36627 [Validator] fix lazy property usage. (bendavies) + * bug #36625 [PhpUnitBridge] fix compat with PHP 5.3 (nicolas-grekas) + * 3.4.40 (2020-04-28) * bug #36566 [PhpUnitBridge] Use COMPOSER_BINARY env var if available (fancyweb) From 46a783df634d8ae8e886329d8874ee97880f7c40 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 31 May 2020 07:14:13 +0200 Subject: [PATCH 80/81] update CONTRIBUTORS for 3.4.41 --- CONTRIBUTORS.md | 88 +++++++++++++++++++++++++++++++------------------ 1 file changed, 56 insertions(+), 32 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 449973d7578e..baf025cfe048 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -23,15 +23,15 @@ Symfony is the result of the work of many people who made the code better - Johannes S (johannes) - Kris Wallsmith (kriswallsmith) - Yonel Ceruto (yonelceruto) - - Hugo Hamon (hhamon) - Wouter de Jong (wouterj) + - Hugo Hamon (hhamon) - Thomas Calvet (fancyweb) + - Alexander M. Turek (derrabus) - Abdellatif Ait boudad (aitboudad) - Samuel ROZE (sroze) - Romain Neutron (romain) - Pascal Borreli (pborreli) - Joseph Bielawski (stloyd) - - Alexander M. Turek (derrabus) - Karma Dordrak (drak) - Lukas Kahwe Smith (lsmith) - Jules Pietri (heah) @@ -60,16 +60,16 @@ Symfony is the result of the work of many people who made the code better - Alexander Mols (asm89) - Konstantin Myakshin (koc) - Grégoire Paris (greg0ire) - - Bulat Shakirzyanov (avalanche123) - Valentin Udaltsov (vudaltsov) + - Bulat Shakirzyanov (avalanche123) - Kevin Bond (kbond) - Saša Stamenković (umpirsky) - Peter Rehm (rpet) - - Henrik Bjørnskov (henrikbjorn) - Gabriel Ostrolucký (gadelat) + - Henrik Bjørnskov (henrikbjorn) + - Gábor Egyed (1ed) - Miha Vrhovnik - David Maicher (dmaicher) - - Gábor Egyed (1ed) - Diego Saint Esteben (dii3g0) - Jan Schädlich (jschaedl) - Titouan Galopin (tgalopin) @@ -132,6 +132,7 @@ Symfony is the result of the work of many people who made the code better - Daniel Wehner (dawehner) - Tugdual Saunier (tucksaun) - excelwebzone + - Massimiliano Arione (garak) - Gordon Franke (gimler) - Joel Wurtz (brouznouf) - Fabien Pennequin (fabienpennequin) @@ -139,7 +140,6 @@ Symfony is the result of the work of many people who made the code better - Przemysław Bogusz (przemyslaw-bogusz) - Eric GELOEN (gelo) - Lars Strojny (lstrojny) - - Massimiliano Arione (garak) - Jannik Zschiesche (apfelbox) - Robert Schönthal (digitalkaoz) - Gregor Harlan (gharlan) @@ -161,6 +161,7 @@ Symfony is the result of the work of many people who made the code better - Yanick Witschi (toflar) - Arnaud Kleinpeter (nanocom) - Guilherme Blanco (guilhermeblanco) + - Laurent VOULLEMIER (lvo) - SpacePossum - Pablo Godel (pgodel) - Jérémie Augustin (jaugustin) @@ -181,6 +182,7 @@ Symfony is the result of the work of many people who made the code better - jeremyFreeAgent (jeremyfreeagent) - Rouven Weßling (realityking) - Jérôme Parmentier (lctrs) + - Ben Davies (bendavies) - Andreas Schempp (aschempp) - Clemens Tolboom - Helmer Aaviksoo @@ -195,7 +197,7 @@ Symfony is the result of the work of many people who made the code better - Tyson Andre - GDIBass - Samuel NELA (snela) - - Ben Davies (bendavies) + - Saif (╯°□°)╯ (azjezz) - James Halsall (jaitsu) - Matthieu Napoli (mnapoli) - Florent Mata (fmata) @@ -204,6 +206,7 @@ Symfony is the result of the work of many people who made the code better - Dmitrii Chekaliuk (lazyhammer) - Clément JOBEILI (dator) - Marek Štípek (maryo) + - Filippo Tessarotto (slamdunk) - Daniel Espendiller - Possum - Dorian Villet (gnutix) @@ -211,11 +214,11 @@ Symfony is the result of the work of many people who made the code better - Sergey Linnik (linniksa) - Richard Miller (mr_r_miller) - Albert Casademont (acasademont) + - Wouter J - Mario A. Alvarez Garcia (nomack84) - Dennis Benkert (denderello) - DQNEO - Andre Rømcke (andrerom) - - Saif (╯°□°)╯ (azjezz) - mcfedr (mcfedr) - Gary PEGEOT (gary-p) - Ruben Gonzalez (rubenrua) @@ -232,7 +235,6 @@ Symfony is the result of the work of many people who made the code better - Stadly - Stepan Anchugov (kix) - bronze1man - - Filippo Tessarotto (slamdunk) - sun (sun) - Larry Garfield (crell) - Nikolay Labinskiy (e-moe) @@ -245,7 +247,6 @@ Symfony is the result of the work of many people who made the code better - fivestar - Dominique Bongiraud - Jeremy Livingston (jeremylivingston) - - Laurent VOULLEMIER (lvo) - Michael Lee (zerustech) - Matthieu Auger (matthieuauger) - Mathias Arlaud (mtarld) @@ -255,6 +256,7 @@ Symfony is the result of the work of many people who made the code better - Dustin Whittle (dustinwhittle) - jeff - John Kary (johnkary) + - Tien Vo (tienvx) - Justin Hileman (bobthecow) - Blanchon Vincent (blanchonvincent) - Michele Orselli (orso) @@ -269,7 +271,6 @@ Symfony is the result of the work of many people who made the code better - Tristan Darricau (nicofuma) - Victor Bocharsky (bocharsky_bw) - Tomas Norkūnas (norkunas) - - Wouter J - Smaine Milianni (ismail1432) - Marcel Beerta (mazen) - Christopher Hertel (chertel) @@ -295,7 +296,6 @@ Symfony is the result of the work of many people who made the code better - Marcos Sánchez - Elnur Abdurrakhimov (elnur) - Manuel Reinhard (sprain) - - Tien Vo (tienvx) - Danny Berger (dpb587) - Antonio J. García Lagar (ajgarlag) - Adam Prager (padam87) @@ -309,6 +309,7 @@ Symfony is the result of the work of many people who made the code better - Arjen Brouwer (arjenjb) - Katsuhiro OGAWA - Patrick McDougle (patrick-mcdougle) + - Marc Weistroff (futurecat) - Alif Rachmawadi - Anton Chernikov (anton_ch1989) - Kristen Gilden (kgilden) @@ -318,6 +319,7 @@ Symfony is the result of the work of many people who made the code better - Jakub Kucharovic (jkucharovic) - Loick Piera (pyrech) - Uwe Jäger (uwej711) + - Martin Hujer (martinhujer) - Eugene Leonovich (rybakit) - Joseph Rouff (rouffj) - Félix Labrecque (woodspire) @@ -354,9 +356,9 @@ Symfony is the result of the work of many people who made the code better - Wouter Van Hecke - Peter Kruithof (pkruithof) - Michael Holm (hollo) + - Antonio Pauletich (x-coder264) - Arjen van der Meijden - Mathieu Lechat - - Marc Weistroff (futurecat) - Damien Alexandre (damienalexandre) - Simon Mönch (sm) - Christian Schmidt @@ -388,6 +390,7 @@ Symfony is the result of the work of many people who made the code better - Aurelijus Valeiša (aurelijus) - Jan Decavele (jandc) - Gustavo Piltcher + - Jesse Rushlow (geeshoe) - Stepan Tanasiychuk (stfalcon) - Tiago Ribeiro (fixe) - Hidde Boomsma (hboomsma) @@ -416,7 +419,9 @@ Symfony is the result of the work of many people who made the code better - Nicolas LEFEVRE (nicoweb) - alquerci - Oleg Andreyev + - Langlet Vincent (deviling) - Mateusz Sip (mateusz_sip) + - Alessandro Lai (jean85) - Francesco Levorato - Vitaliy Zakharov (zakharovvi) - Tobias Sjösten (tobiassjosten) @@ -427,14 +432,15 @@ Symfony is the result of the work of many people who made the code better - Tomasz Kowalczyk (thunderer) - Artur Eshenbrener - Timo Bakx (timobakx) - - Antonio Pauletich (x-coder264) - Thomas Perez (scullwm) - Felix Labrecque - Yaroslav Kiliba - Terje Bråten - Robbert Klarenbeek (robbertkl) + - soyuka - Eric Masoero (eric-masoero) - Denis Brumann (dbrumann) + - Gocha Ossinkine (ossinkine) - JhonnyL - Haralan Dobrev (hkdobrev) - hossein zolfi (ocean) @@ -449,10 +455,10 @@ Symfony is the result of the work of many people who made the code better - Philipp Kräutli (pkraeutli) - Grzegorz (Greg) Zdanowski (kiler129) - Iker Ibarguren (ikerib) + - Dimitri Gritsajuk (ottaviano) - Kirill chEbba Chebunin (chebba) - Rokas Mikalkėnas (rokasm) - Greg Thornton (xdissent) - - Martin Hujer (martinhujer) - Alex Bowers - Philipp Cordes - Costin Bereveanu (schniper) @@ -473,6 +479,7 @@ Symfony is the result of the work of many people who made the code better - Endre Fejes - Tobias Naumann (tna) - Daniel Beyer + - Timothée Barray (tyx) - Shein Alexey - Romain Gautier (mykiwi) - Joe Lencioni @@ -489,7 +496,6 @@ Symfony is the result of the work of many people who made the code better - Xavier HAUSHERR - Albert Jessurum (ajessu) - Laszlo Korte - - Jesse Rushlow (geeshoe) - Miha Vrhovnik - Alessandro Desantis - hubert lecorche (hlecorche) @@ -501,6 +507,7 @@ Symfony is the result of the work of many people who made the code better - Christophe L. (christophelau) - Sander Toonen (xatoo) - Anthon Pang (robocoder) + - Marko Kaznovac (kaznovac) - Sébastien Santoro (dereckson) - Brian King - Michel Salib (michelsalib) @@ -524,7 +531,6 @@ Symfony is the result of the work of many people who made the code better - Mihai Stancu - Ivan Nikolaev (destillat) - Gildas Quéméner (gquemener) - - Alessandro Lai (jean85) - Desjardins Jérôme (jewome62) - Arturs Vonda - Josip Kruslin @@ -561,7 +567,6 @@ Symfony is the result of the work of many people who made the code better - Marek Pietrzak - Luc Vieillescazes (iamluc) - franek (franek) - - soyuka - Raulnet - Christian Wahler - Giso Stallenberg (gisostallenberg) @@ -571,7 +576,6 @@ Symfony is the result of the work of many people who made the code better - HypeMC - Soufian EZ-ZANTAR (soezz) - Zander Baldwin - - Gocha Ossinkine (ossinkine) - Adam Harvey - Anton Bakai - Martin Auswöger @@ -603,9 +607,9 @@ Symfony is the result of the work of many people who made the code better - Philipp Rieber (bicpi) - Manuel de Ruiter (manuel) - Nathanael Noblet (gnat) - - Dimitri Gritsajuk (ottaviano) - nikos.sotiropoulos - Eduardo Oliveira (entering) + - Oleksii Zhurbytskyi - Ilya Antipenko (aivus) - Ricardo Oliveira (ricardolotr) - Roy Van Ginneken (rvanginneken) @@ -645,9 +649,9 @@ Symfony is the result of the work of many people who made the code better - Gábor Fási - DUPUCH (bdupuch) - Nate (frickenate) - - Timothée Barray (tyx) - jhonnyL - Jacek Jędrzejewski (jacek.jedrzejewski) + - Stefan Kruppa - sasezaki - Bozhidar Hristov (warxcell) - Dawid Pakuła (zulusx) @@ -684,7 +688,6 @@ Symfony is the result of the work of many people who made the code better - Pavel Campr (pcampr) - Andrii Dembitskyi - Johnny Robeson (johnny) - - Marko Kaznovac (kaznovac) - Guilliam Xavier - Disquedur - Michiel Boeckaert (milio) @@ -711,6 +714,7 @@ Symfony is the result of the work of many people who made the code better - vitaliytv - Philippe Segatori - Dalibor Karlović (dkarlovi) + - Andrey Sevastianov - Sebastian Blum - Alexis Lefebvre - aubx @@ -728,6 +732,7 @@ Symfony is the result of the work of many people who made the code better - Sinan Eldem - BoShurik - Alexandre Dupuy (satchette) + - Michel Hunziker - Malte Blättermann - Simeon Kolev (simeon_kolev9) - Joost van Driel (j92) @@ -741,7 +746,6 @@ Symfony is the result of the work of many people who made the code better - Stefan Gehrig (sgehrig) - Hany el-Kerdany - Wang Jingyu - - Langlet Vincent (deviling) - Åsmund Garfors - Gunnstein Lye (glye) - Maxime Douailin @@ -847,8 +851,10 @@ Symfony is the result of the work of many people who made the code better - Michael Lutz - Koen Reiniers (koenre) - jochenvdv + - Michel Roca (mroca) - Reedy - Arturas Smorgun (asarturas) + - Michał (bambucha15) - Alexander Volochnev (exelenz) - Michael Piecko - Toni Peric (tperic) @@ -879,12 +885,12 @@ Symfony is the result of the work of many people who made the code better - Axel Guckelsberger (guite) - Jose Gonzalez - Jonathan (jls-esokia) - - Oleksii Zhurbytskyi - Dariusz Ruminski - Joshua Nye - Claudio Zizza - Dave Marshall (davedevelopment) - Jakub Kulhan (jakubkulhan) + - Nathan Dench (ndenc2) - Shaharia Azam - avorobiev - stoccc @@ -948,9 +954,11 @@ Symfony is the result of the work of many people who made the code better - GDIBass - Antoine Lamirault - Adrien Lucas (adrienlucas) + - Jeroen Thora (bolle) - Zhuravlev Alexander (scif) - Stefano Degenkamp (steef) - James Michael DuPont + - Carlos Buenosvinos (carlosbuenosvinos) - Tom Klingenberg - Christopher Hall (mythmakr) - Patrick Dawkins (pjcdawkins) @@ -982,6 +990,7 @@ Symfony is the result of the work of many people who made the code better - Julie Hourcade (juliehde) - Dmitry Parnas (parnas) - Paul LE CORRE + - Loïc Beurlet - Daniel Gorgan - Tony Malzhacker - Mathieu MARCHOIS @@ -1006,7 +1015,6 @@ Symfony is the result of the work of many people who made the code better - Jelle Kapitein - Benoît Bourgeois - mantulo - - Stefan Kruppa - corphi - JoppeDC - grizlik @@ -1049,6 +1057,7 @@ Symfony is the result of the work of many people who made the code better - Arno Geurts - Adán Lobato (adanlobato) - Ian Jenkins (jenkoian) + - Hugo Alliaume (kocal) - Marcos Gómez Vilches (markitosgv) - Matthew Davis (mdavis1982) - Markus S. (staabm) @@ -1062,6 +1071,7 @@ Symfony is the result of the work of many people who made the code better - Daniel Cestari - Matt Janssen - David Lima + - Dmitriy Derepko - Stéphane Delprat - Brian Freytag (brianfreytag) - Samuele Lilli (doncallisto) @@ -1148,6 +1158,7 @@ Symfony is the result of the work of many people who made the code better - Anton Babenko (antonbabenko) - Irmantas Šiupšinskas (irmantas) - Danilo Silva + - Giuseppe Campanelli - Arnaud PETITPAS (apetitpa) - Ken Stanley - Zachary Tong (polyfractal) @@ -1164,6 +1175,7 @@ Symfony is the result of the work of many people who made the code better - Tero Alén (tero) - Stanislav Kocanda - DerManoMann + - MatTheCat - Guillaume Royer - Artem (digi) - boite @@ -1184,7 +1196,6 @@ Symfony is the result of the work of many people who made the code better - Danijel Obradović - Pablo Borowicz - Mathieu Santostefano - - Michel Hunziker - Arjan Keeman - Máximo Cuadros (mcuadros) - Lukas Mencl @@ -1277,7 +1288,6 @@ Symfony is the result of the work of many people who made the code better - Jakub Sacha - Olaf Klischat - orlovv - - Andrey Sevastianov - Claude Dioudonnat - Jonathan Hedstrom - Peter Smeets (darkspartan) @@ -1297,12 +1307,10 @@ Symfony is the result of the work of many people who made the code better - James Hudson - Stephen Clouse - e-ivanov - - Michał (bambucha15) - Benjamin Dos Santos - Einenlum - Jérémy Jarrié (gagnar) - Jochen Bayer (jocl) - - Michel Roca (mroca) - Patrick Carlo-Hickman - Bruno MATEU - Jeremy Bush @@ -1416,6 +1424,7 @@ Symfony is the result of the work of many people who made the code better - Florian Hermann (fhermann) - Mo Di (modi) - Pablo Schläpfer + - Christian Rishøj - Patrick Berenschot - SuRiKmAn - Gert de Pagter @@ -1423,6 +1432,7 @@ Symfony is the result of the work of many people who made the code better - David Négrier (moufmouf) - Quique Porta (quiqueporta) - mohammadreza honarkhah + - Artem Oliynyk (artemoliynyk) - Andrea Quintino (dirk39) - Tomasz Szymczyk (karion) - Alex Vasilchenko @@ -1453,6 +1463,7 @@ Symfony is the result of the work of many people who made the code better - Andrei Igna - Adam Prickett - azine + - Anton Kroshilin - Dawid Sajdak - Ludek Stepan - Aaron Stephens (astephens) @@ -1605,6 +1616,7 @@ Symfony is the result of the work of many people who made the code better - Robert Queck - Peter Bouwdewijn - mlively + - Wouter Diesveld - Amine Matmati - caalholm - Nouhail AL FIDI (alfidi) @@ -1612,6 +1624,7 @@ Symfony is the result of the work of many people who made the code better - Felipy Tavares Amorim (felipyamorim) - Guillaume Loulier (guikingone) - Klaus Silveira (klaussilveira) + - Pedro Casado (pdr33n) - Pierre Grimaud (pgrimaud) - Thomas Chmielowiec (chmielot) - Jānis Lukss @@ -1724,6 +1737,7 @@ Symfony is the result of the work of many people who made the code better - Stanislav Gamayunov (happyproff) - Iwan van Staveren (istaveren) - Alexander McCullagh (mccullagh) + - Paul L McNeely (mcneely) - Povilas S. (povilas) - Laurent Negre (raulnet) - Evrard Boulou @@ -1809,6 +1823,7 @@ Symfony is the result of the work of many people who made the code better - Mathieu Dewet (mdewet) - Nicolas Tallefourtané (nicolab) - Botond Dani (picur) + - Rémi Faivre (rfv) - Romaric Drigon (romaricdrigon) - Thierry Marianne (thierrymarianne) - Nick Stemerdink @@ -1816,6 +1831,7 @@ Symfony is the result of the work of many people who made the code better - jjanvier - Julius Beckmann - loru88 + - Thibaut Salanon - Romain Dorgueil - Christopher Parotat - Dennis Haarbrink @@ -1860,6 +1876,7 @@ Symfony is the result of the work of many people who made the code better - Chris - Farid Jalilov - Florent Olivaud + - Eric Hertwig - JakeFr - Simon Sargeant - efeen @@ -1920,6 +1937,7 @@ Symfony is the result of the work of many people who made the code better - Michael van Tricht - ReScO - Tim Strehle + - Sébastien COURJEAN - Sam Ward - Michael Voříšek - Walther Lalk @@ -1972,6 +1990,7 @@ Symfony is the result of the work of many people who made the code better - Martijn Boers (plebian) - Pedro Magalhães (pmmaga) - Rares Vlaseanu (raresvla) + - Sergii Dolgushev (serhey) - tante kinast (tante) - Stephen Lewis (tehanomalousone) - Ahmed Hannachi (tiecoders) @@ -1981,6 +2000,7 @@ Symfony is the result of the work of many people who made the code better - Darryl Hein (xmmedia) - Sadicov Vladimir (xtech) - Kevin EMO (zarcox) + - sdkawata - Andrzej - Alexander Zogheb - Rémi Blaise @@ -2016,6 +2036,7 @@ Symfony is the result of the work of many people who made the code better - Ashura - Götz Gottwald - Veres Lajos + - Ernest Hymel - Nick Chiu - grifx - Robert Campbell @@ -2045,6 +2066,7 @@ Symfony is the result of the work of many people who made the code better - Rowan Manning - Per Modin - David Windell + - Christian Scheb - Gabriel Birke - skafandri - Derek Bonner @@ -2088,7 +2110,6 @@ Symfony is the result of the work of many people who made the code better - baron (bastien) - Rosio (ben-rosio) - Simon Paarlberg (blamh) - - Jeroen Thora (bolle) - Brieuc THOMAS (brieucthomas) - Masao Maeda (brtriver) - Damien Harper (damien.harper) @@ -2148,6 +2169,7 @@ Symfony is the result of the work of many people who made the code better - Michael Orlitzky - Nicolas A. Bérard-Nault - Quentin Favrie + - Matthias Derer - Saem Ghani - Stefan Oderbolz - Curtis @@ -2173,7 +2195,6 @@ Symfony is the result of the work of many people who made the code better - Daniele Cesarini (ijanki) - Ismail Asci (ismailasci) - Jeffrey Moelands (jeffreymoelands) - - Hugo Alliaume (kocal) - Simon CONSTANS (kosssi) - Dennis Langen (nijusan) - Paulius Jarmalavičius (pjarmalavicius) @@ -2218,6 +2239,7 @@ Symfony is the result of the work of many people who made the code better - Antonio Angelino - Jens Schulze - Matt Fields + - Olatunbosun Egberinde - Niklas Keller - Andras Debreczeni - Vladimir Sazhin @@ -2352,11 +2374,11 @@ Symfony is the result of the work of many people who made the code better - Karolis Daužickas - Nicolas - Sergio Santoro - - Dmitriy Derepko - tirnanog06 - phc - Дмитрий Пацура - Signor Pedro + - Matthias Larisch - ilyes kooli - Ilia Lazarev - Michaël VEROUX @@ -2388,8 +2410,10 @@ Symfony is the result of the work of many people who made the code better - Christian Gripp (core23) - Christoph Schaefer (cvschaefer) - Damon Jones (damon__jones) + - Cătălin Dan (dancatalin) - Łukasz Giza (destroyer) - Daniel Londero (dlondero) + - Dmitrii Tarasov (dtarasov) - Sebastian Landwehr (dword123) - Adel ELHAIBA (eadel) - Damián Nohales (eagleoneraptor) From 8b909cef4b6e8efef4e4fd8573cd7d61ce46391d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 31 May 2020 07:14:17 +0200 Subject: [PATCH 81/81] updated VERSION for 3.4.41 --- src/Symfony/Component/HttpKernel/Kernel.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index dc9cc048eb53..00382a95c1e9 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,11 +67,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.40'; - const VERSION_ID = 30440; + const VERSION = '3.4.41'; + const VERSION_ID = 30441; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; - const RELEASE_VERSION = 40; + const RELEASE_VERSION = 41; const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020';