From fc6cf3d3c6903597ad4576e0123cd1f1a8155f59 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Mon, 20 Apr 2020 12:25:20 +0200 Subject: [PATCH 001/145] [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 ee7fc5544ef6bf9f410f91ea0aeb45546a0db740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Mon, 27 Apr 2020 05:08:14 +0200 Subject: [PATCH 002/145] [Console] Default hidden question to 1 attempt for non-tty session --- .../Console/Helper/QuestionHelper.php | 22 ++++++++++++++++++- .../Tests/Helper/QuestionHelperTest.php | 17 ++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php index b383252c5a3b..4e0afeae78a0 100644 --- a/src/Symfony/Component/Console/Helper/QuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php @@ -437,7 +437,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream, bool $ if (false !== $shell = $this->getShell()) { $readCmd = 'csh' === $shell ? 'set mypassword = $<' : 'read -r mypassword'; - $command = sprintf("/usr/bin/env %s -c 'stty -echo; %s; stty echo; echo \$mypassword'", $shell, $readCmd); + $command = sprintf("/usr/bin/env %s -c 'stty -echo; %s; stty echo; echo \$mypassword' 2> /dev/null", $shell, $readCmd); $sCommand = shell_exec($command); $value = $trimmable ? rtrim($sCommand) : $sCommand; $output->writeln(''); @@ -461,6 +461,11 @@ private function validateAttempts(callable $interviewer, OutputInterface $output { $error = null; $attempts = $question->getMaxAttempts(); + + if (null === $attempts && !$this->isTty()) { + $attempts = 1; + } + while (null === $attempts || $attempts--) { if (null !== $error) { $this->writeError($output, $error); @@ -503,4 +508,19 @@ private function getShell() return self::$shell; } + + private function isTty(): bool + { + $inputStream = !$this->inputStream && \defined('STDIN') ? STDIN : $this->inputStream; + + if (\function_exists('stream_isatty')) { + return stream_isatty($inputStream); + } + + if (!\function_exists('posix_isatty')) { + return posix_isatty($inputStream); + } + + return true; + } } diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index 139aa7290d8d..f4689bc8182d 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -726,6 +726,23 @@ public function testAskThrowsExceptionOnMissingInputWithValidator() $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream('')), $this->createOutputInterface(), $question); } + public function testAskThrowsExceptionFromValidatorEarlyWhenTtyIsMissing() + { + $this->expectException('Exception'); + $this->expectExceptionMessage('Bar, not Foo'); + + $output = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')->getMock(); + $output->expects($this->once())->method('writeln'); + + (new QuestionHelper())->ask( + $this->createStreamableInputInterfaceMock($this->getInputStream('Foo'), true), + $output, + (new Question('Q?'))->setHidden(true)->setValidator(function ($input) { + throw new \Exception("Bar, not $input"); + }) + ); + } + public function testEmptyChoices() { $this->expectException('LogicException'); From 4774946fbd6a6d5890b9c2dbc933865bdd532045 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Mon, 27 Apr 2020 08:55:12 +0200 Subject: [PATCH 003/145] [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 e5c20293fa75495dd210d8b5268abc4ab612428c Mon Sep 17 00:00:00 2001 From: soyuka Date: Mon, 27 Apr 2020 15:09:19 +0200 Subject: [PATCH 004/145] Fix serializer do not transform empty \Traversable to Array --- .../Component/Serializer/Serializer.php | 4 ++++ .../Serializer/Tests/SerializerTest.php | 21 +++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/Symfony/Component/Serializer/Serializer.php b/src/Symfony/Component/Serializer/Serializer.php index 3f2461cf96a0..8e92abe29cdc 100644 --- a/src/Symfony/Component/Serializer/Serializer.php +++ b/src/Symfony/Component/Serializer/Serializer.php @@ -157,6 +157,10 @@ public function normalize($data, $format = null, array $context = []) } if (\is_array($data) || $data instanceof \Traversable) { + if ($data instanceof \Countable && 0 === $data->count()) { + return $data; + } + $normalized = []; foreach ($data as $key => $val) { $normalized[$key] = $this->normalize($val, $format, $context); diff --git a/src/Symfony/Component/Serializer/Tests/SerializerTest.php b/src/Symfony/Component/Serializer/Tests/SerializerTest.php index 9864c4e94036..fe8f8de92969 100644 --- a/src/Symfony/Component/Serializer/Tests/SerializerTest.php +++ b/src/Symfony/Component/Serializer/Tests/SerializerTest.php @@ -25,6 +25,7 @@ use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory; use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface; use Symfony\Component\Serializer\Mapping\Loader\AnnotationLoader; +use Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer; use Symfony\Component\Serializer\Normalizer\ArrayDenormalizer; use Symfony\Component\Serializer\Normalizer\CustomNormalizer; use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface; @@ -490,6 +491,26 @@ public function testNotNormalizableValueExceptionMessageForAResource() (new Serializer())->normalize(tmpfile()); } + public function testNormalizePreserveEmptyArrayObject() + { + $serializer = new Serializer( + [ + new PropertyNormalizer(), + new ObjectNormalizer(), + new ArrayDenormalizer(), + ], + [ + 'json' => new JsonEncoder(), + ] + ); + + $object = []; + $object['foo'] = new \ArrayObject(); + $object['bar'] = new \ArrayObject(['notempty']); + $object['baz'] = new \ArrayObject(['nested' => new \ArrayObject()]); + $this->assertEquals('{"foo":{},"bar":["notempty"],"baz":{"nested":{}}}', $serializer->serialize($object, 'json', [AbstractObjectNormalizer::PRESERVE_EMPTY_OBJECTS => true])); + } + private function serializerWithClassDiscriminator() { $classMetadataFactory = new ClassMetadataFactory(new AnnotationLoader(new AnnotationReader())); From 3d6e942da557a44bf9bbc17eef8efc31d1e2141b Mon Sep 17 00:00:00 2001 From: Serhey Dolgushev Date: Tue, 28 Apr 2020 10:52:32 +0100 Subject: [PATCH 005/145] [Cache] Fixed not supported Redis eviction policies --- .../Component/Cache/Adapter/RedisTagAwareAdapter.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php index f936afd589e3..8bf9d37db794 100644 --- a/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php @@ -14,8 +14,8 @@ use Predis\Connection\Aggregate\ClusterInterface; use Predis\Connection\Aggregate\PredisCluster; use Predis\Response\Status; -use Symfony\Component\Cache\CacheItem; use Symfony\Component\Cache\Exception\InvalidArgumentException; +use Symfony\Component\Cache\Exception\LogicException; use Symfony\Component\Cache\Marshaller\DeflateMarshaller; use Symfony\Component\Cache\Marshaller\MarshallerInterface; use Symfony\Component\Cache\Marshaller\TagAwareMarshaller; @@ -95,9 +95,7 @@ protected function doSave(array $values, ?int $lifetime, array $addTagData = [], { $eviction = $this->getRedisEvictionPolicy(); if ('noeviction' !== $eviction && 0 !== strpos($eviction, 'volatile-')) { - CacheItem::log($this->logger, sprintf('Redis maxmemory-policy setting "%s" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies', $eviction)); - - return false; + throw new LogicException(sprintf('Redis maxmemory-policy setting "%s" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.', $eviction)); } // serialize values From 88d836643a4598a7ca6a43d845ccb12ced11c174 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 28 Apr 2020 19:42:54 +0200 Subject: [PATCH 006/145] provide a useful message when extension types don't match --- .../DependencyInjection/DependencyInjectionExtension.php | 4 ++-- .../DependencyInjection/DependencyInjectionExtensionTest.php | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/Extension/DependencyInjection/DependencyInjectionExtension.php b/src/Symfony/Component/Form/Extension/DependencyInjection/DependencyInjectionExtension.php index e4314648df8d..7ed2f3217183 100644 --- a/src/Symfony/Component/Form/Extension/DependencyInjection/DependencyInjectionExtension.php +++ b/src/Symfony/Component/Form/Extension/DependencyInjection/DependencyInjectionExtension.php @@ -53,7 +53,7 @@ public function getTypeExtensions($name) $extensions = []; if (isset($this->typeExtensionServices[$name])) { - foreach ($this->typeExtensionServices[$name] as $serviceId => $extension) { + foreach ($this->typeExtensionServices[$name] as $extension) { $extensions[] = $extension; if (method_exists($extension, 'getExtendedTypes')) { @@ -68,7 +68,7 @@ public function getTypeExtensions($name) // validate the result of getExtendedTypes()/getExtendedType() to ensure it is consistent with the service definition if (!\in_array($name, $extendedTypes, true)) { - throw new InvalidArgumentException(sprintf('The extended type specified for the service "%s" does not match the actual extended type. Expected "%s", given "%s".', $serviceId, $name, implode(', ', $extendedTypes))); + throw new InvalidArgumentException(sprintf('The extended type "%s" specified for the type extension class "%s" does not match any of the actual extended types (["%s"]).', $name, \get_class($extension), implode('", "', $extendedTypes))); } } } diff --git a/src/Symfony/Component/Form/Tests/Extension/DependencyInjection/DependencyInjectionExtensionTest.php b/src/Symfony/Component/Form/Tests/Extension/DependencyInjection/DependencyInjectionExtensionTest.php index 923ad8a38f61..26db2d8cea28 100644 --- a/src/Symfony/Component/Form/Tests/Extension/DependencyInjection/DependencyInjectionExtensionTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/DependencyInjection/DependencyInjectionExtensionTest.php @@ -44,6 +44,8 @@ public function testGetTypeExtensions() public function testThrowExceptionForInvalidExtendedType() { $this->expectException('Symfony\Component\Form\Exception\InvalidArgumentException'); + $this->expectExceptionMessage(sprintf('The extended type "unmatched" specified for the type extension class "%s" does not match any of the actual extended types (["test"]).', TestTypeExtension::class)); + $extensions = [ 'unmatched' => new \ArrayIterator([new TestTypeExtension()]), ]; From d408c5584547ec0f014b8556e4e8d4b1c11385e2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Apr 2020 20:47:32 +0200 Subject: [PATCH 007/145] updated CHANGELOG for 4.4.8 --- CHANGELOG-4.4.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/CHANGELOG-4.4.md b/CHANGELOG-4.4.md index 68eceda5b974..be58f04b9550 100644 --- a/CHANGELOG-4.4.md +++ b/CHANGELOG-4.4.md @@ -7,6 +7,56 @@ in 4.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/v4.4.0...v4.4.1 +* 4.4.8 (2020-04-28) + + * bug #36536 [Cache] Allow invalidateTags calls to be traced by data collector (l-vo) + * bug #36566 [PhpUnitBridge] Use COMPOSER_BINARY env var if available (fancyweb) + * bug #36560 [YAML] escape DEL(\x7f) (sdkawata) + * bug #36539 [PhpUnitBridge] fix compatibility with phpunit 9 (garak) + * bug #36555 [Cache] skip APCu in chains when the backend is disabled (nicolas-grekas) + * bug #36523 [Form] apply automatically step=1 for datetime-local input (ottaviano) + * bug #36519 [FrameworkBundle] debug:autowiring: Fix wrong display when using class_alias (weaverryan) + * bug #36454 [DependencyInjection][ServiceSubscriber] Support late aliases (fancyweb) + * bug #36498 [Security/Core] fix escape for username in LdapBindAuthenticationProvider.php (stoccc) + * bug #36506 [FrameworkBundle] Fix session.attribute_bag service definition (fancyweb) + * bug #36500 [Routing][PrefixTrait] Add the _locale requirement (fancyweb) + * bug #36457 [Cache] CacheItem with tag is never a hit after expired (alexander-schranz, nicolas-grekas) + * bug #36490 [HttpFoundation] workaround PHP bug in the session module (nicolas-grekas) + * bug #36483 [SecurityBundle] fix accepting env vars in remember-me configurations (zek) + * bug #36343 [Form] Fixed handling groups sequence validation (HeahDude) + * bug #36460 [Cache] Avoid memory leak in TraceableAdapter::reset() (lyrixx) + * bug #36467 Mailer from sender fixes (fabpot) + * bug #36408 [PhpUnitBridge] add PolyfillTestCaseTrait::expectExceptionMessageMatches to provide FC with recent phpunit versions (soyuka) + * bug #36447 Remove return type for Twig function workflow_metadata() (gisostallenberg) + * bug #36449 [Messenger] Make sure redis transports are initialized correctly (Seldaek) + * bug #36411 [Form] RepeatedType should always have inner types mapped (biozshock) + * bug #36441 [DI] fix loading defaults when using the PHP-DSL (nicolas-grekas) + * bug #36434 [HttpKernel] silence E_NOTICE triggered since PHP 7.4 (xabbuh) + * bug #36365 [Validator] Fixed default group for nested composite constraints (HeahDude) + * bug #36422 [HttpClient] fix HTTP/2 support on non-SSL connections - CurlHttpClient only (nicolas-grekas) + * bug #36417 Force ping after transport exception (oesteve) + * bug #35591 [Validator] do not merge constraints within interfaces (greedyivan) + * bug #36377 [HttpClient] Fix scoped client without query option configuration (X-Coder264) + * bug #36387 [DI] fix detecting short service syntax in yaml (nicolas-grekas) + * bug #36392 [DI] add missing property declarations in InlineServiceConfigurator (nicolas-grekas) + * bug #36400 Allowing empty secrets to be set (weaverryan) + * bug #36380 [Process] Fixed input/output error on PHP 7.4 (mbardelmeijer) + * bug #36376 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx) + * bug #36375 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx) + * bug #36305 [PropertyInfo][ReflectionExtractor] Check the array mutator prefixes last when the property is singular (fancyweb) + * bug #35656 [HttpFoundation] Fixed session migration with custom cookie lifetime (Guite) + * bug #36342 [HttpKernel][FrameworkBundle] fix compat with Debug component (nicolas-grekas) + * bug #36315 [WebProfilerBundle] Support for Content Security Policy style-src-elem and script-src-elem in WebProfiler (ampaze) + * bug #36286 [Validator] Allow URL-encoded special characters in basic auth part of URLs (cweiske) + * bug #36335 [Security] Track session usage whenever a new token is set (wouterj) + * bug #36332 [Serializer] Fix unitialized properties (from PHP 7.4.2) when serializing context for the cache key (alanpoulain) + * bug #36337 [MonologBridge] Fix $level type (fancyweb) + * bug #36223 [Security][Http][SwitchUserListener] Ignore all non existent username protection errors (fancyweb) + * bug #36239 [HttpKernel][LoggerDataCollector] Prevent keys collisions in the sanitized logs processing (fancyweb) + * bug #36245 [Validator] Fixed calling getters before resolving groups (HeahDude) + * bug #36265 Fix the reporting of deprecations in twig:lint (stof) + * bug #36283 [Security] forward multiple attributes voting flag (xabbuh) + * 4.4.7 (2020-03-30) * security #cve-2020-5255 [HttpFoundation] Do not set the default Content-Type based on the Accept header (yceruto) From f7b9d93cb2321943663af210bf04efc7d5969c1e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Apr 2020 20:47:42 +0200 Subject: [PATCH 008/145] updated VERSION for 4.4.8 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index c583aa66d765..9cb3a034d696 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '4.4.8-DEV'; + const VERSION = '4.4.8'; const VERSION_ID = 40408; const MAJOR_VERSION = 4; const MINOR_VERSION = 4; const RELEASE_VERSION = 8; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2022'; const END_OF_LIFE = '11/2023'; From cd66cd57a05fac7deaacf45c3b6ae5282e04d344 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Apr 2020 20:52:27 +0200 Subject: [PATCH 009/145] bumped Symfony version to 4.4.9 --- src/Symfony/Component/HttpKernel/Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 9cb3a034d696..8349de676a97 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '4.4.8'; - const VERSION_ID = 40408; + const VERSION = '4.4.9-DEV'; + const VERSION_ID = 40409; const MAJOR_VERSION = 4; const MINOR_VERSION = 4; - const RELEASE_VERSION = 8; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 9; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2022'; const END_OF_LIFE = '11/2023'; From 4fc58952668b2644627c622c68450d7bc2a02d3a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Apr 2020 20:57:42 +0200 Subject: [PATCH 010/145] bumped Symfony version to 5.0.9 --- src/Symfony/Component/HttpKernel/Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index d4a6834b5860..1c65649c6567 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -68,12 +68,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '5.0.8'; - const VERSION_ID = 50008; + const VERSION = '5.0.9-DEV'; + const VERSION_ID = 50009; const MAJOR_VERSION = 5; const MINOR_VERSION = 0; - const RELEASE_VERSION = 8; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 9; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '07/2020'; const END_OF_LIFE = '07/2020'; From 856ba8c98fd6f04f451bff2af6255322c1b8e139 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 29 Apr 2020 17:41:38 +0200 Subject: [PATCH 011/145] [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 567cee5f02d16ec4af270c71bfd2efc661fee424 Mon Sep 17 00:00:00 2001 From: Artem Oliynyk Date: Mon, 20 Apr 2020 18:22:39 +0300 Subject: [PATCH 012/145] [Translation] Fix for translation:update command updating ICU messages --- .../Command/TranslationUpdateCommand.php | 9 ++++++- .../Translation/MessageCatalogue.php | 5 ++++ .../Tests/MessageCatalogueTest.php | 24 +++++++++++++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php index ed871a5410b1..77bd9de7dd31 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php @@ -356,7 +356,14 @@ private function filterCatalogue(MessageCatalogue $catalogue, string $domain): M { $filteredCatalogue = new MessageCatalogue($catalogue->getLocale()); - if ($messages = $catalogue->all($domain)) { + // extract intl-icu messages only + $intlDomain = $domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX; + if ($intlMessages = $catalogue->all($intlDomain)) { + $filteredCatalogue->add($intlMessages, $intlDomain); + } + + // extract all messages and subtract intl-icu messages + if ($messages = array_diff($catalogue->all($domain), $intlMessages)) { $filteredCatalogue->add($messages, $domain); } foreach ($catalogue->getResources() as $resource) { diff --git a/src/Symfony/Component/Translation/MessageCatalogue.php b/src/Symfony/Component/Translation/MessageCatalogue.php index 0aee3f849e14..75ec5b46c2d6 100644 --- a/src/Symfony/Component/Translation/MessageCatalogue.php +++ b/src/Symfony/Component/Translation/MessageCatalogue.php @@ -72,6 +72,11 @@ public function getDomains() public function all($domain = null) { if (null !== $domain) { + // skip messages merge if intl-icu requested explicitly + if (false !== strpos($domain, self::INTL_DOMAIN_SUFFIX)) { + return $this->messages[$domain] ?? []; + } + return ($this->messages[$domain.self::INTL_DOMAIN_SUFFIX] ?? []) + ($this->messages[$domain] ?? []); } diff --git a/src/Symfony/Component/Translation/Tests/MessageCatalogueTest.php b/src/Symfony/Component/Translation/Tests/MessageCatalogueTest.php index 5c4c7687ec08..b4e3149c7cad 100644 --- a/src/Symfony/Component/Translation/Tests/MessageCatalogueTest.php +++ b/src/Symfony/Component/Translation/Tests/MessageCatalogueTest.php @@ -67,6 +67,30 @@ public function testAll() $this->assertEquals($messages, $catalogue->all()); } + public function testAllIntICU() + { + $messages = [ + 'domain1+intl-icu' => ['foo' => 'bar'], + 'domain2+intl-icu' => ['bar' => 'foo'], + 'domain2' => ['biz' => 'biz'], + ]; + $catalogue = new MessageCatalogue('en', $messages); + + // separated domains + $this->assertSame(['foo' => 'bar'], $catalogue->all('domain1+intl-icu')); + $this->assertSame(['bar' => 'foo'], $catalogue->all('domain2+intl-icu')); + + // merged, intl-icu ignored + $this->assertSame(['bar' => 'foo', 'biz' => 'biz'], $catalogue->all('domain2')); + + // intl-icu ignored + $messagesExpected = [ + 'domain1' => ['foo' => 'bar'], + 'domain2' => ['bar' => 'foo', 'biz' => 'biz'], + ]; + $this->assertSame($messagesExpected, $catalogue->all()); + } + public function testHas() { $catalogue = new MessageCatalogue('en', ['domain1' => ['foo' => 'foo'], 'domain2+intl-icu' => ['bar' => 'bar']]); From c5e5b2d019d949bfe533d21b4991e60891a4c62a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 1 May 2020 18:55:10 +0200 Subject: [PATCH 013/145] [Debug][ErrorHandler] cleanup phpunit.xml.dist files --- src/Symfony/Component/Debug/phpunit.xml.dist | 5 +---- src/Symfony/Component/ErrorHandler/phpunit.xml.dist | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Component/Debug/phpunit.xml.dist b/src/Symfony/Component/Debug/phpunit.xml.dist index a51bbff93586..25a06a649a15 100644 --- a/src/Symfony/Component/Debug/phpunit.xml.dist +++ b/src/Symfony/Component/Debug/phpunit.xml.dist @@ -14,10 +14,7 @@ - ./Tests/ - - - ./Resources/ext/tests/ + ./Tests/ diff --git a/src/Symfony/Component/ErrorHandler/phpunit.xml.dist b/src/Symfony/Component/ErrorHandler/phpunit.xml.dist index 6c42fd1815b2..c6658bc730e8 100644 --- a/src/Symfony/Component/ErrorHandler/phpunit.xml.dist +++ b/src/Symfony/Component/ErrorHandler/phpunit.xml.dist @@ -14,10 +14,7 @@ - ./Tests/ - - - ./Resources/ext/tests/ + ./Tests/ From 67b744929f1bec03cfd037e2c65f99edace109cd Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 1 May 2020 17:20:42 +0200 Subject: [PATCH 014/145] 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 015/145] [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 016/145] 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 017/145] 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 018/145] [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 fb42f98315cf418263905406534b07603e2ce241 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Thu, 30 Apr 2020 15:38:50 +0200 Subject: [PATCH 019/145] [Inflector] Fix testPluralize() arguments names --- .../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 1d80d1d636da..4f4cd45c94d2 100644 --- a/src/Symfony/Component/Inflector/Tests/InflectorTest.php +++ b/src/Symfony/Component/Inflector/Tests/InflectorTest.php @@ -309,15 +309,15 @@ public function testSingularize($plural, $singular) /** * @dataProvider pluralizeProvider */ - public function testPluralize($plural, $singular) + public function testPluralize($singular, $expectedPlural) { - $single = Inflector::pluralize($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); + $plural = Inflector::pluralize($singular); + if (\is_string($expectedPlural) && \is_array($plural)) { + $this->fail("--- Expected\n`string`: ".$expectedPlural."\n+++ Actual\n`array`: ".implode(', ', $plural)); + } elseif (\is_array($expectedPlural) && \is_string($plural)) { + $this->fail("--- Expected\n`array`: ".implode(', ', $expectedPlural)."\n+++ Actual\n`string`: ".$plural); } - $this->assertEquals($singular, $single); + $this->assertEquals($expectedPlural, $plural); } } From 75405247beed4ac51ef08ade5676d90ed1f2fa96 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Mon, 4 May 2020 09:08:14 +0200 Subject: [PATCH 020/145] [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 1c9162d2ad6050b2663073be8ccbb712695ce30f Mon Sep 17 00:00:00 2001 From: Olatunbosun Egberinde Date: Mon, 4 May 2020 00:18:06 +0100 Subject: [PATCH 021/145] Update exception.html.php --- .../Component/ErrorHandler/Resources/views/exception.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/ErrorHandler/Resources/views/exception.html.php b/src/Symfony/Component/ErrorHandler/Resources/views/exception.html.php index b470b5622be9..c3e7a8674e74 100644 --- a/src/Symfony/Component/ErrorHandler/Resources/views/exception.html.php +++ b/src/Symfony/Component/ErrorHandler/Resources/views/exception.html.php @@ -32,7 +32,7 @@ $exceptionAsArray = $exception->toArray(); $exceptionWithUserCode = []; $exceptionAsArrayCount = count($exceptionAsArray); - $last = count($exceptionAsArray) - 1; + $last = $exceptionAsArrayCount - 1; foreach ($exceptionAsArray as $i => $e) { foreach ($e['trace'] as $trace) { if ($trace['file'] && false === mb_strpos($trace['file'], '/vendor/') && false === mb_strpos($trace['file'], '/var/cache/') && $i < $last) { From d710c1b654fbf2d95dfc41aecb8fc72cb80f5717 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Fri, 1 May 2020 13:33:43 +0100 Subject: [PATCH 022/145] Execute docker dependent tests with github actions --- .github/workflows/tests.yml | 101 ++++++++++++++++++ .travis.yml | 31 ------ .../Tests/Functional/CachePoolsTest.php | 15 +++ .../Adapter/AbstractRedisAdapterTest.php | 7 +- .../Tests/Adapter/MemcachedAdapterTest.php | 3 + .../Cache/Tests/Adapter/PredisAdapterTest.php | 3 + .../Adapter/PredisClusterAdapterTest.php | 3 + .../Adapter/PredisRedisClusterAdapterTest.php | 3 + .../Adapter/PredisTagAwareAdapterTest.php | 3 + .../PredisTagAwareClusterAdapterTest.php | 3 + .../Adapter/RedisAdapterSentinelTest.php | 3 + .../Cache/Tests/Adapter/RedisAdapterTest.php | 3 + .../Tests/Adapter/RedisArrayAdapterTest.php | 3 + .../Tests/Adapter/RedisClusterAdapterTest.php | 3 + .../Adapter/RedisTagAwareAdapterTest.php | 3 + .../Adapter/RedisTagAwareArrayAdapterTest.php | 3 + .../RedisTagAwareClusterAdapterTest.php | 3 + .../Tests/Simple/AbstractRedisCacheTest.php | 7 +- .../Cache/Tests/Simple/MemcachedCacheTest.php | 1 + .../Simple/MemcachedCacheTextModeTest.php | 1 + .../Tests/Simple/RedisArrayCacheTest.php | 1 + .../Cache/Tests/Simple/RedisCacheTest.php | 1 + .../Tests/Simple/RedisClusterCacheTest.php | 1 + .../AbstractRedisSessionHandlerTestCase.php | 5 + .../PredisClusterSessionHandlerTest.php | 3 + .../Handler/PredisSessionHandlerTest.php | 3 + .../Handler/RedisArraySessionHandlerTest.php | 3 + .../RedisClusterSessionHandlerTest.php | 3 + .../Handler/RedisSessionHandlerTest.php | 3 + .../Lock/Tests/Store/MemcachedStoreTest.php | 1 + .../Lock/Tests/Store/PredisStoreTest.php | 1 + .../Lock/Tests/Store/RedisArrayStoreTest.php | 8 +- .../Tests/Store/RedisClusterStoreTest.php | 1 + .../Lock/Tests/Store/RedisStoreTest.php | 8 +- .../AmqpExt/AmqpExtIntegrationTest.php | 1 + .../Transport/RedisExt/ConnectionTest.php | 6 +- .../RedisExt/RedisExtIntegrationTest.php | 13 ++- .../RedisExt/RedisTransportFactoryTest.php | 18 +++- .../Tests/Caster/RedisCasterTest.php | 13 ++- 39 files changed, 239 insertions(+), 56 deletions(-) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 000000000000..ed8c8750b298 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,101 @@ +name: Tests + +on: + push: + pull_request: + +jobs: + + integration: + name: Integration + runs-on: ubuntu-latest + + strategy: + matrix: + php: ['7.1', '7.4'] + + services: + redis: + image: redis:6.0.0 + ports: + - 6379:6379 + redis-cluster: + image: grokzen/redis-cluster:5.0.4 + ports: + - 7000:7000 + - 7001:7001 + - 7002:7002 + - 7003:7003 + - 7004:7004 + - 7005:7005 + - 7006:7006 + - 7007:7007 + env: + STANDALONE: true + memcached: + image: memcached:1.6.5 + ports: + - 11211:11211 + rabbitmq: + image: rabbitmq:3.8.3 + ports: + - 5672:5672 + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + coverage: "none" + extensions: "memcached,redis,xsl" + ini-values: "memory_limit=-1" + php-version: "${{ matrix.php }}" + tools: flex + + - name: Configure composer + run: | + ([ -d ~/.composer ] || mkdir ~/.composer) && cp .github/composer-config.json ~/.composer/config.json + SYMFONY_VERSION=$(cat composer.json | grep '^ *\"dev-master\". *\"[1-9]' | grep -o '[0-9.]*') + echo "::set-env name=SYMFONY_VERSION::$SYMFONY_VERSION" + echo "::set-env name=COMPOSER_ROOT_VERSION::$SYMFONY_VERSION.x-dev" + + - name: Determine composer cache directory + id: composer-cache + run: echo "::set-output name=directory::$(composer config cache-dir)" + + - name: Cache composer dependencies + uses: actions/cache@v1 + with: + path: ${{ steps.composer-cache.outputs.directory }} + key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ matrix.php }}-composer- + + - name: Install dependencies + run: | + echo "::group::composer update" + composer update --no-progress --no-suggest --ansi + echo "::endgroup::" + echo "::group::install phpunit" + ./phpunit install + echo "::endgroup::" + + - name: Run tests + run: ./phpunit --verbose --group integration + env: + SYMFONY_DEPRECATIONS_HELPER: 'max[indirect]=7' + REDIS_HOST: localhost + REDIS_CLUSTER_HOSTS: 'localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005' + MESSENGER_REDIS_DSN: redis://127.0.0.1:7006/messages + MESSENGER_AMQP_DSN: amqp://localhost/%2f/messages + MEMCACHED_HOST: localhost + + - name: Run HTTP push tests + if: matrix.php == '7.4' + run: | + [ -d .phpunit ] && mv .phpunit .phpunit.bak + wget -q https://github.com/symfony/binary-utils/releases/download/v0.1/vulcain_0.1.3_Linux_x86_64.tar.gz -O - | tar xz && mv vulcain /usr/local/bin + docker run --rm -e COMPOSER_ROOT_VERSION -e SYMFONY_VERSION -v $(pwd):/app -v $(which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.4-alpine ./phpunit --verbose src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push + sudo rm -rf .phpunit + [ -d .phpunit.bak ] && mv .phpunit.bak .phpunit diff --git a/.travis.yml b/.travis.yml index 99e6310eb2b7..06daf873e484 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,14 +13,11 @@ addons: - slapd - zookeeperd - libzookeeper-mt-dev - - rabbitmq-server env: global: - MIN_PHP=7.1.3 - SYMFONY_PROCESS_PHP_TEST_BINARY=~/.phpenv/shims/php - - MESSENGER_AMQP_DSN=amqp://localhost/%2f/messages - - MESSENGER_REDIS_DSN=redis://127.0.0.1:7006/messages - SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1 matrix: @@ -39,13 +36,6 @@ cache: - php-$MIN_PHP - ~/php-ext -services: - - memcached - - mongodb - - redis-server - - rabbitmq - - docker - before_install: - | # Enable Sury ppa @@ -56,12 +46,6 @@ before_install: sudo apt update sudo apt install -y librabbitmq-dev libsodium-dev - - | - # Start Redis cluster - docker pull grokzen/redis-cluster:5.0.4 - docker run -d -p 7000:7000 -p 7001:7001 -p 7002:7002 -p 7003:7003 -p 7004:7004 -p 7005:7005 -p 7006:7006 -p 7007:7007 -e "STANDALONE=true" --name redis-cluster grokzen/redis-cluster:5.0.4 - export REDIS_CLUSTER_HOSTS='localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005' - - | # General configuration set -e @@ -141,12 +125,6 @@ before_install: (cd php-$MIN_PHP && ./configure --enable-sigchild --enable-pcntl && make -j2) fi - - | - # Install vulcain - wget https://github.com/symfony/binary-utils/releases/download/v0.1/vulcain_0.1.3_Linux_x86_64.tar.gz -O - | tar xz - sudo mv vulcain /usr/local/bin - docker pull php:7.3-alpine - - | # php.ini configuration for PHP in $TRAVIS_PHP_VERSION $php_extra; do @@ -268,15 +246,6 @@ install: set -e export PHP=$1 - if [[ !$deps && $PHP = 7.2 ]]; then - phpenv global $PHP - tfold 'composer update' $COMPOSER_UP - [ -d .phpunit ] && mv .phpunit .phpunit.bak - tfold src/Symfony/Component/HttpClient.h2push "docker run -it --rm -v $(pwd):/app -v $(phpenv which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.3-alpine ./phpunit src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push" - sudo rm .phpunit -rf - [ -d .phpunit.bak ] && mv .phpunit.bak .phpunit - fi - if [[ $PHP != 7.4* && $PHP != $TRAVIS_PHP_VERSION && $TRAVIS_PULL_REQUEST != false ]]; then echo -e "\\n\\e[33;1mIntermediate PHP version $PHP is skipped for pull requests.\\e[0m" return diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php index 2adf5b1dd56e..2c0315d2ded8 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Functional/CachePoolsTest.php @@ -26,9 +26,12 @@ public function testCachePools() /** * @requires extension redis + * @group integration */ public function testRedisCachePools() { + $this->skipIfRedisUnavailable(); + try { $this->doTestCachePools(['root_config' => 'redis_config.yml', 'environment' => 'redis_cache'], RedisAdapter::class); } catch (\PHPUnit\Framework\Error\Warning $e) { @@ -51,9 +54,12 @@ public function testRedisCachePools() /** * @requires extension redis + * @group integration */ public function testRedisCustomCachePools() { + $this->skipIfRedisUnavailable(); + try { $this->doTestCachePools(['root_config' => 'redis_custom_config.yml', 'environment' => 'custom_redis_cache'], RedisAdapter::class); } catch (\PHPUnit\Framework\Error\Warning $e) { @@ -121,4 +127,13 @@ protected static function createKernel(array $options = []): KernelInterface { return parent::createKernel(['test_case' => 'CachePools'] + $options); } + + private function skipIfRedisUnavailable() + { + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); + } + } } diff --git a/src/Symfony/Component/Cache/Tests/Adapter/AbstractRedisAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/AbstractRedisAdapterTest.php index 6a686a9481f1..994ae81d5b3a 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/AbstractRedisAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/AbstractRedisAdapterTest.php @@ -34,9 +34,10 @@ public static function setUpBeforeClass(): void if (!\extension_loaded('redis')) { self::markTestSkipped('Extension redis required.'); } - if (!@((new \Redis())->connect(getenv('REDIS_HOST')))) { - $e = error_get_last(); - self::markTestSkipped($e['message']); + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); } } diff --git a/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php index 9a60642e8024..988ff22051c8 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/MemcachedAdapterTest.php @@ -15,6 +15,9 @@ use Symfony\Component\Cache\Adapter\AbstractAdapter; use Symfony\Component\Cache\Adapter\MemcachedAdapter; +/** + * @group integration + */ class MemcachedAdapterTest extends AdapterTestCase { protected $skippedTests = [ diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PredisAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PredisAdapterTest.php index 9ced661bfb37..e19f74f6745c 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PredisAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PredisAdapterTest.php @@ -14,6 +14,9 @@ use Predis\Connection\StreamConnection; use Symfony\Component\Cache\Adapter\RedisAdapter; +/** + * @group integration + */ class PredisAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PredisClusterAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PredisClusterAdapterTest.php index 63fb7ecba60a..e6989be29233 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PredisClusterAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PredisClusterAdapterTest.php @@ -11,6 +11,9 @@ namespace Symfony\Component\Cache\Tests\Adapter; +/** + * @group integration + */ class PredisClusterAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PredisRedisClusterAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PredisRedisClusterAdapterTest.php index 52a515d4df7d..81dd0bc2a04c 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PredisRedisClusterAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PredisRedisClusterAdapterTest.php @@ -13,6 +13,9 @@ use Symfony\Component\Cache\Adapter\RedisAdapter; +/** + * @group integration + */ class PredisRedisClusterAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareAdapterTest.php index eedd3903a863..c072be952f1a 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareAdapterTest.php @@ -15,6 +15,9 @@ use Symfony\Component\Cache\Adapter\RedisTagAwareAdapter; use Symfony\Component\Cache\Tests\Traits\TagAwareTestTrait; +/** + * @group integration + */ class PredisTagAwareAdapterTest extends PredisAdapterTest { use TagAwareTestTrait; diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareClusterAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareClusterAdapterTest.php index 77d51a903393..9b05edd9154f 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareClusterAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PredisTagAwareClusterAdapterTest.php @@ -15,6 +15,9 @@ use Symfony\Component\Cache\Adapter\RedisTagAwareAdapter; use Symfony\Component\Cache\Tests\Traits\TagAwareTestTrait; +/** + * @group integration + */ class PredisTagAwareClusterAdapterTest extends PredisClusterAdapterTest { use TagAwareTestTrait; diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterSentinelTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterSentinelTest.php index 174a67c4f2dc..09f563036bc2 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterSentinelTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterSentinelTest.php @@ -14,6 +14,9 @@ use Symfony\Component\Cache\Adapter\AbstractAdapter; use Symfony\Component\Cache\Adapter\RedisAdapter; +/** + * @group integration + */ class RedisAdapterSentinelTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php index c78513724140..3f1357699108 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisAdapterTest.php @@ -16,6 +16,9 @@ use Symfony\Component\Cache\Adapter\RedisAdapter; use Symfony\Component\Cache\Traits\RedisProxy; +/** + * @group integration + */ class RedisAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisArrayAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisArrayAdapterTest.php index 63ade368f7fa..eb691ed27df2 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisArrayAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisArrayAdapterTest.php @@ -11,6 +11,9 @@ namespace Symfony\Component\Cache\Tests\Adapter; +/** + * @group integration + */ class RedisArrayAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisClusterAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisClusterAdapterTest.php index d1dfe34fe8ea..35ba00d24444 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisClusterAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisClusterAdapterTest.php @@ -16,6 +16,9 @@ use Symfony\Component\Cache\Adapter\RedisAdapter; use Symfony\Component\Cache\Traits\RedisClusterProxy; +/** + * @group integration + */ class RedisClusterAdapterTest extends AbstractRedisAdapterTest { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareAdapterTest.php index 5f8eef7c56ec..0e73e81e8704 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareAdapterTest.php @@ -16,6 +16,9 @@ use Symfony\Component\Cache\Tests\Traits\TagAwareTestTrait; use Symfony\Component\Cache\Traits\RedisProxy; +/** + * @group integration + */ class RedisTagAwareAdapterTest extends RedisAdapterTest { use TagAwareTestTrait; diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareArrayAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareArrayAdapterTest.php index 8f9f87c8fe6e..5527789d79a5 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareArrayAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareArrayAdapterTest.php @@ -15,6 +15,9 @@ use Symfony\Component\Cache\Adapter\RedisTagAwareAdapter; use Symfony\Component\Cache\Tests\Traits\TagAwareTestTrait; +/** + * @group integration + */ class RedisTagAwareArrayAdapterTest extends RedisArrayAdapterTest { use TagAwareTestTrait; diff --git a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareClusterAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareClusterAdapterTest.php index d179abde1ebb..e527223fd7de 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareClusterAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/RedisTagAwareClusterAdapterTest.php @@ -16,6 +16,9 @@ use Symfony\Component\Cache\Tests\Traits\TagAwareTestTrait; use Symfony\Component\Cache\Traits\RedisClusterProxy; +/** + * @group integration + */ class RedisTagAwareClusterAdapterTest extends RedisClusterAdapterTest { use TagAwareTestTrait; diff --git a/src/Symfony/Component/Cache/Tests/Simple/AbstractRedisCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/AbstractRedisCacheTest.php index 4023c43105c1..21b56e98c8e3 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/AbstractRedisCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/AbstractRedisCacheTest.php @@ -37,9 +37,10 @@ public static function setUpBeforeClass(): void if (!\extension_loaded('redis')) { self::markTestSkipped('Extension redis required.'); } - if (!@((new \Redis())->connect(getenv('REDIS_HOST')))) { - $e = error_get_last(); - self::markTestSkipped($e['message']); + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); } } diff --git a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php index 75bf47246c93..2209c955f05d 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTest.php @@ -17,6 +17,7 @@ /** * @group legacy + * @group integration */ class MemcachedCacheTest extends CacheTestCase { diff --git a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTextModeTest.php b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTextModeTest.php index 57b5b7dd326c..ac1f5f8c550c 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTextModeTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/MemcachedCacheTextModeTest.php @@ -17,6 +17,7 @@ /** * @group legacy + * @group integration */ class MemcachedCacheTextModeTest extends MemcachedCacheTest { diff --git a/src/Symfony/Component/Cache/Tests/Simple/RedisArrayCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/RedisArrayCacheTest.php index 834b6206ac92..01256120dda5 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/RedisArrayCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/RedisArrayCacheTest.php @@ -13,6 +13,7 @@ /** * @group legacy + * @group integration */ class RedisArrayCacheTest extends AbstractRedisCacheTest { diff --git a/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php index 61a9423978f6..98b3ed1b46b5 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/RedisCacheTest.php @@ -15,6 +15,7 @@ /** * @group legacy + * @group integration */ class RedisCacheTest extends AbstractRedisCacheTest { diff --git a/src/Symfony/Component/Cache/Tests/Simple/RedisClusterCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/RedisClusterCacheTest.php index c5115c7c7069..deede9ae2135 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/RedisClusterCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/RedisClusterCacheTest.php @@ -13,6 +13,7 @@ /** * @group legacy + * @group integration */ class RedisClusterCacheTest extends AbstractRedisCacheTest { diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/AbstractRedisSessionHandlerTestCase.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/AbstractRedisSessionHandlerTestCase.php index 8828be666f2d..3f3982ff4562 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/AbstractRedisSessionHandlerTestCase.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/AbstractRedisSessionHandlerTestCase.php @@ -44,6 +44,11 @@ protected function setUp(): void if (!\extension_loaded('redis')) { self::markTestSkipped('Extension redis required.'); } + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); + } $host = getenv('REDIS_HOST') ?: 'localhost'; diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisClusterSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisClusterSessionHandlerTest.php index 622b42da1a28..8926fb1a93a1 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisClusterSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisClusterSessionHandlerTest.php @@ -13,6 +13,9 @@ use Predis\Client; +/** + * @group integration + */ class PredisClusterSessionHandlerTest extends AbstractRedisSessionHandlerTestCase { protected function createRedisClient(string $host): Client diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisSessionHandlerTest.php index 5ecab116f731..bb33a3d9a56e 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/PredisSessionHandlerTest.php @@ -13,6 +13,9 @@ use Predis\Client; +/** + * @group integration + */ class PredisSessionHandlerTest extends AbstractRedisSessionHandlerTestCase { protected function createRedisClient(string $host): Client diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisArraySessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisArraySessionHandlerTest.php index 3ef6cb694b98..c2647c35b7de 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisArraySessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisArraySessionHandlerTest.php @@ -11,6 +11,9 @@ namespace Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler; +/** + * @group integration + */ class RedisArraySessionHandlerTest extends AbstractRedisSessionHandlerTestCase { /** diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisClusterSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisClusterSessionHandlerTest.php index 8b4cd1cdd61b..278b3c876492 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisClusterSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisClusterSessionHandlerTest.php @@ -11,6 +11,9 @@ namespace Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler; +/** + * @group integration + */ class RedisClusterSessionHandlerTest extends AbstractRedisSessionHandlerTestCase { public static function setUpBeforeClass(): void diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisSessionHandlerTest.php index 71658f072354..e7fb1ca196ef 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/RedisSessionHandlerTest.php @@ -11,6 +11,9 @@ namespace Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler; +/** + * @group integration + */ class RedisSessionHandlerTest extends AbstractRedisSessionHandlerTestCase { /** diff --git a/src/Symfony/Component/Lock/Tests/Store/MemcachedStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/MemcachedStoreTest.php index 64fac4923770..56b488af3328 100644 --- a/src/Symfony/Component/Lock/Tests/Store/MemcachedStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/MemcachedStoreTest.php @@ -19,6 +19,7 @@ * @author Jérémy Derussé * * @requires extension memcached + * @group integration */ class MemcachedStoreTest extends AbstractStoreTest { diff --git a/src/Symfony/Component/Lock/Tests/Store/PredisStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/PredisStoreTest.php index d821887da4ce..9771d6e00d21 100644 --- a/src/Symfony/Component/Lock/Tests/Store/PredisStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/PredisStoreTest.php @@ -13,6 +13,7 @@ /** * @author Jérémy Derussé + * @group integration */ class PredisStoreTest extends AbstractRedisStoreTest { diff --git a/src/Symfony/Component/Lock/Tests/Store/RedisArrayStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/RedisArrayStoreTest.php index bcdecc780f97..075cf7034428 100644 --- a/src/Symfony/Component/Lock/Tests/Store/RedisArrayStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/RedisArrayStoreTest.php @@ -15,6 +15,7 @@ * @author Jérémy Derussé * * @requires extension redis + * @group integration */ class RedisArrayStoreTest extends AbstractRedisStoreTest { @@ -23,9 +24,10 @@ public static function setUpBeforeClass(): void if (!class_exists('RedisArray')) { self::markTestSkipped('The RedisArray class is required.'); } - if (!@((new \Redis())->connect(getenv('REDIS_HOST')))) { - $e = error_get_last(); - self::markTestSkipped($e['message']); + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); } } diff --git a/src/Symfony/Component/Lock/Tests/Store/RedisClusterStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/RedisClusterStoreTest.php index 7a36b9a86a54..2704d9822b18 100644 --- a/src/Symfony/Component/Lock/Tests/Store/RedisClusterStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/RedisClusterStoreTest.php @@ -15,6 +15,7 @@ * @author Jérémy Derussé * * @requires extension redis + * @group integration */ class RedisClusterStoreTest extends AbstractRedisStoreTest { diff --git a/src/Symfony/Component/Lock/Tests/Store/RedisStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/RedisStoreTest.php index 9b1f7fc9ae92..f6b15e64c50a 100644 --- a/src/Symfony/Component/Lock/Tests/Store/RedisStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/RedisStoreTest.php @@ -17,14 +17,16 @@ * @author Jérémy Derussé * * @requires extension redis + * @group integration */ class RedisStoreTest extends AbstractRedisStoreTest { public static function setUpBeforeClass(): void { - if (!@((new \Redis())->connect(getenv('REDIS_HOST')))) { - $e = error_get_last(); - self::markTestSkipped($e['message']); + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); } } diff --git a/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/AmqpExtIntegrationTest.php b/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/AmqpExtIntegrationTest.php index 6d1c1598f2c4..582b62501f32 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/AmqpExtIntegrationTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/AmqpExtIntegrationTest.php @@ -33,6 +33,7 @@ /** * @requires extension amqp + * @group integration */ class AmqpExtIntegrationTest extends TestCase { diff --git a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/ConnectionTest.php b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/ConnectionTest.php index e278cfb0ddf0..339c1e20c622 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/ConnectionTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/ConnectionTest.php @@ -17,14 +17,14 @@ /** * @requires extension redis >= 4.3.0 + * @group integration */ class ConnectionTest extends TestCase { public static function setUpBeforeClass(): void { - $redis = Connection::fromDsn('redis://localhost/queue'); - try { + $redis = Connection::fromDsn('redis://localhost/queue'); $redis->get(); } catch (TransportException $e) { if (0 === strpos($e->getMessage(), 'ERR unknown command \'X')) { @@ -32,6 +32,8 @@ public static function setUpBeforeClass(): void } throw $e; + } catch (\RedisException $e) { + self::markTestSkipped($e->getMessage()); } } diff --git a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisExtIntegrationTest.php b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisExtIntegrationTest.php index e2375511d68c..c8eaa64853c1 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisExtIntegrationTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisExtIntegrationTest.php @@ -18,6 +18,7 @@ /** * @requires extension redis * @group time-sensitive + * @group integration */ class RedisExtIntegrationTest extends TestCase { @@ -30,10 +31,14 @@ protected function setUp(): void $this->markTestSkipped('The "MESSENGER_REDIS_DSN" environment variable is required.'); } - $this->redis = new \Redis(); - $this->connection = Connection::fromDsn(getenv('MESSENGER_REDIS_DSN'), [], $this->redis); - $this->connection->cleanup(); - $this->connection->setup(); + try { + $this->redis = new \Redis(); + $this->connection = Connection::fromDsn(getenv('MESSENGER_REDIS_DSN'), [], $this->redis); + $this->connection->cleanup(); + $this->connection->setup(); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); + } } public function testConnectionSendAndGet() diff --git a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisTransportFactoryTest.php b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisTransportFactoryTest.php index 41856b6c46ca..945b7d130f5b 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisTransportFactoryTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/RedisExt/RedisTransportFactoryTest.php @@ -31,12 +31,26 @@ public function testSupportsOnlyRedisTransports() $this->assertFalse($factory->supports('invalid-dsn', [])); } + /** + * @group integration + */ public function testCreateTransport() { + $this->skipIfRedisUnavailable(); + $factory = new RedisTransportFactory(); $serializer = $this->getMockBuilder(SerializerInterface::class)->getMock(); - $expectedTransport = new RedisTransport(Connection::fromDsn('redis://localhost', ['foo' => 'bar']), $serializer); + $expectedTransport = new RedisTransport(Connection::fromDsn('redis://'.getenv('REDIS_HOST'), ['foo' => 'bar']), $serializer); + + $this->assertEquals($expectedTransport, $factory->createTransport('redis://'.getenv('REDIS_HOST'), ['foo' => 'bar'], $serializer)); + } - $this->assertEquals($expectedTransport, $factory->createTransport('redis://localhost', ['foo' => 'bar'], $serializer)); + private function skipIfRedisUnavailable() + { + try { + (new \Redis())->connect(getenv('REDIS_HOST')); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); + } } } diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/RedisCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/RedisCasterTest.php index 3edbed6380ad..7060a7ddec0f 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/RedisCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/RedisCasterTest.php @@ -17,6 +17,7 @@ /** * @author Nicolas Grekas * @requires extension redis + * @group integration */ class RedisCasterTest extends TestCase { @@ -37,16 +38,18 @@ public function testNotConnected() public function testConnected() { + $redisHost = getenv('REDIS_HOST'); $redis = new \Redis(); - if (!@$redis->connect('127.0.0.1')) { - $e = error_get_last(); - self::markTestSkipped($e['message']); + try { + $redis->connect($redisHost); + } catch (\Exception $e) { + self::markTestSkipped($e->getMessage()); } - $xCast = <<<'EODUMP' + $xCast = << Date: Mon, 4 May 2020 11:46:19 +0200 Subject: [PATCH 023/145] [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 024/145] [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 025/145] [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 026/145] 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 8b386f2e817152143fdd188a6272091a42097cf5 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Mon, 4 May 2020 15:42:48 +0100 Subject: [PATCH 027/145] Use PHP 7.2 minimum in tests run with github actions --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed8c8750b298..7924d63c0578 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - php: ['7.1', '7.4'] + php: ['7.2', '7.4'] services: redis: From 92bc19fd0cb1cfa11ece9ecbb49426037db3c595 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 4 Dec 2019 12:12:45 +0100 Subject: [PATCH 028/145] 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 029/145] [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 030/145] [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 6d089ac437615732322609af677dba56e414be29 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 5 May 2020 11:01:49 +0200 Subject: [PATCH 031/145] [Console] fix "data lost during stream conversion" with QuestionHelper --- src/Symfony/Component/Console/Helper/QuestionHelper.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php index 4e0afeae78a0..92f9ddcff355 100644 --- a/src/Symfony/Component/Console/Helper/QuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php @@ -462,10 +462,6 @@ private function validateAttempts(callable $interviewer, OutputInterface $output $error = null; $attempts = $question->getMaxAttempts(); - if (null === $attempts && !$this->isTty()) { - $attempts = 1; - } - while (null === $attempts || $attempts--) { if (null !== $error) { $this->writeError($output, $error); @@ -477,6 +473,8 @@ private function validateAttempts(callable $interviewer, OutputInterface $output throw $e; } catch (\Exception $error) { } + + $attempts = $attempts ?? -(int) $this->isTty(); } throw $error; @@ -517,7 +515,7 @@ private function isTty(): bool return stream_isatty($inputStream); } - if (!\function_exists('posix_isatty')) { + if (\function_exists('posix_isatty')) { return posix_isatty($inputStream); } From d1953d61cda6a054a7b4aeebe98a24f5cda32a86 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 5 May 2020 15:43:18 +0200 Subject: [PATCH 032/145] 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 033/145] [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 5c24718b1e0facc98b543cec4e7587232b72ce9d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 5 May 2020 19:12:03 +0200 Subject: [PATCH 034/145] [travis] Fix CI --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 06daf873e484..1fc3647f668b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -252,9 +252,7 @@ install: fi phpenv global $PHP ([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; cp composer.json composer.bak; composer config platform.ext-mongodb 1.6.0; composer require --dev --no-update mongodb/mongodb ~1.5.0) - if [[ $deps || $PHP != 7.2 ]]; then - tfold 'composer update' $COMPOSER_UP - fi + tfold 'composer update' $COMPOSER_UP tfold 'phpunit install' ./phpunit install if [[ $deps = high ]]; then echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" || X=1 From 2e99caacafd20ad433f724ad3ff907e8ecd734dd Mon Sep 17 00:00:00 2001 From: Gocha Ossinkine Date: Thu, 7 May 2020 22:31:15 +0500 Subject: [PATCH 035/145] [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: Fri, 8 May 2020 10:53:06 +0200 Subject: [PATCH 036/145] [Mime] fix bad method call on "EmailAddressContains" There is no method `Address` on `MailboxHeader`, but a method `getAddress`. --- .../Component/Mime/Test/Constraint/EmailAddressContains.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Mime/Test/Constraint/EmailAddressContains.php b/src/Symfony/Component/Mime/Test/Constraint/EmailAddressContains.php index 58ef360c5021..c751c3d45f3b 100644 --- a/src/Symfony/Component/Mime/Test/Constraint/EmailAddressContains.php +++ b/src/Symfony/Component/Mime/Test/Constraint/EmailAddressContains.php @@ -48,7 +48,7 @@ protected function matches($message): bool $header = $message->getHeaders()->get($this->headerName); if ($header instanceof MailboxHeader) { - return $this->expectedValue === $header->Address()->getAddress(); + return $this->expectedValue === $header->getAddress()->getAddress(); } elseif ($header instanceof MailboxListHeader) { foreach ($header->getAddresses() as $address) { if ($this->expectedValue === $address->getAddress()) { From 2f305cdc832060205cafeacfb7dae2b8e9789a60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Thu, 7 May 2020 19:56:37 +0200 Subject: [PATCH 037/145] 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 038/145] [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 9d48eedbdca63c93d0fea245751a8f18ae2d1701 Mon Sep 17 00:00:00 2001 From: theravel Date: Fri, 8 May 2020 00:17:19 +0200 Subject: [PATCH 039/145] Queue name is a required parameter --- .../Component/Messenger/Transport/AmqpExt/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php b/src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php index b2799af03ca1..fb5ecf76bb6e 100644 --- a/src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php +++ b/src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php @@ -326,7 +326,7 @@ public function get(string $queueName): ?\AMQPEnvelope // If we get a 404 for the queue, it means we need to set up the exchange & queue. $this->setupExchangeAndQueues(); - return $this->get(); + return $this->get($queueName); } throw $e; From 66cd9f470c9ff2126b9df62a44022b1e6049868b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 8 May 2020 12:04:23 +0200 Subject: [PATCH 040/145] Disable phpunit verbosity --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e0c417100ffe..66b035855531 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,7 +82,7 @@ jobs: echo "::endgroup::" - name: Run tests - run: ./phpunit --verbose --group integration + run: ./phpunit --group integration env: REDIS_HOST: localhost REDIS_CLUSTER_HOSTS: 'localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005' @@ -95,6 +95,6 @@ jobs: run: | [ -d .phpunit ] && mv .phpunit .phpunit.bak wget -q https://github.com/symfony/binary-utils/releases/download/v0.1/vulcain_0.1.3_Linux_x86_64.tar.gz -O - | tar xz && mv vulcain /usr/local/bin - docker run --rm -e COMPOSER_ROOT_VERSION -e SYMFONY_VERSION -v $(pwd):/app -v $(which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.4-alpine ./phpunit --verbose src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push + docker run --rm -e COMPOSER_ROOT_VERSION -e SYMFONY_VERSION -v $(pwd):/app -v $(which composer):/usr/local/bin/composer -v /usr/local/bin/vulcain:/usr/local/bin/vulcain -w /app php:7.4-alpine ./phpunit src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php --filter testHttp2Push sudo rm -rf .phpunit [ -d .phpunit.bak ] && mv .phpunit.bak .phpunit From 02b378f2486d9f83c237b151b787a5f314f56d6a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 8 May 2020 12:38:31 +0200 Subject: [PATCH 041/145] [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 eba09d47e7909f96a39497dd32c64f6098787dbc Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 8 May 2020 12:36:19 +0200 Subject: [PATCH 042/145] [4.4] CS fixes --- .../Tests/Messenger/DoctrineTransactionMiddlewareTest.php | 2 +- .../Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php | 1 - .../Core/Authentication/Token/UsernamePasswordToken.php | 1 - .../Security/Core/Authorization/AccessDecisionManager.php | 2 +- src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bridge/Doctrine/Tests/Messenger/DoctrineTransactionMiddlewareTest.php b/src/Symfony/Bridge/Doctrine/Tests/Messenger/DoctrineTransactionMiddlewareTest.php index be850277e684..4882a1fee2b3 100644 --- a/src/Symfony/Bridge/Doctrine/Tests/Messenger/DoctrineTransactionMiddlewareTest.php +++ b/src/Symfony/Bridge/Doctrine/Tests/Messenger/DoctrineTransactionMiddlewareTest.php @@ -25,7 +25,7 @@ class DoctrineTransactionMiddlewareTest extends MiddlewareTestCase private $entityManager; private $middleware; - public function setUp(): void + protected function setUp(): void { $this->connection = $this->createMock(Connection::class); diff --git a/src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php b/src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php index d2058799ec95..82cdcff73f6f 100644 --- a/src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php +++ b/src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillHttpTransport.php @@ -12,7 +12,6 @@ namespace Symfony\Component\Mailer\Bridge\Mailchimp\Transport; use Psr\Log\LoggerInterface; -use Symfony\Component\Mailer\Envelope; use Symfony\Component\Mailer\Exception\HttpTransportException; use Symfony\Component\Mailer\SentMessage; use Symfony\Component\Mailer\Transport\AbstractHttpTransport; diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php index 2b493c70f30a..bf35c98d5580 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php @@ -26,7 +26,6 @@ class UsernamePasswordToken extends AbstractToken /** * @param string|\Stringable|UserInterface $user The username (like a nickname, email address, etc.) or a UserInterface instance * @param mixed $credentials - * @param string $providerKey * @param string[] $roles * * @throws \InvalidArgumentException diff --git a/src/Symfony/Component/Security/Core/Authorization/AccessDecisionManager.php b/src/Symfony/Component/Security/Core/Authorization/AccessDecisionManager.php index 1a6c9cbb81f2..56ab1dc86460 100644 --- a/src/Symfony/Component/Security/Core/Authorization/AccessDecisionManager.php +++ b/src/Symfony/Component/Security/Core/Authorization/AccessDecisionManager.php @@ -59,7 +59,7 @@ public function __construct(iterable $voters = [], string $strategy = self::STRA */ public function decide(TokenInterface $token, array $attributes, $object = null/*, bool $allowMultipleAttributes = false*/) { - $allowMultipleAttributes = 3 < func_num_args() && func_get_arg(3); + $allowMultipleAttributes = 3 < \func_num_args() && func_get_arg(3); // Special case for AccessListener, do not remove the right side of the condition before 6.0 if (\count($attributes) > 1 && !$allowMultipleAttributes) { diff --git a/src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php b/src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php index e7a6e32f30ac..f43bb3693aaf 100644 --- a/src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php +++ b/src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php @@ -600,7 +600,7 @@ function showCurrent(state) */ return; } - + e.preventDefault(); search.className = search.className.replace(/\bsf-dump-search-hidden\b/, ''); searchInput.focus(); From edb517699a42bf3e5b5557a304f297f7265b639b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 8 May 2020 14:25:07 +0200 Subject: [PATCH 043/145] [PhpUnitBridge] fix bad test --- .../DeprecationTest.php | 41 +++++++++++-------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php b/src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php index fd6d059e440c..403d23cdd550 100644 --- a/src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php +++ b/src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php @@ -22,6 +22,7 @@ class DeprecationTest extends TestCase use SetUpTearDownTrait; private static $vendorDir; + private static $prefixDirsPsr4; private static function getVendorDir() { @@ -151,22 +152,6 @@ public function testItTakesMutesDeprecationFromPhpUnitFiles() public function providerGetTypeDetectsSelf() { - foreach (get_declared_classes() as $class) { - if ('C' === $class[0] && 0 === strpos($class, 'ComposerAutoloaderInit')) { - $r = new \ReflectionClass($class); - $v = \dirname(\dirname($r->getFileName())); - if (file_exists($v.'/composer/installed.json')) { - $loader = require $v.'/autoload.php'; - $reflection = new \ReflectionClass($loader); - $prop = $reflection->getProperty('prefixDirsPsr4'); - $prop->setAccessible(true); - $currentValue = $prop->getValue($loader); - $currentValue['Symfony\\Bridge\\PhpUnit\\'] = [realpath(__DIR__.'/../..')]; - $prop->setValue($loader, $currentValue); - } - } - } - return [ 'not_from_vendors_file' => [Deprecation::TYPE_SELF, '', 'MyClass1', __FILE__], 'nonexistent_file' => [Deprecation::TYPE_UNDETERMINED, '', 'MyClass1', 'dummy_vendor_path'], @@ -276,8 +261,32 @@ private static function removeDir($dir) rmdir($dir); } + private static function doSetupBeforeClass() + { + foreach (get_declared_classes() as $class) { + if ('C' === $class[0] && 0 === strpos($class, 'ComposerAutoloaderInit')) { + $r = new \ReflectionClass($class); + $v = \dirname(\dirname($r->getFileName())); + if (file_exists($v.'/composer/installed.json')) { + $loader = require $v.'/autoload.php'; + $reflection = new \ReflectionClass($loader); + $prop = $reflection->getProperty('prefixDirsPsr4'); + $prop->setAccessible(true); + $currentValue = $prop->getValue($loader); + self::$prefixDirsPsr4[] = [$prop, $loader, $currentValue]; + $currentValue['Symfony\\Bridge\\PhpUnit\\'] = [realpath(__DIR__.'/../..')]; + $prop->setValue($loader, $currentValue); + } + } + } + } + private static function doTearDownAfterClass() { + foreach (self::$prefixDirsPsr4 as [$prop, $loader, $prefixDirsPsr4]) { + $prop->setValue($loader, $prefixDirsPsr4); + } + self::removeDir(self::getVendorDir().'/myfakevendor'); } } From 36ccf4c65b731801b8aa960f5a088044b12dd8fa Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 9 May 2020 12:17:38 +0200 Subject: [PATCH 044/145] [HttpClient] test that timeout is not fatal --- .../HttpClient/Tests/HttpClientTestCase.php | 18 ++++++++++++++++++ .../HttpClient/Tests/MockHttpClientTest.php | 1 + 2 files changed, 19 insertions(+) diff --git a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php index 29171969b457..89745e45555d 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php +++ b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php @@ -12,6 +12,7 @@ namespace Symfony\Component\HttpClient\Tests; use Symfony\Component\HttpClient\Exception\ClientException; +use Symfony\Component\HttpClient\Exception\TransportException; use Symfony\Contracts\HttpClient\Test\HttpClientTestCase as BaseHttpClientTestCase; abstract class HttpClientTestCase extends BaseHttpClientTestCase @@ -91,4 +92,21 @@ public function testNonBlockingStream() $this->assertSame('', fread($stream, 8192)); $this->assertTrue(feof($stream)); } + + public function testTimeoutIsNotAFatalError() + { + $client = $this->getHttpClient(__FUNCTION__); + $response = $client->request('GET', 'http://localhost:8057/timeout-body', [ + 'timeout' => 0.1, + ]); + + try { + $response->getContent(); + $this->fail(TransportException::class.' expected'); + } catch (TransportException $e) { + } + + usleep(400000); + $this->assertSame('<1><2>', $response->getContent()); + } } diff --git a/src/Symfony/Component/HttpClient/Tests/MockHttpClientTest.php b/src/Symfony/Component/HttpClient/Tests/MockHttpClientTest.php index bce4bfafea8c..b8125e6716cf 100644 --- a/src/Symfony/Component/HttpClient/Tests/MockHttpClientTest.php +++ b/src/Symfony/Component/HttpClient/Tests/MockHttpClientTest.php @@ -132,6 +132,7 @@ protected function getHttpClient(string $testCase): HttpClientInterface case 'testTimeoutOnStream': case 'testUncheckedTimeoutThrows': + case 'testTimeoutIsNotAFatalError': $body = ['<1>', '', '<2>']; $responses[] = new MockResponse($body, ['response_headers' => $headers]); break; From f3005ec653222850922a476497321b4eae57a4c0 Mon Sep 17 00:00:00 2001 From: "Paul L. McNeely" Date: Tue, 5 May 2020 16:16:48 -0500 Subject: [PATCH 045/145] Fix for #36715 --- src/Symfony/Component/Mime/MimeTypes.php | 2 +- src/Symfony/Component/Mime/Tests/MimeTypesTest.php | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Mime/MimeTypes.php b/src/Symfony/Component/Mime/MimeTypes.php index 268658d1585d..398e021482a0 100644 --- a/src/Symfony/Component/Mime/MimeTypes.php +++ b/src/Symfony/Component/Mime/MimeTypes.php @@ -51,7 +51,7 @@ public function __construct(array $map = []) $this->extensions[$mimeType] = $extensions; foreach ($extensions as $extension) { - $this->mimeTypes[$extension] = $mimeType; + $this->mimeTypes[$extension][] = $mimeType; } } $this->registerGuesser(new FileBinaryMimeTypeGuesser()); diff --git a/src/Symfony/Component/Mime/Tests/MimeTypesTest.php b/src/Symfony/Component/Mime/Tests/MimeTypesTest.php index a736dbebbae0..b1387c9a5cda 100644 --- a/src/Symfony/Component/Mime/Tests/MimeTypesTest.php +++ b/src/Symfony/Component/Mime/Tests/MimeTypesTest.php @@ -62,4 +62,15 @@ public function testGetMimeTypes() $this->assertContains('image/svg', $mt->getMimeTypes('svg')); $this->assertSame([], $mt->getMimeTypes('symfony')); } + + public function testCustomMimeTypes() + { + $mt = new MimeTypes([ + 'text/bar' => ['foo'], + 'text/baz' => ['foo', 'moof'], + ]); + $this->assertContains('text/bar', $mt->getMimeTypes('foo')); + $this->assertContains('text/baz', $mt->getMimeTypes('foo')); + $this->assertSame(['foo', 'moof'], $mt->getExtensions('text/baz')); + } } From 4ab6ff37bdb1ea805a3c2ee73bfecd5849a67933 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 9 May 2020 17:46:49 +0200 Subject: [PATCH 046/145] [HttpClient] improve testTimeoutIsNotAFatalError --- .../HttpClient/Tests/HttpClientTestCase.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php index 89745e45555d..f669de5ac4b6 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php +++ b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php @@ -97,7 +97,7 @@ public function testTimeoutIsNotAFatalError() { $client = $this->getHttpClient(__FUNCTION__); $response = $client->request('GET', 'http://localhost:8057/timeout-body', [ - 'timeout' => 0.1, + 'timeout' => 0.3, ]); try { @@ -106,7 +106,16 @@ public function testTimeoutIsNotAFatalError() } catch (TransportException $e) { } - usleep(400000); - $this->assertSame('<1><2>', $response->getContent()); + for ($i = 0; $i < 10; ++$i) { + try { + $this->assertSame('<1><2>', $response->getContent()); + break; + } catch (TransportException $e) { + } + } + + if (10 === $i) { + throw $e; + } } } From 00ae470307a59890a020c904d0a903b1a59babd0 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 9 May 2020 18:24:06 +0200 Subject: [PATCH 047/145] [HttpClient] fix testTimeoutIsNotAFatalError --- src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php index f669de5ac4b6..a413cc7a5fc4 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php +++ b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php @@ -97,7 +97,7 @@ public function testTimeoutIsNotAFatalError() { $client = $this->getHttpClient(__FUNCTION__); $response = $client->request('GET', 'http://localhost:8057/timeout-body', [ - 'timeout' => 0.3, + 'timeout' => 0.1, ]); try { From 333f7187dc1cc97ce28d015d2f432aba44e4645c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 9 May 2020 19:43:44 +0200 Subject: [PATCH 048/145] [HttpClient] fix testTimeoutIsNotAFatalError (bis) --- src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php index a413cc7a5fc4..7cfe26e9dfe8 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php +++ b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php @@ -97,7 +97,7 @@ public function testTimeoutIsNotAFatalError() { $client = $this->getHttpClient(__FUNCTION__); $response = $client->request('GET', 'http://localhost:8057/timeout-body', [ - 'timeout' => 0.1, + 'timeout' => 0.25, ]); try { From 35e391aaa296f8c094f055b4eab2befc79611025 Mon Sep 17 00:00:00 2001 From: Tobias Schultze Date: Sun, 10 May 2020 16:50:02 +0200 Subject: [PATCH 049/145] [TwigBundle] FormExtension does not have a constructor anymore since sf 4.0 --- src/Symfony/Bundle/TwigBundle/Resources/config/form.xml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Symfony/Bundle/TwigBundle/Resources/config/form.xml b/src/Symfony/Bundle/TwigBundle/Resources/config/form.xml index 4177da62de51..8fe29572c687 100644 --- a/src/Symfony/Bundle/TwigBundle/Resources/config/form.xml +++ b/src/Symfony/Bundle/TwigBundle/Resources/config/form.xml @@ -6,12 +6,7 @@ - - - - twig.form.renderer - - + %twig.form.resources% From 967bc4a860b7600ef2fa38ef492db725b51ecd91 Mon Sep 17 00:00:00 2001 From: Nathan Dench Date: Tue, 12 May 2020 17:24:37 +1000 Subject: [PATCH 050/145] [WebProfiler] Remove 'none' when appending CSP tokens --- .../WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php | 6 ++++++ .../Tests/Csp/ContentSecurityPolicyHandlerTest.php | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php b/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php index a409404f8c18..6d55b9a477fd 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Csp/ContentSecurityPolicyHandler.php @@ -133,6 +133,12 @@ private function updateCspHeaders(Response $response, array $nonces = []): array continue; } + if (['\'none\''] === $fallback) { + // Fallback came from "default-src: 'none'" + // 'none' is invalid if it's not the only expression in the source list, so we leave it out + $fallback = []; + } + $headers[$header][$type] = $fallback; } $ruleIsSet = true; diff --git a/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php b/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php index 3afe8a95fcd9..986db4ebf310 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Tests/Csp/ContentSecurityPolicyHandlerTest.php @@ -140,6 +140,13 @@ public function provideRequestAndResponsesForOnKernelResponse() $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, + ['csp_script_nonce' => $nonce, 'csp_style_nonce' => $nonce], + $this->createRequest(), + $this->createResponse(['Content-Security-Policy' => 'default-src \'none\'', 'Content-Security-Policy-Report-Only' => 'default-src \'none\'']), + ['Content-Security-Policy' => 'default-src \'none\'; script-src \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'Content-Security-Policy-Report-Only' => 'default-src \'none\'; script-src \'unsafe-inline\' \'nonce-'.$nonce.'\'; style-src \'unsafe-inline\' \'nonce-'.$nonce.'\'', 'X-Content-Security-Policy' => null], + ], [ $nonce, ['csp_script_nonce' => $nonce, 'csp_style_nonce' => $nonce], From 44b45cbaf108ffff767895a426aa2d3ff714cdfd Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 12 May 2020 17:50:06 +0200 Subject: [PATCH 051/145] [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 d31d1e0111072bf09f3e58b28bd150d0a311bb6f Mon Sep 17 00:00:00 2001 From: Carlos Buenosvinos Date: Tue, 12 May 2020 17:55:18 +0200 Subject: [PATCH 052/145] Missing description in `messenger:setup-transports` command making `bin/console` to show an empty description when the rest of the commands have one. --- .../Component/Messenger/Command/SetupTransportsCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Messenger/Command/SetupTransportsCommand.php b/src/Symfony/Component/Messenger/Command/SetupTransportsCommand.php index 21916f2be765..84395892fdf9 100644 --- a/src/Symfony/Component/Messenger/Command/SetupTransportsCommand.php +++ b/src/Symfony/Component/Messenger/Command/SetupTransportsCommand.php @@ -41,6 +41,7 @@ protected function configure() { $this ->addArgument('transport', InputArgument::OPTIONAL, 'Name of the transport to setup', null) + ->setDescription('Prepares the required infrastructure for the transport') ->setHelp(<<%command.name% command setups the transports: From 646878d072c9c7893dbbbf495acf97fdc213d7b0 Mon Sep 17 00:00:00 2001 From: Antonio Pauletich Date: Wed, 13 May 2020 18:27:55 +0200 Subject: [PATCH 053/145] Fix register event listeners compiler pass --- .../DependencyInjection/RegisterListenersPass.php | 6 +++--- .../DependencyInjection/RegisterListenersPassTest.php | 9 +++++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php b/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php index 9c88809de059..3ae1136c4c97 100644 --- a/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php +++ b/src/Symfony/Component/EventDispatcher/DependencyInjection/RegisterListenersPass.php @@ -56,12 +56,12 @@ public function process(ContainerBuilder $container) return; } + $aliases = []; + if ($container->hasParameter($this->eventAliasesParameter)) { $aliases = $container->getParameter($this->eventAliasesParameter); - $container->getParameterBag()->remove($this->eventAliasesParameter); - } else { - $aliases = []; } + $definition = $container->findDefinition($this->dispatcherService); foreach ($container->findTaggedServiceIds($this->listenerTag, true) as $id => $events) { diff --git a/src/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php b/src/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php index 5252664a9f99..42870b88876e 100644 --- a/src/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +++ b/src/Symfony/Component/EventDispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php @@ -213,17 +213,22 @@ public function testInvokableEventListener() public function testAliasedEventListener(): void { $container = new ContainerBuilder(); - $container->setParameter('event_dispatcher.event_aliases', [AliasedEvent::class => 'aliased_event']); + $eventAliases = [AliasedEvent::class => 'aliased_event']; + $container->setParameter('event_dispatcher.event_aliases', $eventAliases); $container->register('foo', InvokableListenerService::class)->addTag('kernel.event_listener', ['event' => AliasedEvent::class, 'method' => 'onEvent']); $container->register('bar', InvokableListenerService::class)->addTag('kernel.event_listener', ['event' => CustomEvent::class, 'method' => 'onEvent']); $container->register('event_dispatcher'); - $eventAliasPass = new AddEventAliasesPass([CustomEvent::class => 'custom_event']); + $customEventAlias = [CustomEvent::class => 'custom_event']; + $eventAliasPass = new AddEventAliasesPass($customEventAlias); $eventAliasPass->process($container); $registerListenersPass = new RegisterListenersPass(); $registerListenersPass->process($container); + $this->assertTrue($container->hasParameter('event_dispatcher.event_aliases')); + $this->assertSame(array_merge($eventAliases, $customEventAlias), $container->getParameter('event_dispatcher.event_aliases')); + $definition = $container->getDefinition('event_dispatcher'); $expectedCalls = [ [ From 6ed624ad16d21a5daf8f0e132cbef53ff1e0de59 Mon Sep 17 00:00:00 2001 From: Marc Weistroff Date: Tue, 12 May 2020 14:07:21 +0200 Subject: [PATCH 054/145] Change priority of KernelEvents::RESPONSE subscriber --- .../Component/HttpKernel/EventListener/ProfilerListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php index b8464f162735..fec89c3ed398 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php @@ -119,7 +119,7 @@ public function onKernelTerminate(PostResponseEvent $event) public static function getSubscribedEvents() { return [ - KernelEvents::RESPONSE => ['onKernelResponse', -100], + KernelEvents::RESPONSE => ['onKernelResponse', -1012], KernelEvents::EXCEPTION => ['onKernelException', 0], KernelEvents::TERMINATE => ['onKernelTerminate', -1024], ]; From 65e6812c1d0223c0fdf053b9750f2e8d21a2fb30 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 12 May 2020 15:36:00 +0200 Subject: [PATCH 055/145] [FrameworkBundle] fix stringable annotation --- src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php b/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php index 0bbfa080803e..c0ad726506f8 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php +++ b/src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php @@ -28,8 +28,8 @@ class SodiumVault extends AbstractVault implements EnvVarLoaderInterface private $secretsDir; /** - * @param string|object|null $decryptionKey A string or a stringable object that defines the private key to use to decrypt the vault - * or null to store generated keys in the provided $secretsDir + * @param string|\Stringable|null $decryptionKey A string or a stringable object that defines the private key to use to decrypt the vault + * or null to store generated keys in the provided $secretsDir */ public function __construct(string $secretsDir, $decryptionKey = null) { From 507a5963e4299e2b3da18ba35f07ddefe02a9a05 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 11 May 2020 09:40:02 +0200 Subject: [PATCH 056/145] 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 df32171cb2d1c77d996f05f0a2463347fd1ce78e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 15 May 2020 14:26:22 +0200 Subject: [PATCH 057/145] [Security/Core] fix compat of `NativePasswordEncoder` with pre-PHP74 values of `PASSWORD_*` consts --- .../Core/Encoder/NativePasswordEncoder.php | 17 +++++++++++++++-- .../Tests/Encoder/NativePasswordEncoderTest.php | 8 ++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Security/Core/Encoder/NativePasswordEncoder.php b/src/Symfony/Component/Security/Core/Encoder/NativePasswordEncoder.php index 10b96dc506de..fcb144c38a05 100644 --- a/src/Symfony/Component/Security/Core/Encoder/NativePasswordEncoder.php +++ b/src/Symfony/Component/Security/Core/Encoder/NativePasswordEncoder.php @@ -24,7 +24,7 @@ final class NativePasswordEncoder implements PasswordEncoderInterface, SelfSalti { private const MAX_PASSWORD_LENGTH = 4096; - private $algo; + private $algo = PASSWORD_BCRYPT; private $options; /** @@ -48,7 +48,20 @@ public function __construct(int $opsLimit = null, int $memLimit = null, int $cos throw new \InvalidArgumentException('$cost must be in the range of 4-31.'); } - $this->algo = (string) ($algo ?? (\defined('PASSWORD_ARGON2ID') ? PASSWORD_ARGON2ID : (\defined('PASSWORD_ARGON2I') ? PASSWORD_ARGON2I : PASSWORD_BCRYPT))); + $algos = [1 => PASSWORD_BCRYPT, '2y' => PASSWORD_BCRYPT]; + + if (\defined('PASSWORD_ARGON2I')) { + $this->algo = $algos[2] = $algos['argon2i'] = (string) PASSWORD_ARGON2I; + } + + if (\defined('PASSWORD_ARGON2ID')) { + $this->algo = $algos[3] = $algos['argon2id'] = (string) PASSWORD_ARGON2ID; + } + + if (null !== $algo) { + $this->algo = $algos[$algo] ?? $algo; + } + $this->options = [ 'cost' => $cost, 'time_cost' => $opsLimit, diff --git a/src/Symfony/Component/Security/Core/Tests/Encoder/NativePasswordEncoderTest.php b/src/Symfony/Component/Security/Core/Tests/Encoder/NativePasswordEncoderTest.php index 47b8ac09eaa6..9388e9c2c53c 100644 --- a/src/Symfony/Component/Security/Core/Tests/Encoder/NativePasswordEncoderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Encoder/NativePasswordEncoderTest.php @@ -73,6 +73,14 @@ public function testConfiguredAlgorithm() $this->assertStringStartsWith('$2', $result); } + public function testConfiguredAlgorithmWithLegacyConstValue() + { + $encoder = new NativePasswordEncoder(null, null, null, '1'); + $result = $encoder->encodePassword('password', null); + $this->assertTrue($encoder->isPasswordValid($result, 'password', null)); + $this->assertStringStartsWith('$2', $result); + } + public function testCheckPasswordLength() { $encoder = new NativePasswordEncoder(null, null, 4); From c764b5c36e6043a5c3100b4d4780ae30bdebdec3 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 15 May 2020 13:57:17 +0200 Subject: [PATCH 058/145] [HttpClient] fix PHP warning + accept status code >= 600 --- .../Component/HttpClient/Response/CurlResponse.php | 11 +++++++++-- .../Component/HttpClient/Response/ResponseTrait.php | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpClient/Response/CurlResponse.php b/src/Symfony/Component/HttpClient/Response/CurlResponse.php index 58528108e8d1..80709ed8a6a7 100644 --- a/src/Symfony/Component/HttpClient/Response/CurlResponse.php +++ b/src/Symfony/Component/HttpClient/Response/CurlResponse.php @@ -312,8 +312,15 @@ private static function parseHeaderLine($ch, string $data, array &$info, array & } if ("\r\n" !== $data) { - // Regular header line: add it to the list - self::addResponseHeaders([substr($data, 0, -2)], $info, $headers); + try { + // Regular header line: add it to the list + self::addResponseHeaders([substr($data, 0, -2)], $info, $headers); + } catch (TransportException $e) { + $multi->handlesActivity[$id][] = null; + $multi->handlesActivity[$id][] = $e; + + return \strlen($data); + } if (0 !== strpos($data, 'HTTP/')) { if (0 === stripos($data, 'Location:')) { diff --git a/src/Symfony/Component/HttpClient/Response/ResponseTrait.php b/src/Symfony/Component/HttpClient/Response/ResponseTrait.php index d0aee7a15864..786e995b16ff 100644 --- a/src/Symfony/Component/HttpClient/Response/ResponseTrait.php +++ b/src/Symfony/Component/HttpClient/Response/ResponseTrait.php @@ -253,7 +253,7 @@ private static function initialize(self $response): void private static function addResponseHeaders(array $responseHeaders, array &$info, array &$headers, string &$debug = ''): void { foreach ($responseHeaders as $h) { - if (11 <= \strlen($h) && '/' === $h[4] && preg_match('#^HTTP/\d+(?:\.\d+)? ([12345]\d\d)(?: |$)#', $h, $m)) { + if (11 <= \strlen($h) && '/' === $h[4] && preg_match('#^HTTP/\d+(?:\.\d+)? ([1-9]\d\d)(?: |$)#', $h, $m)) { if ($headers) { $debug .= "< \r\n"; $headers = []; From 08fbfcf5a00b31fb37463503af1c808d0308aafa Mon Sep 17 00:00:00 2001 From: Wouter J Date: Fri, 15 May 2020 23:08:40 +0200 Subject: [PATCH 059/145] 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 060/145] [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 1e9486de89cf725159107e3e9cfacd467ff799ae Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 16 May 2020 12:04:25 +0200 Subject: [PATCH 061/145] [VarExporter] fix for change in PHP 7.4.6 --- .../Component/VarExporter/Tests/Fixtures/array-iterator.php | 1 + .../VarExporter/Tests/Fixtures/array-object-custom.php | 1 + .../Component/VarExporter/Tests/Fixtures/array-object.php | 2 ++ .../VarExporter/Tests/Fixtures/final-array-iterator.php | 1 + src/Symfony/Component/VarExporter/Tests/VarExporterTest.php | 6 ++++-- src/Symfony/Component/VarExporter/composer.json | 2 +- 6 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-iterator.php b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-iterator.php index ed4df00c99e5..012bfb47a6a1 100644 --- a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-iterator.php +++ b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-iterator.php @@ -14,6 +14,7 @@ 123, ], [], + null, ], ] ); diff --git a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object-custom.php b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object-custom.php index 530f0d1026ec..98bef5101fcd 100644 --- a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object-custom.php +++ b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object-custom.php @@ -16,6 +16,7 @@ [ "\0".'Symfony\\Component\\VarExporter\\Tests\\MyArrayObject'."\0".'unused' => 123, ], + null, ], ] ); diff --git a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object.php b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object.php index e2f349e6478f..4e2d4d13a3d8 100644 --- a/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object.php +++ b/src/Symfony/Component/VarExporter/Tests/Fixtures/array-object.php @@ -18,11 +18,13 @@ [ 'foo' => $o[1], ], + null, ], -1 => [ 0, [], [], + null, ], ] ); diff --git a/src/Symfony/Component/VarExporter/Tests/Fixtures/final-array-iterator.php b/src/Symfony/Component/VarExporter/Tests/Fixtures/final-array-iterator.php index 7e838d1e789c..afba945a1f05 100644 --- a/src/Symfony/Component/VarExporter/Tests/Fixtures/final-array-iterator.php +++ b/src/Symfony/Component/VarExporter/Tests/Fixtures/final-array-iterator.php @@ -12,6 +12,7 @@ 0, [], [], + null, ], ] ); diff --git a/src/Symfony/Component/VarExporter/Tests/VarExporterTest.php b/src/Symfony/Component/VarExporter/Tests/VarExporterTest.php index 5fc46644c976..2dfb09d2ffc1 100644 --- a/src/Symfony/Component/VarExporter/Tests/VarExporterTest.php +++ b/src/Symfony/Component/VarExporter/Tests/VarExporterTest.php @@ -87,10 +87,12 @@ public function testExport(string $testName, $value, bool $staticValueExpected = $dump = "= 70406 || !\in_array($testName, ['array-object', 'array-iterator', 'array-object-custom', 'spl-object-storage', 'final-array-iterator', 'final-error'], true)) { + $fixtureFile = __DIR__.'/Fixtures/'.$testName.'.php'; + } elseif (\PHP_VERSION_ID < 70400) { $fixtureFile = __DIR__.'/Fixtures/'.$testName.'-legacy.php'; } else { - $fixtureFile = __DIR__.'/Fixtures/'.$testName.'.php'; + $this->markAsSkipped('PHP >= 7.4.6 required.'); } $this->assertStringEqualsFile($fixtureFile, $dump); diff --git a/src/Symfony/Component/VarExporter/composer.json b/src/Symfony/Component/VarExporter/composer.json index 6b7dba24dedb..f589cde09381 100644 --- a/src/Symfony/Component/VarExporter/composer.json +++ b/src/Symfony/Component/VarExporter/composer.json @@ -19,7 +19,7 @@ "php": "^7.1.3" }, "require-dev": { - "symfony/var-dumper": "^4.1.1|^5.0" + "symfony/var-dumper": "^4.4.9|^5.0.9" }, "autoload": { "psr-4": { "Symfony\\Component\\VarExporter\\": "" }, From e69673562ccc42dd424d49a9865b0e2555fc85a4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 16 May 2020 12:04:57 +0200 Subject: [PATCH 062/145] [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 063/145] 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 9f8d225aa1644e976586264e2e06fc3f265e58cb Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 16 May 2020 15:57:47 +0200 Subject: [PATCH 064/145] Revert "Change priority of KernelEvents::RESPONSE subscriber" This reverts commit 6ed624ad16d21a5daf8f0e132cbef53ff1e0de59. --- .../Component/HttpKernel/EventListener/ProfilerListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php index fec89c3ed398..b8464f162735 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php @@ -119,7 +119,7 @@ public function onKernelTerminate(PostResponseEvent $event) public static function getSubscribedEvents() { return [ - KernelEvents::RESPONSE => ['onKernelResponse', -1012], + KernelEvents::RESPONSE => ['onKernelResponse', -100], KernelEvents::EXCEPTION => ['onKernelException', 0], KernelEvents::TERMINATE => ['onKernelTerminate', -1024], ]; From 5f829bdaeb0f045c906ac0f77824a0beea5b5bcc Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 18 May 2020 16:22:26 +0200 Subject: [PATCH 065/145] [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 b447433b67d8546eadea3c8dbd40aaf0d1f004bf Mon Sep 17 00:00:00 2001 From: rfaivre Date: Mon, 18 May 2020 20:54:16 +0200 Subject: [PATCH 066/145] [Security] Unserialize $parentData, if needed, to avoid errors --- .../Security/Core/Authentication/Token/AnonymousToken.php | 1 + .../Core/Authentication/Token/PreAuthenticatedToken.php | 2 +- .../Security/Core/Authentication/Token/RememberMeToken.php | 1 + .../Security/Core/Authentication/Token/SwitchUserToken.php | 1 + .../Core/Authentication/Token/UsernamePasswordToken.php | 1 + .../Security/Core/Exception/AccountStatusException.php | 1 + .../Core/Exception/CustomUserMessageAuthenticationException.php | 1 + .../Security/Core/Exception/UsernameNotFoundException.php | 1 + .../Security/Guard/Token/PostAuthenticationGuardToken.php | 1 + 9 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php index 8c658060ad4a..db94766d3f16 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php @@ -68,6 +68,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->secret, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/PreAuthenticatedToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/PreAuthenticatedToken.php index eb20f7fe6bbd..80ac0fff38df 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/PreAuthenticatedToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/PreAuthenticatedToken.php @@ -26,7 +26,6 @@ class PreAuthenticatedToken extends AbstractToken /** * @param string|\Stringable|UserInterface $user * @param mixed $credentials - * @param string $providerKey * @param string[] $roles */ public function __construct($user, $credentials, string $providerKey, array $roles = []) @@ -88,6 +87,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->credentials, $this->providerKey, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php index 403e3ae8803d..13d3314534a2 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php @@ -101,6 +101,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->secret, $this->providerKey, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php index 4177cee658f6..4390d68a6e5c 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php @@ -54,6 +54,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->originalToken, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php index bf35c98d5580..fb1c2b33bb1e 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php @@ -99,6 +99,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->credentials, $this->providerKey, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Exception/AccountStatusException.php b/src/Symfony/Component/Security/Core/Exception/AccountStatusException.php index f3fa661c31f4..1b4e818a1157 100644 --- a/src/Symfony/Component/Security/Core/Exception/AccountStatusException.php +++ b/src/Symfony/Component/Security/Core/Exception/AccountStatusException.php @@ -53,6 +53,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->user, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Exception/CustomUserMessageAuthenticationException.php b/src/Symfony/Component/Security/Core/Exception/CustomUserMessageAuthenticationException.php index 203e8ba133da..879012c65f61 100644 --- a/src/Symfony/Component/Security/Core/Exception/CustomUserMessageAuthenticationException.php +++ b/src/Symfony/Component/Security/Core/Exception/CustomUserMessageAuthenticationException.php @@ -69,6 +69,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$parentData, $this->messageKey, $this->messageData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Core/Exception/UsernameNotFoundException.php b/src/Symfony/Component/Security/Core/Exception/UsernameNotFoundException.php index 31dd486eec12..10c78b2056ae 100644 --- a/src/Symfony/Component/Security/Core/Exception/UsernameNotFoundException.php +++ b/src/Symfony/Component/Security/Core/Exception/UsernameNotFoundException.php @@ -71,6 +71,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->username, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } diff --git a/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php b/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php index 1c58199c5b0f..511f455531ec 100644 --- a/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php +++ b/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php @@ -83,6 +83,7 @@ public function __serialize(): array public function __unserialize(array $data): void { [$this->providerKey, $parentData] = $data; + $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } } From 9d5bb11ec92950f1caf60925f6b8be007f060750 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 19 May 2020 10:04:03 +0200 Subject: [PATCH 067/145] [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 068/145] [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 069/145] [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 070/145] [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 920e319051bdf03543f690fc69b6a32f68290f4e Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Tue, 19 May 2020 19:12:53 +0200 Subject: [PATCH 071/145] bump icu 67.1 --- .../Intl/Resources/data/languages/af.json | 2 +- .../Intl/Resources/data/languages/am.json | 2 +- .../Intl/Resources/data/languages/ar.json | 2 +- .../Intl/Resources/data/languages/as.json | 2 +- .../Intl/Resources/data/languages/az.json | 2 +- .../Intl/Resources/data/languages/be.json | 2 +- .../Intl/Resources/data/languages/bg.json | 5 +- .../Intl/Resources/data/languages/bn.json | 2 +- .../Intl/Resources/data/languages/bs.json | 4 +- .../Intl/Resources/data/languages/ca.json | 2 +- .../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/el.json | 2 +- .../Intl/Resources/data/languages/es.json | 2 +- .../Intl/Resources/data/languages/es_419.json | 1 + .../Intl/Resources/data/languages/es_US.json | 4 - .../Intl/Resources/data/languages/et.json | 2 +- .../Intl/Resources/data/languages/eu.json | 2 +- .../Resources/data/languages/ff_Adlm.json | 36 +- .../Intl/Resources/data/languages/fi.json | 2 +- .../Intl/Resources/data/languages/fr.json | 2 +- .../Intl/Resources/data/languages/ga.json | 123 +---- .../Intl/Resources/data/languages/gd.json | 2 +- .../Intl/Resources/data/languages/gl.json | 2 +- .../Intl/Resources/data/languages/gu.json | 2 +- .../Intl/Resources/data/languages/ha.json | 1 + .../Intl/Resources/data/languages/he.json | 2 +- .../Intl/Resources/data/languages/hi.json | 2 +- .../Intl/Resources/data/languages/hr.json | 2 +- .../Intl/Resources/data/languages/hu.json | 2 +- .../Intl/Resources/data/languages/hy.json | 2 +- .../Intl/Resources/data/languages/id.json | 2 +- .../Intl/Resources/data/languages/in.json | 2 +- .../Intl/Resources/data/languages/is.json | 2 +- .../Intl/Resources/data/languages/it.json | 2 +- .../Intl/Resources/data/languages/iw.json | 2 +- .../Intl/Resources/data/languages/ja.json | 2 +- .../Intl/Resources/data/languages/ka.json | 2 +- .../Intl/Resources/data/languages/kk.json | 2 +- .../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/ky.json | 2 +- .../Intl/Resources/data/languages/lb.json | 1 - .../Intl/Resources/data/languages/lo.json | 2 +- .../Intl/Resources/data/languages/lv.json | 2 +- .../Intl/Resources/data/languages/mk.json | 2 +- .../Intl/Resources/data/languages/mo.json | 2 +- .../Intl/Resources/data/languages/ms.json | 2 +- .../Intl/Resources/data/languages/my.json | 2 +- .../Intl/Resources/data/languages/nb.json | 2 +- .../Intl/Resources/data/languages/ne.json | 2 +- .../Intl/Resources/data/languages/nl.json | 2 +- .../Intl/Resources/data/languages/no.json | 2 +- .../Intl/Resources/data/languages/or.json | 2 +- .../Intl/Resources/data/languages/pa.json | 2 +- .../Intl/Resources/data/languages/pl.json | 2 +- .../Intl/Resources/data/languages/ps.json | 2 +- .../Intl/Resources/data/languages/pt.json | 2 +- .../Intl/Resources/data/languages/pt_PT.json | 1 + .../Intl/Resources/data/languages/ro.json | 2 +- .../Intl/Resources/data/languages/ru.json | 2 +- .../Intl/Resources/data/languages/sd.json | 2 +- .../Resources/data/languages/sd_Deva.json | 21 +- .../Intl/Resources/data/languages/sh.json | 2 +- .../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/so.json | 4 + .../Intl/Resources/data/languages/sq.json | 2 +- .../Intl/Resources/data/languages/sr.json | 2 +- .../Resources/data/languages/sr_Latn.json | 2 +- .../Intl/Resources/data/languages/su.json | 21 +- .../Intl/Resources/data/languages/sv.json | 2 +- .../Intl/Resources/data/languages/ta.json | 2 +- .../Intl/Resources/data/languages/te.json | 2 +- .../Intl/Resources/data/languages/th.json | 2 +- .../Intl/Resources/data/languages/tk.json | 2 +- .../Intl/Resources/data/languages/tl.json | 2 +- .../Intl/Resources/data/languages/tr.json | 2 +- .../Intl/Resources/data/languages/uk.json | 2 +- .../Intl/Resources/data/languages/ur.json | 2 +- .../Intl/Resources/data/languages/uz.json | 2 +- .../Intl/Resources/data/languages/vi.json | 2 +- .../Intl/Resources/data/languages/yo.json | 124 ++++- .../Intl/Resources/data/languages/yo_BJ.json | 42 +- .../Intl/Resources/data/languages/zh.json | 2 +- .../Intl/Resources/data/languages/zh_HK.json | 1 + .../Resources/data/languages/zh_Hant_HK.json | 1 + .../Intl/Resources/data/languages/zu.json | 2 +- .../Intl/Resources/data/locales/af.json | 11 + .../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/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/el.json | 11 + .../Intl/Resources/data/locales/en.json | 24 + .../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_Adlm.json | 7 +- .../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/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 | 7 - .../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/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/ku.json | 12 +- .../Intl/Resources/data/locales/ky.json | 11 + .../Intl/Resources/data/locales/lb.json | 11 + .../Intl/Resources/data/locales/lo.json | 11 + .../Intl/Resources/data/locales/lt.json | 11 + .../Intl/Resources/data/locales/lv.json | 11 + .../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/ne.json | 11 + .../Intl/Resources/data/locales/nl.json | 24 + .../Intl/Resources/data/locales/nn.json | 11 + .../Intl/Resources/data/locales/or.json | 11 + .../Intl/Resources/data/locales/pa.json | 11 + .../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/ro.json | 11 + .../Intl/Resources/data/locales/ru.json | 11 + .../Intl/Resources/data/locales/sd.json | 11 + .../Intl/Resources/data/locales/sd_Deva.json | 8 +- .../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/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/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/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/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_Cyrl.json | 11 + .../Intl/Resources/data/locales/vi.json | 11 + .../Intl/Resources/data/locales/yo.json | 143 ++++++ .../Intl/Resources/data/locales/yo_BJ.json | 102 ++++ .../Intl/Resources/data/locales/zh.json | 24 + .../Intl/Resources/data/locales/zh_Hant.json | 24 + .../Intl/Resources/data/locales/zu.json | 11 + .../Intl/Resources/data/regions/ff_Adlm.json | 2 - .../Intl/Resources/data/regions/ha.json | 9 +- .../Intl/Resources/data/regions/ig.json | 42 ++ .../Intl/Resources/data/regions/so.json | 2 + .../Intl/Resources/data/regions/yo.json | 22 + .../Intl/Resources/data/regions/yo_BJ.json | 2 - .../Intl/Resources/data/scripts/ha.json | 25 +- .../Intl/Resources/data/scripts/sd_Deva.json | 3 +- .../Intl/Resources/data/scripts/su.json | 3 +- .../Intl/Resources/data/scripts/yo.json | 35 +- .../Intl/Resources/data/scripts/yo_BJ.json | 13 +- .../Intl/Resources/data/timezones/af.json | 4 +- .../Intl/Resources/data/timezones/am.json | 4 +- .../Intl/Resources/data/timezones/ar.json | 4 +- .../Intl/Resources/data/timezones/as.json | 4 +- .../Intl/Resources/data/timezones/az.json | 4 +- .../Intl/Resources/data/timezones/be.json | 4 +- .../Intl/Resources/data/timezones/bg.json | 4 +- .../Intl/Resources/data/timezones/bn.json | 4 +- .../Intl/Resources/data/timezones/br.json | 4 +- .../Intl/Resources/data/timezones/bs.json | 4 +- .../Resources/data/timezones/bs_Cyrl.json | 4 +- .../Intl/Resources/data/timezones/ca.json | 4 +- .../Intl/Resources/data/timezones/ce.json | 4 +- .../Intl/Resources/data/timezones/cs.json | 4 +- .../Intl/Resources/data/timezones/cy.json | 4 +- .../Intl/Resources/data/timezones/da.json | 4 +- .../Intl/Resources/data/timezones/de.json | 4 +- .../Intl/Resources/data/timezones/dz.json | 2 +- .../Intl/Resources/data/timezones/ee.json | 4 +- .../Intl/Resources/data/timezones/el.json | 4 +- .../Intl/Resources/data/timezones/en.json | 4 +- .../Intl/Resources/data/timezones/es.json | 4 +- .../Intl/Resources/data/timezones/et.json | 4 +- .../Intl/Resources/data/timezones/eu.json | 6 +- .../Intl/Resources/data/timezones/fa.json | 4 +- .../Resources/data/timezones/ff_Adlm.json | 441 ++++++++++++++++++ .../Intl/Resources/data/timezones/fi.json | 4 +- .../Intl/Resources/data/timezones/fo.json | 4 +- .../Intl/Resources/data/timezones/fr.json | 4 +- .../Intl/Resources/data/timezones/fy.json | 4 +- .../Intl/Resources/data/timezones/ga.json | 4 +- .../Intl/Resources/data/timezones/gd.json | 4 +- .../Intl/Resources/data/timezones/gl.json | 4 +- .../Intl/Resources/data/timezones/gu.json | 4 +- .../Intl/Resources/data/timezones/ha.json | 5 +- .../Intl/Resources/data/timezones/he.json | 4 +- .../Intl/Resources/data/timezones/hi.json | 4 +- .../Intl/Resources/data/timezones/hr.json | 4 +- .../Intl/Resources/data/timezones/hu.json | 4 +- .../Intl/Resources/data/timezones/hy.json | 4 +- .../Intl/Resources/data/timezones/id.json | 4 +- .../Intl/Resources/data/timezones/ig.json | 5 +- .../Intl/Resources/data/timezones/is.json | 4 +- .../Intl/Resources/data/timezones/it.json | 4 +- .../Intl/Resources/data/timezones/ja.json | 4 +- .../Intl/Resources/data/timezones/jv.json | 4 +- .../Intl/Resources/data/timezones/ka.json | 4 +- .../Intl/Resources/data/timezones/kk.json | 4 +- .../Intl/Resources/data/timezones/km.json | 4 +- .../Intl/Resources/data/timezones/kn.json | 4 +- .../Intl/Resources/data/timezones/ko.json | 4 +- .../Intl/Resources/data/timezones/ks.json | 4 +- .../Intl/Resources/data/timezones/ky.json | 4 +- .../Intl/Resources/data/timezones/lb.json | 4 +- .../Intl/Resources/data/timezones/lo.json | 4 +- .../Intl/Resources/data/timezones/lt.json | 4 +- .../Intl/Resources/data/timezones/lv.json | 4 +- .../Intl/Resources/data/timezones/mk.json | 4 +- .../Intl/Resources/data/timezones/ml.json | 4 +- .../Intl/Resources/data/timezones/mn.json | 4 +- .../Intl/Resources/data/timezones/mr.json | 4 +- .../Intl/Resources/data/timezones/ms.json | 4 +- .../Intl/Resources/data/timezones/ms_ID.json | 7 + .../Intl/Resources/data/timezones/my.json | 6 +- .../Intl/Resources/data/timezones/nb.json | 4 +- .../Intl/Resources/data/timezones/ne.json | 4 +- .../Intl/Resources/data/timezones/nl.json | 4 +- .../Intl/Resources/data/timezones/nn.json | 4 +- .../Intl/Resources/data/timezones/or.json | 14 +- .../Intl/Resources/data/timezones/pa.json | 4 +- .../Intl/Resources/data/timezones/pl.json | 356 +++++++------- .../Intl/Resources/data/timezones/ps.json | 8 +- .../Intl/Resources/data/timezones/pt.json | 4 +- .../Intl/Resources/data/timezones/pt_PT.json | 5 +- .../Intl/Resources/data/timezones/qu.json | 4 +- .../Intl/Resources/data/timezones/ro.json | 4 +- .../Intl/Resources/data/timezones/ru.json | 4 +- .../Intl/Resources/data/timezones/sd.json | 4 +- .../Resources/data/timezones/sd_Deva.json | 199 ++++++++ .../Intl/Resources/data/timezones/se_FI.json | 3 +- .../Intl/Resources/data/timezones/si.json | 4 +- .../Intl/Resources/data/timezones/sk.json | 4 +- .../Intl/Resources/data/timezones/sl.json | 6 +- .../Intl/Resources/data/timezones/so.json | 14 +- .../Intl/Resources/data/timezones/sq.json | 4 +- .../Intl/Resources/data/timezones/sr.json | 4 +- .../Resources/data/timezones/sr_Latn.json | 4 +- .../Intl/Resources/data/timezones/su.json | 243 ++++++++++ .../Intl/Resources/data/timezones/sv.json | 4 +- .../Intl/Resources/data/timezones/sw.json | 6 +- .../Intl/Resources/data/timezones/sw_KE.json | 3 +- .../Intl/Resources/data/timezones/ta.json | 4 +- .../Intl/Resources/data/timezones/te.json | 4 +- .../Intl/Resources/data/timezones/th.json | 4 +- .../Intl/Resources/data/timezones/tk.json | 4 +- .../Intl/Resources/data/timezones/to.json | 4 +- .../Intl/Resources/data/timezones/tr.json | 4 +- .../Intl/Resources/data/timezones/ug.json | 4 +- .../Intl/Resources/data/timezones/uk.json | 4 +- .../Intl/Resources/data/timezones/ur.json | 4 +- .../Intl/Resources/data/timezones/ur_IN.json | 1 - .../Intl/Resources/data/timezones/uz.json | 6 +- .../Resources/data/timezones/uz_Cyrl.json | 6 +- .../Intl/Resources/data/timezones/vi.json | 6 +- .../Intl/Resources/data/timezones/yo.json | 46 +- .../Intl/Resources/data/timezones/yo_BJ.json | 31 +- .../Intl/Resources/data/timezones/zh.json | 4 +- .../Resources/data/timezones/zh_Hans_SG.json | 4 +- .../Resources/data/timezones/zh_Hant.json | 4 +- .../Intl/Resources/data/timezones/zu.json | 4 +- .../Intl/Tests/ResourceBundleTestCase.php | 27 ++ .../Component/Intl/Tests/ScriptsTest.php | 5 + .../Translation/Resources/data/parents.json | 2 + 323 files changed, 3382 insertions(+), 733 deletions(-) create mode 100644 src/Symfony/Component/Intl/Resources/data/timezones/ff_Adlm.json create mode 100644 src/Symfony/Component/Intl/Resources/data/timezones/ms_ID.json create mode 100644 src/Symfony/Component/Intl/Resources/data/timezones/sd_Deva.json create mode 100644 src/Symfony/Component/Intl/Resources/data/timezones/su.json diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index a214e685bff3..8e4f979b6b8f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/af.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/af.json @@ -91,7 +91,6 @@ "eu": "Baskies", "ewo": "Ewondo", "fa": "Persies", - "fa_AF": "Dari", "ff": "Fulah", "fi": "Fins", "fil": "Filippyns", @@ -397,6 +396,7 @@ "ar_001": "Moderne Standaardarabies", "en_GB": "Engels (VK)", "en_US": "Engels (VSA)", + "fa_AF": "Dari", "nds_NL": "Nedersaksies", "nl_BE": "Vlaams" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/am.json b/src/Symfony/Component/Intl/Resources/data/languages/am.json index 359c69ba3588..f8e133f729e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/am.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/am.json @@ -133,7 +133,6 @@ "eu": "ባስክኛ", "ewo": "ኤዎንዶ", "fa": "ፐርሺያኛ", - "fa_AF": "ዳሪኛ", "ff": "ፉላህ", "fi": "ፊኒሽ", "fil": "ፊሊፒንኛ", @@ -455,6 +454,7 @@ "es_419": "የላቲን አሜሪካ ስፓኒሽ", "es_ES": "የአውሮፓ ስፓንሽኛ", "es_MX": "የሜክሲኮ ስፓንሽኛ", + "fa_AF": "ዳሪኛ", "fr_CA": "የካናዳ ፈረንሳይኛ", "fr_CH": "የስዊዝ ፈረንሳይኛ", "nds_NL": "የታችኛው ሳክሰን", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar.json b/src/Symfony/Component/Intl/Resources/data/languages/ar.json index cb630bc0de92..3db781f44ec5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar.json @@ -128,7 +128,6 @@ "eu": "الباسكية", "ewo": "الإيوندو", "fa": "الفارسية", - "fa_AF": "الدارية", "fan": "الفانج", "fat": "الفانتي", "ff": "الفولانية", @@ -520,6 +519,7 @@ "es_419": "الإسبانية أمريكا اللاتينية", "es_ES": "الإسبانية الأوروبية", "es_MX": "الإسبانية المكسيكية", + "fa_AF": "الدارية", "fr_CA": "الفرنسية الكندية", "fr_CH": "الفرنسية السويسرية", "nds_NL": "السكسونية السفلى", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index e0de58e4e926..070dcdbcda96 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/as.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/as.json @@ -86,7 +86,6 @@ "eu": "বাস্ক", "ewo": "ইওন্দো", "fa": "ফাৰ্ছী", - "fa_AF": "দাৰি", "ff": "ফুলাহ", "fi": "ফিনিচ", "fil": "ফিলিপিনো", @@ -381,6 +380,7 @@ "es_419": "লেটিন আমেৰিকান স্পেনিচ", "es_ES": "ইউৰোপীয়ান স্পেনিচ", "es_MX": "মেক্সিকান স্পেনিচ", + "fa_AF": "দাৰি", "fr_CA": "কানাডিয়ান ফ্ৰেন্স", "fr_CH": "ছুইচ ফ্ৰেন্স", "nl_BE": "ফ্লেমিচ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index 1a52789863fb..e40ddc33bd24 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -119,7 +119,6 @@ "eu": "bask", "ewo": "evondo", "fa": "fars", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", @@ -502,6 +501,7 @@ "es_419": "Latın Amerikası ispancası", "es_ES": "Kastiliya ispancası", "es_MX": "Meksika ispancası", + "fa_AF": "dari", "fr_CA": "Kanada fransızcası", "fr_CH": "İsveçrə fransızcası", "nds_NL": "aşağı sakson", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/be.json b/src/Symfony/Component/Intl/Resources/data/languages/be.json index f9d02291bda9..9a2cb0b9b6d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/be.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/be.json @@ -94,7 +94,6 @@ "eu": "баскская", "ewo": "эвонда", "fa": "фарсі", - "fa_AF": "дары", "ff": "фула", "fi": "фінская", "fil": "філіпінская", @@ -409,6 +408,7 @@ "es_419": "лацінаамерыканская іспанская", "es_ES": "еўрапейская іспанская", "es_MX": "мексіканская іспанская", + "fa_AF": "дары", "fr_CA": "канадская французская", "fr_CH": "швейцарская французская", "nds_NL": "ніжнесаксонская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index c9765a0f1f48..469fe45ce84e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bg.json @@ -60,6 +60,7 @@ "cad": "каддо", "car": "карибски", "cch": "атсам", + "ccp": "чакма", "ce": "чеченски", "ceb": "себуански", "cgg": "чига", @@ -491,10 +492,12 @@ "ar_001": "съвременен стандартен арабски", "en_GB": "английски (Обединено кралство)", "en_US": "английски (САЩ)", + "fa_AF": "дари", "nds_NL": "долносаксонски", "nl_BE": "фламандски", "ro_MD": "молдовски", "sw_CD": "конгоански суахили", - "zh_Hans": "китайски (опростен)" + "zh_Hans": "китайски (опростен)", + "zh_Hant": "китайски (традиционен)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn.json b/src/Symfony/Component/Intl/Resources/data/languages/bn.json index 55b6dc090c0a..d4784abd1d1d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn.json @@ -119,7 +119,6 @@ "eu": "বাস্ক", "ewo": "ইওন্ডো", "fa": "ফার্সি", - "fa_AF": "দারি", "fan": "ফ্যাঙ্গ", "fat": "ফান্তি", "ff": "ফুলাহ্", @@ -505,6 +504,7 @@ "es_419": "ল্যাটিন আমেরিকান স্প্যানিশ", "es_ES": "ইউরোপীয় স্প্যানিশ", "es_MX": "ম্যাক্সিকান স্প্যানিশ", + "fa_AF": "দারি", "fr_CA": "কানাডীয় ফরাসি", "fr_CH": "সুইস ফরাসি", "nds_NL": "লো স্যাক্সন", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index ec93a3425079..8be59c4b35eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs.json @@ -98,7 +98,6 @@ "dar": "dargva", "dav": "taita", "de": "njemački", - "de_CH": "visoki njemački (Švicarska)", "del": "delaver", "den": "slave", "dgr": "dogrib", @@ -128,7 +127,6 @@ "eu": "baskijski", "ewo": "evondo", "fa": "perzijski", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -507,6 +505,8 @@ }, "LocalizedNames": { "ar_001": "moderni standardni arapski", + "de_CH": "visoki njemački (Švicarska)", + "fa_AF": "dari", "nds_NL": "donjosaksonski", "nl_BE": "flamanski", "ro_MD": "moldavski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ca.json b/src/Symfony/Component/Intl/Resources/data/languages/ca.json index b0729c4e9949..9a5aec387b2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ca.json @@ -138,7 +138,6 @@ "ewo": "ewondo", "ext": "extremeny", "fa": "persa", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "ful", @@ -562,6 +561,7 @@ "es_419": "espanyol hispanoamericà", "es_ES": "espanyol europeu", "es_MX": "espanyol de Mèxic", + "fa_AF": "dari", "fr_CA": "francès canadenc", "fr_CH": "francès suís", "nds_NL": "baix saxó", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index 733d69834560..27e09591f64c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cs.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "extremadurština", "fa": "perština", - "fa_AF": "darí", "fan": "fang", "fat": "fantština", "ff": "fulbština", @@ -601,6 +600,7 @@ "en_GB": "angličtina (Velká Británie)", "en_US": "angličtina (USA)", "es_ES": "španělština (Evropa)", + "fa_AF": "darí", "nds_NL": "dolnosaština", "nl_BE": "vlámština", "pt_PT": "portugalština (Evropa)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index d81b99765245..df09e8b4b04f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cy.json @@ -125,7 +125,6 @@ "ewo": "Ewondo", "ext": "Extremadureg", "fa": "Perseg", - "fa_AF": "Dari", "fat": "Ffanti", "ff": "Ffwla", "fi": "Ffinneg", @@ -523,6 +522,7 @@ "es_419": "Sbaeneg America Ladin", "es_ES": "Sbaeneg Ewrop", "es_MX": "Sbaeneg Mecsico", + "fa_AF": "Dari", "fr_CA": "Ffrangeg Canada", "fr_CH": "Ffrangeg y Swistir", "nds_NL": "Sacsoneg Isel", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/da.json b/src/Symfony/Component/Intl/Resources/data/languages/da.json index 926d836a57e9..1350757fac06 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/da.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/da.json @@ -128,7 +128,6 @@ "eu": "baskisk", "ewo": "ewondo", "fa": "persisk", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -522,6 +521,7 @@ "es_419": "latinamerikansk spansk", "es_ES": "europæisk spansk", "es_MX": "mexicansk spansk", + "fa_AF": "dari", "fr_CA": "canadisk fransk", "fr_CH": "schweizisk fransk", "nl_BE": "flamsk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index 7778ddeeb910..87f77a59ab2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de.json @@ -150,7 +150,6 @@ "ewo": "Ewondo", "ext": "Extremadurisch", "fa": "Persisch", - "fa_AF": "Dari", "fan": "Pangwe", "fat": "Fanti", "ff": "Ful", @@ -599,6 +598,7 @@ "ar_001": "Modernes Hocharabisch", "de_AT": "Österreichisches Deutsch", "de_CH": "Schweizer Hochdeutsch", + "fa_AF": "Dari", "nds_NL": "Niedersächsisch", "nl_BE": "Flämisch", "ro_MD": "Moldauisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/el.json b/src/Symfony/Component/Intl/Resources/data/languages/el.json index 3c932c681071..6178517c4e0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/el.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/el.json @@ -128,7 +128,6 @@ "eu": "Βασκικά", "ewo": "Εγουόντο", "fa": "Περσικά", - "fa_AF": "Νταρί", "fan": "Φανγκ", "fat": "Φάντι", "ff": "Φουλά", @@ -518,6 +517,7 @@ "es_419": "Ισπανικά Λατινικής Αμερικής", "es_ES": "Ισπανικά Ευρώπης", "es_MX": "Ισπανικά Μεξικού", + "fa_AF": "Νταρί", "fr_CA": "Γαλλικά Καναδά", "fr_CH": "Γαλλικά Ελβετίας", "nds_NL": "Κάτω Γερμανικά Ολλανδίας", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es.json b/src/Symfony/Component/Intl/Resources/data/languages/es.json index c6b57e614480..700904426345 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es.json @@ -128,7 +128,6 @@ "eu": "euskera", "ewo": "ewondo", "fa": "persa", - "fa_AF": "darí", "fan": "fang", "fat": "fanti", "ff": "fula", @@ -522,6 +521,7 @@ "es_419": "español latinoamericano", "es_ES": "español de España", "es_MX": "español de México", + "fa_AF": "darí", "fr_CA": "francés canadiense", "fr_CH": "francés suizo", "nds_NL": "bajo sajón", 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 3e33da88ba0a..34d36d5e57f1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -42,6 +42,7 @@ "es_419": "español latinoamericano", "es_ES": "español de España", "es_MX": "español de México", + "fa_AF": "darí", "fr_CA": "francés canadiense", "fr_CH": "francés suizo", "nl_BE": "flamenco", 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 0cc6543d0fe6..4da0e0dc8a5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_US.json @@ -16,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", @@ -26,10 +25,8 @@ "lo": "lao", "lus": "lushai", "mga": "irlandés medieval", - "nan": "nan", "nr": "ndebele meridional", "nso": "sotho septentrional", - "pcm": "pcm", "rm": "romanche", "rn": "kiroundi", "shu": "árabe chadiano", @@ -41,7 +38,6 @@ "tn": "setchwana", "tyv": "tuviniano", "wo": "wolof", - "wuu": "wuu", "xal": "kalmyk" }, "LocalizedNames": { diff --git a/src/Symfony/Component/Intl/Resources/data/languages/et.json b/src/Symfony/Component/Intl/Resources/data/languages/et.json index 47eee9aef0af..2c3c6cb34459 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/et.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/et.json @@ -148,7 +148,6 @@ "ewo": "evondo", "ext": "estremenju", "fa": "pärsia", - "fa_AF": "dari", "fan": "fangi", "fat": "fanti", "ff": "fula", @@ -597,6 +596,7 @@ "es_419": "Ladina-Ameerika hispaania", "es_ES": "Euroopa hispaania", "es_MX": "Mehhiko hispaania", + "fa_AF": "dari", "fr_CA": "Kanada prantsuse", "fr_CH": "Šveitsi prantsuse", "nds_NL": "Hollandi alamsaksa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index 8a87aaea5dce..d6210ffafee4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -87,7 +87,6 @@ "eu": "euskara", "ewo": "ewondera", "fa": "persiera", - "fa_AF": "daria", "ff": "fula", "fi": "finlandiera", "fil": "filipinera", @@ -390,6 +389,7 @@ "es_419": "Latinoamerikako espainiera", "es_ES": "espainiera (Europa)", "es_MX": "Mexikoko espainiera", + "fa_AF": "daria", "fr_CA": "Kanadako frantses", "fr_CH": "Suitzako frantses", "nds_NL": "behe-saxoiera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json index 500ce556459e..4ba4f5d0db25 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ff_Adlm.json @@ -49,8 +49,6 @@ "dak": "𞤁𞤢𞤳𞤮𞤼𞤢𞥄𞤪𞤫", "dar": "𞤁𞤢𞤪𞤺𞤭𞤲𞤢𞥄𞤪𞤫", "de": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫", - "de_AT": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤢𞤥𞤧𞤭𞤱𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", - "de_CH": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤅𞤵𞤱𞤭𞤧𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤮𞥅𞤱𞤵𞤲𞥋𞤣𞤫", "dje": "𞤔𞤢𞤪𞤥𞤢𞥄𞤪𞤫", "dua": "𞤁𞤵𞤱𞤢𞤤𞤢𞥄𞤪𞤫", "dv": "𞤁𞤭𞥅𞤬𞤫𞤸𞤭𞥅𞤪𞤫", @@ -58,19 +56,10 @@ "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": "𞤖𞤭𞤲𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", @@ -114,7 +103,6 @@ "ms": "𞤃𞤢𞤤𞤫𞥅𞤪𞤫", "mt": "𞤃𞤢𞤤𞤼𞤭𞤲𞤳𞤮𞥅𞤪𞤫", "mua": "𞤃𞤵𞤲𞤣𞤢𞤲𞤪𞤫", - "mul": "𞤍𞤫𞤲𞤯𞤫 𞤅𞤫𞤪𞤼𞤵𞤯𞤫", "mus": "𞤃𞤵𞤧𞤳𞤮𞤳𞤭𞥅𞤪𞤫", "mwl": "𞤃𞤭𞤪𞤢𞤲𞤣𞤫𞥅𞤪𞤫", "my": "𞤄𞤵𞤪𞤥𞤢𞥄𞤪𞤫", @@ -126,14 +114,11 @@ "ng": "𞤐𞤣𞤮𞤲𞤺𞤢𞥄𞤪𞤫", "nia": "𞤙𞤢𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", "nl": "𞤁𞤮𞥅𞤷𞤪𞤫", - "nl_BE": "𞤊𞤭𞤤𞤢𞤥𞤢𞤲𞤪𞤫", "nnh": "𞤐𞤶𞤢𞤥𞤦𞤵𞥅𞤪𞤫", "nqo": "𞤐𞤳𞤮𞥅𞤪𞤫", "nv": "𞤐𞤢𞤬𞤱𞤢𞤸𞤮𞥅𞤪𞤫", "pl": "𞤆𞤮𞤤𞤢𞤲𞤣𞤭𞥅𞤪𞤫", "pt": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫", - "pt_BR": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤄𞤪𞤫𞥁𞤭𞤤", - "pt_PT": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤆𞤮𞤪𞤼𞤭𞤺𞤢𞥄𞤤", "ru": "𞤈𞤭𞥅𞤧𞤭𞤲𞤳𞤮𞥅𞤪𞤫", "rup": "𞤀𞤪𞤮𞤥𞤢𞤲𞤭𞥅𞤪𞤫", "smn": "𞤋𞤲𞤢𞤪𞤭𞤧𞤳𞤢𞤤𞤭𞥅𞤪𞤫", @@ -142,7 +127,6 @@ "th": "𞤚𞤢𞤴𞤤𞤢𞤲𞤣𞤫𞥅𞤪𞤫", "tr": "𞤚𞤵𞥅𞤪𞤢𞤲𞤳𞤮𞥅𞤪𞤫", "ug": "𞤓𞥅𞤴𞤺𞤵𞥅𞤪𞤫", - "und": "𞤍𞤫𞤲𞤺𞤢𞤤 𞤢𞤧-𞤢𞤲𞤣𞤢𞥄𞤲𞤺𞤢𞤤", "ur": "𞤓𞤪𞤣𞤵𞥅𞤪𞤫", "uz": "𞤓𞥅𞤧𞤦𞤫𞤳𞤪𞤫", "vai": "𞤾𞤢𞥄𞤴𞤪𞤫", @@ -162,8 +146,24 @@ "yo": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫", "yue": "𞤑𞤢𞤲𞤼𞤮𞤲𞤫𞥅𞤪𞤫", "zh": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", - "zh_Hans": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤫𞤱𞤭𞥅𞤲𞥋𞤣𞤫", - "zh_Hant": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤢𞤱𞤢𞥄𞤲𞥋𞤣𞤫", "zu": "𞥁𞤵𞤤𞤵𞥅𞤪𞤫" + }, + "LocalizedNames": { + "de_AT": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤢𞤥𞤧𞤭𞤱𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "de_CH": "𞤘𞤫𞤪𞤥𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤅𞤵𞤱𞤭𞤧𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤮𞥅𞤱𞤵𞤲𞥋𞤣𞤫", + "en_AU": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_CA": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤑𞤢𞤲𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_GB": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤄𞤪𞤭𞤼𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "en_US": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 𞤀𞤥𞤭𞤪𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "es_419": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤥𞤭𞤪𞤭𞤳 𞤂𞤢𞤼𞤭𞤲𞤭𞤴𞤢", + "es_ES": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤪𞤮𞤦𞤢", + "es_MX": "𞤅𞤭𞤨𞤢𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤃𞤫𞤳𞤧𞤭𞤳", + "fr_CA": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 𞤑𞤢𞤲𞤢𞤣𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "fr_CH": "𞤊𞤢𞤪𞤢𞤲𞤧𞤭𞥅𞤪𞤫 𞤅𞤵𞤱𞤭𞤧𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "nl_BE": "𞤊𞤭𞤤𞤢𞤥𞤢𞤲𞤪𞤫", + "pt_BR": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤄𞤪𞤫𞥁𞤭𞤤", + "pt_PT": "𞤆𞤮𞤪𞤼𞤮𞤳𞤫𞥅𞤧𞤭𞥅𞤪𞤫 𞤆𞤮𞤪𞤼𞤭𞤺𞤢𞥄𞤤", + "zh_Hans": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤐𞤫𞤱𞤭𞥅𞤲𞥋𞤣𞤫", + "zh_Hant": "𞤅𞤭𞥅𞤲𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤚𞤢𞤱𞤢𞥄𞤲𞥋𞤣𞤫" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fi.json b/src/Symfony/Component/Intl/Resources/data/languages/fi.json index 99de06898b63..6682f6244b32 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fi.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "extremadura", "fa": "persia", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", @@ -606,6 +605,7 @@ "es_419": "amerikanespanja", "es_ES": "euroopanespanja", "es_MX": "meksikonespanja", + "fa_AF": "dari", "fr_CA": "kanadanranska", "fr_CH": "sveitsinranska", "nds_NL": "alankomaidenalasaksa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 4e4c7a2f6dc4..1c6cf05d5524 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr.json @@ -150,7 +150,6 @@ "ewo": "éwondo", "ext": "estrémègne", "fa": "persan", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "peul", @@ -606,6 +605,7 @@ "es_419": "espagnol d’Amérique latine", "es_ES": "espagnol d’Espagne", "es_MX": "espagnol du Mexique", + "fa_AF": "dari", "fr_CA": "français canadien", "fr_CH": "français suisse", "nds_NL": "bas-saxon néerlandais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ga.json b/src/Symfony/Component/Intl/Resources/data/languages/ga.json index f80b3ed783b4..e4a31d367ed2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ga.json @@ -2,63 +2,44 @@ "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", "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", @@ -70,24 +51,16 @@ "cv": "Suvaisis", "cy": "Breatnais", "da": "Danmhairgis", - "dak": "dak", - "dar": "dar", "dav": "Taita", "de": "Gearmáinis", - "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", "enm": "Meán-Bhéarla", @@ -95,7 +68,7 @@ "es": "Spáinnis", "et": "Eastóinis", "eu": "Bascais", - "ewo": "ewo", + "ewo": "Éabhandóis", "fa": "Peirsis", "ff": "Fuláinis", "fi": "Fionlainnis", @@ -110,7 +83,6 @@ "fur": "Friúilis", "fy": "Freaslainnis Iartharach", "ga": "Gaeilge", - "gaa": "gaa", "gan": "Sínis Gan", "gd": "Gaeilge na hAlban", "gez": "Aetóipis", @@ -119,14 +91,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", @@ -146,14 +115,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", @@ -168,16 +134,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", @@ -186,21 +146,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", @@ -209,7 +162,6 @@ "lag": "Langi", "lah": "Puinseáibis Iartharach", "lb": "Lucsambuirgis", - "lez": "lez", "lg": "Lugandais", "li": "Liombuirgis", "lij": "Liogúiris", @@ -218,22 +170,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", @@ -243,24 +187,19 @@ "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", - "mus": "mus", "mwl": "Mioraindéis", "mwr": "Marmhairis", "my": "Burmais", - "myv": "myv", "mzn": "Mazanderani", "na": "Nárúis", "nan": "Sínis Min Nan", @@ -270,18 +209,14 @@ "nd": "Ndeibéilis an Tuaiscirt", "nds": "Gearmáinis Íochtarach", "ne": "Neipeailis", - "new": "new", "ng": "Ndongais", - "nia": "nia", "niu": "Níobhais", "nl": "Ollainnis", "nmg": "Kwasio", "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", @@ -294,11 +229,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", @@ -307,37 +237,27 @@ "pt": "Portaingéilis", "qu": "Ceatsuais", "quc": "Cuitséis", - "rap": "rap", - "rar": "rar", "rm": "Rómainis", "rn": "Rúindis", "ro": "Rómáinis", - "rof": "rof", "rom": "Romainis", "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", @@ -347,17 +267,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", @@ -366,13 +282,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", @@ -380,20 +293,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", "ur": "Urdúis", "uz": "Úisbéiceastáinis", "vai": "vai", @@ -402,18 +310,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", @@ -422,8 +325,7 @@ "zgh": "Tamazight Caighdeánach Mharacó", "zh": "Sínis", "zu": "Súlúis", - "zun": "Zúinis", - "zza": "zza" + "zun": "Zúinis" }, "LocalizedNames": { "ar_001": "Araibis Chaighdeánach", @@ -436,6 +338,7 @@ "es_419": "Spáinnis Mheiriceá Laidinigh", "es_ES": "Spáinnis Eorpach", "es_MX": "Spáinnis Mheicsiceach", + "fa_AF": "Dairis", "fr_CA": "Fraincis Cheanadach", "fr_CH": "Fraincis Eilvéiseach", "nds_NL": "Sacsainis Íochtarach", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index c2886f3b197c..8ed99289a633 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gd.json @@ -147,7 +147,6 @@ "ewo": "Ewondo", "ext": "Cànan na h-Extremadura", "fa": "Peirsis", - "fa_AF": "Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fulah", @@ -583,6 +582,7 @@ "es_419": "Spàinntis na h-Aimeireaga Laidinneach", "es_ES": "Spàinntis Eòrpach", "es_MX": "Spàinntis Mheagsagach", + "fa_AF": "Dari", "fr_CA": "Fraingis Chanada", "fr_CH": "Fraingis Eilbheiseach", "nds_NL": "Sagsannais Ìochdarach", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gl.json b/src/Symfony/Component/Intl/Resources/data/languages/gl.json index 4b56dfdeaee5..c594b8873da0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gl.json @@ -90,7 +90,6 @@ "eu": "éuscaro", "ewo": "ewondo", "fa": "persa", - "fa_AF": "dari", "ff": "fula", "fi": "finés", "fil": "filipino", @@ -395,6 +394,7 @@ "es_419": "español de América", "es_ES": "español de España", "es_MX": "español de México", + "fa_AF": "dari", "fr_CA": "francés canadense", "fr_CH": "francés suízo", "nds_NL": "baixo saxón", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index 549b0c3b649a..a36b9ff6b50d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gu.json @@ -125,7 +125,6 @@ "eu": "બાસ્ક", "ewo": "ઇવોન્ડો", "fa": "ફારસી", - "fa_AF": "ડારી", "fan": "ફેંગ", "fat": "ફન્ટી", "ff": "ફુલાહ", @@ -516,6 +515,7 @@ "es_419": "લેટિન અમેરિકન સ્પેનિશ", "es_ES": "યુરોપિયન સ્પેનિશ", "es_MX": "મેક્સિકન સ્પેનિશ", + "fa_AF": "ડારી", "fr_CA": "કેનેડિયન ફ્રેંચ", "fr_CH": "સ્વિસ ફ્રેંચ", "nds_NL": "લો સેક્સોન", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ha.json b/src/Symfony/Component/Intl/Resources/data/languages/ha.json index b1e72560a437..36e0260fb96a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha.json @@ -161,6 +161,7 @@ "rof": "Rombo", "ru": "Rashanci", "rw": "Kiniyaruwanda", + "rwk": "yaren Rwa", "sa": "Sanskrit", "sah": "Sakha", "saq": "Samburu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 612dcead547d..ace10e1cbd23 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/he.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/he.json @@ -129,7 +129,6 @@ "eu": "בסקית", "ewo": "אוונדו", "fa": "פרסית", - "fa_AF": "דארי", "fan": "פנג", "fat": "פאנטי", "ff": "פולה", @@ -515,6 +514,7 @@ "LocalizedNames": { "ar_001": "ערבית ספרותית", "de_CH": "גרמנית (שוויץ)", + "fa_AF": "דארי", "fr_CH": "צרפתית (שוויץ)", "nds_NL": "סקסונית תחתית", "nl_BE": "פלמית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 69d4e7ba351f..0b62c59a3002 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hi.json @@ -120,7 +120,6 @@ "eu": "बास्क", "ewo": "इवोन्डो", "fa": "फ़ारसी", - "fa_AF": "दारी", "fan": "फैन्ग", "fat": "फन्टी", "ff": "फुलाह", @@ -505,6 +504,7 @@ "es_419": "लैटिन अमेरिकी स्पेनिश", "es_ES": "यूरोपीय स्पेनिश", "es_MX": "मैक्सिकन स्पेनिश", + "fa_AF": "दारी", "fr_CA": "कनाडाई फ़्रेंच", "fr_CH": "स्विस फ़्रेंच", "nds_NL": "निचली सैक्सन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index 8052a21afd4f..143dd3c97145 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hr.json @@ -128,7 +128,6 @@ "eu": "baskijski", "ewo": "ewondo", "fa": "perzijski", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", @@ -523,6 +522,7 @@ "es_419": "latinoamerički španjolski", "es_ES": "europski španjolski", "es_MX": "meksički španjolski", + "fa_AF": "dari", "fr_CA": "kanadski francuski", "fr_CH": "švicarski francuski", "nds_NL": "donjosaksonski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index fa8cc0c90164..cc473bc0dd6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hu.json @@ -128,7 +128,6 @@ "eu": "baszk", "ewo": "evondo", "fa": "perzsa", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", @@ -522,6 +521,7 @@ "es_419": "latin-amerikai spanyol", "es_ES": "európai spanyol", "es_MX": "spanyol (mexikói)", + "fa_AF": "dari", "fr_CA": "kanadai francia", "fr_CH": "svájci francia", "nds_NL": "alsószász", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index 990105dc9a57..c9b9271cd857 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hy.json @@ -99,7 +99,6 @@ "eu": "բասկերեն", "ewo": "էվոնդո", "fa": "պարսկերեն", - "fa_AF": "դարի", "ff": "ֆուլահ", "fi": "ֆիններեն", "fil": "ֆիլիպիներեն", @@ -462,6 +461,7 @@ "es_419": "լատինամերիկյան իսպաներեն", "es_ES": "եվրոպական իսպաներեն", "es_MX": "մեքսիկական իսպաներեն", + "fa_AF": "դարի", "fr_CA": "կանադական ֆրանսերեն", "fr_CH": "շվեյցարական ֆրանսերեն", "nds_NL": "ստորին սաքսոներեն", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/id.json b/src/Symfony/Component/Intl/Resources/data/languages/id.json index 92e60c3e06bc..0bb7d114d1e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/id.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/id.json @@ -138,7 +138,6 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persia", - "fa_AF": "Persia Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fula", @@ -539,6 +538,7 @@ "de_CH": "Jerman Tinggi (Swiss)", "en_GB": "Inggris (Inggris)", "es_ES": "Spanyol (Eropa)", + "fa_AF": "Persia Dari", "fr_CA": "Perancis (Kanada)", "fr_CH": "Perancis (Swiss)", "pt_PT": "Portugis (Eropa)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/in.json b/src/Symfony/Component/Intl/Resources/data/languages/in.json index 92e60c3e06bc..0bb7d114d1e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/in.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/in.json @@ -138,7 +138,6 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persia", - "fa_AF": "Persia Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fula", @@ -539,6 +538,7 @@ "de_CH": "Jerman Tinggi (Swiss)", "en_GB": "Inggris (Inggris)", "es_ES": "Spanyol (Eropa)", + "fa_AF": "Persia Dari", "fr_CA": "Perancis (Kanada)", "fr_CH": "Perancis (Swiss)", "pt_PT": "Portugis (Eropa)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index d0c71f0293fc..e4b31ffdbae9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/is.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/is.json @@ -122,7 +122,6 @@ "eu": "baskneska", "ewo": "evondó", "fa": "persneska", - "fa_AF": "darí", "fan": "fang", "fat": "fantí", "ff": "fúla", @@ -506,6 +505,7 @@ "es_419": "rómönsk-amerísk spænska", "es_ES": "evrópsk spænska", "es_MX": "mexíkósk spænska", + "fa_AF": "darí", "fr_CA": "kanadísk franska", "fr_CH": "svissnesk franska", "nds_NL": "lágsaxneska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index ad4da2e41c82..876aec611808 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/it.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/it.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "estremegno", "fa": "persiano", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -600,6 +599,7 @@ "es_419": "spagnolo latinoamericano", "es_ES": "spagnolo europeo", "es_MX": "spagnolo messicano", + "fa_AF": "dari", "fr_CA": "francese canadese", "fr_CH": "francese svizzero", "nds_NL": "basso tedesco olandese", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index 612dcead547d..ace10e1cbd23 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/iw.json @@ -129,7 +129,6 @@ "eu": "בסקית", "ewo": "אוונדו", "fa": "פרסית", - "fa_AF": "דארי", "fan": "פנג", "fat": "פאנטי", "ff": "פולה", @@ -515,6 +514,7 @@ "LocalizedNames": { "ar_001": "ערבית ספרותית", "de_CH": "גרמנית (שוויץ)", + "fa_AF": "דארי", "fr_CH": "צרפתית (שוויץ)", "nds_NL": "סקסונית תחתית", "nl_BE": "פלמית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index 30d9776d0946..af76952c65fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ja.json @@ -150,7 +150,6 @@ "ewo": "エウォンド語", "ext": "エストレマドゥーラ語", "fa": "ペルシア語", - "fa_AF": "ダリー語", "fan": "ファング語", "fat": "ファンティー語", "ff": "フラ語", @@ -603,6 +602,7 @@ "en_GB": "イギリス英語", "en_US": "アメリカ英語", "es_ES": "スペイン語 (イベリア半島)", + "fa_AF": "ダリー語", "nl_BE": "フレミッシュ語", "pt_PT": "ポルトガル語 (イベリア半島)", "ro_MD": "モルダビア語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 6c773a96b4ac..958b721eb501 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ka.json @@ -114,7 +114,6 @@ "eu": "ბასკური", "ewo": "ევონდო", "fa": "სპარსული", - "fa_AF": "დარი", "ff": "ფულა", "fi": "ფინური", "fil": "ფილიპინური", @@ -467,6 +466,7 @@ "es_419": "ლათინურ ამერიკული ესპანური", "es_ES": "ევროპული ესპანური", "es_MX": "მექსიკური ესპანური", + "fa_AF": "დარი", "fr_CA": "კანადური ფრანგული", "fr_CH": "შვეიცარიული ფრანგული", "nds_NL": "ქვემოსაქსონური", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kk.json b/src/Symfony/Component/Intl/Resources/data/languages/kk.json index 12645438a000..044ad83e647c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kk.json @@ -87,7 +87,6 @@ "eu": "баск тілі", "ewo": "эвондо тілі", "fa": "парсы тілі", - "fa_AF": "дари тілі", "ff": "фула тілі", "fi": "фин тілі", "fil": "филиппин тілі", @@ -390,6 +389,7 @@ "es_419": "латынамерикалық испан тілі", "es_ES": "еуропалық испан тілі", "es_MX": "мексикалық испан тілі", + "fa_AF": "дари тілі", "fr_CA": "канадалық француз тілі", "fr_CH": "швейцариялық француз тілі", "nds_NL": "төменгі саксон тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/km.json b/src/Symfony/Component/Intl/Resources/data/languages/km.json index c0c870802e77..a3ff930efe39 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/km.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/km.json @@ -88,7 +88,6 @@ "eu": "បាសខ៍", "ewo": "អ៊ីវ៉ុនដូ", "fa": "ភឺសៀន", - "fa_AF": "ដារី", "ff": "ហ្វ៊ូឡា", "fi": "ហ្វាំងឡង់", "fil": "ហ្វីលីពីន", @@ -384,6 +383,7 @@ "ar_001": "អារ៉ាប់ (ស្តង់ដារ)", "de_CH": "អាល្លឺម៉ង់ (ស្វ៊ីស)", "es_ES": "អេស្ប៉ាញ (អ៊ឺរ៉ុប)", + "fa_AF": "ដារី", "fr_CH": "បារាំង (ស្វ៊ីស)", "nds_NL": "ហ្សាក់ស្យុងក្រោម", "nl_BE": "ផ្លាមីស", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kn.json b/src/Symfony/Component/Intl/Resources/data/languages/kn.json index 820b65caac7f..f01bd837a6ce 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kn.json @@ -119,7 +119,6 @@ "eu": "ಬಾಸ್ಕ್", "ewo": "ಇವಾಂಡೋ", "fa": "ಪರ್ಶಿಯನ್", - "fa_AF": "ದರಿ", "fan": "ಫಾಂಗ್", "fat": "ಫಾಂಟಿ", "ff": "ಫುಲಾ", @@ -507,6 +506,7 @@ "es_419": "ಲ್ಯಾಟಿನ್ ಅಮೇರಿಕನ್ ಸ್ಪ್ಯಾನಿಷ್", "es_ES": "ಯುರೋಪಿಯನ್ ಸ್ಪ್ಯಾನಿಷ್", "es_MX": "ಮೆಕ್ಸಿಕನ್ ಸ್ಪ್ಯಾನಿಷ್", + "fa_AF": "ದರಿ", "fr_CA": "ಕೆನೆಡಿಯನ್ ಫ್ರೆಂಚ್", "fr_CH": "ಸ್ವಿಸ್ ಫ್ರೆಂಚ್", "nds_NL": "ಲೋ ಸ್ಯಾಕ್ಸನ್", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ko.json b/src/Symfony/Component/Intl/Resources/data/languages/ko.json index 56b38931d839..74eacf49777e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ko.json @@ -133,7 +133,6 @@ "eu": "바스크어", "ewo": "이원도어", "fa": "페르시아어", - "fa_AF": "다리어", "fan": "팡그어", "fat": "판티어", "ff": "풀라어", @@ -532,6 +531,7 @@ "de_CH": "고지 독일어(스위스)", "en_AU": "영어(호주)", "es_ES": "스페인어(유럽)", + "fa_AF": "다리어", "nds_NL": "저지 색슨어", "nl_BE": "플라망어", "pt_PT": "포르투갈어(유럽)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ky.json b/src/Symfony/Component/Intl/Resources/data/languages/ky.json index 4e85fecacff3..f65cbf7094bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ky.json @@ -87,7 +87,6 @@ "eu": "баскча", "ewo": "эвондочо", "fa": "фарсча", - "fa_AF": "дари", "ff": "фулача", "fi": "финче", "fil": "филипинче", @@ -386,6 +385,7 @@ "de_CH": "адабий немисче (Швейцария)", "en_US": "англисче (Америка Кошмо Штаттары)", "es_ES": "испанча (Европа)", + "fa_AF": "дари", "nds_NL": "төмөнкү саксончо", "nl_BE": "фламандча", "pt_BR": "Бразилиялык Португал тили", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index 02a75aef44c8..65eb3b795a66 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lb.json @@ -598,7 +598,6 @@ "es_MX": "Mexikanescht Spuenesch", "fr_CA": "Kanadescht Franséisch", "fr_CH": "Schwäizer Franséisch", - "nds_NL": "nds_NL", "nl_BE": "Flämesch", "pt_BR": "Brasilianescht Portugisesch", "pt_PT": "Europäescht Portugisesch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lo.json b/src/Symfony/Component/Intl/Resources/data/languages/lo.json index 2d2899f592a1..3742653556b5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lo.json @@ -127,7 +127,6 @@ "eu": "ບັສກີ", "ewo": "ອີວອນດູ", "fa": "ເປີຊຽນ", - "fa_AF": "ດາຣີ", "fan": "ແຟງ", "fat": "ແຟນຕີ", "ff": "ຟູລາ", @@ -514,6 +513,7 @@ "es_419": "ລາຕິນ ອາເມຣິກັນ ສະແປນນິຊ", "es_ES": "ສະເປັນ ຢຸໂຣບ", "es_MX": "ເມັກຊິກັນ ສະແປນນິຊ", + "fa_AF": "ດາຣີ", "fr_CA": "ຟລັງ(ການາດາ)", "fr_CH": "ຝຣັ່ງ (ສວິສ)", "nds_NL": "ຊາຊອນ ຕອນໄຕ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lv.json b/src/Symfony/Component/Intl/Resources/data/languages/lv.json index 2724fdb6d547..1996365c792f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lv.json @@ -127,7 +127,6 @@ "eu": "basku", "ewo": "evondu", "fa": "persiešu", - "fa_AF": "darī", "fan": "fangu", "fat": "fantu", "ff": "fulu", @@ -510,6 +509,7 @@ "az_Arab": "dienvidazerbaidžāņu", "de_CH": "augšvācu (Šveice)", "en_GB": "angļu (Lielbritānija)", + "fa_AF": "darī", "nds_NL": "lejassakšu", "nl_BE": "flāmu", "ro_MD": "moldāvu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index 653706430ae6..c393abd8f6be 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mk.json @@ -149,7 +149,6 @@ "ewo": "евондо", "ext": "екстремадурски", "fa": "персиски", - "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фула", @@ -604,6 +603,7 @@ "es_419": "латиноамерикански шпански", "es_ES": "шпански (во Европа)", "es_MX": "мексикански шпански", + "fa_AF": "дари", "fr_CA": "канадски француски", "fr_CH": "швајцарски француски", "nds_NL": "долносаксонски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index cb3ea535c3c2..e8bfa112b059 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mo.json @@ -128,7 +128,6 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -515,6 +514,7 @@ "ar_001": "arabă standard modernă", "de_CH": "germană standard (Elveția)", "es_ES": "spaniolă (Europa)", + "fa_AF": "dari", "nds_NL": "saxona de jos", "nl_BE": "flamandă", "pt_PT": "portugheză (Europa)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ms.json b/src/Symfony/Component/Intl/Resources/data/languages/ms.json index 9bfb8ac79a5c..69d43c5b4806 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ms.json @@ -110,7 +110,6 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Parsi", - "fa_AF": "Dari", "ff": "Fulah", "fi": "Finland", "fil": "Filipina", @@ -434,6 +433,7 @@ "es_419": "Sepanyol Amerika Latin", "es_ES": "Sepanyol Eropah", "es_MX": "Sepanyol Mexico", + "fa_AF": "Dari", "fr_CA": "Perancis Kanada", "fr_CH": "Perancis Switzerland", "nds_NL": "Saxon Rendah", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/my.json b/src/Symfony/Component/Intl/Resources/data/languages/my.json index cd144bfa3581..76cdae37c281 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/my.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/my.json @@ -93,7 +93,6 @@ "eu": "ဘာစ်ခ်", "ewo": "အီဝန်ဒို", "fa": "ပါရှန်", - "fa_AF": "ဒါရီ", "ff": "ဖူလာ", "fi": "ဖင်လန်", "fil": "ဖိလစ်ပိုင်", @@ -405,6 +404,7 @@ "en_US": "အမေရိကန် အင်္ဂလိပ်", "es_ES": "စပိန် (ဥရောပ)", "es_MX": "စပိန် (မက္ကဆီကို)", + "fa_AF": "ဒါရီ", "fr_CA": "ကနေဒါ ပြင်သစ်", "fr_CH": "ဆွစ် ပြင်သစ်", "nds_NL": "ဂျာမန် (နယ်သာလန်)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index c9712981edac..9250e8977eb5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nb.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "ekstremaduransk", "fa": "persisk", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulfulde", @@ -597,6 +596,7 @@ }, "LocalizedNames": { "ar_001": "moderne standardarabisk", + "fa_AF": "dari", "nds_NL": "nedersaksisk", "nl_BE": "flamsk", "ro_MD": "moldovsk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ne.json b/src/Symfony/Component/Intl/Resources/data/languages/ne.json index eef5aeb7f9e8..3c46b2a40bcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ne.json @@ -147,7 +147,6 @@ "ewo": "इवोन्डो", "ext": "एक्सट्रेमादुराली", "fa": "फारसी", - "fa_AF": "दारी", "fan": "फाङ", "fat": "फान्टी", "ff": "फुलाह", @@ -548,6 +547,7 @@ "es_419": "ल्याटिन अमेरिकी स्पेनी", "es_ES": "युरोपेली स्पेनी", "es_MX": "मेक्सिकन स्पेनी", + "fa_AF": "दारी", "fr_CA": "क्यानेडाली फ्रान्सेली", "fr_CH": "स्विस फ्रेन्च", "nds_NL": "तल्लो साक्सन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 51190c74163f..69704bf83d7a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nl.json @@ -150,7 +150,6 @@ "ewo": "Ewondo", "ext": "Extremeens", "fa": "Perzisch", - "fa_AF": "Dari", "fan": "Fang", "fat": "Fanti", "ff": "Fulah", @@ -596,6 +595,7 @@ "zza": "Zaza" }, "LocalizedNames": { + "fa_AF": "Dari", "nds_NL": "Nederduits" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/no.json b/src/Symfony/Component/Intl/Resources/data/languages/no.json index c9712981edac..9250e8977eb5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/no.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/no.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "ekstremaduransk", "fa": "persisk", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulfulde", @@ -597,6 +596,7 @@ }, "LocalizedNames": { "ar_001": "moderne standardarabisk", + "fa_AF": "dari", "nds_NL": "nedersaksisk", "nl_BE": "flamsk", "ro_MD": "moldovsk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/or.json b/src/Symfony/Component/Intl/Resources/data/languages/or.json index d5571a2912ad..df69a854775d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/or.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/or.json @@ -118,7 +118,6 @@ "eu": "ବାସ୍କ୍ୱି", "ewo": "ଇୱୋଣ୍ଡୋ", "fa": "ପର୍ସିଆନ୍", - "fa_AF": "ଦାରି", "fan": "ଫାଙ୍ଗ", "fat": "ଫାଣ୍ଟି", "ff": "ଫୁଲାହ", @@ -495,6 +494,7 @@ "es_419": "ଲାଟିନ୍‌ ଆମେରିକୀୟ ସ୍ପାନିସ୍‌", "es_ES": "ୟୁରୋପୀୟ ସ୍ପାନିସ୍‌", "es_MX": "ମେକ୍ସିକାନ ସ୍ପାନିସ୍‌", + "fa_AF": "ଦାରି", "fr_CA": "କାନାଡିୟ ଫ୍ରେଞ୍ଚ", "fr_CH": "ସ୍ୱିସ୍ ଫ୍ରେଞ୍ଚ", "nl_BE": "ଫ୍ଲେମିଶ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pa.json b/src/Symfony/Component/Intl/Resources/data/languages/pa.json index 287f4f01cd80..105b5fe8a563 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa.json @@ -90,7 +90,6 @@ "eu": "ਬਾਸਕ", "ewo": "ਇਵੋਂਡੋ", "fa": "ਫ਼ਾਰਸੀ", - "fa_AF": "ਦਾਰੀ", "ff": "ਫੁਲਾਹ", "fi": "ਫਿਨਿਸ਼", "fil": "ਫਿਲੀਪਿਨੋ", @@ -400,6 +399,7 @@ "es_419": "ਸਪੇਨੀ (ਲਾਤੀਨੀ ਅਮਰੀਕੀ)", "es_ES": "ਸਪੇਨੀ (ਯੂਰਪੀ)", "es_MX": "ਸਪੇਨੀ (ਮੈਕਸੀਕੀ)", + "fa_AF": "ਦਾਰੀ", "fr_CA": "ਫਰਾਂਸੀਸੀ (ਕੈਨੇਡੀਅਨ)", "nds_NL": "ਲੋ ਸੈਕਸਨ", "nl_BE": "ਫਲੈਮਿਸ਼", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pl.json b/src/Symfony/Component/Intl/Resources/data/languages/pl.json index 85f06e197c3b..d60640d472e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pl.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "estremadurski", "fa": "perski", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", @@ -606,6 +605,7 @@ "es_419": "amerykański hiszpański", "es_ES": "europejski hiszpański", "es_MX": "meksykański hiszpański", + "fa_AF": "dari", "fr_CA": "kanadyjski francuski", "fr_CH": "szwajcarski francuski", "nds_NL": "dolnosaksoński", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps.json b/src/Symfony/Component/Intl/Resources/data/languages/ps.json index d950b776af76..61c5cf317326 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ps.json @@ -87,7 +87,6 @@ "eu": "باسکي", "ewo": "اوونڊو", "fa": "فارسي", - "fa_AF": "دری (افغانستان)", "ff": "فولاح", "fi": "فینلنډي", "fil": "فلیپیني", @@ -380,6 +379,7 @@ "es_419": "لاتيني امريکايي هسپانوي", "es_ES": "اروپايي هسپانوي", "es_MX": "ميکسيکي هسپانوي", + "fa_AF": "دری (افغانستان)", "fr_CA": "کاناډايي فرانسوي", "fr_CH": "سويسي فرانسوي", "nl_BE": "فلېمېشي", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index 36c07bda9714..641447c33457 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt.json @@ -128,7 +128,6 @@ "eu": "basco", "ewo": "ewondo", "fa": "persa", - "fa_AF": "dari", "fan": "fangue", "fat": "fanti", "ff": "fula", @@ -515,6 +514,7 @@ "ar_001": "árabe moderno", "az_Arab": "azeri sul", "de_CH": "alto alemão (Suíça)", + "fa_AF": "dari", "nds_NL": "baixo saxão", "nl_BE": "flamengo", "ro_MD": "moldávio", 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 dec51bc40333..7e08591ee5bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json @@ -95,6 +95,7 @@ "es_419": "espanhol latino-americano", "es_ES": "espanhol europeu", "es_MX": "espanhol mexicano", + "fa_AF": "dari", "fr_CA": "francês canadiano", "fr_CH": "francês suíço", "nds_NL": "baixo-saxão", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro.json b/src/Symfony/Component/Intl/Resources/data/languages/ro.json index cb3ea535c3c2..e8bfa112b059 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro.json @@ -128,7 +128,6 @@ "eu": "bască", "ewo": "ewondo", "fa": "persană", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulah", @@ -515,6 +514,7 @@ "ar_001": "arabă standard modernă", "de_CH": "germană standard (Elveția)", "es_ES": "spaniolă (Europa)", + "fa_AF": "dari", "nds_NL": "saxona de jos", "nl_BE": "flamandă", "pt_PT": "portugheză (Europa)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ru.json b/src/Symfony/Component/Intl/Resources/data/languages/ru.json index 9220640ce242..8174d481cb75 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ru.json @@ -128,7 +128,6 @@ "eu": "баскский", "ewo": "эвондо", "fa": "персидский", - "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фулах", @@ -523,6 +522,7 @@ "es_419": "латиноамериканский испанский", "es_ES": "европейский испанский", "es_MX": "мексиканский испанский", + "fa_AF": "дари", "fr_CA": "канадский французский", "fr_CH": "швейцарский французский", "nds_NL": "нижнесаксонский", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sd.json b/src/Symfony/Component/Intl/Resources/data/languages/sd.json index 20c3431ae4ea..ac121d105c35 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sd.json @@ -86,7 +86,6 @@ "eu": "باسڪي", "ewo": "اوانڊو", "fa": "فارسي", - "fa_AF": "دري", "ff": "فلاهه", "fi": "فنش", "fil": "فلپائني", @@ -381,6 +380,7 @@ "es_419": "لاطيني آمريڪي اسپينش", "es_ES": "يورپي اسپيني", "es_MX": "ميڪسيڪين اسپيني", + "fa_AF": "دري", "fr_CA": "ڪينيڊيائي فرانسيسي", "fr_CH": "سوئس فرانسيسي", "nl_BE": "فلیمش", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json index 29eb71c2bd11..8618e57c246b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sd_Deva.json @@ -1,24 +1,25 @@ { "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": "चीनी(लिप्यंतरण जो इशारो: खास करे, मेंडिरिन चीनी जे लाइ" + }, + "LocalizedNames": { + "de_AT": "आसट्रियन जो जर्मन", + "de_CH": "स्विसु हाई जर्मनु", + "en_AU": "ऑसटेलियन अंगरेज़ी", + "en_CA": "केनेडियन अंगरेज़ी", + "es_419": "लैटिणु अमिरिकी स्पेन वारो", + "es_ES": "यूरोपियन स्पेनी", + "es_MX": "मैक्सिकन स्पेनिश", + "pt_PT": ".यूरोपी पुर्तगीज़", "zh_Hant": "रवायती चीनी" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh.json b/src/Symfony/Component/Intl/Resources/data/languages/sh.json index c7b327a9427f..9f0f29e1dc4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh.json @@ -119,7 +119,6 @@ "eu": "baskijski", "ewo": "evondo", "fa": "persijski", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", @@ -498,6 +497,7 @@ "en_GB": "engleski (Velika Britanija)", "en_US": "engleski (Sjedinjene Američke Države)", "es_ES": "španski (Evropa)", + "fa_AF": "dari", "nds_NL": "niskosaksonski", "nl_BE": "flamanski", "pt_PT": "portugalski (Portugal)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index 5861284613f5..5c1006c2dacf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/si.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/si.json @@ -88,7 +88,6 @@ "eu": "බාස්ක්", "ewo": "එවොන්ඩො", "fa": "පර්සියානු", - "fa_AF": "ඩාරි", "ff": "ෆුලාහ්", "fi": "ෆින්ලන්ත", "fil": "පිලිපීන", @@ -392,6 +391,7 @@ "es_419": "ලතින් ඇමරිකානු ස්පාඤ්ඤ", "es_ES": "යුරෝපීය ස්පාඤ්ඤ", "es_MX": "මෙක්සිකානු ස්පාඤ්ඤ", + "fa_AF": "ඩාරි", "fr_CA": "කැනේඩියානු ප්‍රංශ", "fr_CH": "ස්විස් ප්‍රංශ", "nds_NL": "පහළ සැක්සන්", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index 9a4d63baeed4..54528adfb5cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sk.json @@ -128,7 +128,6 @@ "eu": "baskičtina", "ewo": "ewondo", "fa": "perzština", - "fa_AF": "daríjčina", "fan": "fangčina", "fat": "fanti", "ff": "fulbčina", @@ -517,6 +516,7 @@ "es_419": "španielčina (latinskoamerická)", "es_ES": "španielčina (európska)", "es_MX": "španielčina (mexická)", + "fa_AF": "daríjčina", "fr_CA": "francúzština (kanadská)", "fr_CH": "francúzština (švajčiarska)", "nds_NL": "dolná saština", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index 15ec8c62ebec..d93426ec0741 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sl.json @@ -118,7 +118,6 @@ "eu": "baskovščina", "ewo": "evondovščina", "fa": "perzijščina", - "fa_AF": "darijščina", "fan": "fangijščina", "fat": "fantijščina", "ff": "fulščina", @@ -497,6 +496,7 @@ "en_US": "angleščina (ZDA)", "es_ES": "evropska španščina", "es_MX": "mehiška španščina", + "fa_AF": "darijščina", "fr_CA": "kanadska francoščina", "fr_CH": "švicarska francoščina", "nds_NL": "nizka saščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/so.json b/src/Symfony/Component/Intl/Resources/data/languages/so.json index de5e1ea75315..325795ee5623 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/so.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/so.json @@ -54,6 +54,7 @@ "fil": "Tagalog", "fo": "Farowsi", "fr": "Faransiis", + "frc": "Faransiiska Cajun", "fur": "Firiyuuliyaan", "fy": "Firiisiyan Galbeed", "ga": "Ayrish", @@ -112,12 +113,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", @@ -226,6 +229,7 @@ "en_US": "Ingiriis Maraykan", "es_419": "Isbaanishka Laatiin Ameerika", "es_ES": "Isbaanish (Isbayn)", + "fa_AF": "Faarsi", "fr_CA": "Faransiiska Kanada", "fr_CH": "Faransiis (Iswiiserlaand)", "nl_BE": "Af faleemi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index 210b262add00..b205782b8165 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sq.json @@ -87,7 +87,6 @@ "eu": "baskisht", "ewo": "euondoisht", "fa": "persisht", - "fa_AF": "darisht", "ff": "fulaisht", "fi": "finlandisht", "fil": "filipinisht", @@ -390,6 +389,7 @@ "es_419": "spanjishte amerikano-latine", "es_ES": "spanjishte evropiane", "es_MX": "spanjishte meksikane", + "fa_AF": "darisht", "fr_CA": "frëngjishte kanadeze", "fr_CH": "frëngjishte zvicerane", "nds_NL": "gjermanishte saksone e vendeve të ulëta", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr.json b/src/Symfony/Component/Intl/Resources/data/languages/sr.json index deeae7994646..b4491fd23341 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr.json @@ -119,7 +119,6 @@ "eu": "баскијски", "ewo": "евондо", "fa": "персијски", - "fa_AF": "дари", "fan": "фанг", "fat": "фанти", "ff": "фула", @@ -498,6 +497,7 @@ "en_GB": "енглески (Велика Британија)", "en_US": "енглески (Сједињене Америчке Државе)", "es_ES": "шпански (Европа)", + "fa_AF": "дари", "nds_NL": "нискосаксонски", "nl_BE": "фламански", "pt_PT": "португалски (Португал)", 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 c7b327a9427f..9f0f29e1dc4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json @@ -119,7 +119,6 @@ "eu": "baskijski", "ewo": "evondo", "fa": "persijski", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fula", @@ -498,6 +497,7 @@ "en_GB": "engleski (Velika Britanija)", "en_US": "engleski (Sjedinjene Američke Države)", "es_ES": "španski (Evropa)", + "fa_AF": "dari", "nds_NL": "niskosaksonski", "nl_BE": "flamanski", "pt_PT": "portugalski (Portugal)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/su.json b/src/Symfony/Component/Intl/Resources/data/languages/su.json index 18d2fdd06cb4..df476f458fcd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/su.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/su.json @@ -1,29 +1,30 @@ { "Names": { "de": "Jérman", + "en": "Inggris", + "es": "Spanyol", + "fr": "Prancis", + "it": "Italia", + "ja": "Jepang", + "pt": "Portugis", + "ru": "Rusia", + "su": "Basa Sunda", + "zh": "Tiongkok" + }, + "LocalizedNames": { "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 8482a1af4f29..5053eea4934d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv.json @@ -150,7 +150,6 @@ "ewo": "ewondo", "ext": "extremaduriska", "fa": "persiska", - "fa_AF": "dari", "fan": "fang", "fat": "fanti", "ff": "fulani", @@ -606,6 +605,7 @@ "es_419": "latinamerikansk spanska", "es_ES": "europeisk spanska", "es_MX": "mexikansk spanska", + "fa_AF": "dari", "fr_CA": "kanadensisk franska", "fr_CH": "schweizisk franska", "nds_NL": "lågsaxiska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index abef9f6f1eff..d8860895b982 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ta.json @@ -122,7 +122,6 @@ "eu": "பாஸ்க்", "ewo": "எவோன்டோ", "fa": "பெர்ஷியன்", - "fa_AF": "தாரி", "fan": "ஃபேங்க்", "fat": "ஃபான்டி", "ff": "ஃபுலா", @@ -513,6 +512,7 @@ "es_419": "லத்தின் அமெரிக்க ஸ்பானிஷ்", "es_ES": "ஐரோப்பிய ஸ்பானிஷ்", "es_MX": "மெக்ஸிகன் ஸ்பானிஷ்", + "fa_AF": "தாரி", "fr_CA": "கனடிய பிரெஞ்சு", "fr_CH": "ஸ்விஸ் பிரஞ்சு", "nds_NL": "லோ சாக்ஸன்", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/te.json b/src/Symfony/Component/Intl/Resources/data/languages/te.json index fa70361a6790..67b8d7a2bd89 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/te.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/te.json @@ -122,7 +122,6 @@ "eu": "బాస్క్యూ", "ewo": "ఎవోండొ", "fa": "పర్షియన్", - "fa_AF": "డారి", "fan": "ఫాంగ్", "fat": "ఫాంటి", "ff": "ఫ్యుల", @@ -511,6 +510,7 @@ "es_419": "లాటిన్ అమెరికన్ స్పానిష్", "es_ES": "యూరోపియన్ స్పానిష్", "es_MX": "మెక్సికన్ స్పానిష్", + "fa_AF": "డారి", "fr_CA": "కెనడియెన్ ఫ్రెంచ్", "fr_CH": "స్విస్ ఫ్రెంచ్", "nds_NL": "లో సాక్సన్", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 2656ef181ac5..e166e686e498 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/th.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/th.json @@ -150,7 +150,6 @@ "ewo": "อีวันโด", "ext": "เอกซ์เตรมาดูรา", "fa": "เปอร์เซีย", - "fa_AF": "ดารี", "fan": "ฟอง", "fat": "ฟันติ", "ff": "ฟูลาห์", @@ -606,6 +605,7 @@ "es_419": "สเปน - ละตินอเมริกา", "es_ES": "สเปน - ยุโรป", "es_MX": "สเปน - เม็กซิโก", + "fa_AF": "ดารี", "fr_CA": "ฝรั่งเศส - แคนาดา", "fr_CH": "ฝรั่งเศส (สวิส)", "nds_NL": "แซกซอนใต้", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tk.json b/src/Symfony/Component/Intl/Resources/data/languages/tk.json index 95895ab56cb6..d566c791c245 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tk.json @@ -86,7 +86,6 @@ "eu": "bask dili", "ewo": "ewondo dili", "fa": "pars dili", - "fa_AF": "dari dili", "ff": "fula dili", "fi": "fin dili", "fil": "filippin dili", @@ -376,6 +375,7 @@ "en_GB": "iňlis dili (Beýik Britaniýa)", "en_US": "iňlis dili (Amerika)", "es_ES": "ispan dili (Ýewropa)", + "fa_AF": "dari dili", "nl_BE": "flamand dili", "pt_PT": "portugal dili (Ýewropa)", "ro_MD": "moldaw dili", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index 4eacac9a68a0..78f4673b4409 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tl.json @@ -88,7 +88,6 @@ "eu": "Basque", "ewo": "Ewondo", "fa": "Persian", - "fa_AF": "Dari", "ff": "Fulah", "fi": "Finnish", "fil": "Filipino", @@ -395,6 +394,7 @@ "es_419": "Latin American na Espanyol", "es_ES": "European Spanish", "es_MX": "Mexican na Espanyol", + "fa_AF": "Dari", "fr_CA": "French sa Canada", "fr_CH": "Swiss na French", "nds_NL": "Low Saxon", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tr.json b/src/Symfony/Component/Intl/Resources/data/languages/tr.json index a6161e5eeaae..5694520eb2ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tr.json @@ -150,7 +150,6 @@ "ewo": "Ewondo", "ext": "Ekstremadura Dili", "fa": "Farsça", - "fa_AF": "Darice", "fan": "Fang", "fat": "Fanti", "ff": "Fula dili", @@ -607,6 +606,7 @@ "es_419": "Latin Amerika İspanyolcası", "es_ES": "Avrupa İspanyolcası", "es_MX": "Meksika İspanyolcası", + "fa_AF": "Darice", "fr_CA": "Kanada Fransızcası", "fr_CH": "İsviçre Fransızcası", "nds_NL": "Aşağı Saksonca", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uk.json b/src/Symfony/Component/Intl/Resources/data/languages/uk.json index a217d72d7119..1bb41a95b7e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uk.json @@ -138,7 +138,6 @@ "eu": "баскська", "ewo": "евондо", "fa": "перська", - "fa_AF": "дарі", "fan": "фанг", "fat": "фанті", "ff": "фула", @@ -535,6 +534,7 @@ "es_419": "латиноамериканська іспанська", "es_ES": "іспанська (Європа)", "es_MX": "мексиканська іспанська", + "fa_AF": "дарі", "fr_CA": "канадська французька", "fr_CH": "швейцарська французька", "nds_NL": "нижньосаксонська", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index bad0c19cfd1b..8a218b69be51 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur.json @@ -88,7 +88,6 @@ "eu": "باسکی", "ewo": "ایوانڈو", "fa": "فارسی", - "fa_AF": "دری", "ff": "فولہ", "fi": "فینیش", "fil": "فلیپینو", @@ -396,6 +395,7 @@ "es_419": "لاطینی امریکی ہسپانوی", "es_ES": "یورپی ہسپانوی", "es_MX": "میکسیکن ہسپانوی", + "fa_AF": "دری", "fr_CA": "کینیڈین فرانسیسی", "fr_CH": "سوئس فرینچ", "nds_NL": "ادنی سیکسن", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index a2bc956cab9f..dce2c6f884a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz.json @@ -87,7 +87,6 @@ "eu": "bask", "ewo": "evondo", "fa": "fors", - "fa_AF": "dari", "ff": "fula", "fi": "fincha", "fil": "filipincha", @@ -387,6 +386,7 @@ "es_419": "ispan (Lotin Amerikasi)", "es_ES": "ispan (Yevropa)", "es_MX": "ispan (Meksika)", + "fa_AF": "dari", "fr_CA": "fransuz (Kanada)", "fr_CH": "fransuz (Shveytsariya)", "nds_NL": "quyi sakson", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/vi.json b/src/Symfony/Component/Intl/Resources/data/languages/vi.json index a205a34dd79a..1060f3be6751 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/vi.json @@ -147,7 +147,6 @@ "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", @@ -547,6 +546,7 @@ "en_US": "Tiếng Anh (Mỹ)", "es_419": "Tiếng Tây Ban Nha (Mỹ La tinh)", "es_ES": "Tiếng Tây Ban Nha (Châu Âu)", + "fa_AF": "Tiếng Dari", "nds_NL": "Tiếng Hạ Saxon", "nl_BE": "Tiếng Flemish", "pt_PT": "Tiếng Bồ Đào Nha (Châu Âu)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo.json b/src/Symfony/Component/Intl/Resources/data/languages/yo.json index 0aeb8bb1d663..4ddafa1d1809 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,81 +1,187 @@ { "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ì", + "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ì", "eo": "Èdè Esperanto", "es": "Èdè Sípáníìṣì", "et": "Èdè Estonia", "eu": "Èdè Baski", + "ewo": "Èwóǹdò", "fa": "Èdè Pasia", "ff": "Èdè Fúlàní", "fi": "Èdè Finisi", "fil": "Èdè Filipino", "fo": "Èdè Faroesi", "fr": "Èdè Faransé", + "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ì", "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í", + "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", @@ -85,18 +191,33 @@ "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", "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" }, @@ -112,6 +233,7 @@ "fr_CA": "Èdè Faransé (orílẹ̀-èdè Kánádà)", "fr_CH": "Èdè Faranṣé (Súwísàlaǹdì)", "pt_BR": "Èdè Pọtogí (Orilẹ̀-èdè Bràsíl)", - "pt_PT": "Èdè Pọtogí (orílẹ̀-èdè Yúróòpù)" + "pt_PT": "Èdè Pọtogí (orílẹ̀-èdè Yúróòpù)", + "zh_Hant": "Èdè Ìbílẹ̀ Ṣáínà" } } 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 5b5ee461688a..6d1a23871418 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,13 +1,52 @@ { "Names": { + "agq": "Ágɛ̀ɛ̀mù", + "bez": "Bɛ́nà", + "chr": "Shɛ́rókiì", + "cu": "Síláfííkì Ilé Ìjɔ́sìn", "da": "Èdè Ilɛ̀ Denmark", + "dje": "Shárúmà", + "dsb": "Shobíànù Ìpìlɛ̀", + "ebu": "Ɛmbù", "en": "Èdè Gɛ̀ɛ́sì", "es": "Èdè Sípáníìshì", "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ì", + "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í", + "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ɔ̀", + "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à", "zu": "Èdè Shulu" }, @@ -23,6 +62,7 @@ "fr_CA": "Èdè Faransé (orílɛ̀-èdè Kánádà)", "fr_CH": "Èdè Faranshé (Súwísàlaǹdì)", "pt_BR": "Èdè Pɔtogí (Orilɛ̀-èdè Bràsíl)", - "pt_PT": "Èdè Pɔtogí (orílɛ̀-èdè Yúróòpù)" + "pt_PT": "Èdè Pɔtogí (orílɛ̀-èdè Yúróòpù)", + "zh_Hant": "Èdè Ìbílɛ̀ Sháínà" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index ac2637fcc835..027342e5d3e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh.json @@ -128,7 +128,6 @@ "eu": "巴斯克语", "ewo": "旺杜语", "fa": "波斯语", - "fa_AF": "达里语", "fan": "芳格语", "fat": "芳蒂语", "ff": "富拉语", @@ -524,6 +523,7 @@ "es_419": "拉丁美洲西班牙语", "es_ES": "欧洲西班牙语", "es_MX": "墨西哥西班牙语", + "fa_AF": "达里语", "fr_CA": "加拿大法语", "fr_CH": "瑞士法语", "nds_NL": "低萨克森语", 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 5351788f5467..ec957cd5cbec 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json @@ -55,6 +55,7 @@ "es_419": "拉丁美洲西班牙文", "es_ES": "歐洲西班牙文", "es_MX": "墨西哥西班牙文", + "fa_AF": "達利文", "fr_CA": "加拿大法文", "fr_CH": "瑞士法文", "nl_BE": "比利時荷蘭文", 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 5351788f5467..ec957cd5cbec 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 @@ -55,6 +55,7 @@ "es_419": "拉丁美洲西班牙文", "es_ES": "歐洲西班牙文", "es_MX": "墨西哥西班牙文", + "fa_AF": "達利文", "fr_CA": "加拿大法文", "fr_CH": "瑞士法文", "nl_BE": "比利時荷蘭文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 4144b531079d..14be431d9389 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zu.json @@ -88,7 +88,6 @@ "eu": "isi-Basque", "ewo": "isi-Ewondo", "fa": "isi-Persian", - "fa_AF": "isi-Dari", "ff": "isi-Fulah", "fi": "isi-Finnish", "fil": "isi-Filipino", @@ -397,6 +396,7 @@ "es_419": "isi-Latin American Spanish", "es_ES": "isi-European Spanish", "es_MX": "Isi-Mexican Spanish", + "fa_AF": "isi-Dari", "fr_CA": "isi-Canadian French", "fr_CH": "isi-Swiss French", "nds_NL": "isi-Low Saxon", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/af.json b/src/Symfony/Component/Intl/Resources/data/locales/af.json index 679d249a8d74..7e13dad2cb31 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Serwies (Latyn, Serwië)", "sr_ME": "Serwies (Montenegro)", "sr_RS": "Serwies (Serwië)", + "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/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index 62fa94ca3e91..89fc0fc074ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -368,6 +368,8 @@ "ko_KP": "ኮሪያኛ (ሰሜን ኮሪያ)", "ko_KR": "ኮሪያኛ (ደቡብ ኮሪያ)", "ks": "ካሽሚርኛ", + "ks_Arab": "ካሽሚርኛ (ዓረብኛ)", + "ks_Arab_IN": "ካሽሚርኛ (ዓረብኛ፣ህንድ)", "ks_IN": "ካሽሚርኛ (ህንድ)", "ku": "ኩርድሽኛ", "ku_TR": "ኩርድሽኛ (ቱርክ)", @@ -406,6 +408,7 @@ "mr_IN": "ማራቲኛ (ህንድ)", "ms": "ማላይኛ", "ms_BN": "ማላይኛ (ብሩኒ)", + "ms_ID": "ማላይኛ (ኢንዶኔዢያ)", "ms_MY": "ማላይኛ (ማሌዢያ)", "ms_SG": "ማላይኛ (ሲንጋፖር)", "mt": "ማልቲስኛ", @@ -486,6 +489,10 @@ "rw": "ኪንያርዋንድኛ", "rw_RW": "ኪንያርዋንድኛ (ሩዋንዳ)", "sd": "ሲንድሂኛ", + "sd_Arab": "ሲንድሂኛ (ዓረብኛ)", + "sd_Arab_PK": "ሲንድሂኛ (ዓረብኛ፣ፓኪስታን)", + "sd_Deva": "ሲንድሂኛ (ደቫንጋሪ)", + "sd_Deva_IN": "ሲንድሂኛ (ደቫንጋሪ፣ህንድ)", "sd_PK": "ሲንድሂኛ (ፓኪስታን)", "se": "ሰሜናዊ ሳሚ", "se_FI": "ሰሜናዊ ሳሚ (ፊንላንድ)", @@ -523,6 +530,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/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index fb9f1f0c132b..dc1522ab51fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -368,6 +368,8 @@ "ko_KP": "الكورية (كوريا الشمالية)", "ko_KR": "الكورية (كوريا الجنوبية)", "ks": "الكشميرية", + "ks_Arab": "الكشميرية (العربية)", + "ks_Arab_IN": "الكشميرية (العربية، الهند)", "ks_IN": "الكشميرية (الهند)", "ku": "الكردية", "ku_TR": "الكردية (تركيا)", @@ -406,6 +408,7 @@ "mr_IN": "الماراثية (الهند)", "ms": "الماليزية", "ms_BN": "الماليزية (بروناي)", + "ms_ID": "الماليزية (إندونيسيا)", "ms_MY": "الماليزية (ماليزيا)", "ms_SG": "الماليزية (سنغافورة)", "mt": "المالطية", @@ -486,6 +489,10 @@ "rw": "الكينيارواندا", "rw_RW": "الكينيارواندا (رواندا)", "sd": "السندية", + "sd_Arab": "السندية (العربية)", + "sd_Arab_PK": "السندية (العربية، باكستان)", + "sd_Deva": "السندية (الديفاناجاري)", + "sd_Deva_IN": "السندية (الديفاناجاري، الهند)", "sd_PK": "السندية (باكستان)", "se": "سامي الشمالية", "se_FI": "سامي الشمالية (فنلندا)", @@ -523,6 +530,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/as.json b/src/Symfony/Component/Intl/Resources/data/locales/as.json index c6cf343b5747..d04f0e6dd0e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/as.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/as.json @@ -368,6 +368,8 @@ "ko_KP": "কোৰিয়ান (উত্তৰ কোৰিয়া)", "ko_KR": "কোৰিয়ান (দক্ষিণ কোৰিয়া)", "ks": "কাশ্মিৰী", + "ks_Arab": "কাশ্মিৰী (আৰবী)", + "ks_Arab_IN": "কাশ্মিৰী (আৰবী, ভাৰত)", "ks_IN": "কাশ্মিৰী (ভাৰত)", "ku": "কুৰ্ডিচ", "ku_TR": "কুৰ্ডিচ (তুৰ্কি)", @@ -406,6 +408,7 @@ "mr_IN": "মাৰাঠী (ভাৰত)", "ms": "মালয়", "ms_BN": "মালয় (ব্ৰুনেই)", + "ms_ID": "মালয় (ইণ্ডোনেচিয়া)", "ms_MY": "মালয় (মালয়েচিয়া)", "ms_SG": "মালয় (ছিংগাপুৰ)", "mt": "মাল্টিজ", @@ -484,6 +487,10 @@ "rw": "কিনয়াৰোৱাণ্ডা", "rw_RW": "কিনয়াৰোৱাণ্ডা (ৰোৱাণ্ডা)", "sd": "সিন্ধী", + "sd_Arab": "সিন্ধী (আৰবী)", + "sd_Arab_PK": "সিন্ধী (আৰবী, পাকিস্তান)", + "sd_Deva": "সিন্ধী (দেৱনাগৰী)", + "sd_Deva_IN": "সিন্ধী (দেৱনাগৰী, ভাৰত)", "sd_PK": "সিন্ধী (পাকিস্তান)", "se": "উদীচ্য ছামি", "se_FI": "উদীচ্য ছামি (ফিনলেণ্ড)", @@ -519,6 +526,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/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 3a557bf35d74..f266f8d4624c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -368,6 +368,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ə)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serb (latın, Serbiya)", "sr_ME": "serb (Monteneqro)", "sr_RS": "serb (Serbiya)", + "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 d0425b7e54e9..33e5e8edc4c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -367,6 +367,8 @@ "ko_KP": "кореја (Шимали Кореја)", "ko_KR": "кореја (Ҹәнуби Кореја)", "ks": "кәшмир", + "ks_Arab": "кәшмир (ərəb)", + "ks_Arab_IN": "кәшмир (ərəb, Һиндистан)", "ks_IN": "кәшмир (Һиндистан)", "ku": "күрд", "ku_TR": "күрд (Түркијә)", @@ -405,6 +407,7 @@ "mr_IN": "маратһи (Һиндистан)", "ms": "малај", "ms_BN": "малај (Брунеј)", + "ms_ID": "малај (Индонезија)", "ms_MY": "малај (Малајзија)", "ms_SG": "малај (Сингапур)", "mt": "малта", @@ -484,6 +487,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": "шимали сами (Финландија)", @@ -520,6 +527,10 @@ "sr_Latn_RS": "серб (latın, Сербија)", "sr_ME": "серб (Монтенегро)", "sr_RS": "серб (Сербија)", + "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 3e03d39f7809..6a46f3c1ffa3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -368,6 +368,8 @@ "ko_KP": "карэйская (Паўночная Карэя)", "ko_KR": "карэйская (Паўднёвая Карэя)", "ks": "кашмірская", + "ks_Arab": "кашмірская (арабскае)", + "ks_Arab_IN": "кашмірская (арабскае, Індыя)", "ks_IN": "кашмірская (Індыя)", "ku": "курдская", "ku_TR": "курдская (Турцыя)", @@ -406,6 +408,7 @@ "mr_IN": "маратхі (Індыя)", "ms": "малайская", "ms_BN": "малайская (Бруней)", + "ms_ID": "малайская (Інданезія)", "ms_MY": "малайская (Малайзія)", "ms_SG": "малайская (Сінгапур)", "mt": "мальтыйская", @@ -486,6 +489,10 @@ "rw": "руанда", "rw_RW": "руанда (Руанда)", "sd": "сіндхі", + "sd_Arab": "сіндхі (арабскае)", + "sd_Arab_PK": "сіндхі (арабскае, Пакістан)", + "sd_Deva": "сіндхі (дэванагары)", + "sd_Deva_IN": "сіндхі (дэванагары, Індыя)", "sd_PK": "сіндхі (Пакістан)", "se": "паўночнасаамская", "se_FI": "паўночнасаамская (Фінляндыя)", @@ -523,6 +530,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/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index 77acbdc27f10..49c903701c66 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -368,6 +368,8 @@ "ko_KP": "корейски (Северна Корея)", "ko_KR": "корейски (Южна Корея)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арабска)", + "ks_Arab_IN": "кашмирски (арабска, Индия)", "ks_IN": "кашмирски (Индия)", "ku": "кюрдски", "ku_TR": "кюрдски (Турция)", @@ -406,6 +408,7 @@ "mr_IN": "марати (Индия)", "ms": "малайски", "ms_BN": "малайски (Бруней Даруссалам)", + "ms_ID": "малайски (Индонезия)", "ms_MY": "малайски (Малайзия)", "ms_SG": "малайски (Сингапур)", "mt": "малтийски", @@ -486,6 +489,10 @@ "rw": "киняруанда", "rw_RW": "киняруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (арабска)", + "sd_Arab_PK": "синдхи (арабска, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Индия)", "sd_PK": "синдхи (Пакистан)", "se": "северносаамски", "se_FI": "северносаамски (Финландия)", @@ -523,6 +530,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/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index c65893ecc255..25b8a1b5dbaf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -368,6 +368,8 @@ "ko_KP": "কোরিয়ান (উত্তর কোরিয়া)", "ko_KR": "কোরিয়ান (দক্ষিণ কোরিয়া)", "ks": "কাশ্মীরি", + "ks_Arab": "কাশ্মীরি (আরবি)", + "ks_Arab_IN": "কাশ্মীরি (আরবি, ভারত)", "ks_IN": "কাশ্মীরি (ভারত)", "ku": "কুর্দিশ", "ku_TR": "কুর্দিশ (তুরস্ক)", @@ -406,6 +408,7 @@ "mr_IN": "মারাঠি (ভারত)", "ms": "মালয়", "ms_BN": "মালয় (ব্রুনেই)", + "ms_ID": "মালয় (ইন্দোনেশিয়া)", "ms_MY": "মালয় (মালয়েশিয়া)", "ms_SG": "মালয় (সিঙ্গাপুর)", "mt": "মল্টিয়", @@ -486,6 +489,10 @@ "rw": "কিনয়ারোয়ান্ডা", "rw_RW": "কিনয়ারোয়ান্ডা (রুয়ান্ডা)", "sd": "সিন্ধি", + "sd_Arab": "সিন্ধি (আরবি)", + "sd_Arab_PK": "সিন্ধি (আরবি, পাকিস্তান)", + "sd_Deva": "সিন্ধি (দেবনাগরি)", + "sd_Deva_IN": "সিন্ধি (দেবনাগরি, ভারত)", "sd_PK": "সিন্ধি (পাকিস্তান)", "se": "উত্তরাঞ্চলীয় সামি", "se_FI": "উত্তরাঞ্চলীয় সামি (ফিনল্যান্ড)", @@ -523,6 +530,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/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index 8a08f6583657..7d8b57e8ae5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "serbeg (latin, Serbia)", "sr_ME": "serbeg (Montenegro)", "sr_RS": "serbeg (Serbia)", + "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 49cbd18cd5a5..efb31ff8d049 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srpski (latinica, Srbija)", "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", + "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 7f0bab34194b..5fd425f94060 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -368,6 +368,8 @@ "ko_KP": "корејски (Сјеверна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турска)", @@ -406,6 +408,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -486,6 +489,10 @@ "rw": "кинјаруанда", "rw_RW": "кинјаруанда (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "сјеверни сами", "se_FI": "сјеверни сами (Финска)", @@ -523,6 +530,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/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index e81072a55851..6a8edefa2642 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -236,6 +236,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í)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "serbi (llatí, Sèrbia)", "sr_ME": "serbi (Montenegro)", "sr_RS": "serbi (Sèrbia)", + "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 857fc6bd8915..c1a804cf617f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ce.json @@ -368,6 +368,8 @@ "ko_KP": "корейн (Къилбаседа Корей)", "ko_KR": "корейн (Къилба Корей)", "ks": "кашмири", + "ks_Arab": "кашмири (Ӏаьрбийн)", + "ks_Arab_IN": "кашмири (Ӏаьрбийн, ХӀинди)", "ks_IN": "кашмири (ХӀинди)", "ku": "курдийн", "ku_TR": "курдийн (Туркойчоь)", @@ -405,6 +407,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": "къилбаседа саамийн (Финлянди)", @@ -517,6 +524,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/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index 8c2cfe24c1e7..4eb189e4ec7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srbština (latinka, Srbsko)", "sr_ME": "srbština (Černá Hora)", "sr_RS": "srbština (Srbsko)", + "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 a0bcd28aaa82..fb75b7fb6211 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Serbeg (Lladin, Serbia)", "sr_ME": "Serbeg (Montenegro)", "sr_RS": "Serbeg (Serbia)", + "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 315330b7ef6e..36cc615b4639 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbisk (latinsk, Serbien)", "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbien)", + "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 be3fb1d93a72..3eff4015d947 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Serbisch (Lateinisch, Serbien)", "sr_ME": "Serbisch (Montenegro)", "sr_RS": "Serbisch (Serbien)", + "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/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index 5352bfab7259..c6dbcfd363cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -368,6 +368,8 @@ "ko_KP": "Κορεατικά (Βόρεια Κορέα)", "ko_KR": "Κορεατικά (Νότια Κορέα)", "ks": "Κασμιρικά", + "ks_Arab": "Κασμιρικά (Αραβικό)", + "ks_Arab_IN": "Κασμιρικά (Αραβικό, Ινδία)", "ks_IN": "Κασμιρικά (Ινδία)", "ku": "Κουρδικά", "ku_TR": "Κουρδικά (Τουρκία)", @@ -406,6 +408,7 @@ "mr_IN": "Μαραθικά (Ινδία)", "ms": "Μαλαισιανά", "ms_BN": "Μαλαισιανά (Μπρουνέι)", + "ms_ID": "Μαλαισιανά (Ινδονησία)", "ms_MY": "Μαλαισιανά (Μαλαισία)", "ms_SG": "Μαλαισιανά (Σιγκαπούρη)", "mt": "Μαλτεζικά", @@ -486,6 +489,10 @@ "rw": "Κινιαρουάντα", "rw_RW": "Κινιαρουάντα (Ρουάντα)", "sd": "Σίντι", + "sd_Arab": "Σίντι (Αραβικό)", + "sd_Arab_PK": "Σίντι (Αραβικό, Πακιστάν)", + "sd_Deva": "Σίντι (Ντεβαναγκάρι)", + "sd_Deva_IN": "Σίντι (Ντεβαναγκάρι, Ινδία)", "sd_PK": "Σίντι (Πακιστάν)", "se": "Βόρεια Σάμι", "se_FI": "Βόρεια Σάμι (Φινλανδία)", @@ -523,6 +530,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/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index 0ab7a27d0c3c..5700644bf582 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "Serbian (Latin, Serbia)", "sr_ME": "Serbian (Montenegro)", "sr_RS": "Serbian (Serbia)", + "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/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index 77af364cc80a..e22c6aa44fcd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbio (latino, Serbia)", "sr_ME": "serbio (Montenegro)", "sr_RS": "serbio (Serbia)", + "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 90eac53f1228..5b055bae091c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_419.json @@ -47,6 +47,8 @@ "sr_Latn_BA": "serbio (latín, Bosnia-Herzegovina)", "sr_Latn_ME": "serbio (latín, Montenegro)", "sr_Latn_RS": "serbio (latín, Serbia)", + "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 c5f1106ccf37..35305229b355 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbia (ladina, Serbia)", "sr_ME": "serbia (Montenegro)", "sr_RS": "serbia (Serbia)", + "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 c13584376ea4..6d8b5b234875 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbiera (latinoa, Serbia)", "sr_ME": "serbiera (Montenegro)", "sr_RS": "serbiera (Serbia)", + "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 fbee9f6b5847..bf2fe1125634 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -368,6 +368,8 @@ "ko_KP": "کره‌ای (کرهٔ شمالی)", "ko_KR": "کره‌ای (کرهٔ جنوبی)", "ks": "کشمیری", + "ks_Arab": "کشمیری (عربی)", + "ks_Arab_IN": "کشمیری (عربی، هند)", "ks_IN": "کشمیری (هند)", "ku": "کردی", "ku_TR": "کردی (ترکیه)", @@ -406,6 +408,7 @@ "mr_IN": "مراتی (هند)", "ms": "مالایی", "ms_BN": "مالایی (برونئی)", + "ms_ID": "مالایی (اندونزی)", "ms_MY": "مالایی (مالزی)", "ms_SG": "مالایی (سنگاپور)", "mt": "مالتی", @@ -486,6 +489,10 @@ "rw": "کینیارواندایی", "rw_RW": "کینیارواندایی (رواندا)", "sd": "سندی", + "sd_Arab": "سندی (عربی)", + "sd_Arab_PK": "سندی (عربی، پاکستان)", + "sd_Deva": "سندی (دوناگری)", + "sd_Deva_IN": "سندی (دوناگری، هند)", "sd_PK": "سندی (پاکستان)", "se": "سامی شمالی", "se_FI": "سامی شمالی (فنلاند)", @@ -523,6 +530,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/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json index dfb60cbcace9..b72799866076 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -150,6 +150,7 @@ "mn": "مغلی", "mn_MN": "مغلی (منگولیا)", "ms_BN": "مالایی (برونی)", + "ms_ID": "مالایی (اندونیزیا)", "ms_MY": "مالایی (مالیزیا)", "ms_SG": "مالایی (سینگاپور)", "mt_MT": "مالتی (مالتا)", @@ -210,6 +211,8 @@ "sr_BA": "صربی (بوسنیا و هرزه‌گوینا)", "sr_Cyrl_BA": "صربی (سیریلی، بوسنیا و هرزه‌گوینا)", "sr_Latn_BA": "صربی (لاتینی، بوسنیا و هرزه‌گوینا)", + "su_ID": "سوندایی (اندونیزیا)", + "su_Latn_ID": "سوندایی (لاتینی، اندونیزیا)", "sv": "سویدنی", "sv_AX": "سویدنی (جزایر آلاند)", "sv_FI": "سویدنی (فنلند)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json index ac9ac7bfb64a..f160f351c382 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ff_Adlm.json @@ -8,6 +8,7 @@ "am": "𞤀𞤥𞤸𞤢𞤪𞤭𞥅𞤪𞤫", "am_ET": "𞤀𞤥𞤸𞤢𞤪𞤭𞥅𞤪𞤫 (𞤀𞤦𞤢𞤧𞤭𞤲𞤭𞥅)", "ar": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫", + "ar_001": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤀𞤣𞤵𞤲𞤢)", "ar_AE": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Emiraat Araab Denntuɗe)", "ar_BH": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (Bahreyn)", "ar_DJ": "𞤀𞥄𞤪𞤫𞤦𞤫𞥅𞤪𞤫 (𞤔𞤭𞤦𞤵𞥅𞤼𞤭)", @@ -77,6 +78,8 @@ "dz": "𞤄𞤵𞥅𞤼𞤢𞤲𞤪𞤫", "dz_BT": "𞤄𞤵𞥅𞤼𞤢𞤲𞤪𞤫 (Butaan)", "en": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫", + "en_001": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤀𞤣𞤵𞤲𞤢)", + "en_150": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (𞤓𞤪𞤮𞤨𞥆𞤢)", "en_AE": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Emiraat Araab Denntuɗe)", "en_AG": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Antiguwaa e Barbudaa)", "en_AI": "𞤉𞤲𞤺𞤭𞤤𞤫𞥅𞤪𞤫 (Anngiyaa)", @@ -181,13 +184,11 @@ "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)", @@ -280,6 +281,7 @@ "hy": "𞤀𞤪𞤥𞤫𞤲𞤭𞥅𞤪𞤫", "hy_AM": "𞤀𞤪𞤥𞤫𞤲𞤭𞥅𞤪𞤫 (Armenii)", "ia": "𞤉𞤲𞤼𞤫𞤪𞤤𞤭𞤺𞤢𞥄𞤪𞤫", + "ia_001": "𞤉𞤲𞤼𞤫𞤪𞤤𞤭𞤺𞤢𞥄𞤪𞤫 (𞤀𞤣𞤵𞤲𞤢)", "id": "𞤉𞤲𞤣𞤮𞤲𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫", "id_ID": "𞤉𞤲𞤣𞤮𞤲𞤮𞥅𞤧𞤭𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (Enndonesii)", "ig_NG": "Igiboore (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", @@ -369,6 +371,7 @@ "xh": "𞤑𞤮𞥅𞤧𞤢𞥄𞤪𞤫", "xh_ZA": "𞤑𞤮𞥅𞤧𞤢𞥄𞤪𞤫 (𞤀𞤬𞤪𞤭𞤳𞤢 𞤂𞤫𞤧𞤤𞤫𞤴𞤪𞤭)", "yi": "𞤒𞤭𞤣𞤭𞤧𞤢𞤲𞤳𞤮𞥅𞤪𞤫", + "yi_001": "𞤒𞤭𞤣𞤭𞤧𞤢𞤲𞤳𞤮𞥅𞤪𞤫 (𞤀𞤣𞤵𞤲𞤢)", "yo": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫", "yo_BJ": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫 (𞤄𞤫𞤲𞤫𞤲)", "yo_NG": "𞤒𞤮𞥅𞤪𞤵𞤦𞤢𞥄𞤪𞤫 (𞤐𞤢𞤶𞤫𞤪𞤭𞤴𞤢𞥄)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index 3b6fdfd309bc..df73dea2db1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "serbia (latinalainen, Serbia)", "sr_ME": "serbia (Montenegro)", "sr_RS": "serbia (Serbia)", + "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 40d766185ede..be7187ec5605 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -368,6 +368,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)", @@ -405,6 +407,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", @@ -485,6 +488,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)", @@ -521,6 +528,10 @@ "sr_Latn_RS": "serbiskt (latínskt, Serbia)", "sr_ME": "serbiskt (Montenegro)", "sr_RS": "serbiskt (Serbia)", + "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 99049d5edb8f..167607bd530a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbe (latin, Serbie)", "sr_ME": "serbe (Monténégro)", "sr_RS": "serbe (Serbie)", + "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/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index f2854d11f250..1c771a14a743 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -368,6 +368,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)", @@ -405,6 +407,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", @@ -485,6 +488,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)", @@ -521,6 +528,10 @@ "sr_Latn_RS": "Servysk (Latyn, Servië)", "sr_ME": "Servysk (Montenegro)", "sr_RS": "Servysk (Servië)", + "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 6a1b918e5efc..bbebcda1b76f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -48,8 +48,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)", @@ -88,9 +88,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)", @@ -236,6 +236,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)", @@ -339,8 +352,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", @@ -368,6 +379,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)", @@ -406,6 +419,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", @@ -486,6 +500,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)", @@ -523,6 +541,10 @@ "sr_Latn_RS": "Seirbis (Laidineach, an tSeirbia)", "sr_ME": "Seirbis (Montainéagró)", "sr_RS": "Seirbis (an tSeirbia)", + "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 6b5575e4b897..2805e8cb5a07 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "Sèirbis (Laideann, An t-Sèirb)", "sr_ME": "Sèirbis (Am Monadh Neagrach)", "sr_RS": "Sèirbis (An t-Sèirb)", + "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 492906f47880..4748c8fa3791 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbio (latino, Serbia)", "sr_ME": "serbio (Montenegro)", "sr_RS": "serbio (Serbia)", + "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 6731f9c46add..6bc62d9393ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -368,6 +368,8 @@ "ko_KP": "કોરિયન (ઉત્તર કોરિયા)", "ko_KR": "કોરિયન (દક્ષિણ કોરિયા)", "ks": "કાશ્મીરી", + "ks_Arab": "કાશ્મીરી (અરબી)", + "ks_Arab_IN": "કાશ્મીરી (અરબી, ભારત)", "ks_IN": "કાશ્મીરી (ભારત)", "ku": "કુર્દિશ", "ku_TR": "કુર્દિશ (તુર્કી)", @@ -406,6 +408,7 @@ "mr_IN": "મરાઠી (ભારત)", "ms": "મલય", "ms_BN": "મલય (બ્રુનેઇ)", + "ms_ID": "મલય (ઇન્ડોનેશિયા)", "ms_MY": "મલય (મલેશિયા)", "ms_SG": "મલય (સિંગાપુર)", "mt": "માલ્ટિઝ", @@ -486,6 +489,10 @@ "rw": "કિન્યારવાન્ડા", "rw_RW": "કિન્યારવાન્ડા (રવાંડા)", "sd": "સિંધી", + "sd_Arab": "સિંધી (અરબી)", + "sd_Arab_PK": "સિંધી (અરબી, પાકિસ્તાન)", + "sd_Deva": "સિંધી (દેવનાગરી)", + "sd_Deva_IN": "સિંધી (દેવનાગરી, ભારત)", "sd_PK": "સિંધી (પાકિસ્તાન)", "se": "ઉત્તરી સામી", "se_FI": "ઉત્તરી સામી (ફિનલેન્ડ)", @@ -523,6 +530,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/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index f2e3e6d836a4..737ab40e0ee0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -118,7 +118,6 @@ "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)", @@ -213,13 +212,11 @@ "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)", @@ -517,22 +514,18 @@ "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)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index 3d99181d5bdb..d1bb552ef637 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -368,6 +368,8 @@ "ko_KP": "קוריאנית (קוריאה הצפונית)", "ko_KR": "קוריאנית (קוריאה הדרומית)", "ks": "קשמירית", + "ks_Arab": "קשמירית (ערבי)", + "ks_Arab_IN": "קשמירית (ערבי, הודו)", "ks_IN": "קשמירית (הודו)", "ku": "כורדית", "ku_TR": "כורדית (טורקיה)", @@ -406,6 +408,7 @@ "mr_IN": "מראטהי (הודו)", "ms": "מלאית", "ms_BN": "מלאית (ברוניי)", + "ms_ID": "מלאית (אינדונזיה)", "ms_MY": "מלאית (מלזיה)", "ms_SG": "מלאית (סינגפור)", "mt": "מלטית", @@ -486,6 +489,10 @@ "rw": "קנירואנדית", "rw_RW": "קנירואנדית (רואנדה)", "sd": "סינדהית", + "sd_Arab": "סינדהית (ערבי)", + "sd_Arab_PK": "סינדהית (ערבי, פקיסטן)", + "sd_Deva": "סינדהית (דוואנגרי)", + "sd_Deva_IN": "סינדהית (דוואנגרי, הודו)", "sd_PK": "סינדהית (פקיסטן)", "se": "סמי צפונית", "se_FI": "סמי צפונית (פינלנד)", @@ -523,6 +530,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/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index f8ecc10aa749..37b5f9a2da68 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -368,6 +368,8 @@ "ko_KP": "कोरियाई (उत्तर कोरिया)", "ko_KR": "कोरियाई (दक्षिण कोरिया)", "ks": "कश्मीरी", + "ks_Arab": "कश्मीरी (अरबी)", + "ks_Arab_IN": "कश्मीरी (अरबी, भारत)", "ks_IN": "कश्मीरी (भारत)", "ku": "कुर्दिश", "ku_TR": "कुर्दिश (तुर्की)", @@ -406,6 +408,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलय", "ms_BN": "मलय (ब्रूनेई)", + "ms_ID": "मलय (इंडोनेशिया)", "ms_MY": "मलय (मलेशिया)", "ms_SG": "मलय (सिंगापुर)", "mt": "माल्टीज़", @@ -486,6 +489,10 @@ "rw": "किन्यारवांडा", "rw_RW": "किन्यारवांडा (रवांडा)", "sd": "सिंधी", + "sd_Arab": "सिंधी (अरबी)", + "sd_Arab_PK": "सिंधी (अरबी, पाकिस्तान)", + "sd_Deva": "सिंधी (देवनागरी)", + "sd_Deva_IN": "सिंधी (देवनागरी, भारत)", "sd_PK": "सिंधी (पाकिस्तान)", "se": "नॉर्दन सामी", "se_FI": "नॉर्दन सामी (फ़िनलैंड)", @@ -523,6 +530,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/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index c488f1ade50d..5a9815dd1fd5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srpski (latinica, Srbija)", "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", + "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 e245bc7b8bcd..f8a786df1995 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "szerb (Latin, Szerbia)", "sr_ME": "szerb (Montenegró)", "sr_RS": "szerb (Szerbia)", + "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 8e8854a577ac..35bf30882437 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -368,6 +368,8 @@ "ko_KP": "կորեերեն (Հյուսիսային Կորեա)", "ko_KR": "կորեերեն (Հարավային Կորեա)", "ks": "քաշմիրերեն", + "ks_Arab": "քաշմիրերեն (արաբական)", + "ks_Arab_IN": "քաշմիրերեն (արաբական, Հնդկաստան)", "ks_IN": "քաշմիրերեն (Հնդկաստան)", "ku": "քրդերեն", "ku_TR": "քրդերեն (Թուրքիա)", @@ -406,6 +408,7 @@ "mr_IN": "մարաթի (Հնդկաստան)", "ms": "մալայերեն", "ms_BN": "մալայերեն (Բրունեյ)", + "ms_ID": "մալայերեն (Ինդոնեզիա)", "ms_MY": "մալայերեն (Մալայզիա)", "ms_SG": "մալայերեն (Սինգապուր)", "mt": "մալթայերեն", @@ -486,6 +489,10 @@ "rw": "կինյառուանդա", "rw_RW": "կինյառուանդա (Ռուանդա)", "sd": "սինդհի", + "sd_Arab": "սինդհի (արաբական)", + "sd_Arab_PK": "սինդհի (արաբական, Պակիստան)", + "sd_Deva": "սինդհի (դեւանագարի)", + "sd_Deva_IN": "սինդհի (դեւանագարի, Հնդկաստան)", "sd_PK": "սինդհի (Պակիստան)", "se": "հյուսիսային սաամի", "se_FI": "հյուսիսային սաամի (Ֆինլանդիա)", @@ -523,6 +530,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/ia.json b/src/Symfony/Component/Intl/Resources/data/locales/ia.json index 666d94c87f0f..6617ac7e5078 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ia.json @@ -324,6 +324,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)", @@ -358,6 +360,7 @@ "mr": "marathi", "mr_IN": "marathi (India)", "ms": "malay", + "ms_ID": "malay (Indonesia)", "ms_MY": "malay (Malaysia)", "mt": "maltese", "mt_MT": "maltese (Malta)", @@ -427,6 +430,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)", @@ -461,6 +468,10 @@ "sr_Latn_RS": "serbo (latin, Serbia)", "sr_ME": "serbo (Montenegro)", "sr_RS": "serbo (Serbia)", + "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 9d6f101e8edb..39c1bf7de771 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Serbia (Latin, Serbia)", "sr_ME": "Serbia (Montenegro)", "sr_RS": "Serbia (Serbia)", + "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 effdda848aad..9eb5faaa06e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ig.json @@ -6,25 +6,39 @@ "am_ET": "Amariikị (Ethiopia)", "ar": "Arabiikị", "ar_001": "Arabiikị (Uwa)", + "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)", @@ -37,10 +51,12 @@ "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_001": "Asụsụ Bekee (Uwa)", "en_150": "Asụsụ Bekee (Europe)", + "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)", @@ -59,6 +75,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_DK": "Asụsụ Bekee (Denmark)", "en_DM": "Asụsụ Bekee (Dominika)", @@ -75,7 +92,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)", @@ -90,11 +109,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)", @@ -104,6 +125,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)", @@ -164,6 +186,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)", @@ -204,6 +228,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)", @@ -219,6 +244,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", @@ -229,13 +255,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)", @@ -246,7 +281,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", @@ -257,6 +294,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)", @@ -266,6 +304,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)", @@ -282,14 +322,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", @@ -297,11 +342,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 517a0a785cfc..ddbd91a921c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbneska (latneskt, Serbía)", "sr_ME": "serbneska (Svartfjallaland)", "sr_RS": "serbneska (Serbía)", + "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 bbdbd17218c4..eb4d2db336c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbo (latino, Serbia)", "sr_ME": "serbo (Montenegro)", "sr_RS": "serbo (Serbia)", + "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 428577972342..bd764cd9c4fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -368,6 +368,8 @@ "ko_KP": "韓国語 (北朝鮮)", "ko_KR": "韓国語 (韓国)", "ks": "カシミール語", + "ks_Arab": "カシミール語 (アラビア文字)", + "ks_Arab_IN": "カシミール語 (アラビア文字、インド)", "ks_IN": "カシミール語 (インド)", "ku": "クルド語", "ku_TR": "クルド語 (トルコ)", @@ -406,6 +408,7 @@ "mr_IN": "マラーティー語 (インド)", "ms": "マレー語", "ms_BN": "マレー語 (ブルネイ)", + "ms_ID": "マレー語 (インドネシア)", "ms_MY": "マレー語 (マレーシア)", "ms_SG": "マレー語 (シンガポール)", "mt": "マルタ語", @@ -486,6 +489,10 @@ "rw": "キニアルワンダ語", "rw_RW": "キニアルワンダ語 (ルワンダ)", "sd": "シンド語", + "sd_Arab": "シンド語 (アラビア文字)", + "sd_Arab_PK": "シンド語 (アラビア文字、パキスタン)", + "sd_Deva": "シンド語 (デーバナーガリー文字)", + "sd_Deva_IN": "シンド語 (デーバナーガリー文字、インド)", "sd_PK": "シンド語 (パキスタン)", "se": "北サーミ語", "se_FI": "北サーミ語 (フィンランド)", @@ -523,6 +530,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/jv.json b/src/Symfony/Component/Intl/Resources/data/locales/jv.json index 74e0a60bd654..ae6206b1f00b 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", @@ -43,8 +43,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", @@ -55,12 +55,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)", @@ -359,6 +359,7 @@ "ko": "Korea", "ko_KR": "Korea (Koréa Kidul)", "ks": "Kashmiri", + "ks_Arab": "Kashmiri (hija’iyah)", "ku": "Kurdis", "ku_TR": "Kurdis (Turki)", "kw": "Kernowek", @@ -392,6 +393,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", @@ -423,8 +425,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", @@ -466,6 +468,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)", @@ -500,6 +505,10 @@ "sr_Latn_RS": "Serbia (Latin, Sèrbi)", "sr_ME": "Serbia (Montenégro)", "sr_RS": "Serbia (Sèrbi)", + "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)", @@ -538,8 +547,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 1a29c80a5db2..dfc3c36624e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -368,6 +368,8 @@ "ko_KP": "კორეული (ჩრდილოეთ კორეა)", "ko_KR": "კორეული (სამხრეთ კორეა)", "ks": "ქაშმირული", + "ks_Arab": "ქაშმირული (არაბული)", + "ks_Arab_IN": "ქაშმირული (არაბული, ინდოეთი)", "ks_IN": "ქაშმირული (ინდოეთი)", "ku": "ქურთული", "ku_TR": "ქურთული (თურქეთი)", @@ -406,6 +408,7 @@ "mr_IN": "მარათჰი (ინდოეთი)", "ms": "მალაიური", "ms_BN": "მალაიური (ბრუნეი)", + "ms_ID": "მალაიური (ინდონეზია)", "ms_MY": "მალაიური (მალაიზია)", "ms_SG": "მალაიური (სინგაპური)", "mt": "მალტური", @@ -486,6 +489,10 @@ "rw": "კინიარუანდა", "rw_RW": "კინიარუანდა (რუანდა)", "sd": "სინდჰური", + "sd_Arab": "სინდჰური (არაბული)", + "sd_Arab_PK": "სინდჰური (არაბული, პაკისტანი)", + "sd_Deva": "სინდჰური (დევანაგარი)", + "sd_Deva_IN": "სინდჰური (დევანაგარი, ინდოეთი)", "sd_PK": "სინდჰური (პაკისტანი)", "se": "ჩრდილოეთ საამური", "se_FI": "ჩრდილოეთ საამური (ფინეთი)", @@ -523,6 +530,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/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 201c75725c8e..26688970b4b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -368,6 +368,8 @@ "ko_KP": "корей тілі (Солтүстік Корея)", "ko_KR": "корей тілі (Оңтүстік Корея)", "ks": "кашмир тілі", + "ks_Arab": "кашмир тілі (араб жазуы)", + "ks_Arab_IN": "кашмир тілі (араб жазуы, Үндістан)", "ks_IN": "кашмир тілі (Үндістан)", "ku": "күрд тілі", "ku_TR": "күрд тілі (Түркия)", @@ -406,6 +408,7 @@ "mr_IN": "маратхи тілі (Үндістан)", "ms": "малай тілі", "ms_BN": "малай тілі (Бруней)", + "ms_ID": "малай тілі (Индонезия)", "ms_MY": "малай тілі (Малайзия)", "ms_SG": "малай тілі (Сингапур)", "mt": "мальта тілі", @@ -486,6 +489,10 @@ "rw": "киньяруанда тілі", "rw_RW": "киньяруанда тілі (Руанда)", "sd": "синдхи тілі", + "sd_Arab": "синдхи тілі (араб жазуы)", + "sd_Arab_PK": "синдхи тілі (араб жазуы, Пәкістан)", + "sd_Deva": "синдхи тілі (деванагари жазуы)", + "sd_Deva_IN": "синдхи тілі (деванагари жазуы, Үндістан)", "sd_PK": "синдхи тілі (Пәкістан)", "se": "солтүстік саам тілі", "se_FI": "солтүстік саам тілі (Финляндия)", @@ -523,6 +530,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/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index 04fa86069ebf..88eae0382398 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -368,6 +368,8 @@ "ko_KP": "កូរ៉េ (កូរ៉េ​ខាង​ជើង)", "ko_KR": "កូរ៉េ (កូរ៉េ​ខាង​ត្បូង)", "ks": "កាស្មៀរ", + "ks_Arab": "កាស្មៀរ (អារ៉ាប់)", + "ks_Arab_IN": "កាស្មៀរ (អារ៉ាប់, ឥណ្ឌា)", "ks_IN": "កាស្មៀរ (ឥណ្ឌា)", "ku": "ឃឺដ", "ku_TR": "ឃឺដ (តួកគី)", @@ -406,6 +408,7 @@ "mr_IN": "ម៉ារ៉ាធី (ឥណ្ឌា)", "ms": "ម៉ាឡេ", "ms_BN": "ម៉ាឡេ (ព្រុយណេ)", + "ms_ID": "ម៉ាឡេ (ឥណ្ឌូណេស៊ី)", "ms_MY": "ម៉ាឡេ (ម៉ាឡេស៊ី)", "ms_SG": "ម៉ាឡេ (សិង្ហបុរី)", "mt": "ម៉ាល់តា", @@ -486,6 +489,10 @@ "rw": "គិនយ៉ាវ៉ាន់ដា", "rw_RW": "គិនយ៉ាវ៉ាន់ដា (រវ៉ាន់ដា)", "sd": "ស៊ីនឌី", + "sd_Arab": "ស៊ីនឌី (អារ៉ាប់)", + "sd_Arab_PK": "ស៊ីនឌី (អារ៉ាប់, ប៉ាគីស្ថាន)", + "sd_Deva": "ស៊ីនឌី (ដាវ៉ាន់ណាការិ)", + "sd_Deva_IN": "ស៊ីនឌី (ដាវ៉ាន់ណាការិ, ឥណ្ឌា)", "sd_PK": "ស៊ីនឌី (ប៉ាគីស្ថាន)", "se": "សាមីខាងជើង", "se_FI": "សាមីខាងជើង (ហ្វាំងឡង់)", @@ -523,6 +530,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/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index e5fc0b23cb25..45c545df0175 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -368,6 +368,8 @@ "ko_KP": "ಕೊರಿಯನ್ (ಉತ್ತರ ಕೊರಿಯಾ)", "ko_KR": "ಕೊರಿಯನ್ (ದಕ್ಷಿಣ ಕೊರಿಯಾ)", "ks": "ಕಾಶ್ಮೀರಿ", + "ks_Arab": "ಕಾಶ್ಮೀರಿ (ಅರೇಬಿಕ್)", + "ks_Arab_IN": "ಕಾಶ್ಮೀರಿ (ಅರೇಬಿಕ್, ಭಾರತ)", "ks_IN": "ಕಾಶ್ಮೀರಿ (ಭಾರತ)", "ku": "ಕುರ್ದಿಷ್", "ku_TR": "ಕುರ್ದಿಷ್ (ಟರ್ಕಿ)", @@ -406,6 +408,7 @@ "mr_IN": "ಮರಾಠಿ (ಭಾರತ)", "ms": "ಮಲಯ್", "ms_BN": "ಮಲಯ್ (ಬ್ರೂನಿ)", + "ms_ID": "ಮಲಯ್ (ಇಂಡೋನೇಶಿಯಾ)", "ms_MY": "ಮಲಯ್ (ಮಲೇಶಿಯಾ)", "ms_SG": "ಮಲಯ್ (ಸಿಂಗಪುರ್)", "mt": "ಮಾಲ್ಟೀಸ್", @@ -486,6 +489,10 @@ "rw": "ಕಿನ್ಯಾರ್‌ವಾಂಡಾ", "rw_RW": "ಕಿನ್ಯಾರ್‌ವಾಂಡಾ (ರುವಾಂಡಾ)", "sd": "ಸಿಂಧಿ", + "sd_Arab": "ಸಿಂಧಿ (ಅರೇಬಿಕ್)", + "sd_Arab_PK": "ಸಿಂಧಿ (ಅರೇಬಿಕ್, ಪಾಕಿಸ್ತಾನ)", + "sd_Deva": "ಸಿಂಧಿ (ದೇವನಾಗರಿ)", + "sd_Deva_IN": "ಸಿಂಧಿ (ದೇವನಾಗರಿ, ಭಾರತ)", "sd_PK": "ಸಿಂಧಿ (ಪಾಕಿಸ್ತಾನ)", "se": "ಉತ್ತರ ಸಾಮಿ", "se_FI": "ಉತ್ತರ ಸಾಮಿ (ಫಿನ್‌ಲ್ಯಾಂಡ್)", @@ -523,6 +530,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/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index d0d601a7ff01..d8890ff342e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -368,6 +368,8 @@ "ko_KP": "한국어(북한)", "ko_KR": "한국어(대한민국)", "ks": "카슈미르어", + "ks_Arab": "카슈미르어(아랍 문자)", + "ks_Arab_IN": "카슈미르어(아랍 문자, 인도)", "ks_IN": "카슈미르어(인도)", "ku": "쿠르드어", "ku_TR": "쿠르드어(터키)", @@ -406,6 +408,7 @@ "mr_IN": "마라티어(인도)", "ms": "말레이어", "ms_BN": "말레이어(브루나이)", + "ms_ID": "말레이어(인도네시아)", "ms_MY": "말레이어(말레이시아)", "ms_SG": "말레이어(싱가포르)", "mt": "몰타어", @@ -486,6 +489,10 @@ "rw": "르완다어", "rw_RW": "르완다어(르완다)", "sd": "신디어", + "sd_Arab": "신디어(아랍 문자)", + "sd_Arab_PK": "신디어(아랍 문자, 파키스탄)", + "sd_Deva": "신디어(데바나가리 문자)", + "sd_Deva_IN": "신디어(데바나가리 문자, 인도)", "sd_PK": "신디어(파키스탄)", "se": "북부 사미어", "se_FI": "북부 사미어(핀란드)", @@ -523,6 +530,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 7ac8d6de6694..5f9470d44fd4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ku.json @@ -268,7 +268,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)", @@ -347,6 +346,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)", @@ -383,6 +384,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î", @@ -450,6 +452,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)", @@ -483,6 +489,10 @@ "sr_Latn_RS": "sirbî (latînî, Serbistan)", "sr_ME": "sirbî (Montenegro)", "sr_RS": "sirbî (Serbistan)", + "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 d9730ffb818c..4597722fbc55 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -368,6 +368,8 @@ "ko_KP": "корейче (Түндүк Корея)", "ko_KR": "корейче (Түштүк Корея)", "ks": "кашмирче", + "ks_Arab": "кашмирче (Араб)", + "ks_Arab_IN": "кашмирче (Араб, Индия)", "ks_IN": "кашмирче (Индия)", "ku": "курдча", "ku_TR": "курдча (Түркия)", @@ -406,6 +408,7 @@ "mr_IN": "маратиче (Индия)", "ms": "малайча", "ms_BN": "малайча (Бруней)", + "ms_ID": "малайча (Индонезия)", "ms_MY": "малайча (Малайзия)", "ms_SG": "малайча (Сингапур)", "mt": "малтизче", @@ -486,6 +489,10 @@ "rw": "руандача", "rw_RW": "руандача (Руанда)", "sd": "синдхиче", + "sd_Arab": "синдхиче (Араб)", + "sd_Arab_PK": "синдхиче (Араб, Пакистан)", + "sd_Deva": "синдхиче (Деванагари)", + "sd_Deva_IN": "синдхиче (Деванагари, Индия)", "sd_PK": "синдхиче (Пакистан)", "se": "түндүк саамиче", "se_FI": "түндүк саамиче (Финляндия)", @@ -523,6 +530,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/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index 85b901b8fe32..39e1d15d1060 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Serbesch (Laténgesch, Serbien)", "sr_ME": "Serbesch (Montenegro)", "sr_RS": "Serbesch (Serbien)", + "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/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index 8082140a2648..9970b1c44617 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -368,6 +368,8 @@ "ko_KP": "ເກົາຫລີ (ເກົາຫລີເໜືອ)", "ko_KR": "ເກົາຫລີ (ເກົາຫລີໃຕ້)", "ks": "ຄາສເມຍຣິ", + "ks_Arab": "ຄາສເມຍຣິ (ອາຣາບິກ)", + "ks_Arab_IN": "ຄາສເມຍຣິ (ອາຣາບິກ, ອິນເດຍ)", "ks_IN": "ຄາສເມຍຣິ (ອິນເດຍ)", "ku": "ເຄີດິສ", "ku_TR": "ເຄີດິສ (ເທີຄີ)", @@ -406,6 +408,7 @@ "mr_IN": "ມາຣາທີ (ອິນເດຍ)", "ms": "ມາເລ", "ms_BN": "ມາເລ (ບຣູໄນ)", + "ms_ID": "ມາເລ (ອິນໂດເນເຊຍ)", "ms_MY": "ມາເລ (ມາເລເຊຍ)", "ms_SG": "ມາເລ (ສິງກະໂປ)", "mt": "ມອລທີສ", @@ -486,6 +489,10 @@ "rw": "ຄິນຢາວານດາ", "rw_RW": "ຄິນຢາວານດາ (ຣວັນດາ)", "sd": "ສິນທິ", + "sd_Arab": "ສິນທິ (ອາຣາບິກ)", + "sd_Arab_PK": "ສິນທິ (ອາຣາບິກ, ປາກິດສະຖານ)", + "sd_Deva": "ສິນທິ (ດີວານາກາຣີ)", + "sd_Deva_IN": "ສິນທິ (ດີວານາກາຣີ, ອິນເດຍ)", "sd_PK": "ສິນທິ (ປາກິດສະຖານ)", "se": "ຊາມິເໜືອ", "se_FI": "ຊາມິເໜືອ (ຟິນແລນ)", @@ -523,6 +530,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/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index ac060fcdbf0d..1d682b7f3658 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -368,6 +368,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)", @@ -406,6 +408,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ų", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbų (lotynų, Serbija)", "sr_ME": "serbų (Juodkalnija)", "sr_RS": "serbų (Serbija)", + "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/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index a1b684ef03d9..02243b9c8f3b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbu (latīņu, Serbija)", "sr_ME": "serbu (Melnkalne)", "sr_RS": "serbu (Serbija)", + "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/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 2263bc903758..c6d1549e6696 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -368,6 +368,8 @@ "ko_KP": "корејски (Северна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турција)", @@ -406,6 +408,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -486,6 +489,10 @@ "rw": "руандски", "rw_RW": "руандски (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "северен сами", "se_FI": "северен сами (Финска)", @@ -523,6 +530,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/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index 78aa26cdc567..cd9183712d07 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -368,6 +368,8 @@ "ko_KP": "കൊറിയൻ (ഉത്തരകൊറിയ)", "ko_KR": "കൊറിയൻ (ദക്ഷിണകൊറിയ)", "ks": "കാശ്‌മീരി", + "ks_Arab": "കാശ്‌മീരി (അറബിക്)", + "ks_Arab_IN": "കാശ്‌മീരി (അറബിക്, ഇന്ത്യ)", "ks_IN": "കാശ്‌മീരി (ഇന്ത്യ)", "ku": "കുർദ്ദിഷ്", "ku_TR": "കുർദ്ദിഷ് (തുർക്കി)", @@ -406,6 +408,7 @@ "mr_IN": "മറാത്തി (ഇന്ത്യ)", "ms": "മലെയ്", "ms_BN": "മലെയ് (ബ്രൂണൈ)", + "ms_ID": "മലെയ് (ഇന്തോനേഷ്യ)", "ms_MY": "മലെയ് (മലേഷ്യ)", "ms_SG": "മലെയ് (സിംഗപ്പൂർ)", "mt": "മാൾട്ടീസ്", @@ -486,6 +489,10 @@ "rw": "കിന്യാർവാണ്ട", "rw_RW": "കിന്യാർവാണ്ട (റുവാണ്ട)", "sd": "സിന്ധി", + "sd_Arab": "സിന്ധി (അറബിക്)", + "sd_Arab_PK": "സിന്ധി (അറബിക്, പാക്കിസ്ഥാൻ)", + "sd_Deva": "സിന്ധി (ദേവനാഗരി)", + "sd_Deva_IN": "സിന്ധി (ദേവനാഗരി, ഇന്ത്യ)", "sd_PK": "സിന്ധി (പാക്കിസ്ഥാൻ)", "se": "വടക്കൻ സമി", "se_FI": "വടക്കൻ സമി (ഫിൻലാൻഡ്)", @@ -523,6 +530,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/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index 777f83087cbb..d12f7c582bb2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -368,6 +368,8 @@ "ko_KP": "солонгос (Хойд Солонгос)", "ko_KR": "солонгос (Өмнөд Солонгос)", "ks": "кашмир", + "ks_Arab": "кашмир (араб)", + "ks_Arab_IN": "кашмир (араб, Энэтхэг)", "ks_IN": "кашмир (Энэтхэг)", "ku": "курд", "ku_TR": "курд (Турк)", @@ -406,6 +408,7 @@ "mr_IN": "марати (Энэтхэг)", "ms": "малай", "ms_BN": "малай (Бруней)", + "ms_ID": "малай (Индонез)", "ms_MY": "малай (Малайз)", "ms_SG": "малай (Сингапур)", "mt": "малта", @@ -486,6 +489,10 @@ "rw": "киньяруанда", "rw_RW": "киньяруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (араб)", + "sd_Arab_PK": "синдхи (араб, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Энэтхэг)", "sd_PK": "синдхи (Пакистан)", "se": "хойд сами", "se_FI": "хойд сами (Финлянд)", @@ -523,6 +530,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/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index 1e3c0c492092..633d8cbc7f13 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -368,6 +368,8 @@ "ko_KP": "कोरियन (उत्तर कोरिया)", "ko_KR": "कोरियन (दक्षिण कोरिया)", "ks": "काश्मीरी", + "ks_Arab": "काश्मीरी (अरबी)", + "ks_Arab_IN": "काश्मीरी (अरबी, भारत)", "ks_IN": "काश्मीरी (भारत)", "ku": "कुर्दिश", "ku_TR": "कुर्दिश (तुर्की)", @@ -406,6 +408,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलय", "ms_BN": "मलय (ब्रुनेई)", + "ms_ID": "मलय (इंडोनेशिया)", "ms_MY": "मलय (मलेशिया)", "ms_SG": "मलय (सिंगापूर)", "mt": "माल्टिज्", @@ -486,6 +489,10 @@ "rw": "किन्यार्वान्डा", "rw_RW": "किन्यार्वान्डा (रवांडा)", "sd": "सिंधी", + "sd_Arab": "सिंधी (अरबी)", + "sd_Arab_PK": "सिंधी (अरबी, पाकिस्तान)", + "sd_Deva": "सिंधी (देवनागरी)", + "sd_Deva_IN": "सिंधी (देवनागरी, भारत)", "sd_PK": "सिंधी (पाकिस्तान)", "se": "उत्तरी सामी", "se_FI": "उत्तरी सामी (फिनलंड)", @@ -523,6 +530,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/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 7d17d4cbc692..9e1cda9d9c66 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "Serbia (Latin, Serbia)", "sr_ME": "Serbia (Montenegro)", "sr_RS": "Serbia (Serbia)", + "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 348cac79aa9f..ca32ca430e49 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -484,6 +487,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)", @@ -521,6 +526,10 @@ "sr_Latn_RS": "Serb (Latin, is-Serbja)", "sr_ME": "Serb (il-Montenegro)", "sr_RS": "Serb (is-Serbja)", + "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 2c68ea7d7b1a..8e6f45c76278 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -368,6 +368,8 @@ "ko_KP": "ကိုရီးယား (မြောက်ကိုရီးယား)", "ko_KR": "ကိုရီးယား (တောင်ကိုရီးယား)", "ks": "ကက်ရှ်မီးယား", + "ks_Arab": "ကက်ရှ်မီးယား (အာရေဗျ)", + "ks_Arab_IN": "ကက်ရှ်မီးယား (အာရေဗျ၊ အိန္ဒိယ)", "ks_IN": "ကက်ရှ်မီးယား (အိန္ဒိယ)", "ku": "ကဒ်", "ku_TR": "ကဒ် (တူရကီ)", @@ -406,6 +408,7 @@ "mr_IN": "မာရသီ (အိန္ဒိယ)", "ms": "မလေး", "ms_BN": "မလေး (ဘရူနိုင်း)", + "ms_ID": "မလေး (အင်ဒိုနီးရှား)", "ms_MY": "မလေး (မလေးရှား)", "ms_SG": "မလေး (စင်္ကာပူ)", "mt": "မော်လ်တာ", @@ -486,6 +489,10 @@ "rw": "ကင်ရာဝန်ဒါ", "rw_RW": "ကင်ရာဝန်ဒါ (ရဝန်ဒါ)", "sd": "စင်ဒီ", + "sd_Arab": "စင်ဒီ (အာရေဗျ)", + "sd_Arab_PK": "စင်ဒီ (အာရေဗျ၊ ပါကစ္စတန်)", + "sd_Deva": "စင်ဒီ (ဒီဗနာဂရီ)", + "sd_Deva_IN": "စင်ဒီ (ဒီဗနာဂရီ၊ အိန္ဒိယ)", "sd_PK": "စင်ဒီ (ပါကစ္စတန်)", "se": "မြောက် ဆာမိ", "se_FI": "မြောက် ဆာမိ (ဖင်လန်)", @@ -521,6 +528,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/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index 10053435d89b..73ccbdb10d04 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbisk (latinsk, Serbia)", "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbia)", + "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/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index fc2c93cda56c..bed8cb7053a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -368,6 +368,8 @@ "ko_KP": "कोरियाली (उत्तर कोरिया)", "ko_KR": "कोरियाली (दक्षिण कोरिया)", "ks": "कास्मिरी", + "ks_Arab": "कास्मिरी (अरबी)", + "ks_Arab_IN": "कास्मिरी (अरबी, भारत)", "ks_IN": "कास्मिरी (भारत)", "ku": "कुर्दी", "ku_TR": "कुर्दी (टर्की)", @@ -406,6 +408,7 @@ "mr_IN": "मराठी (भारत)", "ms": "मलाय", "ms_BN": "मलाय (ब्रुनाइ)", + "ms_ID": "मलाय (इन्डोनेशिया)", "ms_MY": "मलाय (मलेसिया)", "ms_SG": "मलाय (सिङ्गापुर)", "mt": "माल्टिज", @@ -486,6 +489,10 @@ "rw": "किन्यारवान्डा", "rw_RW": "किन्यारवान्डा (रवाण्डा)", "sd": "सिन्धी", + "sd_Arab": "सिन्धी (अरबी)", + "sd_Arab_PK": "सिन्धी (अरबी, पाकिस्तान)", + "sd_Deva": "सिन्धी (देवानागरी)", + "sd_Deva_IN": "सिन्धी (देवानागरी, भारत)", "sd_PK": "सिन्धी (पाकिस्तान)", "se": "उत्तरी सामी", "se_FI": "उत्तरी सामी (फिनल्याण्ड)", @@ -521,6 +528,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/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index 3cfdadd79de1..b2f0eff8b22c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "Servisch (Latijns, Servië)", "sr_ME": "Servisch (Montenegro)", "sr_RS": "Servisch (Servië)", + "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 1d5b7696622a..919250773852 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbisk (latinsk, Serbia)", "sr_ME": "serbisk (Montenegro)", "sr_RS": "serbisk (Serbia)", + "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/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index f33fd0887525..e2f8fc65ad4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -368,6 +368,8 @@ "ko_KP": "କୋରିଆନ୍ (ଉତ୍ତର କୋରିଆ)", "ko_KR": "କୋରିଆନ୍ (ଦକ୍ଷିଣ କୋରିଆ)", "ks": "କାଶ୍ମିରୀ", + "ks_Arab": "କାଶ୍ମିରୀ (ଆରବିକ୍)", + "ks_Arab_IN": "କାଶ୍ମିରୀ (ଆରବିକ୍, ଭାରତ)", "ks_IN": "କାଶ୍ମିରୀ (ଭାରତ)", "ku": "କୁର୍ଦ୍ଦିଶ୍", "ku_TR": "କୁର୍ଦ୍ଦିଶ୍ (ତୁର୍କୀ)", @@ -406,6 +408,7 @@ "mr_IN": "ମରାଠୀ (ଭାରତ)", "ms": "ମାଲୟ", "ms_BN": "ମାଲୟ (ବ୍ରୁନେଇ)", + "ms_ID": "ମାଲୟ (ଇଣ୍ଡୋନେସିଆ)", "ms_MY": "ମାଲୟ (ମାଲେସିଆ)", "ms_SG": "ମାଲୟ (ସିଙ୍ଗାପୁର୍)", "mt": "ମାଲଟୀଜ୍", @@ -486,6 +489,10 @@ "rw": "କିନ୍ୟାରୱାଣ୍ଡା", "rw_RW": "କିନ୍ୟାରୱାଣ୍ଡା (ରାୱାଣ୍ଡା)", "sd": "ସିନ୍ଧୀ", + "sd_Arab": "ସିନ୍ଧୀ (ଆରବିକ୍)", + "sd_Arab_PK": "ସିନ୍ଧୀ (ଆରବିକ୍, ପାକିସ୍ତାନ)", + "sd_Deva": "ସିନ୍ଧୀ (ଦେବନଗରୀ)", + "sd_Deva_IN": "ସିନ୍ଧୀ (ଦେବନଗରୀ, ଭାରତ)", "sd_PK": "ସିନ୍ଧୀ (ପାକିସ୍ତାନ)", "se": "ଉତ୍ତର ସାମି", "se_FI": "ଉତ୍ତର ସାମି (ଫିନଲ୍ୟାଣ୍ଡ)", @@ -523,6 +530,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/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 2c9450ae839d..2ef46e5936d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -368,6 +368,8 @@ "ko_KP": "ਕੋਰੀਆਈ (ਉੱਤਰ ਕੋਰੀਆ)", "ko_KR": "ਕੋਰੀਆਈ (ਦੱਖਣ ਕੋਰੀਆ)", "ks": "ਕਸ਼ਮੀਰੀ", + "ks_Arab": "ਕਸ਼ਮੀਰੀ (ਅਰਬੀ)", + "ks_Arab_IN": "ਕਸ਼ਮੀਰੀ (ਅਰਬੀ, ਭਾਰਤ)", "ks_IN": "ਕਸ਼ਮੀਰੀ (ਭਾਰਤ)", "ku": "ਕੁਰਦਿਸ਼", "ku_TR": "ਕੁਰਦਿਸ਼ (ਤੁਰਕੀ)", @@ -406,6 +408,7 @@ "mr_IN": "ਮਰਾਠੀ (ਭਾਰਤ)", "ms": "ਮਲਯ", "ms_BN": "ਮਲਯ (ਬਰੂਨੇਈ)", + "ms_ID": "ਮਲਯ (ਇੰਡੋਨੇਸ਼ੀਆ)", "ms_MY": "ਮਲਯ (ਮਲੇਸ਼ੀਆ)", "ms_SG": "ਮਲਯ (ਸਿੰਗਾਪੁਰ)", "mt": "ਮਾਲਟੀਜ਼", @@ -486,6 +489,10 @@ "rw": "ਕਿਨਿਆਰਵਾਂਡਾ", "rw_RW": "ਕਿਨਿਆਰਵਾਂਡਾ (ਰਵਾਂਡਾ)", "sd": "ਸਿੰਧੀ", + "sd_Arab": "ਸਿੰਧੀ (ਅਰਬੀ)", + "sd_Arab_PK": "ਸਿੰਧੀ (ਅਰਬੀ, ਪਾਕਿਸਤਾਨ)", + "sd_Deva": "ਸਿੰਧੀ (ਦੇਵਨਾਗਰੀ)", + "sd_Deva_IN": "ਸਿੰਧੀ (ਦੇਵਨਾਗਰੀ, ਭਾਰਤ)", "sd_PK": "ਸਿੰਧੀ (ਪਾਕਿਸਤਾਨ)", "se": "ਉੱਤਰੀ ਸਾਮੀ", "se_FI": "ਉੱਤਰੀ ਸਾਮੀ (ਫਿਨਲੈਂਡ)", @@ -521,6 +528,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/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index 9f780377a1e7..c0c45297b998 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbski (łacińskie, Serbia)", "sr_ME": "serbski (Czarnogóra)", "sr_RS": "serbski (Serbia)", + "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 47f4ebb47e91..bf6979ffde04 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ps.json @@ -368,6 +368,8 @@ "ko_KP": "کوریایی (شمالی کوریا)", "ko_KR": "کوریایی (سویلي کوریا)", "ks": "کشمیري", + "ks_Arab": "کشمیري (عربي)", + "ks_Arab_IN": "کشمیري (عربي, هند)", "ks_IN": "کشمیري (هند)", "ku": "کردي", "ku_TR": "کردي (ترکي)", @@ -406,6 +408,7 @@ "mr_IN": "مراټهي (هند)", "ms": "ملایا", "ms_BN": "ملایا (برونائي)", + "ms_ID": "ملایا (اندونیزیا)", "ms_MY": "ملایا (مالیزیا)", "ms_SG": "ملایا (سينگاپور)", "mt": "مالټايي", @@ -484,6 +487,10 @@ "rw": "کینیارونډا", "rw_RW": "کینیارونډا (روندا)", "sd": "سندهي", + "sd_Arab": "سندهي (عربي)", + "sd_Arab_PK": "سندهي (عربي, پاکستان)", + "sd_Deva": "سندهي (دیواناګري)", + "sd_Deva_IN": "سندهي (دیواناګري, هند)", "sd_PK": "سندهي (پاکستان)", "se": "شمالي سامي", "se_FI": "شمالي سامي (فنلینډ)", @@ -519,6 +526,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/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 356f637dddf0..8d658b30ad0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "sérvio (latim, Sérvia)", "sr_ME": "sérvio (Montenegro)", "sr_RS": "sérvio (Sérvia)", + "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 f2b018de7434..02f78de14b9a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -379,6 +379,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", @@ -482,6 +483,8 @@ "sr_BA": "Serbio Simi (Bosnia y Herzegovina)", "sr_ME": "Serbio Simi (Montenegro)", "sr_RS": "Serbio Simi (Serbia)", + "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/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index 5af3ba8544af..a05ef891a074 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -368,6 +368,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)", @@ -406,6 +408,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ă", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "sârbă (latină, Serbia)", "sr_ME": "sârbă (Muntenegru)", "sr_RS": "sârbă (Serbia)", + "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 51158febe929..579904b83430 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -368,6 +368,8 @@ "ko_KP": "корейский (КНДР)", "ko_KR": "корейский (Республика Корея)", "ks": "кашмири", + "ks_Arab": "кашмири (арабица)", + "ks_Arab_IN": "кашмири (арабица, Индия)", "ks_IN": "кашмири (Индия)", "ku": "курдский", "ku_TR": "курдский (Турция)", @@ -406,6 +408,7 @@ "mr_IN": "маратхи (Индия)", "ms": "малайский", "ms_BN": "малайский (Бруней-Даруссалам)", + "ms_ID": "малайский (Индонезия)", "ms_MY": "малайский (Малайзия)", "ms_SG": "малайский (Сингапур)", "mt": "мальтийский", @@ -486,6 +489,10 @@ "rw": "киньяруанда", "rw_RW": "киньяруанда (Руанда)", "sd": "синдхи", + "sd_Arab": "синдхи (арабица)", + "sd_Arab_PK": "синдхи (арабица, Пакистан)", + "sd_Deva": "синдхи (деванагари)", + "sd_Deva_IN": "синдхи (деванагари, Индия)", "sd_PK": "синдхи (Пакистан)", "se": "северносаамский", "se_FI": "северносаамский (Финляндия)", @@ -523,6 +530,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/sd.json b/src/Symfony/Component/Intl/Resources/data/locales/sd.json index 84a48e4bf054..64d65a7ecb79 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sd.json @@ -368,6 +368,8 @@ "ko_KP": "ڪوريائي (اتر ڪوريا)", "ko_KR": "ڪوريائي (ڏکڻ ڪوريا)", "ks": "ڪشميري", + "ks_Arab": "ڪشميري (عربي)", + "ks_Arab_IN": "ڪشميري (عربي, انڊيا)", "ks_IN": "ڪشميري (انڊيا)", "ku": "ڪردي", "ku_TR": "ڪردي (ترڪي)", @@ -406,6 +408,7 @@ "mr_IN": "مراٺي (انڊيا)", "ms": "ملي", "ms_BN": "ملي (برونائي)", + "ms_ID": "ملي (انڊونيشيا)", "ms_MY": "ملي (ملائيشيا)", "ms_SG": "ملي (سينگاپور)", "mt": "مالٽي", @@ -484,6 +487,10 @@ "rw": "ڪنيار وانڊا", "rw_RW": "ڪنيار وانڊا (روانڊا)", "sd": "سنڌي", + "sd_Arab": "سنڌي (عربي)", + "sd_Arab_PK": "سنڌي (عربي, پاڪستان)", + "sd_Deva": "سنڌي (ديوناگري)", + "sd_Deva_IN": "سنڌي (ديوناگري, انڊيا)", "sd_PK": "سنڌي (پاڪستان)", "se": "اتر سامي", "se_FI": "اتر سامي (فن لينڊ)", @@ -519,6 +526,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/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json index b5dd4bd5f1b5..af827123d048 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sd_Deva.json @@ -26,6 +26,8 @@ "de_LI": "जर्मन (لچي ٽينسٽين)", "de_LU": "जर्मन (لیگزمبرگ)", "en": "अंगरेज़ी", + "en_001": "अंगरेज़ी (دنيا)", + "en_150": "अंगरेज़ी (يورپ)", "en_AE": "अंगरेज़ी (متحده عرب امارات)", "en_AG": "अंगरेज़ी (انٽيگئا و بربودا)", "en_AI": "अंगरेज़ी (انگويلا)", @@ -47,7 +49,6 @@ "en_CX": "अंगरेज़ी (ڪرسمس ٻيٽ)", "en_CY": "अंगरेज़ी (سائپرس)", "en_DE": "अंगरेज़ी (जर्मनी)", - "en_DG": "अंगरेज़ी (ڊئيگو گارسيا)", "en_DK": "अंगरेज़ी (ڊينمارڪ)", "en_DM": "अंगरेज़ी (ڊومينيڪا)", "en_ER": "अंगरेज़ी (ايريٽيريا)", @@ -130,6 +131,7 @@ "en_ZM": "अंगरेज़ी (زيمبيا)", "en_ZW": "अंगरेज़ी (زمبابوي)", "es": "स्पेनिश", + "es_419": "स्पेनिश (لاطيني آمريڪا)", "es_AR": "स्पेनिश (ارجنٽينا)", "es_BO": "स्पेनिश (بوليويا)", "es_BR": "स्पेनिश (ब्राजील)", @@ -139,13 +141,11 @@ "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": "स्पेनिश (پناما)", @@ -273,12 +273,10 @@ "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": "تامل (भारत)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index 1c70c5d09f3f..d5d6ab39cdca 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -368,6 +368,8 @@ "ko_KP": "කොරියානු (උතුරු කොරියාව)", "ko_KR": "කොරියානු (දකුණු කොරියාව)", "ks": "කාෂ්මීර්", + "ks_Arab": "කාෂ්මීර් (අරාබි)", + "ks_Arab_IN": "කාෂ්මීර් (අරාබි, ඉන්දියාව)", "ks_IN": "කාෂ්මීර් (ඉන්දියාව)", "ku": "කුර්දි", "ku_TR": "කුර්දි (තුර්කිය)", @@ -406,6 +408,7 @@ "mr_IN": "මරාති (ඉන්දියාව)", "ms": "මැලේ", "ms_BN": "මැලේ (බෲනායි)", + "ms_ID": "මැලේ (ඉන්දුනීසියාව)", "ms_MY": "මැලේ (මැලේසියාව)", "ms_SG": "මැලේ (සිංගප්පූරුව)", "mt": "මොල්ටිස්", @@ -484,6 +487,10 @@ "rw": "කින්යර්වන්ඩා", "rw_RW": "කින්යර්වන්ඩා (රුවන්ඩාව)", "sd": "සින්ධි", + "sd_Arab": "සින්ධි (අරාබි)", + "sd_Arab_PK": "සින්ධි (අරාබි, පාකිස්තානය)", + "sd_Deva": "සින්ධි (දේවනාගරී)", + "sd_Deva_IN": "සින්ධි (දේවනාගරී, ඉන්දියාව)", "sd_PK": "සින්ධි (පාකිස්තානය)", "se": "උතුරු සාමි", "se_FI": "උතුරු සාමි (ෆින්ලන්තය)", @@ -519,6 +526,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/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index a9307c7e59de..d1ca86b9ae3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srbčina (latinka, Srbsko)", "sr_ME": "srbčina (Čierna Hora)", "sr_RS": "srbčina (Srbsko)", + "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 d555a710095b..a78a42704b2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srbščina (latinica, Srbija)", "sr_ME": "srbščina (Črna gora)", "sr_RS": "srbščina (Srbija)", + "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/so.json b/src/Symfony/Component/Intl/Resources/data/locales/so.json index 4a88e69bb59d..0a7c1bfd8bbe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/so.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/so.json @@ -132,6 +132,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)", @@ -207,6 +208,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)", @@ -234,6 +236,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)", @@ -366,6 +381,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)", @@ -404,6 +421,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", @@ -439,6 +457,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", @@ -480,6 +500,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)", @@ -515,6 +539,10 @@ "sr_Latn_RS": "Seerbiyaan (Laatiin, Seerbiya)", "sr_ME": "Seerbiyaan (Moontenegro)", "sr_RS": "Seerbiyaan (Seerbiya)", + "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 0f6095064d2c..9313a97411ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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ë)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "serbisht (latin, Serbi)", "sr_ME": "serbisht (Mal i Zi)", "sr_RS": "serbisht (Serbi)", + "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 6d4128c8f074..084927317626 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -368,6 +368,8 @@ "ko_KP": "корејски (Северна Кореја)", "ko_KR": "корејски (Јужна Кореја)", "ks": "кашмирски", + "ks_Arab": "кашмирски (арапско писмо)", + "ks_Arab_IN": "кашмирски (арапско писмо, Индија)", "ks_IN": "кашмирски (Индија)", "ku": "курдски", "ku_TR": "курдски (Турска)", @@ -406,6 +408,7 @@ "mr_IN": "марати (Индија)", "ms": "малајски", "ms_BN": "малајски (Брунеј)", + "ms_ID": "малајски (Индонезија)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", "mt": "малтешки", @@ -486,6 +489,10 @@ "rw": "кињаруанда", "rw_RW": "кињаруанда (Руанда)", "sd": "синди", + "sd_Arab": "синди (арапско писмо)", + "sd_Arab_PK": "синди (арапско писмо, Пакистан)", + "sd_Deva": "синди (деванагари)", + "sd_Deva_IN": "синди (деванагари, Индија)", "sd_PK": "синди (Пакистан)", "se": "северни сами", "se_FI": "северни сами (Финска)", @@ -523,6 +530,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/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json index 0a46e46eb3aa..776747d09483 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "srpski (latinica, Srbija)", "sr_ME": "srpski (Crna Gora)", "sr_RS": "srpski (Srbija)", + "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/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index 1abe9dd2a479..457c170a9ab4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -236,6 +236,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)", @@ -368,6 +381,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)", @@ -406,6 +421,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", @@ -486,6 +502,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)", @@ -523,6 +543,10 @@ "sr_Latn_RS": "serbiska (latinska, Serbien)", "sr_ME": "serbiska (Montenegro)", "sr_RS": "serbiska (Serbien)", + "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 115813c67938..e499fde6ff70 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Kiserbia (Kilatini, Serbia)", "sr_ME": "Kiserbia (Montenegro)", "sr_RS": "Kiserbia (Serbia)", + "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 28906198c7f8..025e6dc5646a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -368,6 +368,8 @@ "ko_KP": "கொரியன் (வட கொரியா)", "ko_KR": "கொரியன் (தென் கொரியா)", "ks": "காஷ்மிரி", + "ks_Arab": "காஷ்மிரி (அரபிக்)", + "ks_Arab_IN": "காஷ்மிரி (அரபிக், இந்தியா)", "ks_IN": "காஷ்மிரி (இந்தியா)", "ku": "குர்திஷ்", "ku_TR": "குர்திஷ் (துருக்கி)", @@ -406,6 +408,7 @@ "mr_IN": "மராத்தி (இந்தியா)", "ms": "மலாய்", "ms_BN": "மலாய் (புருனே)", + "ms_ID": "மலாய் (இந்தோனேசியா)", "ms_MY": "மலாய் (மலேசியா)", "ms_SG": "மலாய் (சிங்கப்பூர்)", "mt": "மால்டிஸ்", @@ -486,6 +489,10 @@ "rw": "கின்யாருவான்டா", "rw_RW": "கின்யாருவான்டா (ருவாண்டா)", "sd": "சிந்தி", + "sd_Arab": "சிந்தி (அரபிக்)", + "sd_Arab_PK": "சிந்தி (அரபிக், பாகிஸ்தான்)", + "sd_Deva": "சிந்தி (தேவநாகரி)", + "sd_Deva_IN": "சிந்தி (தேவநாகரி, இந்தியா)", "sd_PK": "சிந்தி (பாகிஸ்தான்)", "se": "வடக்கு சமி", "se_FI": "வடக்கு சமி (பின்லாந்து)", @@ -523,6 +530,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/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index a99d691570fc..b89a12268f63 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -368,6 +368,8 @@ "ko_KP": "కొరియన్ (ఉత్తర కొరియా)", "ko_KR": "కొరియన్ (దక్షిణ కొరియా)", "ks": "కాశ్మీరి", + "ks_Arab": "కాశ్మీరి (అరబిక్)", + "ks_Arab_IN": "కాశ్మీరి (అరబిక్, భారతదేశం)", "ks_IN": "కాశ్మీరి (భారతదేశం)", "ku": "కుర్దిష్", "ku_TR": "కుర్దిష్ (టర్కీ)", @@ -406,6 +408,7 @@ "mr_IN": "మరాఠీ (భారతదేశం)", "ms": "మలయ్", "ms_BN": "మలయ్ (బ్రూనే)", + "ms_ID": "మలయ్ (ఇండోనేషియా)", "ms_MY": "మలయ్ (మలేషియా)", "ms_SG": "మలయ్ (సింగపూర్)", "mt": "మాల్టీస్", @@ -486,6 +489,10 @@ "rw": "కిన్యర్వాండా", "rw_RW": "కిన్యర్వాండా (రువాండా)", "sd": "సింధీ", + "sd_Arab": "సింధీ (అరబిక్)", + "sd_Arab_PK": "సింధీ (అరబిక్, పాకిస్తాన్)", + "sd_Deva": "సింధీ (దేవనాగరి)", + "sd_Deva_IN": "సింధీ (దేవనాగరి, భారతదేశం)", "sd_PK": "సింధీ (పాకిస్తాన్)", "se": "ఉత్తర సామి", "se_FI": "ఉత్తర సామి (ఫిన్లాండ్)", @@ -523,6 +530,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/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index e9203e455a4d..161a4eb34b66 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -368,6 +368,8 @@ "ko_KP": "เกาหลี (เกาหลีเหนือ)", "ko_KR": "เกาหลี (เกาหลีใต้)", "ks": "แคชเมียร์", + "ks_Arab": "แคชเมียร์ (อาหรับ)", + "ks_Arab_IN": "แคชเมียร์ (อาหรับ, อินเดีย)", "ks_IN": "แคชเมียร์ (อินเดีย)", "ku": "เคิร์ด", "ku_TR": "เคิร์ด (ตุรกี)", @@ -406,6 +408,7 @@ "mr_IN": "มราฐี (อินเดีย)", "ms": "มาเลย์", "ms_BN": "มาเลย์ (บรูไน)", + "ms_ID": "มาเลย์ (อินโดนีเซีย)", "ms_MY": "มาเลย์ (มาเลเซีย)", "ms_SG": "มาเลย์ (สิงคโปร์)", "mt": "มอลตา", @@ -486,6 +489,10 @@ "rw": "รวันดา", "rw_RW": "รวันดา (รวันดา)", "sd": "สินธิ", + "sd_Arab": "สินธิ (อาหรับ)", + "sd_Arab_PK": "สินธิ (อาหรับ, ปากีสถาน)", + "sd_Deva": "สินธิ (เทวนาครี)", + "sd_Deva_IN": "สินธิ (เทวนาครี, อินเดีย)", "sd_PK": "สินธิ (ปากีสถาน)", "se": "ซามิเหนือ", "se_FI": "ซามิเหนือ (ฟินแลนด์)", @@ -523,6 +530,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/ti.json b/src/Symfony/Component/Intl/Resources/data/locales/ti.json index a66b44d3b745..c4d20241f824 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ti.json @@ -319,6 +319,7 @@ "mr_IN": "ማራቲኛ (ህንዲ)", "ms": "ማላይኛ", "ms_BN": "ማላይኛ (ብሩኒ)", + "ms_ID": "ማላይኛ (ኢንዶኔዢያ)", "ms_MY": "ማላይኛ (ማሌዢያ)", "ms_SG": "ማላይኛ (ሲንጋፖር)", "mt": "ማልቲስኛ", @@ -390,6 +391,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/tk.json b/src/Symfony/Component/Intl/Resources/data/locales/tk.json index 83d34d6fe862..d0f0108d867b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tk.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -484,6 +487,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)", @@ -519,6 +526,10 @@ "sr_Latn_RS": "serb dili (Latyn elipbiýi, Serbiýa)", "sr_ME": "serb dili (Montenegro)", "sr_RS": "serb dili (Serbiýa)", + "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 40b30e7eec9c..021a6a973ccf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "lea fakasēpia (tohinima fakalatina, Sēpia)", "sr_ME": "lea fakasēpia (Monitenikalo)", "sr_RS": "lea fakasēpia (Sēpia)", + "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 f4cf9d6bf3c5..81ca79c2895c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Sırpça (Latin, Sırbistan)", "sr_ME": "Sırpça (Karadağ)", "sr_RS": "Sırpça (Sırbistan)", + "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/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 83fe16a5a2b7..032c479268e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -368,6 +368,8 @@ "ko_KP": "كورېيەچە (چاۋشيەن)", "ko_KR": "كورېيەچە (كورېيە)", "ks": "كەشمىرچە", + "ks_Arab": "كەشمىرچە (ئەرەب)", + "ks_Arab_IN": "كەشمىرچە (ئەرەب، ھىندىستان)", "ks_IN": "كەشمىرچە (ھىندىستان)", "ku": "كۇردچە", "ku_TR": "كۇردچە (تۈركىيە)", @@ -406,6 +408,7 @@ "mr_IN": "ماراتىچە (ھىندىستان)", "ms": "مالايچە", "ms_BN": "مالايچە (بىرۇنېي)", + "ms_ID": "مالايچە (ھىندونېزىيە)", "ms_MY": "مالايچە (مالايسىيا)", "ms_SG": "مالايچە (سىنگاپور)", "mt": "مالتاچە", @@ -486,6 +489,10 @@ "rw": "كېنىيەرىۋانداچە", "rw_RW": "كېنىيەرىۋانداچە (رىۋاندا)", "sd": "سىندىچە", + "sd_Arab": "سىندىچە (ئەرەب)", + "sd_Arab_PK": "سىندىچە (ئەرەب، پاكىستان)", + "sd_Deva": "سىندىچە (دېۋاناگارى)", + "sd_Deva_IN": "سىندىچە (دېۋاناگارى، ھىندىستان)", "sd_PK": "سىندىچە (پاكىستان)", "se": "شىمالىي سامىچە", "se_FI": "شىمالىي سامىچە (فىنلاندىيە)", @@ -523,6 +530,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/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index a4048c32e20b..c474c15f994e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -236,6 +236,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": "фула (латиниця)", @@ -368,6 +381,8 @@ "ko_KP": "корейська (Північна Корея)", "ko_KR": "корейська (Південна Корея)", "ks": "кашмірська", + "ks_Arab": "кашмірська (арабиця)", + "ks_Arab_IN": "кашмірська (арабиця, Індія)", "ks_IN": "кашмірська (Індія)", "ku": "курдська", "ku_TR": "курдська (Туреччина)", @@ -406,6 +421,7 @@ "mr_IN": "маратхі (Індія)", "ms": "малайська", "ms_BN": "малайська (Бруней)", + "ms_ID": "малайська (Індонезія)", "ms_MY": "малайська (Малайзія)", "ms_SG": "малайська (Сінгапур)", "mt": "мальтійська", @@ -486,6 +502,10 @@ "rw": "кіньяруанда", "rw_RW": "кіньяруанда (Руанда)", "sd": "сіндхі", + "sd_Arab": "сіндхі (арабиця)", + "sd_Arab_PK": "сіндхі (арабиця, Пакистан)", + "sd_Deva": "сіндхі (деванагарі)", + "sd_Deva_IN": "сіндхі (деванагарі, Індія)", "sd_PK": "сіндхі (Пакистан)", "se": "північносаамська", "se_FI": "північносаамська (Фінляндія)", @@ -523,6 +543,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/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index abe4028f6159..929df03006f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -368,6 +368,8 @@ "ko_KP": "کوریائی (شمالی کوریا)", "ko_KR": "کوریائی (جنوبی کوریا)", "ks": "کشمیری", + "ks_Arab": "کشمیری (عربی)", + "ks_Arab_IN": "کشمیری (عربی،بھارت)", "ks_IN": "کشمیری (بھارت)", "ku": "کردش", "ku_TR": "کردش (ترکی)", @@ -406,6 +408,7 @@ "mr_IN": "مراٹهی (بھارت)", "ms": "مالے", "ms_BN": "مالے (برونائی)", + "ms_ID": "مالے (انڈونیشیا)", "ms_MY": "مالے (ملائشیا)", "ms_SG": "مالے (سنگاپور)", "mt": "مالٹی", @@ -486,6 +489,10 @@ "rw": "کینیاروانڈا", "rw_RW": "کینیاروانڈا (روانڈا)", "sd": "سندھی", + "sd_Arab": "سندھی (عربی)", + "sd_Arab_PK": "سندھی (عربی،پاکستان)", + "sd_Deva": "سندھی (دیوناگری)", + "sd_Deva_IN": "سندھی (دیوناگری،بھارت)", "sd_PK": "سندھی (پاکستان)", "se": "شمالی سامی", "se_FI": "شمالی سامی (فن لینڈ)", @@ -523,6 +530,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/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index 25799a73440a..03fc3a2d588f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -484,6 +487,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)", @@ -519,6 +526,10 @@ "sr_Latn_RS": "serbcha (lotin, Serbiya)", "sr_ME": "serbcha (Chernogoriya)", "sr_RS": "serbcha (Serbiya)", + "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_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json index 2c3f67db0ebf..ee208182550a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -367,6 +367,8 @@ "ko_KP": "корейсча (Шимолий Корея)", "ko_KR": "корейсча (Жанубий Корея)", "ks": "кашмирча", + "ks_Arab": "кашмирча (Араб)", + "ks_Arab_IN": "кашмирча (Араб, Ҳиндистон)", "ks_IN": "кашмирча (Ҳиндистон)", "ku": "курдча", "ku_TR": "курдча (Туркия)", @@ -405,6 +407,7 @@ "mr_IN": "маратхи (Ҳиндистон)", "ms": "малай тил", "ms_BN": "малай тил (Бруней)", + "ms_ID": "малай тил (Индонезия)", "ms_MY": "малай тил (Малайзия)", "ms_SG": "малай тил (Сингапур)", "mt": "малтача", @@ -482,6 +485,10 @@ "rw": "киняруанда", "rw_RW": "киняруанда (Руанда)", "sd": "синдҳи", + "sd_Arab": "синдҳи (Араб)", + "sd_Arab_PK": "синдҳи (Араб, Покистон)", + "sd_Deva": "синдҳи (Девангари)", + "sd_Deva_IN": "синдҳи (Девангари, Ҳиндистон)", "sd_PK": "синдҳи (Покистон)", "se": "шимолий саамча", "se_FI": "шимолий саамча (Финляндия)", @@ -517,6 +524,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/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index 43c46d0658c1..e4c4a602ce08 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -368,6 +368,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ỳ)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "Tiếng Serbia (Chữ La tinh, Serbia)", "sr_ME": "Tiếng Serbia (Montenegro)", "sr_RS": "Tiếng Serbia (Serbia)", + "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/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index c6ca6d02b3cb..fb6e07d398a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -8,6 +8,7 @@ "am": "Èdè Amariki", "am_ET": "Èdè Amariki (Orílẹ́ède Etopia)", "ar": "Èdè Árábìkì", + "ar_001": "Èdè Árábìkì (Agbáyé)", "ar_AE": "Èdè Árábìkì (Orílẹ́ède Ẹmirate ti Awọn Arabu)", "ar_BH": "Èdè Árábìkì (Orílẹ́ède Báránì)", "ar_DJ": "Èdè Árábìkì (Orílẹ́ède Díbọ́ótì)", @@ -47,9 +48,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 +69,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,10 +86,17 @@ "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)", "en": "Èdè Gẹ̀ẹ́sì", + "en_001": "Èdè Gẹ̀ẹ́sì (Agbáyé)", + "en_150": "Èdè Gẹ̀ẹ́sì (Europe)", "en_AE": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Ẹmirate ti Awọn Arabu)", "en_AG": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Ààntígúà àti Báríbúdà)", "en_AI": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Ààngúlílà)", @@ -96,9 +111,11 @@ "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_DK": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Dẹ́mákì)", @@ -110,15 +127,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 +150,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 +180,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 +189,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ì)", @@ -176,6 +200,7 @@ "en_ZM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède ṣamibia)", "en_ZW": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède ṣimibabe)", "eo": "Èdè Esperanto", + "eo_001": "Èdè Esperanto (Agbáyé)", "es": "Èdè Sípáníìṣì", "es_419": "Èdè Sípáníìṣì (Látín Amẹ́ríkà)", "es_AR": "Èdè Sípáníìṣì (Orílẹ́ède Agentínà)", @@ -232,11 +257,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à)", @@ -257,6 +284,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)", @@ -288,6 +316,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á)", @@ -304,10 +334,13 @@ "hy": "Èdè Ile Armenia", "hy_AM": "Èdè Ile Armenia (Orílẹ́ède Améníà)", "ia": "Èdè pipo", + "ia_001": "Èdè pipo (Agbáyé)", "id": "Èdè Indonéṣíà", "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ì", @@ -321,6 +354,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", @@ -328,39 +367,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ì)", @@ -369,10 +463,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)", @@ -386,7 +489,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", @@ -395,6 +508,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,9 +522,20 @@ "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_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_ME": "Èdè Serbia (Montenegro)", + "sr_RS": "Èdè Serbia (Serbia)", + "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", @@ -424,6 +550,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", @@ -431,9 +559,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", @@ -450,19 +584,28 @@ "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", + "yi_001": "Èdè Yiddishi (Agbáyé)", "yo": "Èdè Yorùbá", "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è Ṣáí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 b70a30dcdbb7..e230e02d168d 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,9 +64,14 @@ "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ì", + "en_001": "Èdè Gɛ̀ɛ́sì (Agbáyé)", + "en_150": "Èdè Gɛ̀ɛ́sì (Europe)", "en_AE": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Ɛmirate ti Awɔn Arabu)", "en_AG": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Ààntígúà àti Báríbúdà)", "en_AI": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Ààngúlílà)", @@ -77,9 +86,11 @@ "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_DK": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Dɛ́mákì)", @@ -91,15 +102,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 +125,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 +155,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 +164,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ì)", @@ -205,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ì)", @@ -267,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)", @@ -274,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ì)", @@ -306,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íà", @@ -320,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)", @@ -333,7 +417,12 @@ "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_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 +434,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 +456,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 e5e66b895029..8b790e9ddd06 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -236,6 +236,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": "富拉语(拉丁文)", @@ -368,6 +381,8 @@ "ko_KP": "韩语(朝鲜)", "ko_KR": "韩语(韩国)", "ks": "克什米尔语", + "ks_Arab": "克什米尔语(阿拉伯文)", + "ks_Arab_IN": "克什米尔语(阿拉伯文,印度)", "ks_IN": "克什米尔语(印度)", "ku": "库尔德语", "ku_TR": "库尔德语(土耳其)", @@ -406,6 +421,7 @@ "mr_IN": "马拉地语(印度)", "ms": "马来语", "ms_BN": "马来语(文莱)", + "ms_ID": "马来语(印度尼西亚)", "ms_MY": "马来语(马来西亚)", "ms_SG": "马来语(新加坡)", "mt": "马耳他语", @@ -486,6 +502,10 @@ "rw": "卢旺达语", "rw_RW": "卢旺达语(卢旺达)", "sd": "信德语", + "sd_Arab": "信德语(阿拉伯文)", + "sd_Arab_PK": "信德语(阿拉伯文,巴基斯坦)", + "sd_Deva": "信德语(天城文)", + "sd_Deva_IN": "信德语(天城文,印度)", "sd_PK": "信德语(巴基斯坦)", "se": "北方萨米语", "se_FI": "北方萨米语(芬兰)", @@ -523,6 +543,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/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json index 39a02c9c581b..ad0da0f24cd7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -236,6 +236,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": "富拉文(拉丁文)", @@ -368,6 +381,8 @@ "ko_KP": "韓文(北韓)", "ko_KR": "韓文(南韓)", "ks": "喀什米爾文", + "ks_Arab": "喀什米爾文(阿拉伯文)", + "ks_Arab_IN": "喀什米爾文(阿拉伯文,印度)", "ks_IN": "喀什米爾文(印度)", "ku": "庫德文", "ku_TR": "庫德文(土耳其)", @@ -406,6 +421,7 @@ "mr_IN": "馬拉地文(印度)", "ms": "馬來文", "ms_BN": "馬來文(汶萊)", + "ms_ID": "馬來文(印尼)", "ms_MY": "馬來文(馬來西亞)", "ms_SG": "馬來文(新加坡)", "mt": "馬爾他文", @@ -486,6 +502,10 @@ "rw": "盧安達文", "rw_RW": "盧安達文(盧安達)", "sd": "信德文", + "sd_Arab": "信德文(阿拉伯文)", + "sd_Arab_PK": "信德文(阿拉伯文,巴基斯坦)", + "sd_Deva": "信德文(天城文)", + "sd_Deva_IN": "信德文(天城文,印度)", "sd_PK": "信德文(巴基斯坦)", "se": "北薩米文", "se_FI": "北薩米文(芬蘭)", @@ -523,6 +543,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/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index 239b886649dd..915183d40cb7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -368,6 +368,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)", @@ -406,6 +408,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", @@ -486,6 +489,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)", @@ -523,6 +530,10 @@ "sr_Latn_RS": "isi-Serbian (isi-Latin, i-Serbia)", "sr_ME": "isi-Serbian (i-Montenegro)", "sr_RS": "isi-Serbian (i-Serbia)", + "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/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json index 6b0a5f48ec38..438d5a68b4e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ff_Adlm.json @@ -14,7 +14,6 @@ "CV": "𞤑𞤢𞥄𞤦𞤮 𞤜𞤫𞤪𞤣𞤫", "DJ": "𞤔𞤭𞤦𞤵𞥅𞤼𞤭", "DZ": "𞤀𞤤𞤶𞤢𞤪𞤭𞥅", - "EA": "𞤅𞤭𞤼𞥆𞤢 & 𞤃𞤫𞤤𞤭𞤤𞤢", "EG": "𞤃𞤭𞤧𞤭𞤪𞤢", "EH": "𞤅𞤢𞥄𞤸𞤢𞤪𞤢 𞤖𞤭𞥅𞤲𞤢𞥄𞤪𞤭", "ER": "𞤉𞤪𞤭𞥅𞤼𞤫𞤪𞤫", @@ -29,7 +28,6 @@ "GN": "𞤘𞤭𞤲𞤫", "GQ": "𞤘𞤭𞤲𞤫 𞤕𞤢𞤳𞤢𞤲𞤼𞤫𞥅𞤪𞤭", "GW": "𞤘𞤭𞤲𞤫-𞤄𞤭𞤧𞤢𞤱𞤮𞥅", - "IC": "𞤅𞤵𞤪𞤭𞥅𞤪𞤫-𞤑𞤢𞤲𞤢𞤪𞤭𞥅", "IO": "𞤚𞤵𞤥𞤦𞤫𞤪𞤫 𞤄𞤪𞤭𞤼𞤢𞤲𞤭𞤲𞤳𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭", "KE": "𞤑𞤫𞤲𞤭𞤴𞤢𞥄", "KM": "𞤑𞤮𞤥𞤮𞥅𞤪𞤮", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ha.json b/src/Symfony/Component/Intl/Resources/data/regions/ha.json index 0db4f33b8378..160d284eec2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ha.json @@ -1,6 +1,5 @@ { "Names": { - "AC": "Tsibirin Ascension", "AD": "Andora", "AE": "Haɗaɗɗiyar Daular Larabawa", "AF": "Afaganistan", @@ -34,6 +33,7 @@ "BR": "Birazil", "BS": "Bahamas", "BT": "Butan", + "BV": "Tsibirin Bouvet", "BW": "Baswana", "BY": "Belarus", "BZ": "Beliz", @@ -57,13 +57,11 @@ "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", @@ -97,11 +95,11 @@ "GW": "Gini Bisau", "GY": "Guyana", "HK": "Hong Kong Babban Birnin Kasar Chana", + "HM": "Tsibirin Heard da McDonald", "HN": "Honduras", "HR": "Kurowaishiya", "HT": "Haiti", "HU": "Hungari", - "IC": "Canary Islands", "ID": "Indunusiya", "IE": "Ayalan", "IL": "Iziraʼila", @@ -246,9 +244,6 @@ "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/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 6ac3577c5d7b..66a7df9ff7ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,9 +1,12 @@ { "Names": { "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", @@ -12,19 +15,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", "BV": "Agwaetiti Bouvet", "BW": "Botswana", "BY": "Belarus", @@ -46,6 +54,7 @@ "CV": "Cape Verde", "CW": "Kurakao", "CX": "Agwaetiti Christmas", + "CY": "Obodo Cyprus", "CZ": "Czechia", "DE": "Mba Germany", "DJ": "Djibouti", @@ -69,6 +78,7 @@ "GA": "Gabon", "GB": "Mba United Kingdom", "GD": "Grenada", + "GE": "Obodo Georgia", "GF": "Frenchi Guiana", "GG": "Guernsey", "GH": "Ghana", @@ -84,27 +94,42 @@ "GU": "Guam", "GW": "Guinea-Bissau", "GY": "Guyana", + "HK": "Honk Kong mba nwere ndozi pụrụ iche n’obodo China", "HM": "Agwaetiti Heard na Agwaetiti McDonald", "HN": "Honduras", "HR": "Croatia", "HT": "Hati", "HU": "Hungary", + "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", @@ -120,6 +145,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", @@ -129,6 +157,7 @@ "MV": "Maldivesa", "MW": "Malawi", "MX": "Mexico", + "MY": "Malaysia", "MZ": "Mozambik", "NA": "Namibia", "NC": "New Caledonia", @@ -138,26 +167,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", @@ -176,24 +211,30 @@ "ST": "São Tomé & Príncipe", "SV": "El Salvador", "SX": "Sint Maarten", + "SY": "Obodo Syria", "SZ": "Eswatini", "TC": "Agwaetiti Turks na Caicos", "TD": "Chad", "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", @@ -203,6 +244,7 @@ "VU": "Vanuatu", "WF": "Wallis & Futuna", "WS": "Samoa", + "YE": "Obodo Yemen", "YT": "Mayotte", "ZA": "South Africa", "ZM": "Zambia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index 503bdf158ee1..0fa124cee8ce 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/so.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/so.json @@ -48,6 +48,7 @@ "CL": "Jili", "CM": "Kaameruun", "CN": "Shiinaha", + "CO": "Koloombiya", "CR": "Kosta Riika", "CU": "Kuuba", "CV": "Jasiiradda Kayb Faarde", @@ -92,6 +93,7 @@ "GT": "Guwaatamaala", "GU": "Guaam", "GW": "Gini-Bisaaw", + "GY": "Guyana", "HK": "Hong Kong", "HM": "Jasiiradda Haad & MakDonald", "HN": "Honduras", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo.json b/src/Symfony/Component/Intl/Resources/data/regions/yo.json index 3ea3b97ef7ee..9e0339d1307e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo.json @@ -8,11 +8,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ì", @@ -23,16 +25,20 @@ "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ì", + "BV": "Erékùsù Bouvet", "BW": "Orílẹ́ède Bọ̀tìsúwánà", "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ò", @@ -46,6 +52,8 @@ "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ì", @@ -65,12 +73,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", @@ -79,10 +89,13 @@ "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à", + "HM": "Erékùsù Heard àti Erékùsù McDonald", "HN": "Orílẹ́ède Hondurasi", "HR": "Orílẹ́ède Kòróátíà", "HT": "Orílẹ́ède Haati", @@ -90,12 +103,14 @@ "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", @@ -124,12 +139,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", @@ -171,6 +189,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", @@ -181,6 +200,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", @@ -190,6 +210,7 @@ "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", "TC": "Orílẹ́ède Tọọki ati Etikun Kakọsi", @@ -210,6 +231,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", 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 66bac5abf661..1d33134137d3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json @@ -50,7 +50,6 @@ "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à", @@ -92,7 +91,6 @@ "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", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json index 97cbd3e1933e..bdf7a2efcd74 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json @@ -4,6 +4,7 @@ "Armn": "Armeniyawa", "Beng": "Bangla", "Bopo": "Bopomofo", + "Brai": "Rubutun Makafi", "Cyrl": "Cyrillic", "Deva": "Devanagari", "Ethi": "Ethiopic", @@ -12,11 +13,33 @@ "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" + "Zxxx": "Ba rubutacce ba", + "Zyyy": "Gama-gari" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json index 1671ee2bdb13..26eed4c2a09c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sd_Deva.json @@ -6,7 +6,6 @@ "Hans": "सवलो थियण(लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु ॻढिण में कमु इंदो आहे", "Hant": "रवायती (लिप्यंतरण जो इशारो: लिपि नालो जो इहो तर्जमो चीनी भाषा जे नाले सां ॻडु करे ॻढिंजी करे थींदो आहे )", "Latn": "लैटिन", - "Zxxx": "अणलिखयल", - "Zzzz": "अणवाकुफु लिपि" + "Zxxx": "अणलिखयल" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/su.json b/src/Symfony/Component/Intl/Resources/data/scripts/su.json index 9a9267a25dd6..4be1545318c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/su.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/su.json @@ -5,7 +5,6 @@ "Hans": "Sederhana", "Hant": "Tradisional", "Latn": "Latin", - "Zxxx": "Non-tulisan", - "Zzzz": "Skrip Teu Dipikaterang" + "Zxxx": "Non-tulisan" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json index c3db56f3d7e0..fb652a2e3c9a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json @@ -1,12 +1,45 @@ { "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", - "Zxxx": "Aikọsilẹ" + "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ọ̀" } } 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 c0f352830d24..1c986888d6be 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json @@ -1,8 +1,19 @@ { "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ɔ́", - "Zxxx": "Aikɔsilɛ" + "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ɔ̀" } } diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/af.json b/src/Symfony/Component/Intl/Resources/data/timezones/af.json index 3cd12364c528..f7f8a8a71b36 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/af.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/af.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinië-tyd (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinië-tyd (Salta)", "America\/Argentina\/San_Juan": "Argentinië-tyd (San Juan)", - "America\/Argentina\/San_Luis": "Wes-Argentinië-tyd (San Luis)", + "America\/Argentina\/San_Luis": "Argentinië-tyd (San Luis)", "America\/Argentina\/Tucuman": "Argentinië-tyd (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinië-tyd (Ushuaia)", "America\/Aruba": "Atlantiese tyd (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Broenei Darussalam-tyd", "Asia\/Calcutta": "Indië-standaardtyd (Kolkata)", "Asia\/Chita": "Jakoetsk-tyd (Chita)", - "Asia\/Choibalsan": "Choibalsan-tyd", + "Asia\/Choibalsan": "Ulaanbaatar-tyd (Choibalsan)", "Asia\/Colombo": "Indië-standaardtyd (Colombo)", "Asia\/Damascus": "Oos-Europese tyd (Damaskus)", "Asia\/Dhaka": "Bangladesj-tyd (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/am.json b/src/Symfony/Component/Intl/Resources/data/timezones/am.json index 6828aa43250d..a6e7de79841f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/am.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/am.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "የአርጀንቲና የሰዓት አቆጣጠር (ሪዮ ጋሌጎስ)", "America\/Argentina\/Salta": "የአርጀንቲና የሰዓት አቆጣጠር (ሳልታ)", "America\/Argentina\/San_Juan": "የአርጀንቲና የሰዓት አቆጣጠር (ሳን ጁአን)", - "America\/Argentina\/San_Luis": "የአርጀንቲና ምስራቃዊ ሰዓት አቆጣጠር (ሳን ሊውስ)", + "America\/Argentina\/San_Luis": "የአርጀንቲና የሰዓት አቆጣጠር (ሳን ሊውስ)", "America\/Argentina\/Tucuman": "የአርጀንቲና የሰዓት አቆጣጠር (ቱኩማን)", "America\/Argentina\/Ushuaia": "የአርጀንቲና የሰዓት አቆጣጠር (ኡሹአኢ)", "America\/Aruba": "የአትላንቲክ የሰዓት አቆጣጠር (አሩባ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "የብሩኔይ ዳሩሳላም ሰዓት (ብሩናይ)", "Asia\/Calcutta": "የህንድ መደበኛ ሰዓት (ኮልካታ)", "Asia\/Chita": "ያኩትስክ የሰዓት አቆጣጠር (ቺታ)", - "Asia\/Choibalsan": "የቾይባልሳ ሰዓት አቆጣጠር (ቾይባልሳን)", + "Asia\/Choibalsan": "የኡላን ባቶር ጊዜ (ቾይባልሳን)", "Asia\/Colombo": "የህንድ መደበኛ ሰዓት (ኮሎምቦ)", "Asia\/Damascus": "የምስራቃዊ አውሮፓ ሰዓት (ደማስቆ)", "Asia\/Dhaka": "የባንግላዴሽ ሰዓት (ዳካ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ar.json b/src/Symfony/Component/Intl/Resources/data/timezones/ar.json index 8c297a1e9df5..ad575c4bf7e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ar.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "توقيت الأرجنتين (ريو جالييوس)", "America\/Argentina\/Salta": "توقيت الأرجنتين (سالطا)", "America\/Argentina\/San_Juan": "توقيت الأرجنتين (سان خوان)", - "America\/Argentina\/San_Luis": "توقيت غرب الأرجنتين (سان لويس)", + "America\/Argentina\/San_Luis": "توقيت الأرجنتين (سان لويس)", "America\/Argentina\/Tucuman": "توقيت الأرجنتين (تاكمان)", "America\/Argentina\/Ushuaia": "توقيت الأرجنتين (أشوا)", "America\/Aruba": "توقيت الأطلسي (أروبا)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "توقيت بروناي", "Asia\/Calcutta": "توقيت الهند (كالكتا)", "Asia\/Chita": "توقيت ياكوتسك (تشيتا)", - "Asia\/Choibalsan": "توقيت شويبالسان (تشوبالسان)", + "Asia\/Choibalsan": "توقيت أولان باتور (تشوبالسان)", "Asia\/Colombo": "توقيت الهند (كولومبو)", "Asia\/Damascus": "توقيت شرق أوروبا (دمشق)", "Asia\/Dhaka": "توقيت بنغلاديش (دكا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/as.json b/src/Symfony/Component/Intl/Resources/data/timezones/as.json index 43c56e09004a..0bfa71ca767a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/as.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/as.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "আৰ্জেণ্টিনাৰ সময় (ৰিঅ’ গালেগোছ)", "America\/Argentina\/Salta": "আৰ্জেণ্টিনাৰ সময় (ছাল্টা)", "America\/Argentina\/San_Juan": "আৰ্জেণ্টিনাৰ সময় (ছেন জুৱান)", - "America\/Argentina\/San_Luis": "পাশ্চাত্য আৰ্জেণ্টিনাৰ সময় (ছেন লুইচ)", + "America\/Argentina\/San_Luis": "আৰ্জেণ্টিনাৰ সময় (ছেন লুইচ)", "America\/Argentina\/Tucuman": "আৰ্জেণ্টিনাৰ সময় (টুকুমন)", "America\/Argentina\/Ushuaia": "আৰ্জেণ্টিনাৰ সময় (উচুআইয়া)", "America\/Aruba": "আটলাণ্টিক সময় (আৰুবা)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ব্ৰুনেই ডাৰুছালেমৰ সময়", "Asia\/Calcutta": "ভাৰতীয় মান সময় (কলকাতা)", "Asia\/Chita": "য়াকুত্স্কৰ সময় (চিটা)", - "Asia\/Choibalsan": "কোইবাল্ছনৰ সময়", + "Asia\/Choibalsan": "উলানবাটাৰৰ সময় (কোইবাল্ছন)", "Asia\/Colombo": "ভাৰতীয় মান সময় (কলম্বো)", "Asia\/Damascus": "প্ৰাচ্য ইউৰোপীয় সময় (ডামাস্কাছ)", "Asia\/Dhaka": "বাংলাদেশৰ সময় (ঢাকা)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/az.json b/src/Symfony/Component/Intl/Resources/data/timezones/az.json index d98c38ca1871..c6bca5bd8c41 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/az.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/az.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina Vaxtı (Rio Qalyeqos)", "America\/Argentina\/Salta": "Argentina Vaxtı (Salta)", "America\/Argentina\/San_Juan": "Argentina Vaxtı (San Xuan)", - "America\/Argentina\/San_Luis": "Qərbi Argentina Vaxtı (San Luis)", + "America\/Argentina\/San_Luis": "Argentina Vaxtı (San Luis)", "America\/Argentina\/Tucuman": "Argentina Vaxtı (Tukuman)", "America\/Argentina\/Ushuaia": "Argentina Vaxtı (Uşuaya)", "America\/Aruba": "Atlantik Vaxt (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam vaxtı (Bruney)", "Asia\/Calcutta": "Hindistan Vaxtı (Kəlkətə)", "Asia\/Chita": "Yakutsk Vaxtı (Çita)", - "Asia\/Choibalsan": "Çoybalsan Vaxtı", + "Asia\/Choibalsan": "Ulanbator Vaxtı (Çoybalsan)", "Asia\/Colombo": "Hindistan Vaxtı (Kolombo)", "Asia\/Damascus": "Şərqi Avropa Vaxtı (Dəməşq)", "Asia\/Dhaka": "Banqladeş Vaxtı (Dəkkə)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/be.json b/src/Symfony/Component/Intl/Resources/data/timezones/be.json index 344bb1e8d9e5..969aa63acebc 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/be.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/be.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргенцінскі час (Рыа-Гальегас)", "America\/Argentina\/Salta": "Аргенцінскі час (Сальта)", "America\/Argentina\/San_Juan": "Аргенцінскі час (Сан-Хуан)", - "America\/Argentina\/San_Luis": "Час Заходняй Аргенціны (Сан-Луіс)", + "America\/Argentina\/San_Luis": "Аргенцінскі час (Сан-Луіс)", "America\/Argentina\/Tucuman": "Аргенцінскі час (Тукуман)", "America\/Argentina\/Ushuaia": "Аргенцінскі час (Ушуая)", "America\/Aruba": "Атлантычны час (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Час Брунея (Бруней)", "Asia\/Calcutta": "Час Індыі (Калькута)", "Asia\/Chita": "Якуцкі час (Чыта)", - "Asia\/Choibalsan": "Час Чайбалсана", + "Asia\/Choibalsan": "Час Улан-Батара (Чайбалсан)", "Asia\/Colombo": "Час Індыі (Каломба)", "Asia\/Damascus": "Усходнееўрапейскі час (Дамаск)", "Asia\/Dhaka": "Час Бангладэш (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bg.json b/src/Symfony/Component/Intl/Resources/data/timezones/bg.json index 7fac965cf390..8dffd53a7ac3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bg.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аржентинско време (Рио Галегос)", "America\/Argentina\/Salta": "Аржентинско време (Салта)", "America\/Argentina\/San_Juan": "Аржентинско време (Сан Хуан)", - "America\/Argentina\/San_Luis": "Западноаржентинско време (Сан Луис)", + "America\/Argentina\/San_Luis": "Аржентинско време (Сан Луис)", "America\/Argentina\/Tucuman": "Аржентинско време (Тукуман)", "America\/Argentina\/Ushuaia": "Аржентинско време (Ушуая)", "America\/Aruba": "Северноамериканско атлантическо време (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней Даруссалам", "Asia\/Calcutta": "Индийско време (Колката)", "Asia\/Chita": "Якутско време (Чита)", - "Asia\/Choibalsan": "Чойбалсанско време", + "Asia\/Choibalsan": "Уланбаторско време (Чойбалсан)", "Asia\/Colombo": "Индийско време (Коломбо)", "Asia\/Damascus": "Източноевропейско време (Дамаск)", "Asia\/Dhaka": "Бангладешко време (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bn.json b/src/Symfony/Component/Intl/Resources/data/timezones/bn.json index e0fef4ebf937..608db8248bf6 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bn.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "আর্জেন্টিনা সময় (রিও গায়েগোস)", "America\/Argentina\/Salta": "আর্জেন্টিনা সময় (স্যালটা)", "America\/Argentina\/San_Juan": "আর্জেন্টিনা সময় (সান জুয়ান)", - "America\/Argentina\/San_Luis": "পশ্চিমি আর্জেন্টিনা সময় (সান লুইস)", + "America\/Argentina\/San_Luis": "আর্জেন্টিনা সময় (সান লুইস)", "America\/Argentina\/Tucuman": "আর্জেন্টিনা সময় (টুকুমান)", "America\/Argentina\/Ushuaia": "আর্জেন্টিনা সময় (উশুয়াইয়া)", "America\/Aruba": "অতলান্তিকের সময় (এরুবা)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ব্রুনেই দারুসসালাম সময়", "Asia\/Calcutta": "ভারতীয় মানক সময় (কোলকাতা)", "Asia\/Chita": "ইয়াকুটাস্ক সময় (চিতা)", - "Asia\/Choibalsan": "চয়বালসন সময় (চোইবাল্‌স্যান)", + "Asia\/Choibalsan": "উলান বাতোর সময় (চোইবাল্‌স্যান)", "Asia\/Colombo": "ভারতীয় মানক সময় (কলম্বো)", "Asia\/Damascus": "পূর্ব ইউরোপীয় সময় (দামাস্কাস)", "Asia\/Dhaka": "বাংলাদেশ সময় (ঢাকা)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/br.json b/src/Symfony/Component/Intl/Resources/data/timezones/br.json index ffbdf5afadd8..33fe6b300663 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/br.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/br.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "eur Arcʼhantina (Rio Gallegos)", "America\/Argentina\/Salta": "eur Arcʼhantina (Salta)", "America\/Argentina\/San_Juan": "eur Arcʼhantina (San Juan)", - "America\/Argentina\/San_Luis": "eur Arcʼhantina ar Cʼhornôg (San Luis)", + "America\/Argentina\/San_Luis": "eur Arcʼhantina (San Luis)", "America\/Argentina\/Tucuman": "eur Arcʼhantina (Tucuman)", "America\/Argentina\/Ushuaia": "eur Arcʼhantina (Ushuaia)", "America\/Aruba": "eur an Atlantel (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "eur Brunei Darussalam", "Asia\/Calcutta": "eur cʼhoañv India (Calcutta)", "Asia\/Chita": "eur Yakutsk (Tchita)", - "Asia\/Choibalsan": "eur Choibalsan", + "Asia\/Choibalsan": "eur Ulaanbaatar (Choibalsan)", "Asia\/Colombo": "eur cʼhoañv India (Kolamba)", "Asia\/Damascus": "eur Europa ar Reter (Damask)", "Asia\/Dhaka": "eur Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bs.json b/src/Symfony/Component/Intl/Resources/data/timezones/bs.json index 6b2508e04786..aa0a529ecf11 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bs.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinsko vrijeme (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinsko vrijeme (Salta)", "America\/Argentina\/San_Juan": "Argentinsko vrijeme (San Juan)", - "America\/Argentina\/San_Luis": "Zapadnoargentinsko vrijeme (San Luis)", + "America\/Argentina\/San_Luis": "Argentinsko vrijeme (San Luis)", "America\/Argentina\/Tucuman": "Argentinsko vrijeme (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinsko vrijeme (Ushuaia)", "America\/Aruba": "Sjevernoameričko atlantsko vrijeme (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunejsko vrijeme (Bruneji)", "Asia\/Calcutta": "Indijsko standardno vrijeme (Kolkata)", "Asia\/Chita": "Jakutsko vrijeme (Chita)", - "Asia\/Choibalsan": "Čojbalsansko vrijeme", + "Asia\/Choibalsan": "Ulanbatorsko vrijeme (Čojbalsan)", "Asia\/Colombo": "Indijsko standardno vrijeme (Kolombo)", "Asia\/Damascus": "Istočnoevropsko vrijeme (Damask)", "Asia\/Dhaka": "Bangladeško vrijeme (Daka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json index 4fdc53d9b1ce..4388dfe8615a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/bs_Cyrl.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина вријеме (Рио Гаљегос)", "America\/Argentina\/Salta": "Аргентина вријеме (Салта)", "America\/Argentina\/San_Juan": "Аргентина вријеме (Сан Хуан)", - "America\/Argentina\/San_Luis": "Западна Аргентина вријеме (Сан Луи)", + "America\/Argentina\/San_Luis": "Аргентина вријеме (Сан Луи)", "America\/Argentina\/Tucuman": "Аргентина вријеме (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина вријеме (Ушуаија)", "America\/Aruba": "Атланско вријеме (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Брунеј Дарусалам вријеме (Брунеји)", "Asia\/Calcutta": "Индијско стандардно вријеме (Калкута)", "Asia\/Chita": "Јакутск вријеме (Чита)", - "Asia\/Choibalsan": "Чојбалсан вријеме", + "Asia\/Choibalsan": "Улан Батор вријеме (Чојбалсан)", "Asia\/Colombo": "Индијско стандардно вријеме (Коломбо)", "Asia\/Damascus": "Источноевропско вријеме (Дамаск)", "Asia\/Dhaka": "Бангладеш вријеме (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ca.json b/src/Symfony/Component/Intl/Resources/data/timezones/ca.json index 83237161928b..3df305c564e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ca.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Hora de l’Argentina (Río Gallegos)", "America\/Argentina\/Salta": "Hora de l’Argentina (Salta)", "America\/Argentina\/San_Juan": "Hora de l’Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Hora de l’oest de l’Argentina (San Luis)", + "America\/Argentina\/San_Luis": "Hora de l’Argentina (San Luis)", "America\/Argentina\/Tucuman": "Hora de l’Argentina (Tucumán)", "America\/Argentina\/Ushuaia": "Hora de l’Argentina (Ushuaia)", "America\/Aruba": "Hora de l’Atlàntic (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Hora de Brunei Darussalam", "Asia\/Calcutta": "Hora de l’Índia (Calcuta)", "Asia\/Chita": "Hora de Iakutsk (Txità)", - "Asia\/Choibalsan": "Hora de Choibalsan", + "Asia\/Choibalsan": "Hora d’Ulan Bator (Choibalsan)", "Asia\/Colombo": "Hora de l’Índia (Colombo)", "Asia\/Damascus": "Hora de l’Est d’Europa (Damasc)", "Asia\/Dhaka": "Hora de Bangla Desh (Dacca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ce.json b/src/Symfony/Component/Intl/Resources/data/timezones/ce.json index 5ddc9f0c7f74..1d09ff36985e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ce.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина (Рио-Гальегос)", "America\/Argentina\/Salta": "Аргентина (Сальта)", "America\/Argentina\/San_Juan": "Аргентина (Сан-Хуан)", - "America\/Argentina\/San_Luis": "Малхбузен Аргентина (Сан-Луис)", + "America\/Argentina\/San_Luis": "Аргентина (Сан-Луис)", "America\/Argentina\/Tucuman": "Аргентина (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина (Ушуая)", "America\/Aruba": "Атлантикан хан (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней-Даруссалам", "Asia\/Calcutta": "ХӀинди (Калькутта)", "Asia\/Chita": "Якутск (Чита)", - "Asia\/Choibalsan": "Чойбалсан", + "Asia\/Choibalsan": "Улан-Батор (Чойбалсан)", "Asia\/Colombo": "ХӀинди (Коломбо)", "Asia\/Damascus": "Малхбален Европа (Димашкъ)", "Asia\/Dhaka": "Бангладеш (Дакка)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/cs.json b/src/Symfony/Component/Intl/Resources/data/timezones/cs.json index e0d90dfa2584..5efc5f522a2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/cs.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinský čas (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinský čas (Salta)", "America\/Argentina\/San_Juan": "Argentinský čas (San Juan)", - "America\/Argentina\/San_Luis": "Západoargentinský čas (San Luis)", + "America\/Argentina\/San_Luis": "Argentinský čas (San Luis)", "America\/Argentina\/Tucuman": "Argentinský čas (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinský čas (Ushuaia)", "America\/Aruba": "Atlantický čas (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunejský čas", "Asia\/Calcutta": "Indický čas (Kalkata)", "Asia\/Chita": "Jakutský čas (Čita)", - "Asia\/Choibalsan": "Čojbalsanský čas", + "Asia\/Choibalsan": "Ulánbátarský čas (Čojbalsan)", "Asia\/Colombo": "Indický čas (Kolombo)", "Asia\/Damascus": "Východoevropský čas (Damašek)", "Asia\/Dhaka": "Bangladéšský čas (Dháka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/cy.json b/src/Symfony/Component/Intl/Resources/data/timezones/cy.json index c33f4e803ea1..73f394996f7c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/cy.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Amser yr Ariannin (Rio Gallegos)", "America\/Argentina\/Salta": "Amser yr Ariannin (Salta)", "America\/Argentina\/San_Juan": "Amser yr Ariannin (San Juan)", - "America\/Argentina\/San_Luis": "Amser Gorllewin Ariannin (San Luis)", + "America\/Argentina\/San_Luis": "Amser yr Ariannin (San Luis)", "America\/Argentina\/Tucuman": "Amser yr Ariannin (Tucumán)", "America\/Argentina\/Ushuaia": "Amser yr Ariannin (Ushuaia)", "America\/Aruba": "Amser Cefnfor yr Iwerydd (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Amser Brunei Darussalam", "Asia\/Calcutta": "Amser India (Kolkata)", "Asia\/Chita": "Amser Yakutsk (Chita)", - "Asia\/Choibalsan": "Amser Choibalsan", + "Asia\/Choibalsan": "Amser Ulan Bator (Choibalsan)", "Asia\/Colombo": "Amser India (Colombo)", "Asia\/Damascus": "Amser Dwyrain Ewrop (Damascus)", "Asia\/Dhaka": "Amser Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/da.json b/src/Symfony/Component/Intl/Resources/data/timezones/da.json index f62a1af0bf7c..71fa2a1e80f0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/da.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/da.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentisk tid (Rio Gallegos)", "America\/Argentina\/Salta": "Argentisk tid (Salta)", "America\/Argentina\/San_Juan": "Argentisk tid (San Juan)", - "America\/Argentina\/San_Luis": "Vestargentinsk tid (San Luis)", + "America\/Argentina\/San_Luis": "Argentisk tid (San Luis)", "America\/Argentina\/Tucuman": "Argentisk tid (Tucuman)", "America\/Argentina\/Ushuaia": "Argentisk tid (Ushuaia)", "America\/Aruba": "Atlantic-tid (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam-tid", "Asia\/Calcutta": "Indisk normaltid (Kolkata)", "Asia\/Chita": "Jakutsk-tid (Chita)", - "Asia\/Choibalsan": "Tsjojbalsan-tid", + "Asia\/Choibalsan": "Ulan Bator-tid (Tsjojbalsan)", "Asia\/Colombo": "Indisk normaltid (Colombo)", "Asia\/Damascus": "Østeuropæisk tid (Damaskus)", "Asia\/Dhaka": "Bangladesh-tid (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/de.json b/src/Symfony/Component/Intl/Resources/data/timezones/de.json index 4a4a052bc787..50653ec59aeb 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/de.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/de.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinische Zeit (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinische Zeit (Salta)", "America\/Argentina\/San_Juan": "Argentinische Zeit (San Juan)", - "America\/Argentina\/San_Luis": "Westargentinische Zeit (San Luis)", + "America\/Argentina\/San_Luis": "Argentinische Zeit (San Luis)", "America\/Argentina\/Tucuman": "Argentinische Zeit (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinische Zeit (Ushuaia)", "America\/Aruba": "Atlantik-Zeit (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei-Darussalam-Zeit", "Asia\/Calcutta": "Indische Zeit (Kalkutta)", "Asia\/Chita": "Jakutsk-Zeit (Tschita)", - "Asia\/Choibalsan": "Tschoibalsan-Zeit", + "Asia\/Choibalsan": "Ulaanbaatar-Zeit (Tschoibalsan)", "Asia\/Colombo": "Indische Zeit (Colombo)", "Asia\/Damascus": "Osteuropäische Zeit (Damaskus)", "Asia\/Dhaka": "Bangladesch-Zeit (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/dz.json b/src/Symfony/Component/Intl/Resources/data/timezones/dz.json index d150f00161ab..13860e2d2f5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/dz.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (Rio Gallegos་)", "America\/Argentina\/Salta": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (Salta་)", "America\/Argentina\/San_Juan": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (San Juan་)", - "America\/Argentina\/San_Luis": "ནུབ་ཕྱོགས་ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (San Luis་)", + "America\/Argentina\/San_Luis": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (San Luis་)", "America\/Argentina\/Tucuman": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (Tucuman་)", "America\/Argentina\/Ushuaia": "ཨར་ཇེན་ཊི་ན་ཆུ་ཚོད། (Ushuaia་)", "America\/Aruba": "ཨེཊ་ལེན་ཊིཀ་ཆུ་ཚོད། (Aruba་)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ee.json b/src/Symfony/Component/Intl/Resources/data/timezones/ee.json index 5e51046087a1..aaf1451c9e92 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ee.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina gaƒoƒo me (Rio Gallegos)", "America\/Argentina\/Salta": "Argentina gaƒoƒo me (Salta)", "America\/Argentina\/San_Juan": "Argentina gaƒoƒo me (San Juan)", - "America\/Argentina\/San_Luis": "Ɣetoɖoƒe Argentina gaƒoƒo me (San Luis)", + "America\/Argentina\/San_Luis": "Argentina gaƒoƒo me (San Luis)", "America\/Argentina\/Tucuman": "Argentina gaƒoƒo me (Tucuman)", "America\/Argentina\/Ushuaia": "Argentina gaƒoƒo me (Ushuaia)", "America\/Aruba": "Atlantic gaƒoƒome (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam gaƒoƒo me", "Asia\/Calcutta": "India gaƒoƒo me (Kolkata)", "Asia\/Chita": "Yakutsk gaƒoƒo me (Chita)", - "Asia\/Choibalsan": "Choibalsan gaƒoƒo me", + "Asia\/Choibalsan": "Ulan Bator gaƒoƒo me (Choibalsan)", "Asia\/Colombo": "India gaƒoƒo me (Colombo)", "Asia\/Damascus": "Ɣedzeƒe Europe gaƒoƒome (Damascus)", "Asia\/Dhaka": "Bangladesh gaƒoƒo me (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/el.json b/src/Symfony/Component/Intl/Resources/data/timezones/el.json index 39c08c9cf3e2..17669339e5d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/el.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/el.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "[Ώρα Αργεντινής (Ρίο Γκαγιέγκος)]", "America\/Argentina\/Salta": "[Ώρα Αργεντινής (Σάλτα)]", "America\/Argentina\/San_Juan": "[Ώρα Αργεντινής (Σαν Χουάν)]", - "America\/Argentina\/San_Luis": "[Ώρα Δυτικής Αργεντινής (Σαν Λούις)]", + "America\/Argentina\/San_Luis": "[Ώρα Αργεντινής (Σαν Λούις)]", "America\/Argentina\/Tucuman": "[Ώρα Αργεντινής (Τουκουμάν)]", "America\/Argentina\/Ushuaia": "[Ώρα Αργεντινής (Ουσουάια)]", "America\/Aruba": "[Ώρα Ατλαντικού (Αρούμπα)]", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Ώρα Μπρουνέι Νταρουσαλάμ", "Asia\/Calcutta": "[Ώρα Ινδίας (Καλκούτα)]", "Asia\/Chita": "[Ώρα Γιακούτσκ (Τσιτά)]", - "Asia\/Choibalsan": "Ώρα Τσοϊμπαλσάν", + "Asia\/Choibalsan": "[Ώρα Ουλάν Μπατόρ (Τσοϊμπαλσάν)]", "Asia\/Colombo": "[Ώρα Ινδίας (Κολόμπο)]", "Asia\/Damascus": "[Ώρα Ανατολικής Ευρώπης (Δαμασκός)]", "Asia\/Dhaka": "[Ώρα Μπανγκλαντές (Ντάκα)]", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/en.json b/src/Symfony/Component/Intl/Resources/data/timezones/en.json index 5685e42f78df..af9e98462f82 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/en.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/en.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina Time (Rio Gallegos)", "America\/Argentina\/Salta": "Argentina Time (Salta)", "America\/Argentina\/San_Juan": "Argentina Time (San Juan)", - "America\/Argentina\/San_Luis": "Western Argentina Time (San Luis)", + "America\/Argentina\/San_Luis": "Argentina Time (San Luis)", "America\/Argentina\/Tucuman": "Argentina Time (Tucuman)", "America\/Argentina\/Ushuaia": "Argentina Time (Ushuaia)", "America\/Aruba": "Atlantic Time (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam Time", "Asia\/Calcutta": "India Standard Time (Kolkata)", "Asia\/Chita": "Yakutsk Time (Chita)", - "Asia\/Choibalsan": "Choibalsan Time", + "Asia\/Choibalsan": "Ulaanbaatar Time (Choibalsan)", "Asia\/Colombo": "India Standard Time (Colombo)", "Asia\/Damascus": "Eastern European Time (Damascus)", "Asia\/Dhaka": "Bangladesh Time (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/es.json b/src/Symfony/Component/Intl/Resources/data/timezones/es.json index 9d4f8024e0cf..d93cb566ff30 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/es.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/es.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "hora de Argentina (Río Gallegos)", "America\/Argentina\/Salta": "hora de Argentina (Salta)", "America\/Argentina\/San_Juan": "hora de Argentina (San Juan)", - "America\/Argentina\/San_Luis": "hora de Argentina occidental (San Luis)", + "America\/Argentina\/San_Luis": "hora de Argentina (San Luis)", "America\/Argentina\/Tucuman": "hora de Argentina (Tucumán)", "America\/Argentina\/Ushuaia": "hora de Argentina (Ushuaia)", "America\/Aruba": "hora del Atlántico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "hora de Brunéi", "Asia\/Calcutta": "hora estándar de la India (Calcuta)", "Asia\/Chita": "hora de Yakutsk (Chitá)", - "Asia\/Choibalsan": "hora de Choibalsan", + "Asia\/Choibalsan": "hora de Ulán Bator (Choibalsan)", "Asia\/Colombo": "hora estándar de la India (Colombo)", "Asia\/Damascus": "hora de Europa oriental (Damasco)", "Asia\/Dhaka": "hora de Bangladés (Daca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/et.json b/src/Symfony/Component/Intl/Resources/data/timezones/et.json index ec2fe0e9009b..fad0104f9adc 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/et.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/et.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina aeg (Río Gallegos)", "America\/Argentina\/Salta": "Argentina aeg (Salta)", "America\/Argentina\/San_Juan": "Argentina aeg (San Juan)", - "America\/Argentina\/San_Luis": "Lääne-Argentina aeg (San Luis)", + "America\/Argentina\/San_Luis": "Argentina aeg (San Luis)", "America\/Argentina\/Tucuman": "Argentina aeg (Tucumán)", "America\/Argentina\/Ushuaia": "Argentina aeg (Ushuaia)", "America\/Aruba": "Atlandi aeg (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei aeg", "Asia\/Calcutta": "India aeg (Kolkata)", "Asia\/Chita": "Jakutski aeg (Tšita)", - "Asia\/Choibalsan": "Tšojbalsani aeg", + "Asia\/Choibalsan": "Ulaanbaatari aeg (Tšojbalsan)", "Asia\/Colombo": "India aeg (Colombo)", "Asia\/Damascus": "Ida-Euroopa aeg (Damaskus)", "Asia\/Dhaka": "Bangladeshi aeg (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/eu.json b/src/Symfony/Component/Intl/Resources/data/timezones/eu.json index aa45b410a1e6..b2a7b5317195 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/eu.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinako ordua (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinako ordua (Salta)", "America\/Argentina\/San_Juan": "Argentinako ordua (San Juan)", - "America\/Argentina\/San_Luis": "Argentina mendebaldeko ordua (San Luis)", + "America\/Argentina\/San_Luis": "Argentinako ordua (San Luis)", "America\/Argentina\/Tucuman": "Argentinako ordua (Tucumán)", "America\/Argentina\/Ushuaia": "Argentinako ordua (Ushuaia)", "America\/Aruba": "Ipar Amerikako Atlantikoko ordua (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalamgo ordua", "Asia\/Calcutta": "Indiako ordua (Kalkuta)", "Asia\/Chita": "Jakutskeko ordua (Chita)", - "Asia\/Choibalsan": "Txoibalsango ordua", + "Asia\/Choibalsan": "Ulan Batorreko ordua (Txoibalsan)", "Asia\/Colombo": "Indiako ordua (Kolombo)", "Asia\/Damascus": "Europako ekialdeko ordua (Damasko)", "Asia\/Dhaka": "Bangladesheko ordua (Dhaka)", @@ -270,7 +270,7 @@ "Asia\/Pontianak": "Indonesiako mendebaldeko ordua (Pontianak)", "Asia\/Pyongyang": "Koreako ordua (Piongiang)", "Asia\/Qatar": "Arabiako ordua (Qatar)", - "Asia\/Qostanay": "Kazakhstango ekialdeko ordua (Qostanay)", + "Asia\/Qostanay": "Kazakhstango ekialdeko ordua (Kostanay)", "Asia\/Qyzylorda": "Kazakhstango mendebaldeko ordua (Kyzylorda)", "Asia\/Rangoon": "Myanmarreko ordua (Yangon)", "Asia\/Riyadh": "Arabiako ordua (Riad)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fa.json b/src/Symfony/Component/Intl/Resources/data/timezones/fa.json index 7a07292ea013..b4294f55249e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fa.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "وقت آرژانتین (ریوگالگوس)", "America\/Argentina\/Salta": "وقت آرژانتین (سالتا)", "America\/Argentina\/San_Juan": "وقت آرژانتین (سن‌خوان)", - "America\/Argentina\/San_Luis": "وقت غرب آرژانتین (سن‌لوئیس)", + "America\/Argentina\/San_Luis": "وقت آرژانتین (سن‌لوئیس)", "America\/Argentina\/Tucuman": "وقت آرژانتین (توکومن)", "America\/Argentina\/Ushuaia": "وقت آرژانتین (اوشوایا)", "America\/Aruba": "وقت آتلانتیک (اروبا)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "وقت برونئی دارالسلام", "Asia\/Calcutta": "وقت هند (کلکته)", "Asia\/Chita": "وقت یاکوتسک (چیتا)", - "Asia\/Choibalsan": "وقت چویبالسان", + "Asia\/Choibalsan": "وقت اولان‌باتور (چویبالسان)", "Asia\/Colombo": "وقت هند (کلمبو)", "Asia\/Damascus": "وقت شرق اروپا (دمشق)", "Asia\/Dhaka": "وقت بنگلادش (داکا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ff_Adlm.json b/src/Symfony/Component/Intl/Resources/data/timezones/ff_Adlm.json new file mode 100644 index 000000000000..69332769bffd --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ff_Adlm.json @@ -0,0 +1,441 @@ +{ + "Names": { + "Africa\/Abidjan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤀𞤦𞤭𞤶𞤢𞤲)", + "Africa\/Accra": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤀𞤳𞤢𞤪𞤢)", + "Africa\/Addis_Ababa": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤀𞤣𞤭𞤧𞤢𞤦𞤢𞤦𞤢)", + "Africa\/Algiers": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤀𞤤𞤶𞤢𞤪𞤭𞥅)", + "Africa\/Asmera": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤀𞤧𞤥𞤢𞤪𞤢)", + "Africa\/Bamako": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤄𞤢𞤥𞤢𞤳𞤮𞥅)", + "Africa\/Bangui": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤄𞤢𞤲𞤺𞤭)", + "Africa\/Banjul": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤄𞤢𞤲𞤶𞤵𞤤)", + "Africa\/Bissau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤄𞤭𞤱𞤢𞤱𞤮)", + "Africa\/Blantyre": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤄𞤭𞤤𞤢𞤲𞤼𞤭𞤪𞤫)", + "Africa\/Brazzaville": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤄𞤢𞤪𞥁𞤢𞤾𞤭𞤤)", + "Africa\/Bujumbura": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤄𞤵𞤶𞤵𞤥𞤦𞤵𞤪𞤢)", + "Africa\/Cairo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤢𞤴𞤪𞤢)", + "Africa\/Casablanca": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤢𞥄𞤧𞤢𞤦𞤵𞤤𞤢𞤲𞤳𞤢𞥄)", + "Africa\/Ceuta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤭𞥅𞤼𞤢)", + "Africa\/Conakry": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤑𞤮𞤲𞤢𞥄𞤳𞤭𞤪𞤭)", + "Africa\/Dakar": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤁𞤢𞤳𞤢𞥄𞤪)", + "Africa\/Dar_es_Salaam": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤁𞤢𞥄𞤪𞤫-𞤅𞤢𞤤𞤢𞥄𞤥𞤵)", + "Africa\/Djibouti": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤔𞤭𞤦𞤵𞥅𞤼𞤭)", + "Africa\/Douala": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤁𞤵𞤱𞤢𞤤𞤢)", + "Africa\/El_Aaiun": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤂𞤢𞤴𞤵𞥅𞤲𞤢)", + "Africa\/Freetown": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤊𞤭𞤪𞤼𞤮𞤲)", + "Africa\/Gaborone": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤘𞤢𞤦𞤮𞤪𞤮𞥅𞤲)", + "Africa\/Harare": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤖𞤢𞤪𞤢𞤪𞤫)", + "Africa\/Johannesburg": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤂𞤫𞤧𞤮-𞤀𞤬𞤪𞤭𞤳𞤭 (𞤔𞤮𞤸𞤢𞤲𞤢𞤧𞤦𞤵𞥅𞤪)", + "Africa\/Juba": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤔𞤵𞤦𞤢)", + "Africa\/Kampala": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤑𞤢𞤥𞤨𞤢𞤤𞤢)", + "Africa\/Khartoum": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤝𞤢𞤪𞤼𞤵𞥅𞤥)", + "Africa\/Kigali": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤑𞤭𞤺𞤢𞤤𞤭)", + "Africa\/Kinshasa": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤑𞤭𞤲𞤧𞤢𞤧𞤢)", + "Africa\/Lagos": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤂𞤢𞤺𞤮𞥅𞤧)", + "Africa\/Libreville": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤂𞤭𞥅𞤦𞤫𞤪𞤾𞤭𞥅𞤤)", + "Africa\/Lome": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤂𞤮𞤥𞤫)", + "Africa\/Luanda": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤂𞤵𞤱𞤢𞤲𞤣𞤢𞥄)", + "Africa\/Lubumbashi": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤂𞤵𞤦𞤵𞤥𞤦𞤢𞥃𞤭)", + "Africa\/Lusaka": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤂𞤵𞤧𞤢𞤳𞤢)", + "Africa\/Malabo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤃𞤢𞤤𞤢𞤦𞤮𞥅)", + "Africa\/Maputo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤃𞤢𞤨𞤵𞤼𞤮)", + "Africa\/Maseru": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤂𞤫𞤧𞤮-𞤀𞤬𞤪𞤭𞤳𞤭 (𞤃𞤢𞤧𞤫𞤪𞤵)", + "Africa\/Mbabane": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤂𞤫𞤧𞤮-𞤀𞤬𞤪𞤭𞤳𞤭 (𞤐𞥋𞤄𞤢𞤦𞤢𞥄𞤲𞤫)", + "Africa\/Mogadishu": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤃𞤵𞤹𞥆𞤢𞤧𞤮𞥅)", + "Africa\/Monrovia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤃𞤮𞤪𞤮𞤦𞤭𞤴𞤢)", + "Africa\/Nairobi": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤐𞤢𞤴𞤪𞤮𞤦𞤭)", + "Africa\/Ndjamena": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤐𞥋𞤔𞤢𞤥𞤫𞤲𞤢)", + "Africa\/Niamey": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤐𞤭𞤴𞤢𞤥𞤫)", + "Africa\/Nouakchott": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤐𞤵𞤱𞤢𞥄𞤳𞥃𞤵𞥅𞤼)", + "Africa\/Ouagadougou": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤏𞤢𞤺𞤢𞤣𞤴𞤺𞤵)", + "Africa\/Porto-Novo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤆𞤮𞤪𞤼𞤮-𞤐𞤮𞤾𞤮𞥅)", + "Africa\/Sao_Tome": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤅𞤢𞤱𞤮-𞤚𞤮𞤥𞤫𞥅)", + "Africa\/Tripoli": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤚𞤪𞤭𞤨𞤮𞤤𞤭)", + "Africa\/Tunis": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤚𞤵𞥅𞤲𞤵𞤧)", + "Africa\/Windhoek": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 (𞤏𞤭𞤲𞤣𞤵𞥅𞤳)", + "America\/Adak": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤢𞥄𞤴𞤭𞥅-𞤀𞤤𞤮𞤧𞤭𞤴𞤢𞤲 (𞤀𞤣𞤢𞤳)", + "America\/Anchorage": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤀𞤲𞤳𞤮𞤪𞤢𞥄𞤶)", + "America\/Anguilla": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤀𞤲𞤺𞤭𞤤𞤢𞥄)", + "America\/Antigua": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤀𞤲𞤼𞤭𞤺𞤢)", + "America\/Araguaina": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤀𞤪𞤢𞤺𞤵𞤱𞤢𞤲𞤢)", + "America\/Argentina\/La_Rioja": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤂𞤢-𞤈𞤭𞤴𞤮𞤸𞤢)", + "America\/Argentina\/Rio_Gallegos": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤈𞤭𞤮-𞤘𞤢𞤤𞤫𞤺𞤮𞤧)", + "America\/Argentina\/Salta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤅𞤢𞤤𞤼𞤢)", + "America\/Argentina\/San_Juan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤅𞤢𞤲-𞤝𞤵𞤱𞤢𞥄𞤲)", + "America\/Argentina\/San_Luis": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤅𞤢𞤲-𞤂𞤵𞤱𞤭𞥅𞤧)", + "America\/Argentina\/Tucuman": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤚𞤵𞤳𞤵𞤥𞤢𞥄𞤲)", + "America\/Argentina\/Ushuaia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤓𞤧𞤱𞤢𞤭𞥅𞤶)", + "America\/Aruba": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤀𞤪𞤵𞤦𞤢)", + "America\/Asuncion": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤪𞤢𞤺𞤮𞤴 (𞤀𞤧𞤵𞤲𞤧𞤭𞤴𞤮𞤲)", + "America\/Bahia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤄𞤢𞤸𞤭𞤴𞤢)", + "America\/Bahia_Banderas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤢𞤸𞤭𞤴𞤢𞥄 𞤣𞤫 𞤄𞤢𞤲𞤣𞤫𞤪𞤢𞥄𞤧)", + "America\/Barbados": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤢𞤪𞤦𞤫𞤣𞤮𞥅𞤧)", + "America\/Belem": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤄𞤫𞤤𞤫𞤥)", + "America\/Belize": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤫𞤤𞤭𞥅𞤶)", + "America\/Blanc-Sablon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤢𞤤𞤢𞤲𞤳-𞤅𞤢𞤦𞤢𞤤𞤮𞤲)", + "America\/Boa_Vista": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤥𞤢𞥁𞤮𞥅𞤲 (𞤄𞤮𞤱𞤢-𞤜𞤭𞤧𞤼𞤢)", + "America\/Bogota": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤮𞤤𞤮𞤥𞤦𞤭𞤴𞤢𞥄 (𞤄𞤮𞤺𞤮𞤼𞤢)", + "America\/Boise": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤄𞤮𞤴𞤶𞤭𞥅)", + "America\/Buenos_Aires": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤄𞤭𞤴𞤲𞤮𞤧-𞤉𞥅𞤶𞤫𞤪𞤫𞥅𞤧)", + "America\/Cambridge_Bay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤑𞤢𞤥𞤦𞤭𞤪𞤭𞥅𞤶-𞤄𞤫𞥅)", + "America\/Campo_Grande": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤥𞤢𞥁𞤮𞥅𞤲 (𞤑𞤢𞤥𞤨𞤮-𞤘𞤪𞤢𞤲𞤣𞤫)", + "America\/Cancun": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤑𞤢𞤲𞤳𞤵𞥅𞤲)", + "America\/Caracas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤫𞤲𞤭𞥅𞥁𞤮𞥅𞤤𞤢 (𞤑𞤢𞤪𞤢𞤳𞤢𞤧)", + "America\/Catamarca": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤑𞤢𞤼𞤢𞤥𞤢𞤪𞤳𞤢𞥄)", + "America\/Cayenne": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤘𞤢𞤴𞤢𞤲𞤢𞥄-𞤊𞤪𞤢𞤲𞤧𞤭 (𞤑𞤢𞤴𞤫𞥅𞤲)", + "America\/Cayman": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤑𞤫𞤴𞤥𞤢𞥄𞤲)", + "America\/Chicago": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤕𞤭𞤳𞤢𞥄𞤺𞤮𞥅)", + "America\/Chihuahua": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤃𞤫𞤳𞤧𞤭𞤲𞤳𞤮 (𞤕𞤭𞤱𞤢𞥄𞤱𞤢)", + "America\/Coral_Harbour": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤀𞤼𞤭𞤳𞤮𞤳𞤢𞤲)", + "America\/Cordoba": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤑𞤮𞤪𞤣𞤮𞤦𞤢𞥄)", + "America\/Costa_Rica": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤑𞤮𞤧𞤼𞤢-𞤈𞤭𞤳𞥆𞤢𞥄)", + "America\/Creston": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤑𞤪𞤫𞤧𞤼𞤮𞤲)", + "America\/Cuiaba": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤥𞤢𞥁𞤮𞥅𞤲 (𞤑𞤵𞤶𞤢𞤦𞤢𞥄)", + "America\/Curacao": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤑𞤵𞤪𞤢𞤧𞤢𞥄𞤱)", + "America\/Danmarkshavn": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤁𞤢𞥄𞤲𞤥𞤢𞤪𞤳𞥃𞤢𞥄𞤾𞤲)", + "America\/Dawson": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤁𞤮𞥅𞤧𞤮𞤲)", + "America\/Dawson_Creek": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤁𞤮𞥅𞤧𞤮𞤲-𞤑𞤪𞤫𞤳)", + "America\/Denver": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤁𞤫𞤲𞤾𞤮𞥅)", + "America\/Detroit": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤁𞤭𞤼𞤪𞤮𞤴𞤼)", + "America\/Dominica": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤁𞤮𞤥𞤭𞤲𞤭𞤳𞤢𞥄)", + "America\/Edmonton": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤉𞤣𞤥𞤮𞤲𞤼𞤮𞤲)", + "America\/Eirunepe": "Beresiil 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤉𞤪𞤵𞤲𞤫𞤨𞤫)", + "America\/El_Salvador": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤉𞤤-𞤅𞤢𞤤𞤾𞤢𞤣𞤮𞥅𞤪)", + "America\/Fort_Nelson": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤊𞤮𞤪𞤼-𞤐𞤫𞤤𞤧𞤮𞤲;)", + "America\/Fortaleza": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤊𞤮𞤪𞤼𞤢𞤤𞤫𞥅𞥁𞤢)", + "America\/Glace_Bay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤤𞤫𞤧-𞤄𞤫𞥅)", + "America\/Godthab": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤘𞤪𞤭𞤲𞤤𞤢𞤲𞤣 (𞤐𞤵𞥅𞤳)", + "America\/Goose_Bay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤮𞥅𞤧-𞤄𞤫𞥅)", + "America\/Grand_Turk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤪𞤢𞤲𞤣-𞤚𞤵𞤪𞤳)", + "America\/Grenada": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤪𞤫𞤲𞤢𞥄𞤣𞤢)", + "America\/Guadeloupe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤵𞤱𞤢𞤣𞤫𞤤𞤵𞤨𞥆𞤫𞥅)", + "America\/Guatemala": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤘𞤵𞤱𞤢𞤼𞤫𞤥𞤢𞤤𞤢)", + "America\/Guayaquil": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤋𞤳𞤵𞤱𞤢𞤣𞤮𞥅𞤪 (𞤘𞤵𞤴𞤢𞤳𞤭𞤤)", + "America\/Guyana": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤘𞤢𞤴𞤢𞤲𞤢𞥄 (𞤘𞤵𞤴𞤢𞤲𞤢𞥄)", + "America\/Halifax": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤖𞤢𞤤𞤭𞤬𞤢𞤳𞤧𞤭)", + "America\/Havana": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤵𞤦𞤢𞥄 (𞤖𞤢𞤾𞤢𞤲𞤢𞥄)", + "America\/Hermosillo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤃𞤫𞤳𞤧𞤭𞤲𞤳𞤮 (𞤖𞤢𞤪𞤥𞤮𞤧𞤭𞤤𞤭𞤴𞤮𞥅)", + "America\/Indiana\/Knox": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤐𞤮𞤳𞤧𞤵, 𞤋𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Marengo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤢𞤪𞤫𞤲𞤺𞤮, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Petersburg": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤫𞤼𞤮𞤧𞤄𞤵𞥅𞤪𞤺, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Tell_City": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤫𞤤-𞤅𞤭𞤼𞤭𞥅, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Vevay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤜𞤫𞥅𞤾𞤫𞤴, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Vincennes": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤜𞤭𞤲𞤧𞤫𞥅𞤲, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indiana\/Winamac": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤏𞤭𞤲𞤢𞤥𞤢𞤳, 𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄)", + "America\/Indianapolis": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤋𞤲𞤣𞤭𞤴𞤢𞤲𞤢𞥄𞤨𞤮𞤤𞤭𞤧)", + "America\/Inuvik": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤋𞤲𞤵𞤾𞤭𞤳)", + "America\/Iqaluit": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤋𞤳𞤢𞤤𞤵𞤱𞤭𞤼)", + "America\/Jamaica": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤔𞤢𞤥𞤢𞥄𞤴𞤳𞤢)", + "America\/Jujuy": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤔𞤵𞤶𞤵𞤴)", + "America\/Juneau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤔𞤵𞥅𞤲𞤮𞥅)", + "America\/Kentucky\/Monticello": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤮𞤲𞤼𞤭𞤷𞤫𞤤𞤮𞥅, 𞤑𞤫𞤲𞤼𞤮𞥅𞤳𞤭𞥅)", + "America\/Kralendijk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤑𞤪𞤢𞤤𞤫𞤲𞤶𞤭𞥅𞤳)", + "America\/La_Paz": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤮𞤤𞤭𞤾𞤭𞤴𞤢𞥄 (𞤂𞤢-𞤆𞤢𞥄𞥁)", + "America\/Lima": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤪𞤵𞥅 (𞤂𞤭𞥅𞤥𞤢)", + "America\/Los_Angeles": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤂𞤮𞤧-𞤀𞤺𞤫𞤤𞤫𞥅𞤧)", + "America\/Louisville": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤂𞤵𞤭𞤾𞤭𞤤)", + "America\/Lower_Princes": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤂𞤮𞤱𞤮 𞤆𞤪𞤫𞤲𞤧𞤫𞥅𞤧 𞤑𞤮𞤣𞤮𞥅)", + "America\/Maceio": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤃𞤢𞤧𞤫𞤴𞤮)", + "America\/Managua": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤢𞤲𞤢𞤱𞤢𞥄)", + "America\/Manaus": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤥𞤢𞥁𞤮𞥅𞤲 (𞤃𞤢𞤲𞤵𞥅𞤧)", + "America\/Marigot": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤢𞤪𞤭𞤺𞤮𞥅)", + "America\/Martinique": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤢𞤪𞤼𞤭𞤲𞤭𞤳)", + "America\/Matamoros": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤢𞤼𞤢𞤥𞤮𞤪𞤮𞥅𞤧)", + "America\/Mazatlan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤃𞤫𞤳𞤧𞤭𞤲𞤳𞤮 (𞤃𞤢𞥁𞤢𞤼𞤤𞤢𞤲)", + "America\/Mendoza": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤶𞤢𞤲𞤼𞤭𞤲𞤢𞥄 (𞤃𞤫𞤲𞤣𞤮𞥅𞥁𞤢)", + "America\/Menominee": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤫𞤲𞤮𞤥𞤭𞤲𞤭)", + "America\/Merida": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤫𞤪𞤭𞤣𞤢)", + "America\/Metlakatla": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤃𞤫𞤼𞤤𞤢𞤳𞤢𞤼𞤤𞤢)", + "America\/Mexico_City": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤫𞤳𞤧𞤭𞤳𞤮𞥅 𞤅𞤭𞤼𞤭𞥅)", + "America\/Miquelon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤫𞤲-𞤆𞤭𞤴𞤫𞥅𞤪 & 𞤃𞤭𞤳𞤫𞤤𞤮𞤲 (𞤃𞤫𞤳𞤫𞤤𞤮𞤲)", + "America\/Moncton": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤮𞤲𞤳𞤼𞤮𞥅𞤲)", + "America\/Monterrey": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤮𞤲𞤼𞤫𞤪𞤫𞥅𞤴)", + "America\/Montevideo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤒𞤵𞥅𞤪𞤺𞤮𞤴 (𞤃𞤮𞤲𞤼𞤫𞤾𞤭𞤣𞤭𞤴𞤮𞥅)", + "America\/Montreal": "𞤑𞤢𞤲𞤢𞤣𞤢𞥄 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (Montreal)", + "America\/Montserrat": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤃𞤮𞤲𞤼𞤧𞤭𞤪𞤢𞤴𞤼)", + "America\/Nassau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤐𞤢𞤧𞤮𞥅)", + "America\/New_York": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤐𞤫𞤱-𞤒𞤮𞤪𞤳)", + "America\/Nipigon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤐𞤭𞤨𞤭𞤺𞤮𞤲)", + "America\/Nome": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤐𞤮𞤱𞤥𞤵)", + "America\/Noronha": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤫𞤪𞤲𞤢𞤲𞤣𞤮𞥅 𞤣𞤫 𞤐𞤮𞤪𞤮𞤲𞤽𞤢𞥄 (𞤃𞤢𞤪𞤮𞤲𞤿𞤢)", + "America\/North_Dakota\/Beulah": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤵𞤤𞤢𞥄, 𞤐𞤮𞤪𞤬-𞤁𞤢𞤳𞤮𞤼𞤢)", + "America\/North_Dakota\/Center": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼𞤮𞥅, 𞤐𞤮𞤪𞤬-𞤁𞤢𞤳𞤮𞤼𞤢𞥄)", + "America\/North_Dakota\/New_Salem": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤐𞤫𞤱-𞤅𞤫𞤤𞤫𞤥, 𞤐𞤮𞤪𞤬-𞤁𞤢𞤳𞤮𞤼𞤢𞥄)", + "America\/Ojinaga": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤌𞤶𞤭𞤲𞤢𞤺𞤢)", + "America\/Panama": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤢𞤲𞤢𞤲𞤥𞤢𞥄)", + "America\/Pangnirtung": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤢𞤲𞤺)", + "America\/Paramaribo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤭𞤪𞤭𞤲𞤢𞤥 (𞤆𞤢𞤪𞤢𞤥𞤢𞤪𞤭𞤦𞤮)", + "America\/Phoenix": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤊𞤭𞤲𞤭𞤳𞤧)", + "America\/Port-au-Prince": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤮𞤪𞤼-𞤮-𞤆𞤪𞤫𞤲𞤧)", + "America\/Port_of_Spain": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤮𞤪𞤼 𞤮𞤬 𞤅𞤭𞤨𞤫𞥅𞤲)", + "America\/Porto_Velho": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤥𞤢𞥁𞤮𞥅𞤲 (𞤆𞤮𞤪𞤼𞤮-𞤜𞤫𞤤𞤸𞤮𞥅)", + "America\/Puerto_Rico": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤆𞤮𞤪𞤼-𞤈𞤭𞤳𞤮𞥅)", + "America\/Punta_Arenas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤭𞤤𞤫𞥅 (𞤆𞤵𞤲𞤼𞤢-𞤀𞤪𞤫𞤲𞤢𞥁)", + "America\/Rainy_River": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤈𞤫𞤲𞤭𞥅-𞤈𞤭𞤾𞤮𞥅)", + "America\/Rankin_Inlet": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤈𞤢𞤲𞤳𞤭𞤲 𞤋𞤲𞤤𞤫𞤼)", + "America\/Recife": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤈𞤫𞤧𞤭𞤬𞤭)", + "America\/Regina": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤈𞤭𞤺𞤭𞤲𞤢𞥄)", + "America\/Resolute": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤈𞤭𞤧𞤮𞤤𞤵𞥅𞤼)", + "America\/Rio_Branco": "Beresiil 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤈𞤭𞤴𞤮-𞤄𞤪𞤢𞤲𞤳𞤮)", + "America\/Santa_Isabel": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤁𞤮𞤱𞤪𞤭-𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤃𞤫𞤳𞤧𞤭𞤳𞤮𞥅 (Santa Isabel)", + "America\/Santarem": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤅𞤢𞤲𞤼𞤢𞤪𞤫𞥅𞤥)", + "America\/Santiago": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤭𞤤𞤫𞥅 (𞤅𞤢𞤲𞤼𞤭𞤴𞤢𞤺𞤮𞥅)", + "America\/Santo_Domingo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤢𞤲𞤼𞤢-𞤁𞤮𞤥𞤭𞤲𞤺𞤮𞥅)", + "America\/Sao_Paulo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤪𞤢𞤧𞤭𞤤𞤭𞤴𞤢𞥄 (𞤅𞤢𞥄𞤱-𞤆𞤮𞤤𞤮𞥅)", + "America\/Scoresbysund": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤘𞤪𞤭𞤲𞤤𞤢𞤲𞤣 (‮𞤋𞤼𞥆𞤮𞤳𞤮𞤪𞤼𞤮𞥅𞤪𞤥𞤭𞥅𞤼)", + "America\/Sitka": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤅𞤭𞤼𞤳𞤢)", + "America\/St_Barthelemy": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼-𞤄𞤢𞤼𞤫𞤤𞤫𞤥𞤭𞥅)", + "America\/St_Johns": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤫𞤱𞤬𞤵𞤲𞤤𞤢𞤲𞤣 (𞤅𞤫𞤲𞤼-𞤔𞤮𞥅𞤲𞤧)", + "America\/St_Kitts": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼-𞤑𞤭𞤼𞥆𞤭𞤧)", + "America\/St_Lucia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼-𞤂𞤵𞤧𞤭𞤢)", + "America\/St_Thomas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼-𞤚𞤮𞤥𞤢𞥄𞤧)", + "America\/St_Vincent": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤫𞤲𞤼-𞤜𞤫𞤲𞤧𞤫𞤲𞤼)", + "America\/Swift_Current": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤅𞤭𞤬𞤼-𞤑𞤭𞤪𞥆𞤢𞤲𞤼)", + "America\/Tegucigalpa": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤵𞤺𞤵𞤧𞤭𞤺𞤵𞤤𞤨𞤢)", + "America\/Thule": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤵𞤤𞤫)", + "America\/Thunder_Bay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤵𞤲𞤣𞤮𞥅 𞤄𞤫𞥅)", + "America\/Tijuana": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤭𞤶𞤵𞤱𞤢𞥄𞤲𞤢)", + "America\/Toronto": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤮𞤪𞤮𞤲𞤼𞤮𞥅)", + "America\/Tortola": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤚𞤮𞤪𞤼𞤮𞤤𞤢𞥄)", + "America\/Vancouver": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤜𞤫𞤲𞤳𞤵𞥅𞤾𞤮)", + "America\/Whitehorse": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤏𞤢𞤴𞤼𞤸𞤮𞤪𞤧𞤫)", + "America\/Winnipeg": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤏𞤭𞤲𞤭𞤨𞤫𞥅𞤺)", + "America\/Yakutat": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤤𞤢𞤧𞤳𞤢𞥄 (𞤒𞤢𞤳𞤵𞤼𞤢𞤼)", + "America\/Yellowknife": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲 (𞤒𞤫𞤤𞤮𞥅𞤲𞤢𞤴𞤬)", + "Antarctica\/Casey": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤑𞤢𞤴𞤧𞤫)", + "Antarctica\/Davis": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤁𞤫𞥅𞤾𞤭𞤧 (𞤁𞤢𞤾𞤭𞥅𞤧)", + "Antarctica\/DumontDUrville": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤁𞤭𞤥𞤮𞤲𞤼𞤵-𞤁𞤵𞤪𞤾𞤭𞤤", + "Antarctica\/Macquarie": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤪𞤫 𞤃𞤢𞤳𞤢𞥄𞤪𞤭", + "Antarctica\/Mawson": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤱𞤧𞤮𞤲", + "Antarctica\/McMurdo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤫𞤱-𞤟𞤫𞤤𞤢𞤲𞤣𞤭 (𞤃𞤢𞤳𞤥𞤵𞥅𞤪𞤣𞤮)", + "Antarctica\/Palmer": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤭𞤤𞤫𞥅 (𞤆𞤢𞤤𞤥𞤫𞥅𞤪)", + "Antarctica\/Rothera": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤈𞤮𞤼𞤫𞤪𞤢", + "Antarctica\/Syowa": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤢𞥄𞤴𞤵𞤱𞤢", + "Antarctica\/Troll": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤚𞤢𞤪𞤮𞥅𞤤)", + "Antarctica\/Vostok": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤮𞤧𞤼𞤮𞤳", + "Arctic\/Longyearbyen": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤂𞤮𞤲𞤶𞤭𞤪𞤦𞤭𞤴𞤫𞥅𞤲)", + "Asia\/Aden": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤀𞤣𞤫𞤲)", + "Asia\/Almaty": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤀𞤤𞤥𞤢𞥄𞤼𞤭)", + "Asia\/Amman": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤀𞤥𞤢𞥄𞤲𞤵)", + "Asia\/Anadyr": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤀𞤲𞤢𞤣𞤭𞥅𞤪)", + "Asia\/Aqtau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤀𞤳𞤼𞤢𞥄𞤱𞤵)", + "Asia\/Aqtobe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤀𞤳𞤼𞤮𞥅𞤦𞤫)", + "Asia\/Ashgabat": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤪𞤳𞤭𞤥𞤫𞤧𞤼𞤢𞥄𞤲 (𞤀𞤧𞤺𞤢𞤦𞤢𞤼𞤵)", + "Asia\/Atyrau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤀𞤼𞤭𞤪𞤢𞤱𞤵)", + "Asia\/Baghdad": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤄𞤢𞤿𞤣𞤢𞥄𞤣𞤵)", + "Asia\/Bahrain": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤄𞤢𞤸𞤪𞤢𞤴𞤲𞤵)", + "Asia\/Baku": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤶𞤫𞤪𞤦𞤢𞤴𞤶𞤢𞤲 (𞤄𞤢𞥄𞤳𞤵)", + "Asia\/Bangkok": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤲𞤣𞤵𞤷𞤢𞤴𞤲𞤢𞥄 (𞤄𞤢𞤲𞤳𞤮𞥅𞤳𞤵)", + "Asia\/Barnaul": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤄𞤢𞤪𞤲𞤢𞥄𞤤𞤵)", + "Asia\/Beirut": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤫𞤴𞤪𞤵𞥅𞤼𞤵)", + "Asia\/Bishkek": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤭𞤪𞤺𞤭𞤧𞤼𞤢𞥄𞤲 (𞤄𞤭𞤧𞤳𞤫𞥅𞤳𞤵)", + "Asia\/Brunei": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤵𞤪𞤲𞤢𞤴", + "Asia\/Calcutta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤖𞤭𞤲𞤣𞤵𞤼𞤢𞥄𞤲 (𞤑𞤮𞤤𞤳𞤢𞤼𞤢)", + "Asia\/Chita": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤒𞤢𞤳𞤢𞤼𞤭𞤧𞤳𞤵 (𞤕𞤭𞥅𞤼𞤢)", + "Asia\/Choibalsan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤓𞤤𞤢𞤲𞤦𞤢𞤼𞤢𞤪 (𞤕𞤮𞤴𞤦𞤢𞤤𞤧𞤢𞤲)", + "Asia\/Colombo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤖𞤭𞤲𞤣𞤵𞤼𞤢𞥄𞤲 (𞤑𞤮𞤤𞤮𞤥𞤦𞤢)", + "Asia\/Damascus": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤁𞤢𞤥𞤢𞤧𞤹𞤢)", + "Asia\/Dhaka": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤢𞤲𞤺𞤭𞤤𞤢𞤣𞤫𞥅𞤧 (𞤁𞤢𞤳𞤢𞥄)", + "Asia\/Dili": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤚𞤭𞥅𞤥𞤮𞤪 (𞤁𞤫𞤤𞤭)", + "Asia\/Dubai": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤂𞤮𞥅𞤻𞤮𞤤𞤣𞤵 𞤀𞤪𞤢𞤦𞤭𞤴𞤢 (𞤁𞤵𞤦𞤢𞤴)", + "Asia\/Dushanbe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤢𞤶𞤭𞤳𞤭𞤧𞤼𞤢𞥄𞤲 (𞤁𞤵𞤧𞤢𞤲𞤦𞤫)", + "Asia\/Famagusta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤊𞤢𞤥𞤢𞤺𞤵𞤧𞤼𞤢)", + "Asia\/Gaza": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤘𞤢𞥄𞥁𞤢)", + "Asia\/Hebron": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤝𞤭𞤤𞤢𞥄𞤤𞤵)", + "Asia\/Hong_Kong": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤮𞤲𞤳𞤮𞤲", + "Asia\/Hovd": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤮𞤬𞤣𞤵", + "Asia\/Irkutsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤋𞤪𞤳𞤵𞤼𞤭𞤧𞤳𞤵", + "Asia\/Jakarta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤋𞤲𞤣𞤮𞤲𞤭𞥅𞤧𞤭𞤴𞤢 (𞤔𞤢𞤳𞤢𞤪𞤼𞤢𞥄)", + "Asia\/Jayapura": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤋𞤲𞤣𞤮𞤲𞤭𞥅𞤧𞤭𞤴𞤢 (𞤔𞤢𞤴𞤢𞤨𞤵𞤪𞤢)", + "Asia\/Jerusalem": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤋𞤧𞤪𞤢𞥄𞤭𞥅𞤤𞤵 (𞤗𞤵𞤣𞤵𞤧𞤵)", + "Asia\/Kabul": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤬𞤺𞤢𞤲𞤭𞤧𞤼𞤢𞥄𞤲 (𞤑𞤢𞤦𞤵𞤤)", + "Asia\/Kamchatka": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤑𞤢𞤥𞤷𞤢𞤼𞤭𞤳𞤢)", + "Asia\/Karachi": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞤳𞤭𞤧𞤼𞤢𞥄𞤲 (𞤑𞤢𞤪𞤢𞤷𞤭𞥅)", + "Asia\/Katmandu": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤫𞤨𞤢𞤤 (𞤑𞤢𞤼𞤭𞤥𞤢𞤲𞤣𞤵)", + "Asia\/Khandyga": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤒𞤢𞤳𞤢𞤼𞤭𞤧𞤳𞤵 (𞤝𞤢𞤲𞤣𞤭𞤺𞤢)", + "Asia\/Krasnoyarsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞤪𞤢𞤧𞤲𞤮𞤴𞤢𞤪𞤧𞤭𞤳 (𞤑𞤢𞤪𞤢𞤧𞤲𞤮𞤴𞤢𞤪𞤧𞤵𞤳𞤵)", + "Asia\/Kuala_Lumpur": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤤𞤫𞥅𞤧𞤭𞤴𞤢 (𞤑𞤵𞤱𞤢𞤤𞤢-𞤂𞤮𞤥𞤨𞤵𞥅𞤪)", + "Asia\/Kuching": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤤𞤫𞥅𞤧𞤭𞤴𞤢 (𞤑𞤵𞤷𞤭𞤲)", + "Asia\/Kuwait": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤑𞤵𞤱𞤢𞤴𞤼𞤭)", + "Asia\/Macau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤢𞤴𞤲𞤢 (𞤃𞤢𞤳𞤢𞤱𞤮)", + "Asia\/Magadan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤺𞤢𞤣𞤢𞤲", + "Asia\/Makassar": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤮𞤥𞤦𞤮𞥅𞤪𞤭 𞤋𞤲𞤣𞤮𞤲𞤭𞥅𞤧𞤭𞤴𞤢 (𞤃𞤢𞤳𞤢𞤧𞤢𞥄𞤪)", + "Asia\/Manila": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤭𞤤𞤭𞤨𞥆𞤭𞥅𞤲 (𞤃𞤢𞤲𞤭𞤤𞤢)", + "Asia\/Muscat": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤂𞤮𞥅𞤻𞤮𞤤𞤣𞤵 𞤀𞤪𞤢𞤦𞤭𞤴𞤢 (𞤃𞤵𞤧𞤳𞤢𞤼𞤵)", + "Asia\/Nicosia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤐𞤭𞤳𞤮𞤧𞤭𞤴𞤢)", + "Asia\/Novokuznetsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞤪𞤢𞤧𞤲𞤮𞤴𞤢𞤪𞤧𞤭𞤳 (𞤐𞤮𞤾𞤮𞤳𞤵𞥁𞤲𞤫𞤼𞤭𞤧𞤳𞤵)", + "Asia\/Novosibirsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤮𞤾𞤮𞤧𞤦𞤭𞤪𞤧𞤭𞤳 (𞤐𞤮𞤾𞤮𞤧𞤭𞤦𞤭𞤪𞤧𞤵𞤳)", + "Asia\/Omsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤌𞤥𞤧𞤵𞤳𞤵", + "Asia\/Oral": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤓𞤪𞤢𞤤)", + "Asia\/Phnom_Penh": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤲𞤣𞤵𞤷𞤢𞤴𞤲𞤢𞥄 (𞤆𞤢𞤲𞤮𞤥-𞤆𞤫𞤲)", + "Asia\/Pontianak": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤋𞤲𞤣𞤮𞤲𞤭𞥅𞤧𞤭𞤴𞤢 (𞤆𞤮𞤲𞤼𞤭𞤴𞤢𞤲𞤢𞤳)", + "Asia\/Pyongyang": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞥄 (𞤆𞤭𞤴𞤮𞤲𞤴𞤢𞤲)", + "Asia\/Qatar": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤗𞤢𞤼𞤢𞤪)", + "Asia\/Qostanay": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤑𞤮𞤧𞤼𞤢𞤲𞤢𞤴)", + "Asia\/Qyzylorda": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤑𞤢𞥁𞤢𞤿𞤢𞤧𞤼𞤢𞥄𞤲 (𞤑𞤭𞥁𞤭𞤤𞤮𞤪𞤣𞤢)", + "Asia\/Rangoon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤭𞤴𞤢𞤥𞤢𞥄𞤪 (𞤈𞤢𞤲𞤺𞤵𞥅𞤲)", + "Asia\/Riyadh": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥄𞤪𞤢𞤦𞤭𞤴𞤢 (𞤈𞤭𞤴𞤢𞥄𞤣)", + "Asia\/Saigon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤲𞤣𞤵𞤷𞤢𞤴𞤲𞤢𞥄 (𞤅𞤢𞤸𞤪𞤫 𞤖𞤮𞥅-𞤕𞤭 𞤃𞤭𞥅𞤲)", + "Asia\/Sakhalin": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤢𞤿𞤢𞤤𞤭𞥅𞤲", + "Asia\/Samarkand": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤓𞥅𞤶𞤵𞤦𞤫𞤳𞤭𞤧𞤼𞤢𞥄𞤲 (𞤅𞤢𞤥𞤢𞤪𞤳𞤢𞤲𞤣𞤵)", + "Asia\/Seoul": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤮𞥅𞤪𞤫𞤴𞤢𞥄 (𞤅𞤫𞤱𞤵𞤤)", + "Asia\/Shanghai": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤢𞤴𞤲𞤢 (𞤅𞤢𞤲𞤸𞤢𞤴)", + "Asia\/Singapore": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤅𞤭𞤲𞤺𞤢𞤨𞤵𞥅𞤪", + "Asia\/Srednekolymsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤺𞤢𞤣𞤢𞤲 (𞤅𞤭𞤪𞤫𞤣𞤳𞤮𞤤𞤭𞤥𞤧𞤵)", + "Asia\/Taipei": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤢𞤴𞤨𞤫𞥅", + "Asia\/Tashkent": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤓𞥅𞤶𞤵𞤦𞤫𞤳𞤭𞤧𞤼𞤢𞥄𞤲 (𞤚𞤢𞤧𞤳𞤫𞤲𞤼𞤵)", + "Asia\/Tbilisi": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤔𞤮𞤪𞤶𞤭𞤴𞤢 (𞤚𞤭𞤦𞤭𞤤𞤭𞤧𞤭𞥅)", + "Asia\/Tehran": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤋𞤪𞤢𞥄𞤲 (𞤚𞤫𞤸𞤭𞤪𞤢𞥄𞤲)", + "Asia\/Thimphu": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤄𞤵𞤼𞤢𞥄𞤲 (𞤚𞤭𞤥𞤨𞤵)", + "Asia\/Tokyo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤔𞤢𞤨𞤢𞤲 (𞤚𞤮𞤳𞤭𞤴𞤮)", + "Asia\/Tomsk": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤚𞤮𞤥𞤧𞤵𞤳𞤵)", + "Asia\/Ulaanbaatar": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤓𞤤𞤢𞤲𞤦𞤢𞤼𞤢𞤪", + "Asia\/Urumqi": "Siin 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤓𞤪𞤵𞤥𞤳𞤵)", + "Asia\/Ust-Nera": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤭𞤤𞤢𞤾𞤮𞤧𞤼𞤮𞤳 (𞤓𞤧𞤼𞤢-𞤐𞤫𞤪𞤢)", + "Asia\/Vientiane": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞤲𞤣𞤵𞤷𞤢𞤴𞤲𞤢𞥄 (𞤜𞤭𞤴𞤫𞤲𞤷𞤢𞥄𞤲)", + "Asia\/Vladivostok": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤭𞤤𞤢𞤾𞤮𞤧𞤼𞤮𞤳 (𞤜𞤭𞤤𞤢𞤣𞤭𞤾𞤮𞤧𞤼𞤮𞥅𞤳𞤵)", + "Asia\/Yakutsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤒𞤢𞤳𞤢𞤼𞤭𞤧𞤳𞤵 (𞤒𞤢𞤳𞤵𞤼𞤵𞤧𞤳𞤵)", + "Asia\/Yekaterinburg": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤒𞤫𞤳𞤢𞤼𞤫𞤪𞤭𞤲𞤦𞤵𞤪𞤺𞤵 (𞤒𞤢𞤳𞤢𞤼𞤫𞤪𞤭𞤲𞤦𞤵𞤪𞤺𞤵)", + "Asia\/Yerevan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤪𞤥𞤫𞤲𞤭𞤴𞤢𞥄 (𞤒𞤫𞤪𞤫𞤾𞤢𞥄𞤲)", + "Atlantic\/Azores": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞥁𞤮𞤪𞤫𞤧 (𞤀𞥁𞤮𞤪𞤫𞥅𞤧)", + "Atlantic\/Bermuda": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳 (𞤄𞤢𞥄𞤪𞤥𞤵𞥅𞤣𞤢)", + "Atlantic\/Canary": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤢𞤲𞤢𞤪𞤭)", + "Atlantic\/Cape_Verde": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞥄𞤦𞤮-𞤜𞤫𞤪𞤣𞤫", + "Atlantic\/Faeroe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤊𞤢𞤪𞤮𞥅)", + "Atlantic\/Madeira": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤃𞤢𞤴𞤣𞤫𞤪𞤢)", + "Atlantic\/Reykjavik": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤈𞤫𞤴𞤳𞤢𞤾𞤭𞤳𞤭)", + "Atlantic\/South_Georgia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤢𞤱𞤬-𞤔𞤮𞤪𞤶𞤭𞤴𞤢𞥄", + "Atlantic\/St_Helena": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤅𞤫𞤲𞤼-𞤖𞤫𞤤𞤫𞤲𞤢𞥄)", + "Atlantic\/Stanley": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤮𞤤𞤳𞤤𞤢𞤲𞤣-𞤀𞤴𞤤𞤢𞤲𞤣 (𞤅𞤭𞤼𞤢𞤲𞤤𞤫𞥅)", + "Australia\/Adelaide": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤀𞤣𞤢𞤤𞤢𞤴𞤣𞤭)", + "Australia\/Brisbane": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤄𞤭𞤪𞤧𞤭𞤦𞤢𞥄𞤲𞤵)", + "Australia\/Broken_Hill": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤄𞤪𞤮𞤳𞤭𞤲-𞤖𞤭𞥅𞤤)", + "Australia\/Currie": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤑𞤵𞥅𞤪𞤭𞥅)", + "Australia\/Darwin": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤁𞤢𞥄𞤪𞤱𞤭𞤲)", + "Australia\/Eucla": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮 𞤖𞤭𞥅𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤓𞥅𞤳𞤵𞤤𞤢)", + "Australia\/Hobart": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤖𞤵𞥅𞤦𞤢𞤪𞤼𞤵)", + "Australia\/Lindeman": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤂𞤭𞤲𞤣𞤭𞥅𞤥𞤢𞥄𞤲)", + "Australia\/Lord_Howe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤂𞤮𞤪𞤣𞤵-𞤖𞤮𞤱𞤫", + "Australia\/Melbourne": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤃𞤫𞤤𞤦𞤵𞥅𞤪𞤲𞤵)", + "Australia\/Perth": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤆𞤫𞤪𞤧𞤭)", + "Australia\/Sydney": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤌𞤧𞤼𞤪𞤢𞤤𞤭𞤴𞤢𞥄 (𞤅𞤭𞤣𞤭𞤲𞤫𞥅)", + "CST6CDT": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤳𞤢 𞤚𞤵𞤥𞤦𞤮 𞤈𞤫𞤱𞤮-𞤀𞤥𞤫𞤪𞤭𞤳", + "EST5EDT": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳", + "Etc\/GMT": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧", + "Etc\/UTC": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤏𞤭𞤲𞤣𞤫𞤪𞤫𞤴𞤢𞤲𞤳𞤮𞥅𞤪𞤫 𞤊𞤮𞤼𞥆𞤢𞤲𞤢𞥄𞤲𞤣𞤫", + "Europe\/Amsterdam": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤀𞤥𞤧𞤭𞤼𞤫𞤪𞤣𞤢𞥄𞤥)", + "Europe\/Andorra": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤀𞤲𞤣𞤮𞥅𞤪𞤢)", + "Europe\/Astrakhan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮 (𞤀𞤧𞤼𞤢𞤪𞤿𞤢𞥄𞤲)", + "Europe\/Athens": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤀𞤼𞤫𞤲𞤧𞤭)", + "Europe\/Belgrade": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤫𞤤𞤺𞤢𞤪𞤢𞥄𞤣)", + "Europe\/Berlin": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤫𞤪𞤤𞤫𞤲)", + "Europe\/Bratislava": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤢𞤪𞤢𞤼𞤭𞤧𞤤𞤢𞤾𞤢)", + "Europe\/Brussels": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤭𞤪𞤭𞤳𞤧𞤫𞤤)", + "Europe\/Bucharest": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤵𞤳𞤢𞤪𞤫𞤧𞤼𞤭)", + "Europe\/Budapest": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤵𞤣𞤢𞤨𞤫𞤧𞤼)", + "Europe\/Busingen": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤄𞤵𞤧𞤭𞤲𞤶𞤫𞤲)", + "Europe\/Chisinau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤕𞤭𞤧𞤭𞥅𞤲𞤮𞤱𞤢)", + "Europe\/Copenhagen": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤮𞤨𞤫𞤲𞥆𞤢𞥄𞤺)", + "Europe\/Dublin": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤁𞤵𞤦𞤵𞤤𞤫𞤲)", + "Europe\/Gibraltar": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤔𞤭𞤦𞤢𞤪𞤢𞤤𞤼𞤢𞤪)", + "Europe\/Guernsey": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤔𞤭𞤪𞤲𞤭𞤧𞤫𞤴)", + "Europe\/Helsinki": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤖𞤫𞤤𞤧𞤭𞤲𞤳𞤭)", + "Europe\/Isle_of_Man": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤅𞤵𞤪𞤭𞥅𞤪𞤫-𞤃𞤢𞥄𞤲)", + "Europe\/Istanbul": "Turkii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤋𞤧𞤼𞤢𞤥𞤦𞤵𞤤)", + "Europe\/Jersey": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤔𞤫𞤪𞤧𞤭𞥅)", + "Europe\/Kaliningrad": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤢𞤤𞤭𞤲𞤺𞤢𞤪𞤣)", + "Europe\/Kiev": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤑𞤭𞤴𞤫𞥅𞤾)", + "Europe\/Kirov": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤑𞤭𞤪𞤮𞥅𞤾𞤵)", + "Europe\/Lisbon": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤭𞥅𞤪𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤂𞤭𞤧𞤦𞤮𞥅𞤲)", + "Europe\/Ljubljana": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤋𞤶𞤵𞤦𞤵𞤤𞤶𞤢𞤲𞤢)", + "Europe\/London": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤳𞤭𞤲𞤭𞥅𞤲𞥋𞤣𞤫 𞤘𞤪𞤭𞤲𞤱𞤭𞥅𞤧 (𞤂𞤮𞤲𞤣𞤮𞤲)", + "Europe\/Luxembourg": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤂𞤭𞤳𞤧𞤢𞤲𞤦𞤵𞤪𞤺𞤵)", + "Europe\/Madrid": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤃𞤢𞤣𞤭𞤪𞤭𞤣)", + "Europe\/Malta": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤃𞤢𞤤𞤼𞤢)", + "Europe\/Mariehamn": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤃𞤢𞤪𞤭𞤴𞤢𞤸𞤢𞥄𞤥𞤢𞥄𞤲)", + "Europe\/Minsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮 (𞤃𞤭𞤲𞤧𞤭𞤳𞤭)", + "Europe\/Monaco": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤃𞤮𞤲𞤢𞤳𞤮𞤸)", + "Europe\/Moscow": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮", + "Europe\/Oslo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤌𞤧𞤤𞤮𞤸)", + "Europe\/Paris": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤆𞤢𞤪𞤭)", + "Europe\/Podgorica": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤆𞤮𞤣𞤭𞤺𞤮𞤪𞤭𞤳𞤢)", + "Europe\/Prague": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤆𞤢𞤪𞤢𞥄𞤺𞤭)", + "Europe\/Riga": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤈𞤭𞤺𞤢)", + "Europe\/Rome": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤈𞤮𞥅𞤥𞤵)", + "Europe\/Samara": "Riisii 𞤑𞤭𞤶𞤮𞥅𞤪𞤫 (𞤅𞤢𞤥𞤢𞤪𞤢)", + "Europe\/San_Marino": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤢𞤲-𞤃𞤢𞤪𞤭𞤲𞤮)", + "Europe\/Sarajevo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤢𞤪𞤢𞤴𞤫𞤾𞤮𞥅)", + "Europe\/Saratov": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮 (𞤅𞤢𞤪𞤢𞤼𞤮𞥅𞤾)", + "Europe\/Simferopol": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮 (𞤅𞤭𞤥𞤬𞤫𞤪𞤨𞤮𞥅𞤤)", + "Europe\/Skopje": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤭𞤳𞤮𞥅𞤨𞤭𞤴𞤢)", + "Europe\/Sofia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤮𞤬𞤭𞤴𞤢)", + "Europe\/Stockholm": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤅𞤭𞤼𞤮𞤳𞤮𞤤𞤥𞤵)", + "Europe\/Tallinn": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤚𞤢𞤤𞤭𞥅𞤲𞤵)", + "Europe\/Tirane": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤚𞤭𞤪𞤢𞤲𞤢)", + "Europe\/Ulyanovsk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤧𞤳𞤮 (𞤓𞤤𞤴𞤢𞤲𞤮𞤾𞤮𞤧𞤳𞤵)", + "Europe\/Uzhgorod": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤓𞥅𞤶𞤢𞤪𞤵𞥅𞤣𞤵)", + "Europe\/Vaduz": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤜𞤢𞤣𞤵𞥅𞤶𞤵)", + "Europe\/Vatican": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤜𞤢𞤼𞤭𞤳𞤢𞤲)", + "Europe\/Vienna": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤜𞤭𞤴𞤫𞤲𞤢𞥄)", + "Europe\/Vilnius": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤜𞤫𞤤𞤲𞤵𞥅𞤧)", + "Europe\/Volgograd": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤮𞤤𞤺𞤮𞤺𞤢𞤪𞤢𞥄𞤣 (𞤜𞤮𞤤𞤺𞤮𞤺𞤢𞤪𞤢𞤣)", + "Europe\/Warsaw": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤏𞤢𞤪𞤧𞤮)", + "Europe\/Zagreb": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤟𞤢𞤺𞤪𞤫𞤦𞤵)", + "Europe\/Zaporozhye": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤺𞤫 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤟𞤢𞤨𞤮𞤪𞤵𞥅𞥁)", + "Europe\/Zurich": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤥𞤦𞤮𞥅𞤪𞤭 𞤀𞤪𞤮𞥅𞤦𞤢 (𞤟𞤵𞤪𞤵𞤳)", + "Indian\/Antananarivo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤀𞤲𞤼𞤢𞤲𞤢𞤲𞤢𞤪𞤭𞥅𞤾𞤮𞥅)", + "Indian\/Chagos": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞥄𞤴𞤮 𞤋𞤲𞤣𞤭𞤴𞤢𞤱𞤮 (𞤅𞤢𞤺𞤮𞤧)", + "Indian\/Christmas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤪𞤫 𞤑𞤭𞤪𞤧𞤭𞤥𞤢𞥄𞤧", + "Indian\/Cocos": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤮𞥅𞤳𞤮𞤧", + "Indian\/Comoro": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤑𞤮𞤥𞤮𞥅𞤪𞤮)", + "Indian\/Kerguelen": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤂𞤫𞤴𞤪𞤭 𞤊𞤪𞤢𞤲𞤧𞤭 & 𞤀𞤪𞤼𞤢𞤲𞤼𞤭𞤳𞤢 (𞤑𞤫𞤪𞤺𞤫𞤤𞤫𞤲)", + "Indian\/Mahe": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤫𞤴𞤭𞤧𞤫𞤤 (𞤃𞤢𞤸𞤫𞥅)", + "Indian\/Maldives": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤤𞤣𞤢𞥄𞤴𞤭𞤧", + "Indian\/Mauritius": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤮𞤪𞤭𞥅𞤧𞤭", + "Indian\/Mayotte": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤵𞤯𞤲𞤢𞥄𞤲𞥋𞤣𞤫 𞤀𞤬𞤪𞤭𞤳𞤭 (𞤃𞤢𞤴𞤮𞥅𞤼𞤵)", + "Indian\/Reunion": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤈𞤫𞤲𞤭𞤴𞤮𞤲 (𞤈𞤫𞥅𞤲𞤭𞤴𞤮𞤲)", + "MST7MDT": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤫𞤤𞤫 𞤯𞤫𞤲", + "PST8PDT": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞥄𞤧𞤫𞤬𞤭𞤳 𞤁𞤮𞤱𞤪𞤭-𞤀𞤥𞤫𞤪𞤭𞤳", + "Pacific\/Apia": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤀𞤨𞤭𞤴𞤢", + "Pacific\/Auckland": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤫𞤱-𞤟𞤫𞤤𞤢𞤲𞤣𞤭 (𞤌𞤳𞤤𞤢𞤲𞤣𞤭)", + "Pacific\/Bougainville": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞤨𞤵𞤱𞤢 𞤘𞤭𞤲𞤫 𞤖𞤫𞤴𞤯𞤮 (𞤄𞤵𞤺𞤫𞤲𞤾𞤭𞥅𞤤)", + "Pacific\/Chatham": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤢𞤼𞤢𞤥 (𞤕𞤢𞥃𞤢𞥄𞤥)", + "Pacific\/Easter": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤋𞤧𞤼𞤮𞥅-𞤀𞤴𞤤𞤢𞤲𞤣", + "Pacific\/Efate": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤜𞤢𞤲𞤵𞥅𞤼𞤵 (𞤉𞤬𞤢𞤼𞤵)", + "Pacific\/Enderbury": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤊𞤫𞤲𞤭𞤳𞤧𞤭 (𞤉𞤲𞤣𞤫𞤪𞤦𞤵𞥅𞤪𞤭)", + "Pacific\/Fakaofo": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤮𞤳𞤫𞤤𞤮𞤱𞤢 (𞤊𞤢𞤳𞤢𞤱𞤬𞤮)", + "Pacific\/Fiji": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤊𞤭𞤶𞤭", + "Pacific\/Funafuti": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤵𞤾𞤢𞤤𞤵 (𞤊𞤵𞤲𞤢𞤬𞤵𞤼𞤭)", + "Pacific\/Galapagos": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤘𞤢𞤤𞤢𞤨𞤢𞤺𞤮𞥅𞤧 (𞤘𞤢𞤤𞤢𞤨𞤢𞤺𞤮𞤧)", + "Pacific\/Gambier": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤘𞤢𞤥𞤦𞤭𞤴𞤫𞤪", + "Pacific\/Guadalcanal": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤅𞤵𞤤𞤫𞤴𞤥𞤢𞥄𞤲𞤢 (𞤘𞤵𞤱𞤢𞤣𞤢𞤤𞤳𞤢𞤲𞤢𞤤)", + "Pacific\/Guam": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤕𞤢𞤥𞤮𞤪𞤮 (𞤘𞤵𞤱𞤢𞤥)", + "Pacific\/Honolulu": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤢𞥄𞤴𞤭𞥅-𞤀𞤤𞤮𞤧𞤭𞤴𞤢𞤲 (Honolulu)", + "Pacific\/Johnston": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤢𞥄𞤴𞤭𞥅-𞤀𞤤𞤮𞤧𞤭𞤴𞤢𞤲 (𞤔𞤮𞤲𞤧𞤵𞤼𞤮𞤲)", + "Pacific\/Kiritimati": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤂𞤢𞤴𞤲𞤵 (𞤑𞤭𞤪𞤭𞤼𞤭𞤥𞤢𞤼𞤭)", + "Pacific\/Kosrae": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤮𞤧𞤪𞤢𞤴", + "Pacific\/Kwajalein": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤃𞤢𞤪𞤧𞤢𞤤 (𞤑𞤢𞤱𞤢𞤶𞤢𞤤𞤭𞥅𞤲)", + "Pacific\/Majuro": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤃𞤢𞤪𞤧𞤢𞤤 (𞤃𞤢𞤶𞤵𞥅𞤪𞤮)", + "Pacific\/Marquesas": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤃𞤢𞤪𞤳𞤫𞤧𞤢𞤧", + "Pacific\/Midway": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤢𞤥𞤮𞤱𞤢 (𞤃𞤭𞤣𞤱𞤫𞥅)", + "Pacific\/Nauru": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤵𞥅𞤪𞤵", + "Pacific\/Niue": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤐𞤭𞥅𞤴𞤵", + "Pacific\/Norfolk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤪𞤫 𞤐𞤮𞤪𞤬𞤮𞤤𞤳𞤵", + "Pacific\/Noumea": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤑𞤢𞤤𞤭𞤣𞤮𞤲𞤭𞤴𞤢𞥄 𞤖𞤫𞤴𞤯𞤮 (𞤐𞤵𞤥𞤫𞤴𞤢)", + "Pacific\/Pago_Pago": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤢𞤥𞤮𞤱𞤢 (𞤆𞤢𞤺𞤮-𞤆𞤢𞤺𞤮)", + "Pacific\/Palau": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤮𞤤𞤢𞥄𞤱𞤮", + "Pacific\/Pitcairn": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤭𞤼𞤭𞤳𞤫𞤪𞤲𞤵", + "Pacific\/Ponape": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤮𞤲𞤢𞤨𞤫", + "Pacific\/Port_Moresby": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤆𞤢𞤨𞤵𞤱𞤢 𞤘𞤭𞤲𞤫 𞤖𞤫𞤴𞤯𞤮 (𞤆𞤮𞤪𞤼𞤵-𞤃𞤮𞤪𞤫𞤧𞤦𞤭)", + "Pacific\/Rarotonga": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤮𞤪𞤭𞥅𞤶𞤫 𞤑𞤵𞥅𞤳 (𞤈𞤢𞤪𞤮𞤼𞤮𞤲𞤺𞤢)", + "Pacific\/Saipan": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤖𞤢𞤱𞤪𞤭𞤼𞤵𞤲𞥋𞤣𞤫 𞤕𞤢𞤥𞤮𞤪𞤮 (𞤅𞤢𞤴𞤨𞤢𞤲)", + "Pacific\/Tahiti": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤢𞤸𞤭𞤼𞤭", + "Pacific\/Tarawa": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤶𞤫 𞤘𞤭𞤤𞤦𞤫𞤪𞤼𞤵 (𞤚𞤢𞤪𞤢𞤱𞤢)", + "Pacific\/Tongatapu": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤚𞤮𞤲𞤺𞤢 (𞤚𞤮𞤲𞤺𞤢𞤼𞤢𞤨𞤵)", + "Pacific\/Truk": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤕𞤵𞥅𞤳𞤵", + "Pacific\/Wake": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤅𞤵𞤪𞤭𞥅𞤪𞤫 𞤏𞤫𞥅𞤳𞤵", + "Pacific\/Wallis": "𞤑𞤭𞤶𞤮𞥅𞤪𞤫 𞤏𞤢𞤤𞤭𞥅𞤧 & 𞤊𞤵𞤼𞤵𞤲𞤢" + }, + "Meta": { + "GmtFormat": "𞤑𞤖𞤏%s" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fi.json b/src/Symfony/Component/Intl/Resources/data/timezones/fi.json index 8b36c6f9b960..8b6a205756e4 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fi.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentiinan aika (Rio Gallegos)", "America\/Argentina\/Salta": "Argentiinan aika (Salta)", "America\/Argentina\/San_Juan": "Argentiinan aika (San Juan)", - "America\/Argentina\/San_Luis": "Länsi-Argentiinan aika (San Luis)", + "America\/Argentina\/San_Luis": "Argentiinan aika (San Luis)", "America\/Argentina\/Tucuman": "Argentiinan aika (Tucumán)", "America\/Argentina\/Ushuaia": "Argentiinan aika (Ushuaia)", "America\/Aruba": "Kanadan Atlantin aika (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunein aika", "Asia\/Calcutta": "Intian aika (Kalkutta)", "Asia\/Chita": "Jakutskin aika (Tšita)", - "Asia\/Choibalsan": "Tšoibalsan aika", + "Asia\/Choibalsan": "Ulan Batorin aika (Tšoibalsa)", "Asia\/Colombo": "Intian aika (Colombo)", "Asia\/Damascus": "Itä-Euroopan aika (Damaskos)", "Asia\/Dhaka": "Bangladeshin aika (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fo.json b/src/Symfony/Component/Intl/Resources/data/timezones/fo.json index e522ccf1dc78..7b1507e97e7f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fo.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina tíð (Rio Gallegos)", "America\/Argentina\/Salta": "Argentina tíð (Salta)", "America\/Argentina\/San_Juan": "Argentina tíð (San Juan)", - "America\/Argentina\/San_Luis": "Vestur Argentina tíð (San Luis)", + "America\/Argentina\/San_Luis": "Argentina tíð (San Luis)", "America\/Argentina\/Tucuman": "Argentina tíð (Tucuman)", "America\/Argentina\/Ushuaia": "Argentina tíð (Ushuaia)", "America\/Aruba": "Atlantic tíð (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam tíð", "Asia\/Calcutta": "India tíð (Kolkata)", "Asia\/Chita": "Yakutsk tíð (Chita)", - "Asia\/Choibalsan": "Choibalsan tíð", + "Asia\/Choibalsan": "Ulan Bator tíð (Choibalsan)", "Asia\/Colombo": "India tíð (Colombo)", "Asia\/Damascus": "Eysturevropa tíð (Damascus)", "Asia\/Dhaka": "Bangladesj tíð (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fr.json b/src/Symfony/Component/Intl/Resources/data/timezones/fr.json index 5f7b3e29228d..ce135084252d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fr.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "heure de l’Argentine (Río Gallegos)", "America\/Argentina\/Salta": "heure de l’Argentine (Salta)", "America\/Argentina\/San_Juan": "heure de l’Argentine (San Juan)", - "America\/Argentina\/San_Luis": "heure de l’Ouest argentin (San Luis)", + "America\/Argentina\/San_Luis": "heure de l’Argentine (San Luis)", "America\/Argentina\/Tucuman": "heure de l’Argentine (Tucumán)", "America\/Argentina\/Ushuaia": "heure de l’Argentine (Ushuaïa)", "America\/Aruba": "heure de l’Atlantique (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "heure du Brunéi (Brunei)", "Asia\/Calcutta": "heure de l’Inde (Calcutta)", "Asia\/Chita": "heure de Iakoutsk (Tchita)", - "Asia\/Choibalsan": "heure de Choibalsan (Tchoïbalsan)", + "Asia\/Choibalsan": "heure d’Oulan-Bator (Tchoïbalsan)", "Asia\/Colombo": "heure de l’Inde (Colombo)", "Asia\/Damascus": "heure d’Europe de l’Est (Damas)", "Asia\/Dhaka": "heure du Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/fy.json b/src/Symfony/Component/Intl/Resources/data/timezones/fy.json index eaa97c6f0b77..7268cd188eb0 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/fy.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentynske tiid (Río Gallegos)", "America\/Argentina\/Salta": "Argentynske tiid (Salta)", "America\/Argentina\/San_Juan": "Argentynske tiid (San Juan)", - "America\/Argentina\/San_Luis": "West-Argentynske tiid (San Luis)", + "America\/Argentina\/San_Luis": "Argentynske tiid (San Luis)", "America\/Argentina\/Tucuman": "Argentynske tiid (Tucumán)", "America\/Argentina\/Ushuaia": "Argentynske tiid (Ushuaia)", "America\/Aruba": "Atlantic-tiid (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Bruneise tiid", "Asia\/Calcutta": "Yndiaaske tiid (Calcutta)", "Asia\/Chita": "Jakoetsk-tiid (Chita)", - "Asia\/Choibalsan": "Tsjojbalsan tiid (Choibalsan)", + "Asia\/Choibalsan": "Ulaanbaatar tiid (Choibalsan)", "Asia\/Colombo": "Yndiaaske tiid (Colombo)", "Asia\/Damascus": "East-Europeeske tiid (Damascus)", "Asia\/Dhaka": "Bengalese tiid (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ga.json b/src/Symfony/Component/Intl/Resources/data/timezones/ga.json index 72596d505759..fadc47fe02b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ga.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Am na hAirgintíne (Rio Gallegos)", "America\/Argentina\/Salta": "Am na hAirgintíne (Salta)", "America\/Argentina\/San_Juan": "Am na hAirgintíne (San Juan)", - "America\/Argentina\/San_Luis": "Am Iarthar na hAirgintíne (San Luis)", + "America\/Argentina\/San_Luis": "Am na hAirgintíne (San Luis)", "America\/Argentina\/Tucuman": "Am na hAirgintíne (Tucuman)", "America\/Argentina\/Ushuaia": "Am na hAirgintíne (Ushuaia)", "America\/Aruba": "Am an Atlantaigh (Arúba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Am Brúiné Darasalám", "Asia\/Calcutta": "Am Caighdeánach na hIndia (Calcúta)", "Asia\/Chita": "Am Iacútsc (Chita)", - "Asia\/Choibalsan": "Am Choibalsan", + "Asia\/Choibalsan": "Am Ulánbátar (Choibalsan)", "Asia\/Colombo": "Am Caighdeánach na hIndia (Colombo)", "Asia\/Damascus": "Am Oirthear na hEorpa (an Damaisc)", "Asia\/Dhaka": "Am na Banglaidéise (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gd.json b/src/Symfony/Component/Intl/Resources/data/timezones/gd.json index 9c3ad74e3d51..d69f8b908d44 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gd.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Àm na h-Argantaine (Río Gallegos)", "America\/Argentina\/Salta": "Àm na h-Argantaine (Salta)", "America\/Argentina\/San_Juan": "Àm na h-Argantaine (San Juan)", - "America\/Argentina\/San_Luis": "Àm na h-Argantaine Siaraich (San Luis)", + "America\/Argentina\/San_Luis": "Àm na h-Argantaine (San Luis)", "America\/Argentina\/Tucuman": "Àm na h-Argantaine (Tucumán)", "America\/Argentina\/Ushuaia": "Àm na h-Argantaine (Ushuaia)", "America\/Aruba": "Àm a’ Chuain Siar (Arùba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Àm Bhrùnaigh Dàr as-Salàm (Brùnaigh)", "Asia\/Calcutta": "Àm nan Innseachan (Kolkata)", "Asia\/Chita": "Àm Yakutsk (Chita)", - "Asia\/Choibalsan": "Àm Choibalsan", + "Asia\/Choibalsan": "Àm Ulan Bator (Choibalsan)", "Asia\/Colombo": "Àm nan Innseachan (Colombo)", "Asia\/Damascus": "Àm na Roinn-Eòrpa an Ear (Damascus)", "Asia\/Dhaka": "Àm Bangladais (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gl.json b/src/Symfony/Component/Intl/Resources/data/timezones/gl.json index aca426b5f1ba..aaf19c4f1622 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gl.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Horario da Arxentina (Río Gallegos)", "America\/Argentina\/Salta": "Horario da Arxentina (Salta)", "America\/Argentina\/San_Juan": "Horario da Arxentina (San Juan)", - "America\/Argentina\/San_Luis": "Horario da Arxentina Occidental (San Luis)", + "America\/Argentina\/San_Luis": "Horario da Arxentina (San Luis)", "America\/Argentina\/Tucuman": "Horario da Arxentina (Tucumán)", "America\/Argentina\/Ushuaia": "Horario da Arxentina (Ushuaia)", "America\/Aruba": "Horario do Atlántico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Horario de Brunei Darussalam", "Asia\/Calcutta": "Horario da India (Calcuta)", "Asia\/Chita": "Horario de Iakutsk (Chitá)", - "Asia\/Choibalsan": "Horario de Choibalsan", + "Asia\/Choibalsan": "Horario de Ulaanbaatar (Choibalsan)", "Asia\/Colombo": "Horario da India (Colombo)", "Asia\/Damascus": "Horario de Europa Oriental (Damasco)", "Asia\/Dhaka": "Horario de Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/gu.json b/src/Symfony/Component/Intl/Resources/data/timezones/gu.json index 00892999d000..2acdb99c562f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/gu.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "આર્જેન્ટીના સમય (રિઓ ગેલેગોસ)", "America\/Argentina\/Salta": "આર્જેન્ટીના સમય (સાલ્ટા)", "America\/Argentina\/San_Juan": "આર્જેન્ટીના સમય (સેન જુએન)", - "America\/Argentina\/San_Luis": "પશ્ચિમી આર્જેન્ટીના સમય (સેન લુઇસ)", + "America\/Argentina\/San_Luis": "આર્જેન્ટીના સમય (સેન લુઇસ)", "America\/Argentina\/Tucuman": "આર્જેન્ટીના સમય (તુકુમાન)", "America\/Argentina\/Ushuaia": "આર્જેન્ટીના સમય (ઉશાયા)", "America\/Aruba": "એટલાન્ટિક સમય (અરુબા)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "બ્રુનેઇ દરુસલામ સમય", "Asia\/Calcutta": "ભારતીય માનક સમય (કોલકાતા)", "Asia\/Chita": "યાકુત્સ્ક સમય (ચિતા)", - "Asia\/Choibalsan": "ચોઇબાલ્સન સમય", + "Asia\/Choibalsan": "ઉલાન બાટોર સમય (ચોઇબાલ્સન)", "Asia\/Colombo": "ભારતીય માનક સમય (કોલંબો)", "Asia\/Damascus": "પૂર્વી યુરોપિયન સમય (દમાસ્કસ)", "Asia\/Dhaka": "બાંગ્લાદેશ સમય (ઢાકા)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ha.json b/src/Symfony/Component/Intl/Resources/data/timezones/ha.json index 0c4cc93bd2d5..d7ce6703876a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ha.json @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam Time", "Asia\/Calcutta": "India Standard Time (Kolkata)", "Asia\/Chita": "Yakutsk Time (Chita)", - "Asia\/Choibalsan": "Choibalsan Time", + "Asia\/Choibalsan": "Ulaanbaatar Time (Choibalsan)", "Asia\/Colombo": "India Standard Time (Colombo)", "Asia\/Damascus": "Lokaci a turai gabas (Damascus)", "Asia\/Dhaka": "Bangladesh Time (Dhaka)", @@ -303,6 +303,7 @@ "Atlantic\/Faeroe": "Lokaci ta yammacin turai (Faroe)", "Atlantic\/Madeira": "Lokaci ta yammacin turai (Madeira)", "Atlantic\/Reykjavik": "Lokacin Greenwhich a London (Reykjavik)", + "Atlantic\/South_Georgia": "Kudancin Geogia da Kudancin Tsibirin Sandiwic Lokaci (South Georgia)", "Atlantic\/St_Helena": "Lokacin Greenwhich a London (St. Helena)", "Atlantic\/Stanley": "Tsibiran Falkilan Lokaci (Stanley)", "Australia\/Adelaide": "Central Australia Time (Adelaide)", @@ -389,7 +390,7 @@ "Indian\/Kerguelen": "French Southern & Antarctic Time (Kerguelen)", "Indian\/Mahe": "Seychelles Time (Mahe)", "Indian\/Maldives": "Maldives Time", - "Indian\/Mauritius": "Moritus Lokaci (Mauritius)", + "Indian\/Mauritius": "Lokacin Mauritius", "Indian\/Mayotte": "East Africa Time (Mayotte)", "Indian\/Reunion": "Réunion Time (Reunion)", "MST7MDT": "Lokaci tsauni a arewacin da Amirka", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/he.json b/src/Symfony/Component/Intl/Resources/data/timezones/he.json index 8ea2db63dc9e..8b2db64ee4ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/he.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/he.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "שעון ארגנטינה (ריו גאייגוס)", "America\/Argentina\/Salta": "שעון ארגנטינה (סלטה)", "America\/Argentina\/San_Juan": "שעון ארגנטינה (סן חואן)", - "America\/Argentina\/San_Luis": "שעון מערב ארגנטינה (סן לואיס)", + "America\/Argentina\/San_Luis": "שעון ארגנטינה (סן לואיס)", "America\/Argentina\/Tucuman": "שעון ארגנטינה (טוקומן)", "America\/Argentina\/Ushuaia": "שעון ארגנטינה (אושוואיה)", "America\/Aruba": "שעון האוקיינוס האטלנטי (ארובה)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "שעון ברוניי דארוסלאם", "Asia\/Calcutta": "שעון הודו (קולקטה)", "Asia\/Chita": "שעון יקוטסק (צ׳יטה)", - "Asia\/Choibalsan": "שעון צ׳ויבלסן", + "Asia\/Choibalsan": "שעון אולאן באטור (צ׳ויבלסן)", "Asia\/Colombo": "שעון הודו (קולומבו)", "Asia\/Damascus": "שעון מזרח אירופה (דמשק)", "Asia\/Dhaka": "שעון בנגלדש (דאקה)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hi.json b/src/Symfony/Component/Intl/Resources/data/timezones/hi.json index a5242dcc08a0..84f570661896 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hi.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "अर्जेंटीना समय (रियो गालेगोस)", "America\/Argentina\/Salta": "अर्जेंटीना समय (साल्टा)", "America\/Argentina\/San_Juan": "अर्जेंटीना समय (सैन ह्वान)", - "America\/Argentina\/San_Luis": "पश्चिमी अर्जेंटीना समय (सैन लूई)", + "America\/Argentina\/San_Luis": "अर्जेंटीना समय (सैन लूई)", "America\/Argentina\/Tucuman": "अर्जेंटीना समय (टोकूमन)", "America\/Argentina\/Ushuaia": "अर्जेंटीना समय (उशुआइया)", "America\/Aruba": "अटलांटिक समय (अरूबा)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ब्रूनेई दारूस्सलम समय", "Asia\/Calcutta": "भारतीय मानक समय (कोलकाता)", "Asia\/Chita": "याकुत्स्क समय (त्शिता)", - "Asia\/Choibalsan": "कॉइबाल्सन समय (चोइबालसन)", + "Asia\/Choibalsan": "उलान बटोर समय (चोइबालसन)", "Asia\/Colombo": "भारतीय मानक समय (कोलंबो)", "Asia\/Damascus": "पूर्वी यूरोपीय समय (दमास्कस)", "Asia\/Dhaka": "बांग्लादेश समय (ढाका)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hr.json b/src/Symfony/Component/Intl/Resources/data/timezones/hr.json index a8853ca6de63..4c998c77cb09 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hr.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "argentinsko vrijeme (Rio Gallegos)", "America\/Argentina\/Salta": "argentinsko vrijeme (Salta)", "America\/Argentina\/San_Juan": "argentinsko vrijeme (San Juan)", - "America\/Argentina\/San_Luis": "zapadnoargentinsko vrijeme (San Luis)", + "America\/Argentina\/San_Luis": "argentinsko vrijeme (San Luis)", "America\/Argentina\/Tucuman": "argentinsko vrijeme (Tucuman)", "America\/Argentina\/Ushuaia": "argentinsko vrijeme (Ushuaia)", "America\/Aruba": "atlantsko vrijeme (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "vrijeme za Brunej Darussalam", "Asia\/Calcutta": "indijsko vrijeme (Kolkata)", "Asia\/Chita": "jakutsko vrijeme (Čita)", - "Asia\/Choibalsan": "choibalsansko vrijeme", + "Asia\/Choibalsan": "ulanbatorsko vrijeme (Choibalsan)", "Asia\/Colombo": "indijsko vrijeme (Colombo)", "Asia\/Damascus": "istočnoeuropsko vrijeme (Damask)", "Asia\/Dhaka": "bangladeško vrijeme (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hu.json b/src/Symfony/Component/Intl/Resources/data/timezones/hu.json index 21fe46f6d1f1..392290bdba96 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hu.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "argentínai idő (Río Gallegos)", "America\/Argentina\/Salta": "argentínai idő (Salta)", "America\/Argentina\/San_Juan": "argentínai idő (San Juan)", - "America\/Argentina\/San_Luis": "nyugat-argentínai időzóna (San Luis)", + "America\/Argentina\/San_Luis": "argentínai idő (San Luis)", "America\/Argentina\/Tucuman": "argentínai idő (Tucumán)", "America\/Argentina\/Ushuaia": "argentínai idő (Ushuaia)", "America\/Aruba": "atlanti-óceáni idő (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darussalam-i idő", "Asia\/Calcutta": "indiai téli idő (Kalkutta)", "Asia\/Chita": "jakutszki idő (Csita)", - "Asia\/Choibalsan": "csojbalszani idő", + "Asia\/Choibalsan": "ulánbátori idő (Csojbalszan)", "Asia\/Colombo": "indiai téli idő (Colombo)", "Asia\/Damascus": "kelet-európai időzóna (Damaszkusz)", "Asia\/Dhaka": "bangladesi idő (Dakka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/hy.json b/src/Symfony/Component/Intl/Resources/data/timezones/hy.json index af8117e033c7..fea5f774b268 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/hy.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Արգենտինայի ժամանակ (Ռիո Գալյեգոս)", "America\/Argentina\/Salta": "Արգենտինայի ժամանակ (Սալտա)", "America\/Argentina\/San_Juan": "Արգենտինայի ժամանակ (Սան Խուան)", - "America\/Argentina\/San_Luis": "Արևմտյան Արգենտինայի ժամանակ (Սան Լուիս)", + "America\/Argentina\/San_Luis": "Արգենտինայի ժամանակ (Սան Լուիս)", "America\/Argentina\/Tucuman": "Արգենտինայի ժամանակ (Տուկուման)", "America\/Argentina\/Ushuaia": "Արգենտինայի ժամանակ (Ուշուայա)", "America\/Aruba": "Ատլանտյան ժամանակ (Արուբա)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Բրունեյի ժամանակ", "Asia\/Calcutta": "Հնդկաստանի ստանդարտ ժամանակ (Կալկուտա)", "Asia\/Chita": "Յակուտսկի ժամանակ (Չիտա)", - "Asia\/Choibalsan": "Չոյբալսանի ժամանակ", + "Asia\/Choibalsan": "Ուլան Բատորի ժամանակ (Չոյբալսան)", "Asia\/Colombo": "Հնդկաստանի ստանդարտ ժամանակ (Կոլոմբո)", "Asia\/Damascus": "Արևելյան Եվրոպայի ժամանակ (Դամասկոս)", "Asia\/Dhaka": "Բանգլադեշի ժամանակ (Դաքքա)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/id.json b/src/Symfony/Component/Intl/Resources/data/timezones/id.json index 5ecabdcb6a9d..056651b071a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/id.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/id.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Waktu Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Waktu Argentina (Salta)", "America\/Argentina\/San_Juan": "Waktu Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Waktu Argentina Bagian Barat (San Luis)", + "America\/Argentina\/San_Luis": "Waktu Argentina (San Luis)", "America\/Argentina\/Tucuman": "Waktu Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Waktu Argentina (Ushuaia)", "America\/Aruba": "Waktu Atlantik (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Waktu Brunei Darussalam", "Asia\/Calcutta": "Waktu India (Kolkata)", "Asia\/Chita": "Waktu Yakutsk (Chita)", - "Asia\/Choibalsan": "Waktu Choibalsan", + "Asia\/Choibalsan": "Waktu Ulan Bator (Choibalsan)", "Asia\/Colombo": "Waktu India (Kolombo)", "Asia\/Damascus": "Waktu Eropa Timur (Damaskus)", "Asia\/Dhaka": "Waktu Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ig.json b/src/Symfony/Component/Intl/Resources/data/timezones/ig.json index 0e150fb43482..8d9b8b70321e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ig.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Oge Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Oge Argentina (Salta)", "America\/Argentina\/San_Juan": "Oge Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Oge Mpaghara Ọdịda Anyanwụ Argentina (San Luis)", + "America\/Argentina\/San_Luis": "Oge Argentina (San Luis)", "America\/Argentina\/Tucuman": "Oge Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Oge Argentina (Ushuaia)", "America\/Aruba": "Oge Mpaghara Atlantic (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Oge Brunei Darussalam", "Asia\/Calcutta": "Oge Izugbe India (Kolkata)", "Asia\/Chita": "Oge Yakutsk (Chita)", - "Asia\/Choibalsan": "Oge Choibals (Choibalsan)", + "Asia\/Choibalsan": "Oge Ulaanbaatar (Choibalsan)", "Asia\/Colombo": "Oge Izugbe India (Colombo)", "Asia\/Damascus": "Oge Mpaghara Ọwụwa Anyanwụ Europe (Damascus)", "Asia\/Dhaka": "Oge Bangladesh (Dhaka)", @@ -340,6 +340,7 @@ "Europe\/Guernsey": "Oge Mpaghara Greemwich Mean (Guernsey)", "Europe\/Helsinki": "Oge Mpaghara Ọwụwa Anyanwụ Europe (Helsinki)", "Europe\/Isle_of_Man": "Oge Mpaghara Greemwich Mean (Isle of Man)", + "Europe\/Istanbul": "Oge Obodo Turkey (Istanbul)", "Europe\/Jersey": "Oge Mpaghara Greemwich Mean (Jersey)", "Europe\/Kaliningrad": "Oge Mpaghara Ọwụwa Anyanwụ Europe (Kaliningrad)", "Europe\/Kiev": "Oge Mpaghara Ọwụwa Anyanwụ Europe (Kiev)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/is.json b/src/Symfony/Component/Intl/Resources/data/timezones/is.json index 066a89545dcf..57e4f5b9b630 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/is.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/is.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentínutími (Rio Gallegos)", "America\/Argentina\/Salta": "Argentínutími (Salta)", "America\/Argentina\/San_Juan": "Argentínutími (San Juan)", - "America\/Argentina\/San_Luis": "Vestur-Argentínutími (San Luis)", + "America\/Argentina\/San_Luis": "Argentínutími (San Luis)", "America\/Argentina\/Tucuman": "Argentínutími (Tucuman)", "America\/Argentina\/Ushuaia": "Argentínutími (Ushuaia)", "America\/Aruba": "Tími á Atlantshafssvæðinu (Arúba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brúneitími", "Asia\/Calcutta": "Indlandstími (Kalkútta)", "Asia\/Chita": "Tíminn í Yakutsk (Chita)", - "Asia\/Choibalsan": "Tími í Choibalsan", + "Asia\/Choibalsan": "Tími í Úlan Bator (Choibalsan)", "Asia\/Colombo": "Indlandstími (Kólombó)", "Asia\/Damascus": "Austur-Evróputími (Damaskus)", "Asia\/Dhaka": "Bangladess-tími (Dakka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/it.json b/src/Symfony/Component/Intl/Resources/data/timezones/it.json index 15cef96f662a..c4aed1a36c21 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/it.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/it.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Ora dell’Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Ora dell’Argentina (Salta)", "America\/Argentina\/San_Juan": "Ora dell’Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Ora dell’Argentina occidentale (San Luis)", + "America\/Argentina\/San_Luis": "Ora dell’Argentina (San Luis)", "America\/Argentina\/Tucuman": "Ora dell’Argentina (Tucumán)", "America\/Argentina\/Ushuaia": "Ora dell’Argentina (Ushuaia)", "America\/Aruba": "Ora dell’Atlantico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Ora del Brunei Darussalam", "Asia\/Calcutta": "Ora standard dell’India (Calcutta)", "Asia\/Chita": "Ora di Yakutsk (Čita)", - "Asia\/Choibalsan": "Ora di Choibalsan", + "Asia\/Choibalsan": "Ora di Ulan Bator (Choibalsan)", "Asia\/Colombo": "Ora standard dell’India (Colombo)", "Asia\/Damascus": "Ora dell’Europa orientale (Damasco)", "Asia\/Dhaka": "Ora del Bangladesh (Dacca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ja.json b/src/Symfony/Component/Intl/Resources/data/timezones/ja.json index 4ecf9723f14c..b113237a8d43 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ja.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "アルゼンチン時間(リオガジェゴス)", "America\/Argentina\/Salta": "アルゼンチン時間(サルタ)", "America\/Argentina\/San_Juan": "アルゼンチン時間(サンファン)", - "America\/Argentina\/San_Luis": "西部アルゼンチン時間(サンルイス)", + "America\/Argentina\/San_Luis": "アルゼンチン時間(サンルイス)", "America\/Argentina\/Tucuman": "アルゼンチン時間(トゥクマン)", "America\/Argentina\/Ushuaia": "アルゼンチン時間(ウシュアイア)", "America\/Aruba": "大西洋時間(アルバ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ブルネイ・ダルサラーム時間", "Asia\/Calcutta": "インド標準時(コルカタ)", "Asia\/Chita": "ヤクーツク時間(チタ)", - "Asia\/Choibalsan": "チョイバルサン時間", + "Asia\/Choibalsan": "ウランバートル時間(チョイバルサン)", "Asia\/Colombo": "インド標準時(コロンボ)", "Asia\/Damascus": "東ヨーロッパ時間(ダマスカス)", "Asia\/Dhaka": "バングラデシュ時間(ダッカ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/jv.json b/src/Symfony/Component/Intl/Resources/data/timezones/jv.json index d5f5a0c43086..b0b6fcc7fd12 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/jv.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Wektu Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Wektu Argentina (Salta)", "America\/Argentina\/San_Juan": "Wektu Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Wektu Argentina sisih Kulon (San Luis)", + "America\/Argentina\/San_Luis": "Wektu Argentina (San Luis)", "America\/Argentina\/Tucuman": "Wektu Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Wektu Argentina (Ushuaia)", "America\/Aruba": "Wektu Atlantik (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Wektu Brunai Darussalam (Brunei)", "Asia\/Calcutta": "Wektu Standar India (Kalkuta)", "Asia\/Chita": "Wektu Yakutsk (Chita)", - "Asia\/Choibalsan": "Wektu Choibalsan", + "Asia\/Choibalsan": "Wektu Ulaanbaatar (Choibalsan)", "Asia\/Colombo": "Wektu Standar India (Kolombo)", "Asia\/Damascus": "Wektu Eropa sisih Wetan (Damaskus)", "Asia\/Dhaka": "Wektu Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ka.json b/src/Symfony/Component/Intl/Resources/data/timezones/ka.json index 430c1abb1bf5..fc255f6edb72 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ka.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "არგენტინის დრო (რიო გალეგოსი)", "America\/Argentina\/Salta": "არგენტინის დრო (სალტა)", "America\/Argentina\/San_Juan": "არგენტინის დრო (სან ხუანი)", - "America\/Argentina\/San_Luis": "დასავლეთ არგენტინის დრო (სან-ლუისი)", + "America\/Argentina\/San_Luis": "არგენტინის დრო (სან-ლუისი)", "America\/Argentina\/Tucuman": "არგენტინის დრო (ტუკუმანი)", "America\/Argentina\/Ushuaia": "არგენტინის დრო (უშუაია)", "America\/Aruba": "ატლანტიკის ოკეანის დრო (არუბა)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ბრუნეი-დარუსალამის დრო", "Asia\/Calcutta": "ინდოეთის დრო (კალკუტა)", "Asia\/Chita": "იაკუტსკის დრო (ჩიტა)", - "Asia\/Choibalsan": "ჩოიბალსანის დრო", + "Asia\/Choibalsan": "ულან-ბატორის დრო (ჩოიბალსანი)", "Asia\/Colombo": "ინდოეთის დრო (კოლომბო)", "Asia\/Damascus": "აღმოსავლეთ ევროპის დრო (დამასკი)", "Asia\/Dhaka": "ბანგლადეშის დრო (დაკა)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/kk.json b/src/Symfony/Component/Intl/Resources/data/timezones/kk.json index a9a05d376f29..2c39cb6d2cb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/kk.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина уақыты (Рио-Гальегос)", "America\/Argentina\/Salta": "Аргентина уақыты (Сальта)", "America\/Argentina\/San_Juan": "Аргентина уақыты (Сан-Хуан)", - "America\/Argentina\/San_Luis": "Батыс Аргентина уақыты (Сан-Луис)", + "America\/Argentina\/San_Luis": "Аргентина уақыты (Сан-Луис)", "America\/Argentina\/Tucuman": "Аргентина уақыты (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина уақыты (Ушуайя)", "America\/Aruba": "Атлантика уақыты (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней-Даруссалам уақыты", "Asia\/Calcutta": "Үндістан стандартты уақыты (Калькутта)", "Asia\/Chita": "Якутск уақыты (Чита)", - "Asia\/Choibalsan": "Чойбалсан уақыты", + "Asia\/Choibalsan": "Ұланбатыр уақыты (Чойбалсан)", "Asia\/Colombo": "Үндістан стандартты уақыты (Коломбо)", "Asia\/Damascus": "Шығыс Еуропа уақыты (Дамаск)", "Asia\/Dhaka": "Бангладеш уақыты (Дакка)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/km.json b/src/Symfony/Component/Intl/Resources/data/timezones/km.json index f9040965e079..abf92114aa4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/km.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/km.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ម៉ោង​នៅ​អាហ្សង់ទីន (រីយ៉ូហ្គាឡេហ្គូស)", "America\/Argentina\/Salta": "ម៉ោង​នៅ​អាហ្សង់ទីន (សាល់តា)", "America\/Argentina\/San_Juan": "ម៉ោង​នៅ​អាហ្សង់ទីន (សាំងហ្សង់)", - "America\/Argentina\/San_Luis": "ម៉ោង​នៅ​អាហ្សង់ទីនភាគខាងលិច (សាន់លូអ៊ីស)", + "America\/Argentina\/San_Luis": "ម៉ោង​នៅ​អាហ្សង់ទីន (សាន់លូអ៊ីស)", "America\/Argentina\/Tucuman": "ម៉ោង​នៅ​អាហ្សង់ទីន (ទូគូម៉ង់)", "America\/Argentina\/Ushuaia": "ម៉ោង​នៅ​អាហ្សង់ទីន (អ៊ុយសូអៃ)", "America\/Aruba": "ម៉ោង​នៅ​អាត្លង់ទិក (អារ៉ូបា)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ម៉ោងនៅព្រុយណេដារូសាឡឹម", "Asia\/Calcutta": "ម៉ោង​ស្តង់ដារនៅ​ឥណ្ឌា (កុលកាតា)", "Asia\/Chita": "ម៉ោង​នៅ​យ៉ាគុតស្កិ៍ (ឈីតា)", - "Asia\/Choibalsan": "ម៉ោង​នៅ​ឆូបាល់សាន (ឈូបាល់សាន)", + "Asia\/Choibalsan": "ម៉ោង​នៅ​អ៊ូឡាន​បាទូ (ឈូបាល់សាន)", "Asia\/Colombo": "ម៉ោង​ស្តង់ដារនៅ​ឥណ្ឌា (កូឡុំបូ)", "Asia\/Damascus": "ម៉ោង​នៅ​អឺរ៉ុប​​ខាង​កើត​ (ដាម៉ាស)", "Asia\/Dhaka": "ម៉ោង​នៅ​បង់ក្លាដែស (ដាក្កា)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/kn.json b/src/Symfony/Component/Intl/Resources/data/timezones/kn.json index 3f0be5efefcd..5371ef078307 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/kn.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ರಿಯೋ ಗಲ್ಲೆಗೊಸ್)", "America\/Argentina\/Salta": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ಸಾಲ್ಟಾ)", "America\/Argentina\/San_Juan": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ಸ್ಯಾನ್ ಜುವಾನ್)", - "America\/Argentina\/San_Luis": "ಪಶ್ಚಿಮ ಅರ್ಜೆಂಟೀನಾ ಸಮಯ (ಸ್ಯಾನ್ ಲೂಯೀಸ್)", + "America\/Argentina\/San_Luis": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ಸ್ಯಾನ್ ಲೂಯೀಸ್)", "America\/Argentina\/Tucuman": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ಟುಕುಮಾನ್)", "America\/Argentina\/Ushuaia": "ಅರ್ಜೆಂಟಿನಾ ಸಮಯ (ಉಶ್ವಾಯ)", "America\/Aruba": "ಅಟ್ಲಾಂಟಿಕ್ ಸಮಯ (ಅರುಬಾ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ಬ್ರೂನಿ ದಾರುಸಲೆಮ್ ಸಮಯ", "Asia\/Calcutta": "ಭಾರತೀಯ ಪ್ರಮಾಣಿತ ಸಮಯ (ಕೊಲ್ಕತ್ತಾ)", "Asia\/Chita": "ಯಾಕುಟ್ಸಕ್ ಸಮಯ (ಚಿಟ)", - "Asia\/Choibalsan": "ಚೊಯ್‌ಬಲ್ಸಾನ್ ಸಮಯ (ಚೊಯ್‍ಬಾಲ್ಸನ್)", + "Asia\/Choibalsan": "ಉಲನ್ ಬ್ಯಾಟರ್ ಸಮಯ (ಚೊಯ್‍ಬಾಲ್ಸನ್)", "Asia\/Colombo": "ಭಾರತೀಯ ಪ್ರಮಾಣಿತ ಸಮಯ (ಕೊಲಂಬೊ)", "Asia\/Damascus": "ಪೂರ್ವ ಯುರೋಪಿಯನ್ ಸಮಯ (ಡಮಾಸ್ಕಸ್)", "Asia\/Dhaka": "ಬಾಂಗ್ಲಾದೇಶ ಸಮಯ (ಢಾಕಾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ko.json b/src/Symfony/Component/Intl/Resources/data/timezones/ko.json index 1255fe5f9814..56a958e3b787 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ko.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "아르헨티나 시간(리오 가예고스)", "America\/Argentina\/Salta": "아르헨티나 시간(살타)", "America\/Argentina\/San_Juan": "아르헨티나 시간(산후안)", - "America\/Argentina\/San_Luis": "아르헨티나 서부 시간(산루이스)", + "America\/Argentina\/San_Luis": "아르헨티나 시간(산루이스)", "America\/Argentina\/Tucuman": "아르헨티나 시간(투쿠만)", "America\/Argentina\/Ushuaia": "아르헨티나 시간(우수아이아)", "America\/Aruba": "대서양 시간(아루바)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "브루나이 시간", "Asia\/Calcutta": "인도 표준시(콜카타)", "Asia\/Chita": "야쿠츠크 시간(치타)", - "Asia\/Choibalsan": "초이발산 시간", + "Asia\/Choibalsan": "울란바토르 시간(초이발산)", "Asia\/Colombo": "인도 표준시(콜롬보)", "Asia\/Damascus": "동유럽 시간(다마스쿠스)", "Asia\/Dhaka": "방글라데시 시간(다카)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ks.json b/src/Symfony/Component/Intl/Resources/data/timezones/ks.json index ab0dcd96e771..772ca06351f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ks.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ارجؠنٹیٖنا ٹایِم (رِیو گالیگوس)", "America\/Argentina\/Salta": "ارجؠنٹیٖنا ٹایِم (Salta)", "America\/Argentina\/San_Juan": "ارجؠنٹیٖنا ٹایِم (سین جُواں)", - "America\/Argentina\/San_Luis": "مغربی ارجؠنٹیٖنا ٹایِم (سین لوٗیِس)", + "America\/Argentina\/San_Luis": "ارجؠنٹیٖنا ٹایِم (سین لوٗیِس)", "America\/Argentina\/Tucuman": "ارجؠنٹیٖنا ٹایِم (ٹوکوٗمَن)", "America\/Argentina\/Ushuaia": "ارجؠنٹیٖنا ٹایِم (اُشُوٗاییا)", "America\/Aruba": "اؠٹلانٹِک ٹایِم (اَروٗبا)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "بروٗنَے دَروٗسَلَم ٹایِم", "Asia\/Calcutta": "ہِندوستان (Kolkata)", "Asia\/Chita": "یَکُٹسک ٹایِم (Chita)", - "Asia\/Choibalsan": "کوےبؠلسَن ٹایِم (چویبالسَن)", + "Asia\/Choibalsan": "مونگولِیا ٹایِم (چویبالسَن)", "Asia\/Colombo": "ہِندوستان (کولَمبو)", "Asia\/Damascus": "مشرقی یوٗرپی ٹایِم (دَمَسکَس)", "Asia\/Dhaka": "بَنگلادیش ٹایِم (ڈھاکا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ky.json b/src/Symfony/Component/Intl/Resources/data/timezones/ky.json index 228c68b2c0c2..2de4cbb587dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ky.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина убактысы (Рио Галлегос)", "America\/Argentina\/Salta": "Аргентина убактысы (Салта)", "America\/Argentina\/San_Juan": "Аргентина убактысы (Сан Хуан)", - "America\/Argentina\/San_Luis": "Батыш Аргентина убактысы (Сан Луи)", + "America\/Argentina\/San_Luis": "Аргентина убактысы (Сан Луи)", "America\/Argentina\/Tucuman": "Аргентина убактысы (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина убактысы (Ушуайа)", "America\/Aruba": "Атлантика убактысы (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней Даруссалам убактысы", "Asia\/Calcutta": "Индия убактысы (Калькутта)", "Asia\/Chita": "Якутск убактысы (Чита)", - "Asia\/Choibalsan": "Чойбалсан убактысы", + "Asia\/Choibalsan": "Улан Батор убактысы (Чойбалсан)", "Asia\/Colombo": "Индия убактысы (Коломбо)", "Asia\/Damascus": "Чыгыш Европа убактысы (Дамаск)", "Asia\/Dhaka": "Бангладеш убактысы (Дакка)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lb.json b/src/Symfony/Component/Intl/Resources/data/timezones/lb.json index e095e359ac21..92aed22b7040 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lb.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinesch Zäit (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinesch Zäit (Salta)", "America\/Argentina\/San_Juan": "Argentinesch Zäit (San Juan)", - "America\/Argentina\/San_Luis": "Westargentinesch Zäit (San Luis)", + "America\/Argentina\/San_Luis": "Argentinesch Zäit (San Luis)", "America\/Argentina\/Tucuman": "Argentinesch Zäit (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinesch Zäit (Ushuaia)", "America\/Aruba": "Atlantik-Zäit (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei-Zäit", "Asia\/Calcutta": "Indesch Zäit (Kalkutta)", "Asia\/Chita": "Jakutsk-Zäit (Chita)", - "Asia\/Choibalsan": "Choibalsan-Zäit", + "Asia\/Choibalsan": "Ulaanbaatar-Zäit (Choibalsan)", "Asia\/Colombo": "Indesch Zäit (Colombo)", "Asia\/Damascus": "Osteuropäesch Zäit (Damaskus)", "Asia\/Dhaka": "Bangladesch-Zäit (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lo.json b/src/Symfony/Component/Intl/Resources/data/timezones/lo.json index 3f60d355cadc..8a9c5776fe24 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lo.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ຣິໂກ ແກວເລກອສ)", "America\/Argentina\/Salta": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ຊານຕາ)", "America\/Argentina\/San_Juan": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ແຊນຮວນ)", - "America\/Argentina\/San_Luis": "ເວ​ລາ​ເວ​ສ​ເທິນອາ​ເຈນ​ທິ​ນາ (ແຊນລຸຍສ໌)", + "America\/Argentina\/San_Luis": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ແຊນລຸຍສ໌)", "America\/Argentina\/Tucuman": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ຕູຄູແມນ)", "America\/Argentina\/Ushuaia": "ເວ​ລາ​ອາ​ເຈ​ທິ​ນາ (ອູຊູເອຍ)", "America\/Aruba": "ເວລາຂອງອາແລນຕິກ (ອາຣູບາ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "​ເວ​ລາບຣູ​ໄນດາ​ຣຸສ​ຊາ​ລາມ (ບຣູໄນ)", "Asia\/Calcutta": "ເວລາ ອິນເດຍ (ໂກລກາຕາ)", "Asia\/Chita": "ເວລາຢາກູດສ (ຊີຕ່າ)", - "Asia\/Choibalsan": "ເວ​ລາ​ໂຊຍ​ບາ​ຊັນ (ຊອຍບອລຊານ)", + "Asia\/Choibalsan": "ເວລາ ອູລານບາເຕີ (ຊອຍບອລຊານ)", "Asia\/Colombo": "ເວລາ ອິນເດຍ (ໂຄລຳໂບ)", "Asia\/Damascus": "ເວ​ລາ​ຢູ​ໂຣບ​ຕາ​ເວັນ​ອອກ (ດາມາສຄັສ)", "Asia\/Dhaka": "ເວລາ ບັງກະລາເທດ (ດາຫ໌ກາ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lt.json b/src/Symfony/Component/Intl/Resources/data/timezones/lt.json index d873025a05ba..822458eceb4b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lt.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinos laikas (Rio Galjegosas)", "America\/Argentina\/Salta": "Argentinos laikas (Saltas)", "America\/Argentina\/San_Juan": "Argentinos laikas (San Chuanas)", - "America\/Argentina\/San_Luis": "Vakarų Argentinos laikas (Sent Luisas)", + "America\/Argentina\/San_Luis": "Argentinos laikas (Sent Luisas)", "America\/Argentina\/Tucuman": "Argentinos laikas (Tukumanas)", "America\/Argentina\/Ushuaia": "Argentinos laikas (Ušuaja)", "America\/Aruba": "Atlanto laikas (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunėjaus Darusalamo laikas (Brunėjus)", "Asia\/Calcutta": "Indijos laikas (Kolkata)", "Asia\/Chita": "Jakutsko laikas (Čita)", - "Asia\/Choibalsan": "Čoibalsano laikas (Čoibalsanas)", + "Asia\/Choibalsan": "Ulan Batoro laikas (Čoibalsanas)", "Asia\/Colombo": "Indijos laikas (Kolombas)", "Asia\/Damascus": "Rytų Europos laikas (Damaskas)", "Asia\/Dhaka": "Bangladešo laikas (Daka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/lv.json b/src/Symfony/Component/Intl/Resources/data/timezones/lv.json index 9bd985c0476e..0a7acdbf6500 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/lv.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Riogaljegosa (Argentīnas laiks)", "America\/Argentina\/Salta": "Salta (Argentīnas laiks)", "America\/Argentina\/San_Juan": "Sanhuana (Argentīnas laiks)", - "America\/Argentina\/San_Luis": "Sanluisa (Rietumargentīnas laiks)", + "America\/Argentina\/San_Luis": "Sanluisa (Argentīnas laiks)", "America\/Argentina\/Tucuman": "Tukumana (Argentīnas laiks)", "America\/Argentina\/Ushuaia": "Ušuaja (Argentīnas laiks)", "America\/Aruba": "Aruba (Atlantijas laiks)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunejas Darusalamas laiks", "Asia\/Calcutta": "Kalkāta (Indijas ziemas laiks)", "Asia\/Chita": "Čita (Jakutskas laiks)", - "Asia\/Choibalsan": "Čoibalsanas laiks", + "Asia\/Choibalsan": "Čoibalsana (Ulanbatoras laiks)", "Asia\/Colombo": "Kolombo (Indijas ziemas laiks)", "Asia\/Damascus": "Damaska (Austrumeiropas laiks)", "Asia\/Dhaka": "Daka (Bangladešas laiks)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mk.json b/src/Symfony/Component/Intl/Resources/data/timezones/mk.json index 3be148c5285c..fe31509ee128 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mk.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Време во Аргентина (Рио Галегос)", "America\/Argentina\/Salta": "Време во Аргентина (Салта)", "America\/Argentina\/San_Juan": "Време во Аргентина (Сан Хуан)", - "America\/Argentina\/San_Luis": "Време во западна Аргентина (Сан Луис)", + "America\/Argentina\/San_Luis": "Време во Аргентина (Сан Луис)", "America\/Argentina\/Tucuman": "Време во Аргентина (Тукуман)", "America\/Argentina\/Ushuaia": "Време во Аргентина (Ушуаја)", "America\/Aruba": "Атлантско време (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Време во Брунеј Дарусалам", "Asia\/Calcutta": "Време во Индија (Калкута)", "Asia\/Chita": "Време во Јакутск (Чита)", - "Asia\/Choibalsan": "Време во Чојбалсан", + "Asia\/Choibalsan": "Време во Улан Батор (Чојбалсан)", "Asia\/Colombo": "Време во Индија (Коломбо)", "Asia\/Damascus": "Источноевропско време (Дамаск)", "Asia\/Dhaka": "Време во Бангладеш (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ml.json b/src/Symfony/Component/Intl/Resources/data/timezones/ml.json index 9a3eb81ef4fd..eaf96c4ee26f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ml.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "അർജന്റീന സമയം (റിയോ ഗ്യാലഗോസ്)", "America\/Argentina\/Salta": "അർജന്റീന സമയം (സാൽട്ട)", "America\/Argentina\/San_Juan": "അർജന്റീന സമയം (സാൻ ജുവാൻ)", - "America\/Argentina\/San_Luis": "പടിഞ്ഞാറൻ അർജന്റീന സമയം (സാൻ ലൂയിസ്)", + "America\/Argentina\/San_Luis": "അർജന്റീന സമയം (സാൻ ലൂയിസ്)", "America\/Argentina\/Tucuman": "അർജന്റീന സമയം (റ്റുകുമാൻ)", "America\/Argentina\/Ushuaia": "അർജന്റീന സമയം (ഉഷിയ)", "America\/Aruba": "അറ്റ്‌ലാന്റിക് സമയം (അറൂബ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ബ്രൂണൈ ദാറുസ്സലാം സമയം", "Asia\/Calcutta": "ഇന്ത്യൻ സ്റ്റാൻഡേർഡ് സമയം (കൊൽ‌ക്കത്ത)", "Asia\/Chita": "യാകസ്‌ക്ക് സമയം (ചീറ്റ)", - "Asia\/Choibalsan": "ചോയി‍ബൽസാൻ സമയം (ചൊയ്ബൽസൻ)", + "Asia\/Choibalsan": "ഉലൻ ബറ്റർ സമയം (ചൊയ്ബൽസൻ)", "Asia\/Colombo": "ഇന്ത്യൻ സ്റ്റാൻഡേർഡ് സമയം (കൊളം‌ബോ)", "Asia\/Damascus": "കിഴക്കൻ യൂറോപ്യൻ സമയം (ദമാസ്കസ്)", "Asia\/Dhaka": "ബംഗ്ലാദേശ് സമയം (ധാക്ക)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mn.json b/src/Symfony/Component/Intl/Resources/data/timezones/mn.json index 08d6db89cf2b..31e136bfff7e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mn.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентины цаг (Рио-Гальегос)", "America\/Argentina\/Salta": "Аргентины цаг (Салта)", "America\/Argentina\/San_Juan": "Аргентины цаг (Сан-Хуан)", - "America\/Argentina\/San_Luis": "Баруун Аргентины цаг (Сан Луи)", + "America\/Argentina\/San_Luis": "Аргентины цаг (Сан Луи)", "America\/Argentina\/Tucuman": "Аргентины цаг (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентины цаг (Ушуайя)", "America\/Aruba": "Атлантын цаг (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней Даруссаламын цаг", "Asia\/Calcutta": "Энэтхэгийн цаг (Калькутта)", "Asia\/Chita": "Якутын цаг (Чита)", - "Asia\/Choibalsan": "Чойбалсангийн цаг", + "Asia\/Choibalsan": "Улаанбаатарын цаг (Чойбалсан)", "Asia\/Colombo": "Энэтхэгийн цаг (Коломбо)", "Asia\/Damascus": "Зүүн Европын цаг (Дамаск)", "Asia\/Dhaka": "Бангладешийн цаг (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/mr.json b/src/Symfony/Component/Intl/Resources/data/timezones/mr.json index ceb297adad4b..fe39b410887e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/mr.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "अर्जेंटिना वेळ (रियो गॅलेगॉस)", "America\/Argentina\/Salta": "अर्जेंटिना वेळ (सॉल्ता)", "America\/Argentina\/San_Juan": "अर्जेंटिना वेळ (सान जुआन)", - "America\/Argentina\/San_Luis": "पश्चिमी अर्जेंटिना वेळ (सान ल्युइस)", + "America\/Argentina\/San_Luis": "अर्जेंटिना वेळ (सान ल्युइस)", "America\/Argentina\/Tucuman": "अर्जेंटिना वेळ (टुकुमान)", "America\/Argentina\/Ushuaia": "अर्जेंटिना वेळ (उस्वाइया)", "America\/Aruba": "अटलांटिक वेळ (अरुबा)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ब्रुनेई दारूसलाम वेळ", "Asia\/Calcutta": "भारतीय प्रमाण वेळ (कोलकाता)", "Asia\/Chita": "याकुत्सक वेळ (चिता)", - "Asia\/Choibalsan": "चोईबाल्सन वेळ", + "Asia\/Choibalsan": "उलान बाटोर वेळ (चोईबाल्सन)", "Asia\/Colombo": "भारतीय प्रमाण वेळ (कोलंबो)", "Asia\/Damascus": "पूर्व युरोपियन वेळ (दमास्कस)", "Asia\/Dhaka": "बांगलादेश वेळ (ढाका)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ms.json b/src/Symfony/Component/Intl/Resources/data/timezones/ms.json index ea5b8f5fe8aa..76e85dc13b39 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ms.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Waktu Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Waktu Argentina (Salta)", "America\/Argentina\/San_Juan": "Waktu Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Waktu Argentina Barat (San Luis)", + "America\/Argentina\/San_Luis": "Waktu Argentina (San Luis)", "America\/Argentina\/Tucuman": "Waktu Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Waktu Argentina (Ushuaia)", "America\/Aruba": "Waktu Atlantik (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Waktu Brunei Darussalam", "Asia\/Calcutta": "Waktu Piawai India (Kolkata)", "Asia\/Chita": "Waktu Yakutsk (Chita)", - "Asia\/Choibalsan": "Waktu Choibalsan", + "Asia\/Choibalsan": "Waktu Ulan Bator (Choibalsan)", "Asia\/Colombo": "Waktu Piawai India (Colombo)", "Asia\/Damascus": "Waktu Eropah Timur (Damsyik)", "Asia\/Dhaka": "Waktu Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ms_ID.json b/src/Symfony/Component/Intl/Resources/data/timezones/ms_ID.json new file mode 100644 index 000000000000..faeed899021f --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ms_ID.json @@ -0,0 +1,7 @@ +{ + "Names": [], + "Meta": { + "HourFormatPos": "+%02d.%02d", + "HourFormatNeg": "-%02d.%02d" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/my.json b/src/Symfony/Component/Intl/Resources/data/timezones/my.json index ea76ffa3952b..19be13bfc93b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/my.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/my.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "အာဂျင်တီးနား အချိန် (ရီယို ဂါလီဂိုစ်)", "America\/Argentina\/Salta": "အာဂျင်တီးနား အချိန် (ဆာလ်တာ)", "America\/Argentina\/San_Juan": "အာဂျင်တီးနား အချိန် (ဆန် ဂွမ်)", - "America\/Argentina\/San_Luis": "အနောက် အာဂျင်တီးနား အချိန် (ဆန် လူဝီစ်)", + "America\/Argentina\/San_Luis": "အာဂျင်တီးနား အချိန် (ဆန် လူဝီစ်)", "America\/Argentina\/Tucuman": "အာဂျင်တီးနား အချိန် (တူကူမန်)", "America\/Argentina\/Ushuaia": "အာဂျင်တီးနား အချိန် (ဥဆွာအီအာ)", "America\/Aruba": "အတ္တလန်တစ် အချိန် (အာရူးဗာ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ဘရူနိုင်း စံတော်ချိန်", "Asia\/Calcutta": "အိန္ဒိယ စံတော်ချိန် (ကိုလျကတ်တား)", "Asia\/Chita": "ယူခူးတ်စ် အချိန် (ချီတာ)", - "Asia\/Choibalsan": "ချွဲဘော်ဆန်း အချိန် (ချွဲဘောဆန်)", + "Asia\/Choibalsan": "ဥလန်ဘာတော အချိန် (ချွဲဘောဆန်)", "Asia\/Colombo": "အိန္ဒိယ စံတော်ချိန် (ကိုလံဘို)", "Asia\/Damascus": "အရှေ့ဥရောပ အချိန် (ဒမားစကပ်)", "Asia\/Dhaka": "ဘင်္ဂလားဒေ့ရှ် အချိန် (ဒက်ကာ)", @@ -419,7 +419,7 @@ "Pacific\/Midway": "ဆမိုအာ အချိန် (မစ်ဒ်ဝေး)", "Pacific\/Nauru": "နာဥူရူ အချိန်", "Pacific\/Niue": "နီဦးအေ အချိန်", - "Pacific\/Norfolk": "နောဖော့ခ်ကျွန်းအချိန် (နော်ဖော့ခ်)", + "Pacific\/Norfolk": "နောဖော့ခ်ကျွန်း အချိန် (နော်ဖော့ခ်)", "Pacific\/Noumea": "နယူးကယ်လီဒိုးနီးယား အချိန် (နူမယ်အာ)", "Pacific\/Pago_Pago": "ဆမိုအာ အချိန် (ပါဂိုပါဂို)", "Pacific\/Palau": "ပလာအို အချိန်", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nb.json b/src/Symfony/Component/Intl/Resources/data/timezones/nb.json index f6a70a2543ee..1fc84cef940f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nb.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "argentinsk tid (Rio Gallegos)", "America\/Argentina\/Salta": "argentinsk tid (Salta)", "America\/Argentina\/San_Juan": "argentinsk tid (San Juan)", - "America\/Argentina\/San_Luis": "vestargentinsk tid (San Luis)", + "America\/Argentina\/San_Luis": "argentinsk tid (San Luis)", "America\/Argentina\/Tucuman": "argentinsk tid (Tucumán)", "America\/Argentina\/Ushuaia": "argentinsk tid (Ushuaia)", "America\/Aruba": "tidssone for den nordamerikanske atlanterhavskysten (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "tidssone for Brunei Darussalam", "Asia\/Calcutta": "indisk tid (Kolkata)", "Asia\/Chita": "tidssone for Jakutsk (Tsjita)", - "Asia\/Choibalsan": "tidssone for Tsjojbalsan (Choybalsan)", + "Asia\/Choibalsan": "tidssone for Ulan Bator (Choybalsan)", "Asia\/Colombo": "indisk tid (Colombo)", "Asia\/Damascus": "østeuropeisk tid (Damaskus)", "Asia\/Dhaka": "bangladeshisk tid (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ne.json b/src/Symfony/Component/Intl/Resources/data/timezones/ne.json index 089cfccaf1f6..6ba86189d41b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ne.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "अर्जेनटिनी समय (रियो ग्यालेगोस)", "America\/Argentina\/Salta": "अर्जेनटिनी समय (साल्टा)", "America\/Argentina\/San_Juan": "अर्जेनटिनी समय (सान जुवान)", - "America\/Argentina\/San_Luis": "पश्चिमी अर्जेनटिनी समय (सान लुइस)", + "America\/Argentina\/San_Luis": "अर्जेनटिनी समय (सान लुइस)", "America\/Argentina\/Tucuman": "अर्जेनटिनी समय (टुकुमान)", "America\/Argentina\/Ushuaia": "अर्जेनटिनी समय (उशुआइआ)", "America\/Aruba": "एट्लान्टिक समय (अरुबा)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ब्रुनाइ दारूस्सलम समय", "Asia\/Calcutta": "भारतीय मानक समय (कोलकाता)", "Asia\/Chita": "याकुस्ट समय (चिता)", - "Asia\/Choibalsan": "चोइबाल्सन समय (चोइबाल्सान)", + "Asia\/Choibalsan": "उलान बाटोर समय (चोइबाल्सान)", "Asia\/Colombo": "भारतीय मानक समय (कोलम्बो)", "Asia\/Damascus": "पूर्वी युरोपेली समय (दामास्कस्)", "Asia\/Dhaka": "बंगलादेशी समय (ढाका)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nl.json b/src/Symfony/Component/Intl/Resources/data/timezones/nl.json index 628df1878e48..0a4d5a683614 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nl.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentijnse tijd (Río Gallegos)", "America\/Argentina\/Salta": "Argentijnse tijd (Salta)", "America\/Argentina\/San_Juan": "Argentijnse tijd (San Juan)", - "America\/Argentina\/San_Luis": "West-Argentijnse tijd (San Luis)", + "America\/Argentina\/San_Luis": "Argentijnse tijd (San Luis)", "America\/Argentina\/Tucuman": "Argentijnse tijd (Tucumán)", "America\/Argentina\/Ushuaia": "Argentijnse tijd (Ushuaia)", "America\/Aruba": "Atlantic-tijd (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Bruneise tijd", "Asia\/Calcutta": "Indiase tijd (Calcutta)", "Asia\/Chita": "Jakoetsk-tijd (Chita)", - "Asia\/Choibalsan": "Tsjojbalsan-tijd", + "Asia\/Choibalsan": "Ulaanbaatar-tijd (Tsjojbalsan)", "Asia\/Colombo": "Indiase tijd (Colombo)", "Asia\/Damascus": "Oost-Europese tijd (Damascus)", "Asia\/Dhaka": "Bengalese tijd (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/nn.json b/src/Symfony/Component/Intl/Resources/data/timezones/nn.json index dca6bed67ff3..8dc5e2baf460 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/nn.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "argentinsk tid (Rio Gallegos)", "America\/Argentina\/Salta": "argentinsk tid (Salta)", "America\/Argentina\/San_Juan": "argentinsk tid (San Juan)", - "America\/Argentina\/San_Luis": "vestargentinsk tid (San Luis)", + "America\/Argentina\/San_Luis": "argentinsk tid (San Luis)", "America\/Argentina\/Tucuman": "argentinsk tid (Tucumán)", "America\/Argentina\/Ushuaia": "argentinsk tid (Ushuaia)", "America\/Aruba": "tidssone for den nordamerikanske atlanterhavskysten (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "tidssone for Brunei Darussalam", "Asia\/Calcutta": "indisk tid (Kolkata)", "Asia\/Chita": "tidssone for Jakutsk (Tsjita)", - "Asia\/Choibalsan": "tidssone for Tsjojbalsan", + "Asia\/Choibalsan": "tidssone for Ulan Bator (Tsjojbalsan)", "Asia\/Colombo": "indisk tid (Colombo)", "Asia\/Damascus": "austeuropeisk tid (Damaskus)", "Asia\/Dhaka": "bangladeshisk tid (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/or.json b/src/Symfony/Component/Intl/Resources/data/timezones/or.json index 7aeb737278fd..a92f99b8ce5b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/or.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/or.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ରିଓ ଗାଲ୍ଲେଗସ୍‌)", "America\/Argentina\/Salta": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ସଲ୍ଟା)", "America\/Argentina\/San_Juan": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ସାନ୍‌ ଜୁଆନ)", - "America\/Argentina\/San_Luis": "ପଶ୍ଚିମ ଆର୍ଜେଣ୍ଟିନା ସମୟ (ସାନ୍‌ ଲୁଇସ୍‌)", + "America\/Argentina\/San_Luis": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ସାନ୍‌ ଲୁଇସ୍‌)", "America\/Argentina\/Tucuman": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ଟୁକୁମାନ୍‌)", "America\/Argentina\/Ushuaia": "ଆର୍ଜେଣ୍ଟିନା ସମୟ (ଉଶୁୟା)", "America\/Aruba": "ଆଟଲାଣ୍ଟିକ୍ ସମୟ (ଆରୁବା)", @@ -98,7 +98,7 @@ "America\/Detroit": "ପୂର୍ବାଞ୍ଚଳ ସମୟ (ଡେଟ୍ରୋଇଟ୍)", "America\/Dominica": "ଆଟଲାଣ୍ଟିକ୍ ସମୟ (ଡୋମିନିକା)", "America\/Edmonton": "ପାର୍ବତ୍ୟ ସମୟ (ଏଡମୋନଟୋନ୍)", - "America\/Eirunepe": "ବ୍ରାଜିଲ୍ ସମୟ (ଇରୁନେପେ)", + "America\/Eirunepe": "ଆକା ସମୟ (ଇରୁନେପେ)", "America\/El_Salvador": "କେନ୍ଦ୍ରୀୟ ସମୟ (ଏଲ୍ ସାଲଭାଡୋର୍)", "America\/Fort_Nelson": "ପାର୍ବତ୍ୟ ସମୟ (ଫୋର୍ଟ୍ ନେଲସନ୍)", "America\/Fortaleza": "ବ୍ରାସିଲିଆ ସମୟ (ଫୋର୍ଟେଲେଜା)", @@ -175,7 +175,7 @@ "America\/Recife": "ବ୍ରାସିଲିଆ ସମୟ (ରେସିଫି)", "America\/Regina": "କେନ୍ଦ୍ରୀୟ ସମୟ (ରେଗିନା)", "America\/Resolute": "କେନ୍ଦ୍ରୀୟ ସମୟ (ରିସୋଲୁଟେ)", - "America\/Rio_Branco": "ବ୍ରାଜିଲ୍ ସମୟ (ରିଓ ବ୍ରାଙ୍କୋ)", + "America\/Rio_Branco": "ଆକା ସମୟ (ରିଓ ବ୍ରାଙ୍କୋ)", "America\/Santa_Isabel": "ଉତ୍ତରପଶ୍ଚିମ ମେକ୍ସିକୋ ସମୟ (Santa Isabel)", "America\/Santarem": "ବ୍ରାସିଲିଆ ସମୟ (ସାଣ୍ଟାରେମ୍‌)", "America\/Santiago": "ଚିଲି ସମୟ (ସାଣ୍ଟିଆଗୋ)", @@ -216,7 +216,7 @@ "Asia\/Aden": "ଆରବୀୟ ସମୟ (ଏଡେନ୍‌)", "Asia\/Almaty": "ପୂର୍ବ କାଜାକସ୍ତାନ୍ ସମୟ (ଅଲମାଟି)", "Asia\/Amman": "ପୂର୍ବାଞ୍ଚଳ ୟୁରୋପୀୟ ସମୟ (ଅମ୍ମାନ)", - "Asia\/Anadyr": "ରୁଷିଆ ସମୟ (ଆନାଡୟାର୍)", + "Asia\/Anadyr": "ଅନାଡିର୍ ସମୟ (ଆନାଡୟାର୍)", "Asia\/Aqtau": "ପଶ୍ଚିମ କାଜାକସ୍ତାନ ସମୟ (ଆକଟାଉ)", "Asia\/Aqtobe": "ପଶ୍ଚିମ କାଜାକସ୍ତାନ ସମୟ (ଆକଟୋବ୍‌)", "Asia\/Ashgabat": "ତୁର୍କମେନିସ୍ତାନ ସମୟ (ଆଶ୍‌ଗାବୋଟ୍‌)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ବ୍ରୁନେଇ ଡାରୁସାଲାମ ସମୟ", "Asia\/Calcutta": "ଭାରତ ମାନାଙ୍କ ସମୟ (କୋଲକାତା)", "Asia\/Chita": "ୟାକୁଟସ୍କ ସମୟ (ଚିଟା)", - "Asia\/Choibalsan": "ଚୋଇବାଲସାନ ସମୟ (ଚୋଇବାଲସାନ୍‌)", + "Asia\/Choibalsan": "ଉଲାନ୍‌ବାଟର୍‌ ସମୟ (ଚୋଇବାଲସାନ୍‌)", "Asia\/Colombo": "ଭାରତ ମାନାଙ୍କ ସମୟ (କଲମ୍ବୋ)", "Asia\/Damascus": "ପୂର୍ବାଞ୍ଚଳ ୟୁରୋପୀୟ ସମୟ (ଡାମାସକସ୍‌)", "Asia\/Dhaka": "ବାଂଲାଦେଶ ସମୟ (ଢାକା)", @@ -248,7 +248,7 @@ "Asia\/Jayapura": "ପୂର୍ବ ଇଣ୍ଡୋନେସିଆ ସମୟ (ଜୟପୁରା)", "Asia\/Jerusalem": "ଇସ୍ରାଏଲ ସମୟ (ଜେରୁଜେଲମ)", "Asia\/Kabul": "ଆଫଗାନିସ୍ତାନ ସମୟ (କାବୁଲ)", - "Asia\/Kamchatka": "ରୁଷିଆ ସମୟ (କାମଚାଟକା)", + "Asia\/Kamchatka": "ପେଟ୍ରୋପାଭଲୋଭ୍ସକ-କମଚଟସ୍କି ସମୟ (କାମଚାଟକା)", "Asia\/Karachi": "ପାକିସ୍ତାନ ସମୟ (କରାଚି)", "Asia\/Katmandu": "ନେପାଳ ସମୟ (କାଠମାଣ୍ଡୁ)", "Asia\/Khandyga": "ୟାକୁଟସ୍କ ସମୟ (ଖାନଡ୍ୟାଗା)", @@ -361,7 +361,7 @@ "Europe\/Prague": "କେନ୍ଦ୍ରୀୟ ୟୁରୋପୀୟ ସମୟ (ପ୍ରାଗ୍)", "Europe\/Riga": "ପୂର୍ବାଞ୍ଚଳ ୟୁରୋପୀୟ ସମୟ (ରିଗା)", "Europe\/Rome": "କେନ୍ଦ୍ରୀୟ ୟୁରୋପୀୟ ସମୟ (ରୋମ୍)", - "Europe\/Samara": "ରୁଷିଆ ସମୟ (ସାମାରା)", + "Europe\/Samara": "ସମାରା ସମୟ (ସାମାରା)", "Europe\/San_Marino": "କେନ୍ଦ୍ରୀୟ ୟୁରୋପୀୟ ସମୟ (ସାନ୍ ମାରିନୋ)", "Europe\/Sarajevo": "କେନ୍ଦ୍ରୀୟ ୟୁରୋପୀୟ ସମୟ (ସାରାଜେଭୋ)", "Europe\/Saratov": "ମସ୍କୋ ସମୟ (ସାରାଟୋଭ୍)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pa.json b/src/Symfony/Component/Intl/Resources/data/timezones/pa.json index 59254b06dbe9..d851e7f97586 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pa.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਰਿਓ ਗੈਲੇਗੋਸ)", "America\/Argentina\/Salta": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਸਾਲਟਾ)", "America\/Argentina\/San_Juan": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਸੇਨ ਜੁਆਨ)", - "America\/Argentina\/San_Luis": "ਪੱਛਮੀ ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਸੇਨ ਲੂਈਸ)", + "America\/Argentina\/San_Luis": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਸੇਨ ਲੂਈਸ)", "America\/Argentina\/Tucuman": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਟੁਕੁਮਨ)", "America\/Argentina\/Ushuaia": "ਅਰਜਨਟੀਨਾ ਵੇਲਾ (ਉਸ਼ਵਾਇਆ)", "America\/Aruba": "ਅਟਲਾਂਟਿਕ ਵੇਲਾ (ਅਰੂਬਾ)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "ਬਰੂਨੇਈ ਦਾਰੂਸਲਾਮ ਵੇਲਾ", "Asia\/Calcutta": "ਭਾਰਤੀ ਮਿਆਰੀ ਵੇਲਾ (ਕੋਲਕਾਤਾ)", "Asia\/Chita": "ਯਕੁਤਸਕ ਵੇਲਾ (ਚਿਤਾ)", - "Asia\/Choibalsan": "ਚੌਇਬਾਲਸਨ ਵੇਲਾ (ਚੋਇਲਬਾਲਸਨ)", + "Asia\/Choibalsan": "ਉਲਨ ਬਟੋਰ ਵੇਲਾ (ਚੋਇਲਬਾਲਸਨ)", "Asia\/Colombo": "ਭਾਰਤੀ ਮਿਆਰੀ ਵੇਲਾ (ਕੋਲੰਬੋ)", "Asia\/Damascus": "ਪੂਰਬੀ ਯੂਰਪੀ ਵੇਲਾ (ਡੈਮਸਕਸ)", "Asia\/Dhaka": "ਬੰਗਲਾਦੇਸ਼ ਵੇਲਾ (ਢਾਕਾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pl.json b/src/Symfony/Component/Intl/Resources/data/timezones/pl.json index 2a40fb3ce526..e543f3e8768d 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pl.json @@ -52,41 +52,41 @@ "Africa\/Tripoli": "czas wschodnioeuropejski (Trypolis)", "Africa\/Tunis": "czas środkowoeuropejski (Tunis)", "Africa\/Windhoek": "czas środkowoafrykański (Windhuk)", - "America\/Adak": "Hawaje-Aleuty (Adak)", - "America\/Anchorage": "Alaska (Anchorage)", + "America\/Adak": "czas Hawaje-Aleuty (Adak)", + "America\/Anchorage": "czas Alaska (Anchorage)", "America\/Anguilla": "czas atlantycki (Anguilla)", "America\/Antigua": "czas atlantycki (Antigua)", - "America\/Araguaina": "Brasília (Araguaina)", - "America\/Argentina\/La_Rioja": "Argentyna (La Rioja)", - "America\/Argentina\/Rio_Gallegos": "Argentyna (Rio Gallegos)", - "America\/Argentina\/Salta": "Argentyna (Salta)", - "America\/Argentina\/San_Juan": "Argentyna (San Juan)", - "America\/Argentina\/San_Luis": "Argentyna Zachodnia (San Luis)", - "America\/Argentina\/Tucuman": "Argentyna (Tucuman)", - "America\/Argentina\/Ushuaia": "Argentyna (Ushuaia)", + "America\/Araguaina": "czas Brasília (Araguaina)", + "America\/Argentina\/La_Rioja": "czas Argentyna (La Rioja)", + "America\/Argentina\/Rio_Gallegos": "czas Argentyna (Rio Gallegos)", + "America\/Argentina\/Salta": "czas Argentyna (Salta)", + "America\/Argentina\/San_Juan": "czas Argentyna (San Juan)", + "America\/Argentina\/San_Luis": "czas Argentyna (San Luis)", + "America\/Argentina\/Tucuman": "czas Argentyna (Tucuman)", + "America\/Argentina\/Ushuaia": "czas Argentyna (Ushuaia)", "America\/Aruba": "czas atlantycki (Aruba)", - "America\/Asuncion": "Paragwaj (Asunción)", - "America\/Bahia": "Brasília (Salvador)", + "America\/Asuncion": "czas Paragwaj (Asunción)", + "America\/Bahia": "czas Brasília (Salvador)", "America\/Bahia_Banderas": "czas środkowoamerykański (Bahia Banderas)", "America\/Barbados": "czas atlantycki (Barbados)", - "America\/Belem": "Brasília (Belém)", + "America\/Belem": "czas Brasília (Belém)", "America\/Belize": "czas środkowoamerykański (Belize)", "America\/Blanc-Sablon": "czas atlantycki (Blanc-Sablon)", "America\/Boa_Vista": "czas amazoński (Boa Vista)", - "America\/Bogota": "Kolumbia (Bogota)", + "America\/Bogota": "czas Kolumbia (Bogota)", "America\/Boise": "czas górski (Boise)", - "America\/Buenos_Aires": "Argentyna (Buenos Aires)", + "America\/Buenos_Aires": "czas Argentyna (Buenos Aires)", "America\/Cambridge_Bay": "czas górski (Cambridge Bay)", "America\/Campo_Grande": "czas amazoński (Campo Grande)", "America\/Cancun": "czas wschodnioamerykański (Cancún)", - "America\/Caracas": "Wenezuela (Caracas)", - "America\/Catamarca": "Argentyna (Catamarca)", - "America\/Cayenne": "Gujana Francuska (Kajenna)", + "America\/Caracas": "czas Wenezuela (Caracas)", + "America\/Catamarca": "czas Argentyna (Catamarca)", + "America\/Cayenne": "czas Gujana Francuska (Kajenna)", "America\/Cayman": "czas wschodnioamerykański (Kajmany)", "America\/Chicago": "czas środkowoamerykański (Chicago)", "America\/Chihuahua": "Meksyk (czas pacyficzny) (Chihuahua)", "America\/Coral_Harbour": "czas wschodnioamerykański (Atikokan)", - "America\/Cordoba": "Argentyna (Córdoba)", + "America\/Cordoba": "czas Argentyna (Córdoba)", "America\/Costa_Rica": "czas środkowoamerykański (Kostaryka)", "America\/Creston": "czas górski (Creston)", "America\/Cuiaba": "czas amazoński (Cuiabá)", @@ -101,18 +101,18 @@ "America\/Eirunepe": "czas: Brazylia (Eirunepe)", "America\/El_Salvador": "czas środkowoamerykański (Salwador)", "America\/Fort_Nelson": "czas górski (Fort Nelson)", - "America\/Fortaleza": "Brasília (Fortaleza)", + "America\/Fortaleza": "czas Brasília (Fortaleza)", "America\/Glace_Bay": "czas atlantycki (Glace Bay)", - "America\/Godthab": "Grenlandia Zachodnia (Nuuk)", + "America\/Godthab": "czas Grenlandia Zachodnia (Nuuk)", "America\/Goose_Bay": "czas atlantycki (Goose Bay)", "America\/Grand_Turk": "czas wschodnioamerykański (Grand Turk)", "America\/Grenada": "czas atlantycki (Grenada)", "America\/Guadeloupe": "czas atlantycki (Gwadelupa)", "America\/Guatemala": "czas środkowoamerykański (Gwatemala)", - "America\/Guayaquil": "Ekwador (Guayaquil)", - "America\/Guyana": "Gujana", + "America\/Guayaquil": "czas Ekwador (Guayaquil)", + "America\/Guyana": "czas Gujana", "America\/Halifax": "czas atlantycki (Halifax)", - "America\/Havana": "Kuba (Hawana)", + "America\/Havana": "czas Kuba (Hawana)", "America\/Hermosillo": "Meksyk (czas pacyficzny) (Hermosillo)", "America\/Indiana\/Knox": "czas środkowoamerykański (Knox, Indiana)", "America\/Indiana\/Marengo": "czas wschodnioamerykański (Marengo, Indiana)", @@ -125,66 +125,66 @@ "America\/Inuvik": "czas górski (Inuvik)", "America\/Iqaluit": "czas wschodnioamerykański (Iqaluit)", "America\/Jamaica": "czas wschodnioamerykański (Jamajka)", - "America\/Jujuy": "Argentyna (Jujuy)", - "America\/Juneau": "Alaska (Juneau)", + "America\/Jujuy": "czas Argentyna (Jujuy)", + "America\/Juneau": "czas Alaska (Juneau)", "America\/Kentucky\/Monticello": "czas wschodnioamerykański (Monticello)", "America\/Kralendijk": "czas atlantycki (Kralendijk)", - "America\/La_Paz": "Boliwia (La Paz)", - "America\/Lima": "Peru (Lima)", + "America\/La_Paz": "czas Boliwia (La Paz)", + "America\/Lima": "czas Peru (Lima)", "America\/Los_Angeles": "czas pacyficzny (Los Angeles)", "America\/Louisville": "czas wschodnioamerykański (Louisville)", "America\/Lower_Princes": "czas atlantycki (Lower Prince’s Quarter)", - "America\/Maceio": "Brasília (Maceió)", + "America\/Maceio": "czas Brasília (Maceió)", "America\/Managua": "czas środkowoamerykański (Managua)", "America\/Manaus": "czas amazoński (Manaus)", "America\/Marigot": "czas atlantycki (Marigot)", "America\/Martinique": "czas atlantycki (Martynika)", "America\/Matamoros": "czas środkowoamerykański (Matamoros)", "America\/Mazatlan": "Meksyk (czas pacyficzny) (Mazatlan)", - "America\/Mendoza": "Argentyna (Mendoza)", + "America\/Mendoza": "czas Argentyna (Mendoza)", "America\/Menominee": "czas środkowoamerykański (Menominee)", "America\/Merida": "czas środkowoamerykański (Merida)", - "America\/Metlakatla": "Alaska (Metlakatla)", + "America\/Metlakatla": "czas Alaska (Metlakatla)", "America\/Mexico_City": "czas środkowoamerykański (Meksyk (miasto))", - "America\/Miquelon": "Saint-Pierre i Miquelon", + "America\/Miquelon": "czas Saint-Pierre i Miquelon", "America\/Moncton": "czas atlantycki (Moncton)", "America\/Monterrey": "czas środkowoamerykański (Monterrey)", - "America\/Montevideo": "Urugwaj (Montevideo)", + "America\/Montevideo": "czas Urugwaj (Montevideo)", "America\/Montreal": "czas: Kanada (Montreal)", "America\/Montserrat": "czas atlantycki (Montserrat)", "America\/Nassau": "czas wschodnioamerykański (Nassau)", "America\/New_York": "czas wschodnioamerykański (Nowy Jork)", "America\/Nipigon": "czas wschodnioamerykański (Nipigon)", - "America\/Nome": "Alaska (Nome)", - "America\/Noronha": "Fernando de Noronha", + "America\/Nome": "czas Alaska (Nome)", + "America\/Noronha": "czas Fernando de Noronha", "America\/North_Dakota\/Beulah": "czas środkowoamerykański (Beulah, Dakota Północna)", "America\/North_Dakota\/Center": "czas środkowoamerykański (Center, Dakota Północna)", "America\/North_Dakota\/New_Salem": "czas środkowoamerykański (New Salem, Dakota Północna)", "America\/Ojinaga": "czas górski (Ojinaga)", "America\/Panama": "czas wschodnioamerykański (Panama)", "America\/Pangnirtung": "czas wschodnioamerykański (Pangnirtung)", - "America\/Paramaribo": "Surinam (Paramaribo)", + "America\/Paramaribo": "czas Surinam (Paramaribo)", "America\/Phoenix": "czas górski (Phoenix)", "America\/Port-au-Prince": "czas wschodnioamerykański (Port-au-Prince)", "America\/Port_of_Spain": "czas atlantycki (Port-of-Spain)", "America\/Porto_Velho": "czas amazoński (Porto Velho)", "America\/Puerto_Rico": "czas atlantycki (Portoryko)", - "America\/Punta_Arenas": "Chile (Punta Arenas)", + "America\/Punta_Arenas": "czas Chile (Punta Arenas)", "America\/Rainy_River": "czas środkowoamerykański (Rainy River)", "America\/Rankin_Inlet": "czas środkowoamerykański (Rankin Inlet)", - "America\/Recife": "Brasília (Recife)", + "America\/Recife": "czas Brasília (Recife)", "America\/Regina": "czas środkowoamerykański (Regina)", "America\/Resolute": "czas środkowoamerykański (Resolute)", "America\/Rio_Branco": "czas: Brazylia (Rio Branco)", - "America\/Santa_Isabel": "Meksyk Północno-Zachodni (Santa Isabel)", - "America\/Santarem": "Brasília (Santarem)", - "America\/Santiago": "Chile (Santiago)", + "America\/Santa_Isabel": "czas Meksyk Północno-Zachodni (Santa Isabel)", + "America\/Santarem": "czas Brasília (Santarem)", + "America\/Santiago": "czas Chile (Santiago)", "America\/Santo_Domingo": "czas atlantycki (Santo Domingo)", - "America\/Sao_Paulo": "Brasília (Sao Paulo)", - "America\/Scoresbysund": "Grenlandia Wschodnia (Ittoqqortoormiit)", - "America\/Sitka": "Alaska (Sitka)", + "America\/Sao_Paulo": "czas Brasília (Sao Paulo)", + "America\/Scoresbysund": "czas Grenlandia Wschodnia (Ittoqqortoormiit)", + "America\/Sitka": "czas Alaska (Sitka)", "America\/St_Barthelemy": "czas atlantycki (Saint-Barthélemy)", - "America\/St_Johns": "Nowa Fundlandia (St. John’s)", + "America\/St_Johns": "czas Nowa Fundlandia (St. John’s)", "America\/St_Kitts": "czas atlantycki (Saint Kitts)", "America\/St_Lucia": "czas atlantycki (Saint Lucia)", "America\/St_Thomas": "czas atlantycki (Saint Thomas)", @@ -199,113 +199,113 @@ "America\/Vancouver": "czas pacyficzny (Vancouver)", "America\/Whitehorse": "czas pacyficzny (Whitehorse)", "America\/Winnipeg": "czas środkowoamerykański (Winnipeg)", - "America\/Yakutat": "Alaska (Yakutat)", + "America\/Yakutat": "czas Alaska (Yakutat)", "America\/Yellowknife": "czas górski (Yellowknife)", "Antarctica\/Casey": "czas zachodnioaustralijski (Casey)", - "Antarctica\/Davis": "Davis", - "Antarctica\/DumontDUrville": "Dumont-d’Urville", - "Antarctica\/Macquarie": "Macquarie", - "Antarctica\/Mawson": "Mawson", - "Antarctica\/McMurdo": "Nowa Zelandia (McMurdo)", - "Antarctica\/Palmer": "Chile (Palmer)", - "Antarctica\/Rothera": "Rothera", - "Antarctica\/Syowa": "Syowa", + "Antarctica\/Davis": "czas: Antarktyda (Davis)", + "Antarctica\/DumontDUrville": "czas Dumont-d’Urville", + "Antarctica\/Macquarie": "czas: Australia (Macquarie)", + "Antarctica\/Mawson": "czas: Antarktyda (Mawson)", + "Antarctica\/McMurdo": "czas Nowa Zelandia (McMurdo)", + "Antarctica\/Palmer": "czas Chile (Palmer)", + "Antarctica\/Rothera": "czas: Antarktyda (Rothera)", + "Antarctica\/Syowa": "czas: Antarktyda (Syowa)", "Antarctica\/Troll": "czas uniwersalny (Troll)", - "Antarctica\/Vostok": "Wostok", + "Antarctica\/Vostok": "czas Wostok", "Arctic\/Longyearbyen": "czas środkowoeuropejski (Longyearbyen)", - "Asia\/Aden": "Półwysep Arabski (Aden)", - "Asia\/Almaty": "Kazachstan Wschodni (Ałmaty)", + "Asia\/Aden": "czas Półwysep Arabski (Aden)", + "Asia\/Almaty": "czas Kazachstan Wschodni (Ałmaty)", "Asia\/Amman": "czas wschodnioeuropejski (Amman)", "Asia\/Anadyr": "czas Anadyr", - "Asia\/Aqtau": "Kazachstan Zachodni (Aktau)", - "Asia\/Aqtobe": "Kazachstan Zachodni (Aktiubińsk)", - "Asia\/Ashgabat": "Turkmenistan (Aszchabad)", - "Asia\/Atyrau": "Kazachstan Zachodni (Atyrau)", - "Asia\/Baghdad": "Półwysep Arabski (Bagdad)", - "Asia\/Bahrain": "Półwysep Arabski (Bahrajn)", - "Asia\/Baku": "Azerbejdżan (Baku)", + "Asia\/Aqtau": "czas Kazachstan Zachodni (Aktau)", + "Asia\/Aqtobe": "czas Kazachstan Zachodni (Aktiubińsk)", + "Asia\/Ashgabat": "czas Turkmenistan (Aszchabad)", + "Asia\/Atyrau": "czas Kazachstan Zachodni (Atyrau)", + "Asia\/Baghdad": "czas Półwysep Arabski (Bagdad)", + "Asia\/Bahrain": "czas Półwysep Arabski (Bahrajn)", + "Asia\/Baku": "czas Azerbejdżan (Baku)", "Asia\/Bangkok": "czas indochiński (Bangkok)", "Asia\/Barnaul": "czas: Rosja (Barnauł)", "Asia\/Beirut": "czas wschodnioeuropejski (Bejrut)", - "Asia\/Bishkek": "Kirgistan (Biszkek)", - "Asia\/Brunei": "Brunei", + "Asia\/Bishkek": "czas Kirgistan (Biszkek)", + "Asia\/Brunei": "czas: Brunei (Brunei)", "Asia\/Calcutta": "czas indyjski standardowy (Kalkuta)", - "Asia\/Chita": "Jakuck (Czyta)", - "Asia\/Choibalsan": "Czojbalsan", + "Asia\/Chita": "czas Jakuck (Czyta)", + "Asia\/Choibalsan": "czas Ułan Bator (Czojbalsan)", "Asia\/Colombo": "czas indyjski standardowy (Kolombo)", "Asia\/Damascus": "czas wschodnioeuropejski (Damaszek)", - "Asia\/Dhaka": "Bangladesz (Dhaka)", - "Asia\/Dili": "Timor Wschodni (Dili)", - "Asia\/Dubai": "Zatoka Perska (Dubaj)", - "Asia\/Dushanbe": "Tadżykistan (Duszanbe)", + "Asia\/Dhaka": "czas Bangladesz (Dhaka)", + "Asia\/Dili": "czas Timor Wschodni (Dili)", + "Asia\/Dubai": "czas Zatoka Perska (Dubaj)", + "Asia\/Dushanbe": "czas Tadżykistan (Duszanbe)", "Asia\/Famagusta": "czas wschodnioeuropejski (Famagusta)", "Asia\/Gaza": "czas wschodnioeuropejski (Gaza)", "Asia\/Hebron": "czas wschodnioeuropejski (Hebron)", - "Asia\/Hong_Kong": "Hongkong", - "Asia\/Hovd": "Kobdo", - "Asia\/Irkutsk": "Irkuck", - "Asia\/Jakarta": "Indonezja Zachodnia (Dżakarta)", - "Asia\/Jayapura": "Indonezja Wschodnia (Jayapura)", - "Asia\/Jerusalem": "Izrael (Jerozolima)", + "Asia\/Hong_Kong": "czas Hongkong", + "Asia\/Hovd": "czas Kobdo", + "Asia\/Irkutsk": "czas Irkuck", + "Asia\/Jakarta": "czas Indonezja Zachodnia (Dżakarta)", + "Asia\/Jayapura": "czas Indonezja Wschodnia (Jayapura)", + "Asia\/Jerusalem": "czas Izrael (Jerozolima)", "Asia\/Kabul": "Afganistan (Kabul)", "Asia\/Kamchatka": "czas Pietropawłowsk Kamczacki (Kamczatka)", - "Asia\/Karachi": "Pakistan (Karaczi)", - "Asia\/Katmandu": "Nepal (Katmandu)", - "Asia\/Khandyga": "Jakuck (Chandyga)", - "Asia\/Krasnoyarsk": "Krasnojarsk", - "Asia\/Kuala_Lumpur": "Malezja (Kuala Lumpur)", - "Asia\/Kuching": "Malezja (Kuching)", - "Asia\/Kuwait": "Półwysep Arabski (Kuwejt)", - "Asia\/Macau": "Chiny (Makau)", - "Asia\/Magadan": "Magadan", - "Asia\/Makassar": "Indonezja Środkowa (Makassar)", - "Asia\/Manila": "Filipiny (Manila)", - "Asia\/Muscat": "Zatoka Perska (Maskat)", + "Asia\/Karachi": "czas Pakistan (Karaczi)", + "Asia\/Katmandu": "czas: Nepal (Katmandu)", + "Asia\/Khandyga": "czas Jakuck (Chandyga)", + "Asia\/Krasnoyarsk": "czas Krasnojarsk", + "Asia\/Kuala_Lumpur": "czas Malezja (Kuala Lumpur)", + "Asia\/Kuching": "czas Malezja (Kuching)", + "Asia\/Kuwait": "czas Półwysep Arabski (Kuwejt)", + "Asia\/Macau": "czas Chiny (Makau)", + "Asia\/Magadan": "czas Magadan", + "Asia\/Makassar": "czas Indonezja Środkowa (Makassar)", + "Asia\/Manila": "czas Filipiny (Manila)", + "Asia\/Muscat": "czas Zatoka Perska (Maskat)", "Asia\/Nicosia": "czas wschodnioeuropejski (Nikozja)", - "Asia\/Novokuznetsk": "Krasnojarsk (Nowokuźnieck)", - "Asia\/Novosibirsk": "Nowosybirsk", - "Asia\/Omsk": "Omsk", - "Asia\/Oral": "Kazachstan Zachodni (Uralsk)", + "Asia\/Novokuznetsk": "czas Krasnojarsk (Nowokuźnieck)", + "Asia\/Novosibirsk": "czas Nowosybirsk", + "Asia\/Omsk": "czas Omsk", + "Asia\/Oral": "czas Kazachstan Zachodni (Uralsk)", "Asia\/Phnom_Penh": "czas indochiński (Phnom Penh)", - "Asia\/Pontianak": "Indonezja Zachodnia (Pontianak)", - "Asia\/Pyongyang": "Korea (Pjongjang)", - "Asia\/Qatar": "Półwysep Arabski (Katar)", - "Asia\/Qostanay": "Kazachstan Wschodni (Kustanaj)", - "Asia\/Qyzylorda": "Kazachstan Zachodni (Kyzyłorda)", - "Asia\/Rangoon": "Mjanma (Rangun)", - "Asia\/Riyadh": "Półwysep Arabski (Rijad)", + "Asia\/Pontianak": "czas Indonezja Zachodnia (Pontianak)", + "Asia\/Pyongyang": "czas Korea (Pjongjang)", + "Asia\/Qatar": "czas Półwysep Arabski (Katar)", + "Asia\/Qostanay": "czas Kazachstan Wschodni (Kustanaj)", + "Asia\/Qyzylorda": "czas Kazachstan Zachodni (Kyzyłorda)", + "Asia\/Rangoon": "czas Mjanma (Rangun)", + "Asia\/Riyadh": "czas Półwysep Arabski (Rijad)", "Asia\/Saigon": "czas indochiński (Ho Chi Minh)", - "Asia\/Sakhalin": "Sachalin", - "Asia\/Samarkand": "Uzbekistan (Samarkanda)", - "Asia\/Seoul": "Korea (Seul)", - "Asia\/Shanghai": "Chiny (Szanghaj)", - "Asia\/Singapore": "Singapur", - "Asia\/Srednekolymsk": "Magadan (Sriedniekołymsk)", - "Asia\/Taipei": "Tajpej", - "Asia\/Tashkent": "Uzbekistan (Taszkient)", - "Asia\/Tbilisi": "Gruzja (Tbilisi)", - "Asia\/Tehran": "Iran (Teheran)", - "Asia\/Thimphu": "Bhutan (Thimphu)", - "Asia\/Tokyo": "Japonia (Tokio)", + "Asia\/Sakhalin": "czas Sachalin", + "Asia\/Samarkand": "czas Uzbekistan (Samarkanda)", + "Asia\/Seoul": "czas Korea (Seul)", + "Asia\/Shanghai": "czas Chiny (Szanghaj)", + "Asia\/Singapore": "czas Singapur", + "Asia\/Srednekolymsk": "czas Magadan (Sriedniekołymsk)", + "Asia\/Taipei": "czas Tajpej", + "Asia\/Tashkent": "czas Uzbekistan (Taszkient)", + "Asia\/Tbilisi": "czas Gruzja (Tbilisi)", + "Asia\/Tehran": "czas Iran (Teheran)", + "Asia\/Thimphu": "czas: Bhutan (Thimphu)", + "Asia\/Tokyo": "czas Japonia (Tokio)", "Asia\/Tomsk": "czas: Rosja (Tomsk)", - "Asia\/Ulaanbaatar": "Ułan Bator", + "Asia\/Ulaanbaatar": "czas Ułan Bator", "Asia\/Urumqi": "czas: Chiny (Urumczi)", - "Asia\/Ust-Nera": "Władywostok (Ust-Niera)", + "Asia\/Ust-Nera": "czas Władywostok (Ust-Niera)", "Asia\/Vientiane": "czas indochiński (Wientian)", - "Asia\/Vladivostok": "Władywostok", - "Asia\/Yakutsk": "Jakuck", - "Asia\/Yekaterinburg": "Jekaterynburg", - "Asia\/Yerevan": "Armenia (Erywań)", - "Atlantic\/Azores": "Azory", + "Asia\/Vladivostok": "czas Władywostok", + "Asia\/Yakutsk": "czas Jakuck", + "Asia\/Yekaterinburg": "czas Jekaterynburg", + "Asia\/Yerevan": "czas Armenia (Erywań)", + "Atlantic\/Azores": "czas Azory", "Atlantic\/Bermuda": "czas atlantycki (Bermudy)", "Atlantic\/Canary": "czas zachodnioeuropejski (Wyspy Kanaryjskie)", - "Atlantic\/Cape_Verde": "Wyspy Zielonego Przylądka (Republika Zielonego Przylądka)", + "Atlantic\/Cape_Verde": "czas Wyspy Zielonego Przylądka (Republika Zielonego Przylądka)", "Atlantic\/Faeroe": "czas zachodnioeuropejski (Wyspy Owcze)", "Atlantic\/Madeira": "czas zachodnioeuropejski (Madera)", "Atlantic\/Reykjavik": "czas uniwersalny (Reykjavik)", - "Atlantic\/South_Georgia": "Georgia Południowa", + "Atlantic\/South_Georgia": "czas Georgia Południowa", "Atlantic\/St_Helena": "czas uniwersalny (Święta Helena)", - "Atlantic\/Stanley": "Falklandy (Stanley)", + "Atlantic\/Stanley": "czas Falklandy (Stanley)", "Australia\/Adelaide": "czas środkowoaustralijski (Adelaide)", "Australia\/Brisbane": "czas wschodnioaustralijski (Brisbane)", "Australia\/Broken_Hill": "czas środkowoaustralijski (Broken Hill)", @@ -314,7 +314,7 @@ "Australia\/Eucla": "czas środkowo-zachodnioaustralijski (Eucla)", "Australia\/Hobart": "czas wschodnioaustralijski (Hobart)", "Australia\/Lindeman": "czas wschodnioaustralijski (Lindeman)", - "Australia\/Lord_Howe": "Lord Howe", + "Australia\/Lord_Howe": "czas Lord Howe", "Australia\/Melbourne": "czas wschodnioaustralijski (Melbourne)", "Australia\/Perth": "czas zachodnioaustralijski (Perth)", "Australia\/Sydney": "czas wschodnioaustralijski (Sydney)", @@ -324,7 +324,7 @@ "Etc\/UTC": "uniwersalny czas koordynowany", "Europe\/Amsterdam": "czas środkowoeuropejski (Amsterdam)", "Europe\/Andorra": "czas środkowoeuropejski (Andora)", - "Europe\/Astrakhan": "Moskwa (Astrachań)", + "Europe\/Astrakhan": "czas Moskwa (Astrachań)", "Europe\/Athens": "czas wschodnioeuropejski (Ateny)", "Europe\/Belgrade": "czas środkowoeuropejski (Belgrad)", "Europe\/Berlin": "czas środkowoeuropejski (Berlin)", @@ -352,9 +352,9 @@ "Europe\/Madrid": "czas środkowoeuropejski (Madryt)", "Europe\/Malta": "czas środkowoeuropejski (Malta)", "Europe\/Mariehamn": "czas wschodnioeuropejski (Maarianhamina)", - "Europe\/Minsk": "Moskwa (Mińsk)", + "Europe\/Minsk": "czas Moskwa (Mińsk)", "Europe\/Monaco": "czas środkowoeuropejski (Monako)", - "Europe\/Moscow": "Moskwa", + "Europe\/Moscow": "czas Moskwa", "Europe\/Oslo": "czas środkowoeuropejski (Oslo)", "Europe\/Paris": "czas środkowoeuropejski (Paryż)", "Europe\/Podgorica": "czas środkowoeuropejski (Podgorica)", @@ -364,76 +364,76 @@ "Europe\/Samara": "czas Samara", "Europe\/San_Marino": "czas środkowoeuropejski (San Marino)", "Europe\/Sarajevo": "czas środkowoeuropejski (Sarajewo)", - "Europe\/Saratov": "Moskwa (Saratów)", - "Europe\/Simferopol": "Moskwa (Symferopol)", + "Europe\/Saratov": "czas Moskwa (Saratów)", + "Europe\/Simferopol": "czas Moskwa (Symferopol)", "Europe\/Skopje": "czas środkowoeuropejski (Skopje)", "Europe\/Sofia": "czas wschodnioeuropejski (Sofia)", "Europe\/Stockholm": "czas środkowoeuropejski (Sztokholm)", "Europe\/Tallinn": "czas wschodnioeuropejski (Tallin)", "Europe\/Tirane": "czas środkowoeuropejski (Tirana)", - "Europe\/Ulyanovsk": "Moskwa (Uljanowsk)", + "Europe\/Ulyanovsk": "czas Moskwa (Uljanowsk)", "Europe\/Uzhgorod": "czas wschodnioeuropejski (Użgorod)", "Europe\/Vaduz": "czas środkowoeuropejski (Vaduz)", "Europe\/Vatican": "czas środkowoeuropejski (Watykan)", "Europe\/Vienna": "czas środkowoeuropejski (Wiedeń)", "Europe\/Vilnius": "czas wschodnioeuropejski (Wilno)", - "Europe\/Volgograd": "Wołgograd", + "Europe\/Volgograd": "czas Wołgograd", "Europe\/Warsaw": "czas środkowoeuropejski (Warszawa)", "Europe\/Zagreb": "czas środkowoeuropejski (Zagrzeb)", "Europe\/Zaporozhye": "czas wschodnioeuropejski (Zaporoże)", "Europe\/Zurich": "czas środkowoeuropejski (Zurych)", "Indian\/Antananarivo": "czas wschodnioafrykański (Antananarywa)", - "Indian\/Chagos": "Ocean Indyjski (Czagos)", - "Indian\/Christmas": "Wyspa Bożego Narodzenia", - "Indian\/Cocos": "Wyspy Kokosowe", + "Indian\/Chagos": "czas Ocean Indyjski (Czagos)", + "Indian\/Christmas": "czas Wyspa Bożego Narodzenia", + "Indian\/Cocos": "czas Wyspy Kokosowe", "Indian\/Comoro": "czas wschodnioafrykański (Komory)", - "Indian\/Kerguelen": "Francuskie Terytoria Południowe i Antarktyczne (Wyspy Kerguelena)", - "Indian\/Mahe": "Seszele (Mahé)", - "Indian\/Maldives": "Malediwy", - "Indian\/Mauritius": "Mauritius", + "Indian\/Kerguelen": "czas Francuskie Terytoria Południowe i Antarktyczne (Wyspy Kerguelena)", + "Indian\/Mahe": "czas Seszele (Mahé)", + "Indian\/Maldives": "czas Malediwy", + "Indian\/Mauritius": "czas Mauritius", "Indian\/Mayotte": "czas wschodnioafrykański (Majotta)", - "Indian\/Reunion": "Reunion (Réunion)", + "Indian\/Reunion": "czas: Reunion (Réunion)", "MST7MDT": "czas górski", "PST8PDT": "czas pacyficzny", - "Pacific\/Apia": "Apia", - "Pacific\/Auckland": "Nowa Zelandia (Auckland)", - "Pacific\/Bougainville": "Papua-Nowa Gwinea (Wyspa Bougainville’a)", - "Pacific\/Chatham": "Chatham", - "Pacific\/Easter": "Wyspa Wielkanocna", - "Pacific\/Efate": "Vanuatu (Efate)", - "Pacific\/Enderbury": "Feniks (Enderbury)", - "Pacific\/Fakaofo": "Tokelau (Fakaofo)", - "Pacific\/Fiji": "Fidżi", - "Pacific\/Funafuti": "Tuvalu (Funafuti)", - "Pacific\/Galapagos": "Galapagos", - "Pacific\/Gambier": "Wyspy Gambiera", - "Pacific\/Guadalcanal": "Wyspy Salomona (Guadalcanal)", - "Pacific\/Guam": "Czamorro (Guam)", - "Pacific\/Honolulu": "Hawaje-Aleuty (Honolulu)", - "Pacific\/Johnston": "Hawaje-Aleuty (Johnston)", - "Pacific\/Kiritimati": "Line Islands (Kiritimati)", - "Pacific\/Kosrae": "Kosrae", - "Pacific\/Kwajalein": "Wyspy Marshalla (Kwajalein)", - "Pacific\/Majuro": "Wyspy Marshalla (Majuro)", - "Pacific\/Marquesas": "Markizy", - "Pacific\/Midway": "Samoa (Midway)", - "Pacific\/Nauru": "Nauru", - "Pacific\/Niue": "Niue", - "Pacific\/Norfolk": "Norfolk", - "Pacific\/Noumea": "Nowa Kaledonia (Numea)", - "Pacific\/Pago_Pago": "Samoa (Pago Pago)", - "Pacific\/Palau": "Palau", - "Pacific\/Pitcairn": "Pitcairn", - "Pacific\/Ponape": "Pohnpei", - "Pacific\/Port_Moresby": "Papua-Nowa Gwinea (Port Moresby)", - "Pacific\/Rarotonga": "Wyspy Cooka (Rarotonga)", - "Pacific\/Saipan": "Czamorro (Saipan)", - "Pacific\/Tahiti": "Tahiti", - "Pacific\/Tarawa": "Wyspy Gilberta (Tarawa)", - "Pacific\/Tongatapu": "Tonga (Tongatapu)", - "Pacific\/Truk": "Chuuk", - "Pacific\/Wake": "Wake", - "Pacific\/Wallis": "Wallis i Futuna" + "Pacific\/Apia": "czas Apia", + "Pacific\/Auckland": "czas Nowa Zelandia (Auckland)", + "Pacific\/Bougainville": "czas Papua-Nowa Gwinea (Wyspa Bougainville’a)", + "Pacific\/Chatham": "czas Chatham", + "Pacific\/Easter": "czas Wyspa Wielkanocna", + "Pacific\/Efate": "czas Vanuatu (Efate)", + "Pacific\/Enderbury": "czas Feniks (Enderbury)", + "Pacific\/Fakaofo": "czas: Tokelau (Fakaofo)", + "Pacific\/Fiji": "czas Fidżi", + "Pacific\/Funafuti": "czas: Tuvalu (Funafuti)", + "Pacific\/Galapagos": "czas: Ekwador (Galapagos)", + "Pacific\/Gambier": "czas Wyspy Gambiera", + "Pacific\/Guadalcanal": "czas Wyspy Salomona (Guadalcanal)", + "Pacific\/Guam": "czas Czamorro (Guam)", + "Pacific\/Honolulu": "czas Hawaje-Aleuty (Honolulu)", + "Pacific\/Johnston": "czas Hawaje-Aleuty (Johnston)", + "Pacific\/Kiritimati": "czas Line Islands (Kiritimati)", + "Pacific\/Kosrae": "czas: Mikronezja (Kosrae)", + "Pacific\/Kwajalein": "czas Wyspy Marshalla (Kwajalein)", + "Pacific\/Majuro": "czas Wyspy Marshalla (Majuro)", + "Pacific\/Marquesas": "czas Markizy", + "Pacific\/Midway": "czas Samoa (Midway)", + "Pacific\/Nauru": "czas: Nauru (Nauru)", + "Pacific\/Niue": "czas: Niue (Niue)", + "Pacific\/Norfolk": "czas: Norfolk (Norfolk)", + "Pacific\/Noumea": "czas Nowa Kaledonia (Numea)", + "Pacific\/Pago_Pago": "czas Samoa (Pago Pago)", + "Pacific\/Palau": "czas: Palau (Palau)", + "Pacific\/Pitcairn": "czas: Pitcairn (Pitcairn)", + "Pacific\/Ponape": "czas Pohnpei", + "Pacific\/Port_Moresby": "czas Papua-Nowa Gwinea (Port Moresby)", + "Pacific\/Rarotonga": "czas Wyspy Cooka (Rarotonga)", + "Pacific\/Saipan": "czas Czamorro (Saipan)", + "Pacific\/Tahiti": "czas: Polinezja Francuska (Tahiti)", + "Pacific\/Tarawa": "czas Wyspy Gilberta (Tarawa)", + "Pacific\/Tongatapu": "czas Tonga (Tongatapu)", + "Pacific\/Truk": "czas Chuuk", + "Pacific\/Wake": "czas: Dalekie Wyspy Mniejsze Stanów Zjednoczonych (Wake)", + "Pacific\/Wallis": "czas Wallis i Futuna" }, "Meta": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ps.json b/src/Symfony/Component/Intl/Resources/data/timezones/ps.json index 1eec3872bb4c..6cbf344cf087 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ps.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ارجنټاین وخت (ريو ګيليګوس)", "America\/Argentina\/Salta": "ارجنټاین وخت (سالټا)", "America\/Argentina\/San_Juan": "ارجنټاین وخت (سان جوان)", - "America\/Argentina\/San_Luis": "لوېديځ ارجنټاين وخت (سان لویس)", + "America\/Argentina\/San_Luis": "ارجنټاین وخت (سان لویس)", "America\/Argentina\/Tucuman": "ارجنټاین وخت (ټيکووم)", "America\/Argentina\/Ushuaia": "ارجنټاین وخت (اوشوایا)", "America\/Aruba": "اتلانتیک وخت (آروبا)", @@ -181,7 +181,7 @@ "America\/Santiago": "چلی وخت (سنتياګو)", "America\/Santo_Domingo": "اتلانتیک وخت (سنتو ډومینګو)", "America\/Sao_Paulo": "برسلیا وخت (ساو پاولو)", - "America\/Scoresbysund": "د ختیځ ګرینلینډ وخت (Ittoqqortoormiit)", + "America\/Scoresbysund": "د ختیځ ګرینلینډ وخت (اټوکوټورمیټ)", "America\/Sitka": "الاسکا وخت (سیټکا)", "America\/St_Barthelemy": "اتلانتیک وخت (سینټ بارټیلیم)", "America\/St_Johns": "نيو فاونډلېنډ وخت (سینټ جانز)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "برونايي دارالسلام وخت (برویني)", "Asia\/Calcutta": "هند معیاري وخت (کولکته)", "Asia\/Chita": "ياکوټسک وخت (چيتا)", - "Asia\/Choibalsan": "چوئیبیلسن وخت (چويبلسان)", + "Asia\/Choibalsan": "اولان باټر وخت (چويبلسان)", "Asia\/Colombo": "هند معیاري وخت (کولمبو)", "Asia\/Damascus": "ختيځ اروپايي وخت (دمشق)", "Asia\/Dhaka": "بنگله دېش وخت (ډهاکه)", @@ -397,7 +397,7 @@ "PST8PDT": "پیسفک وخت", "Pacific\/Apia": "اپیا وخت", "Pacific\/Auckland": "نيوزي لېنډ وخت (اکلند)", - "Pacific\/Bougainville": "پاپوا نیو ګنی وخت (Bougainville)", + "Pacific\/Bougainville": "پاپوا نیو ګنی وخت (بوګن ویل)", "Pacific\/Chatham": "چاتام وخت", "Pacific\/Easter": "ايستر ټاپو وخت (ایسټر)", "Pacific\/Efate": "د وناتو وخت (عفات)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pt.json b/src/Symfony/Component/Intl/Resources/data/timezones/pt.json index 154ee9b2f412..48a70bbcfb56 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pt.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Horário da Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Horário da Argentina (Salta)", "America\/Argentina\/San_Juan": "Horário da Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Horário da Argentina Ocidental (San Luis)", + "America\/Argentina\/San_Luis": "Horário da Argentina (San Luis)", "America\/Argentina\/Tucuman": "Horário da Argentina (Tucumã)", "America\/Argentina\/Ushuaia": "Horário da Argentina (Ushuaia)", "America\/Aruba": "Horário do Atlântico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Horário de Brunei Darussalam", "Asia\/Calcutta": "Horário Padrão da Índia (Calcutá)", "Asia\/Chita": "Horário de Yakutsk (Chita)", - "Asia\/Choibalsan": "Horário de Choibalsan", + "Asia\/Choibalsan": "Horário de Ulan Bator (Choibalsan)", "Asia\/Colombo": "Horário Padrão da Índia (Colombo)", "Asia\/Damascus": "Horário da Europa Oriental (Damasco)", "Asia\/Dhaka": "Horário de Bangladesh (Dacca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json index 9f727a21d5e6..8df1bca89a99 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/pt_PT.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Hora da Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Hora da Argentina (Salta)", "America\/Argentina\/San_Juan": "Hora da Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Hora da Argentina Ocidental (San Luis)", + "America\/Argentina\/San_Luis": "Hora da Argentina (San Luis)", "America\/Argentina\/Tucuman": "Hora da Argentina (Tucumán)", "America\/Argentina\/Ushuaia": "Hora da Argentina (Ushuaia)", "America\/Aruba": "Hora do Atlântico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Hora do Brunei Darussalam", "Asia\/Calcutta": "Hora padrão da Índia (Calcutá)", "Asia\/Chita": "Hora de Yakutsk (Chita)", - "Asia\/Choibalsan": "Hora de Choibalsan", + "Asia\/Choibalsan": "Hora de Ulan Bator (Choibalsan)", "Asia\/Colombo": "Hora padrão da Índia (Colombo)", "Asia\/Damascus": "Hora da Europa Oriental (Damasco)", "Asia\/Dhaka": "Hora do Bangladeche (Daca)", @@ -419,7 +419,6 @@ "Pacific\/Midway": "Hora de Samoa (Midway)", "Pacific\/Nauru": "Hora de Nauru", "Pacific\/Niue": "Hora de Niuê (Niue)", - "Pacific\/Norfolk": "Hora da Ilha Norfolk", "Pacific\/Noumea": "Hora da Nova Caledónia (Nouméa)", "Pacific\/Pago_Pago": "Hora de Samoa (Pago Pago)", "Pacific\/Palau": "Hora de Palau", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/qu.json b/src/Symfony/Component/Intl/Resources/data/timezones/qu.json index 6e0d617f37fc..708307f28312 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/qu.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Hora de Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Hora de Argentina (Salta)", "America\/Argentina\/San_Juan": "Hora de Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Hora del Oeste de Argentina (San Luis)", + "America\/Argentina\/San_Luis": "Hora de Argentina (San Luis)", "America\/Argentina\/Tucuman": "Hora de Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Hora de Argentina (Ushuaia)", "America\/Aruba": "Hora del Atlántico (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Hora de Brunei Darussalam", "Asia\/Calcutta": "Hora Estandar de India (Kolkata)", "Asia\/Chita": "Hora de Yakutsk (Chita)", - "Asia\/Choibalsan": "Hora de Choybalsan (Choibalsan)", + "Asia\/Choibalsan": "Hora de Ulán Bator (Choibalsan)", "Asia\/Colombo": "Hora Estandar de India (Colombo)", "Asia\/Damascus": "Hora de Europa Oriental (Damasco)", "Asia\/Dhaka": "Hora de Bangladesh (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ro.json b/src/Symfony/Component/Intl/Resources/data/timezones/ro.json index d9bcf0d27f80..5aac5ddcf1db 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ro.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Ora Argentinei (Rio Gallegos)", "America\/Argentina\/Salta": "Ora Argentinei (Salta)", "America\/Argentina\/San_Juan": "Ora Argentinei (San Juan)", - "America\/Argentina\/San_Luis": "Ora Argentinei Occidentale (San Luis)", + "America\/Argentina\/San_Luis": "Ora Argentinei (San Luis)", "America\/Argentina\/Tucuman": "Ora Argentinei (Tucuman)", "America\/Argentina\/Ushuaia": "Ora Argentinei (Ushuaia)", "America\/Aruba": "Ora zonei Atlantic nord-americane (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Ora din Brunei Darussalam", "Asia\/Calcutta": "Ora Indiei (Calcutta)", "Asia\/Chita": "Ora din Iakuțk (Cita)", - "Asia\/Choibalsan": "Ora din Choibalsan", + "Asia\/Choibalsan": "Ora din Ulan Bator (Choibalsan)", "Asia\/Colombo": "Ora Indiei (Colombo)", "Asia\/Damascus": "Ora Europei de Est (Damasc)", "Asia\/Dhaka": "Ora din Bangladesh (Dacca)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ru.json b/src/Symfony/Component/Intl/Resources/data/timezones/ru.json index 1fbb5d277a17..21558329a706 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ru.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина (Рио-Гальегос)", "America\/Argentina\/Salta": "Аргентина (Сальта)", "America\/Argentina\/San_Juan": "Аргентина (Сан-Хуан)", - "America\/Argentina\/San_Luis": "Западная Аргентина (Сан-Луис)", + "America\/Argentina\/San_Luis": "Аргентина (Сан-Луис)", "America\/Argentina\/Tucuman": "Аргентина (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина (Ушуая)", "America\/Aruba": "Атлантическое время (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Бруней-Даруссалам", "Asia\/Calcutta": "Индия (Калькутта)", "Asia\/Chita": "Якутск (Чита)", - "Asia\/Choibalsan": "Чойбалсан", + "Asia\/Choibalsan": "Улан-Батор (Чойбалсан)", "Asia\/Colombo": "Индия (Коломбо)", "Asia\/Damascus": "Восточная Европа (Дамаск)", "Asia\/Dhaka": "Бангладеш (Дакка)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sd.json b/src/Symfony/Component/Intl/Resources/data/timezones/sd.json index 4649dcd55d04..22b56267bb95 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sd.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ارجنٽائن وقت (ریو گالیگوس)", "America\/Argentina\/Salta": "ارجنٽائن وقت (سالٽا)", "America\/Argentina\/San_Juan": "ارجنٽائن وقت (سان جوآن)", - "America\/Argentina\/San_Luis": "مغربي ارجنٽائن وقت (سان لوئیس)", + "America\/Argentina\/San_Luis": "ارجنٽائن وقت (سان لوئیس)", "America\/Argentina\/Tucuman": "ارجنٽائن وقت (ٽوڪومين)", "America\/Argentina\/Ushuaia": "ارجنٽائن وقت (اوشوآئیا)", "America\/Aruba": "ايٽلانٽڪ جو وقت (اروبا)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "برونائي داروالسلام جو وقت", "Asia\/Calcutta": "ڀارت جو معياري وقت (ڪلڪتا)", "Asia\/Chita": "ياڪتسڪ جو وقت (چيتا)", - "Asia\/Choibalsan": "چوئي بيلسن جو وقت", + "Asia\/Choibalsan": "اولان باتر جو وقت (چوئي بيلسن)", "Asia\/Colombo": "ڀارت جو معياري وقت (ڪولمبو)", "Asia\/Damascus": "مشرقي يورپي وقت (دمشق)", "Asia\/Dhaka": "بنگلاديش جو وقت (ڍاڪا)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sd_Deva.json b/src/Symfony/Component/Intl/Resources/data/timezones/sd_Deva.json new file mode 100644 index 000000000000..b0eb82cae1cc --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sd_Deva.json @@ -0,0 +1,199 @@ +{ + "Names": { + "Africa\/Abidjan": "ग्रीन विचु मीन टाइमु (ابي جان)", + "Africa\/Accra": "ग्रीन विचु मीन टाइमु (ايڪرا)", + "Africa\/Algiers": "सेंटरलु यूरपी टाइमु (الجيرز)", + "Africa\/Bamako": "ग्रीन विचु मीन टाइमु (باماڪو)", + "Africa\/Banjul": "ग्रीन विचु मीन टाइमु (بينجال)", + "Africa\/Bissau": "ग्रीन विचु मीन टाइमु (بسائو)", + "Africa\/Cairo": "उभिरंदो यूरोपी टाइमु (قائرا)", + "Africa\/Casablanca": "उलहंदो वारो यूरोपी वारो वक्तु (ڪاسابلانڪا)", + "Africa\/Ceuta": "सेंटरलु यूरपी टाइमु (سيوٽا)", + "Africa\/Conakry": "ग्रीन विचु मीन टाइमु (ڪوناڪري)", + "Africa\/Dakar": "ग्रीन विचु मीन टाइमु (ڊاڪار)", + "Africa\/El_Aaiun": "उलहंदो वारो यूरोपी वारो वक्तु (ال ايون)", + "Africa\/Freetown": "ग्रीन विचु मीन टाइमु (فري ٽائون)", + "Africa\/Lome": "ग्रीन विचु मीन टाइमु (لوم)", + "Africa\/Monrovia": "ग्रीन विचु मीन टाइमु (مونروویا)", + "Africa\/Nouakchott": "ग्रीन विचु मीन टाइमु (نواڪشوط)", + "Africa\/Ouagadougou": "ग्रीन विचु मीन टाइमु (آئوگو ڊائوگو)", + "Africa\/Sao_Tome": "ग्रीन विचु मीन टाइमु (سائو ٽوم)", + "Africa\/Tripoli": "उभिरंदो यूरोपी टाइमु (ٽرپولي)", + "Africa\/Tunis": "सेंटरलु यूरपी टाइमु (تيونس)", + "America\/Anguilla": "अटलांटिक टाइमु (انگويلا)", + "America\/Antigua": "अटलांटिक टाइमु (اينٽيگوا)", + "America\/Aruba": "अटलांटिक टाइमु (اروبا)", + "America\/Bahia_Banderas": "विचो भेरो (باهیا بیندراس)", + "America\/Barbados": "अटलांटिक टाइमु (بارباڊوس)", + "America\/Belize": "विचो भेरो (بیلیز)", + "America\/Blanc-Sablon": "अटलांटिक टाइमु (بلانڪ سبلون)", + "America\/Boise": "टकरु वारो भेरो (بوئس)", + "America\/Cambridge_Bay": "टकरु वारो भेरो (ڪيمبرج بي)", + "America\/Cancun": "उभिरंदो भेरो (ڪانڪون)", + "America\/Cayman": "उभिरंदो भेरो (سيامن)", + "America\/Chicago": "विचो भेरो (شڪاگو)", + "America\/Coral_Harbour": "उभिरंदो भेरो (اٽيڪوڪن)", + "America\/Costa_Rica": "विचो भेरो (ڪوسٽا ريڪا)", + "America\/Creston": "टकरु वारो भेरो (ڪريسٽن)", + "America\/Curacao": "अटलांटिक टाइमु (ڪيوراسائو)", + "America\/Danmarkshavn": "ग्रीन विचु मीन टाइमु (ڊينمارڪ شون)", + "America\/Dawson": "पेसीफिक वारो टाइमु (ڊاوسن)", + "America\/Dawson_Creek": "टकरु वारो भेरो (ڊاوسن ڪريڪ)", + "America\/Denver": "टकरु वारो भेरो (ڊينور)", + "America\/Detroit": "उभिरंदो भेरो (ڊيٽرائيٽ)", + "America\/Dominica": "अटलांटिक टाइमु (ڊومينيڪا)", + "America\/Edmonton": "टकरु वारो भेरो (ايڊمونٽن)", + "America\/Eirunepe": "ब्राजील भेरो (ايرونيپ)", + "America\/El_Salvador": "विचो भेरो (ايل سلواڊور)", + "America\/Fort_Nelson": "टकरु वारो भेरो (فورٽ نيلسن)", + "America\/Glace_Bay": "अटलांटिक टाइमु (گليس بي)", + "America\/Goose_Bay": "अटलांटिक टाइमु (گوز بي)", + "America\/Grand_Turk": "उभिरंदो भेरो (گرانڊ ترڪ)", + "America\/Grenada": "अटलांटिक टाइमु (گريناڊا)", + "America\/Guadeloupe": "अटलांटिक टाइमु (گواڊيلوپ)", + "America\/Guatemala": "विचो भेरो (گوئٽي مالا)", + "America\/Halifax": "अटलांटिक टाइमु (هيلي فيڪس)", + "America\/Indiana\/Knox": "विचो भेरो (ناڪس، انڊيانا)", + "America\/Indiana\/Marengo": "उभिरंदो भेरो (مرينگو، انڊيانا)", + "America\/Indiana\/Petersburg": "उभिरंदो भेरो (پيٽرسبرگ، انڊيانا)", + "America\/Indiana\/Tell_City": "विचो भेरो (ٽيل سٽي، انڊيانا)", + "America\/Indiana\/Vevay": "उभिरंदो भेरो (ويوي، انڊيانا)", + "America\/Indiana\/Vincennes": "उभिरंदो भेरो (ونسینیز، انڊیانا)", + "America\/Indiana\/Winamac": "उभिरंदो भेरो (ويناميڪ، انڊيانا)", + "America\/Indianapolis": "उभिरंदो भेरो (انڊيانا پولس)", + "America\/Inuvik": "टकरु वारो भेरो (انووڪ)", + "America\/Iqaluit": "उभिरंदो भेरो (اڪالوئٽ)", + "America\/Jamaica": "उभिरंदो भेरो (جمائڪا)", + "America\/Kentucky\/Monticello": "उभिरंदो भेरो (مونٽيسيلو، ڪينٽڪي)", + "America\/Kralendijk": "अटलांटिक टाइमु (ڪرالينڊڪ)", + "America\/Los_Angeles": "पेसीफिक वारो टाइमु (لاس اينجلس)", + "America\/Louisville": "उभिरंदो भेरो (لوئي ويل)", + "America\/Lower_Princes": "अटलांटिक टाइमु (لوئر پرنسز ڪوارٽر)", + "America\/Managua": "विचो भेरो (ماناگوا)", + "America\/Marigot": "अटलांटिक टाइमु (ميريگوٽ)", + "America\/Martinique": "अटलांटिक टाइमु (مارٽينڪ)", + "America\/Matamoros": "विचो भेरो (متاموروس)", + "America\/Menominee": "विचो भेरो (مینومیني)", + "America\/Merida": "विचो भेरो (ميريڊا)", + "America\/Mexico_City": "विचो भेरो (ميڪسيڪو شهر)", + "America\/Moncton": "अटलांटिक टाइमु (مانڪٽن)", + "America\/Monterrey": "विचो भेरो (مانٽيري)", + "America\/Montreal": "ڪئناڊا भेरो (Montreal)", + "America\/Montserrat": "अटलांटिक टाइमु (مانٽسريٽ)", + "America\/Nassau": "उभिरंदो भेरो (ناسائو)", + "America\/New_York": "उभिरंदो भेरो (نيويارڪ)", + "America\/Nipigon": "उभिरंदो भेरो (نپيگان)", + "America\/North_Dakota\/Beulah": "विचो भेरो (بيولاه، اتر ڊڪوٽا)", + "America\/North_Dakota\/Center": "विचो भेरो (سينٽر، اتر ڊڪوٽا)", + "America\/North_Dakota\/New_Salem": "विचो भेरो (نيو سيلم، اتر ڊڪوٽا)", + "America\/Ojinaga": "टकरु वारो भेरो (اوڪيناگا)", + "America\/Panama": "उभिरंदो भेरो (پناما)", + "America\/Pangnirtung": "उभिरंदो भेरो (پینگنرٽنگ)", + "America\/Phoenix": "टकरु वारो भेरो (فونيڪس)", + "America\/Port-au-Prince": "उभिरंदो भेरो (پورٽ او پرنس)", + "America\/Port_of_Spain": "अटलांटिक टाइमु (اسپين جو ٻيٽ)", + "America\/Puerto_Rico": "अटलांटिक टाइमु (پورٽو ريڪو)", + "America\/Rainy_River": "विचो भेरो (ريني رور)", + "America\/Rankin_Inlet": "विचो भेरो (رينڪن انليٽ)", + "America\/Regina": "विचो भेरो (ریجینا)", + "America\/Resolute": "विचो भेरो (ريزوليوٽ)", + "America\/Rio_Branco": "ब्राजील भेरो (ريو برانڪو)", + "America\/Santo_Domingo": "अटलांटिक टाइमु (سينٽو ڊومينگو)", + "America\/St_Barthelemy": "अटलांटिक टाइमु (سينٽ برٿليمي)", + "America\/St_Kitts": "अटलांटिक टाइमु (سينٽ ڪٽس)", + "America\/St_Lucia": "अटलांटिक टाइमु (سينٽ لوسيا)", + "America\/St_Thomas": "अटलांटिक टाइमु (سينٽ ٿامس)", + "America\/St_Vincent": "अटलांटिक टाइमु (سينٽ ونسينٽ)", + "America\/Swift_Current": "विचो भेरो (سوئفٽ ڪرنٽ)", + "America\/Tegucigalpa": "विचो भेरो (ٽيگوسيگلپا)", + "America\/Thule": "अटलांटिक टाइमु (ٿولي)", + "America\/Thunder_Bay": "उभिरंदो भेरो (ٿنڊر بي)", + "America\/Tijuana": "पेसीफिक वारो टाइमु (تيجوانا)", + "America\/Toronto": "उभिरंदो भेरो (ٽورنٽو)", + "America\/Tortola": "अटलांटिक टाइमु (ٽورٽولا)", + "America\/Vancouver": "पेसीफिक वारो टाइमु (وينڪوور)", + "America\/Whitehorse": "पेसीफिक वारो टाइमु (وائيٽ هائوس)", + "America\/Winnipeg": "विचो भेरो (وني پيگ)", + "America\/Yellowknife": "टकरु वारो भेरो (ييلو نائيف)", + "Antarctica\/Troll": "ग्रीन विचु मीन टाइमु (ٽرول)", + "Arctic\/Longyearbyen": "सेंटरलु यूरपी टाइमु (لانگ ائيربن)", + "Asia\/Amman": "उभिरंदो यूरोपी टाइमु (امان)", + "Asia\/Anadyr": "रशिया भेरो (انيدر)", + "Asia\/Barnaul": "रशिया भेरो (برنل)", + "Asia\/Beirut": "उभिरंदो यूरोपी टाइमु (بيروت)", + "Asia\/Damascus": "उभिरंदो यूरोपी टाइमु (دمشق)", + "Asia\/Famagusta": "उभिरंदो यूरोपी टाइमु (فاماگوستا)", + "Asia\/Gaza": "उभिरंदो यूरोपी टाइमु (غزه)", + "Asia\/Hebron": "उभिरंदो यूरोपी टाइमु (هيبرون)", + "Asia\/Kamchatka": "रशिया भेरो (ڪمچاسڪي)", + "Asia\/Nicosia": "उभिरंदो यूरोपी टाइमु (نيڪوسيا)", + "Asia\/Tomsk": "रशिया भेरो (تمسڪ)", + "Asia\/Urumqi": "चाइना भेरो (يورمڪي)", + "Atlantic\/Bermuda": "अटलांटिक टाइमु (برمودا)", + "Atlantic\/Canary": "उलहंदो वारो यूरोपी वारो वक्तु (ڪينري)", + "Atlantic\/Faeroe": "उलहंदो वारो यूरोपी वारो वक्तु (فيرو)", + "Atlantic\/Madeira": "उलहंदो वारो यूरोपी वारो वक्तु (ماڊيرا)", + "Atlantic\/Reykjavik": "ग्रीन विचु मीन टाइमु (ريڪيوڪ)", + "Atlantic\/St_Helena": "ग्रीन विचु मीन टाइमु (سينٽ هيلينا)", + "CST6CDT": "विचो भेरो", + "EST5EDT": "उभिरंदो भेरो", + "Etc\/GMT": "ग्रीन विचु मीन टाइमु", + "Etc\/UTC": "आस्थानी चालू टाइमु", + "Europe\/Amsterdam": "सेंटरलु यूरपी टाइमु (ايمسٽرڊيم)", + "Europe\/Andorra": "सेंटरलु यूरपी टाइमु (اندورا)", + "Europe\/Athens": "उभिरंदो यूरोपी टाइमु (ايٿنز)", + "Europe\/Belgrade": "सेंटरलु यूरपी टाइमु (بلغراد)", + "Europe\/Berlin": "सेंटरलु यूरपी टाइमु (برلن)", + "Europe\/Bratislava": "सेंटरलु यूरपी टाइमु (براتيسلوا)", + "Europe\/Brussels": "सेंटरलु यूरपी टाइमु (برسلز)", + "Europe\/Bucharest": "उभिरंदो यूरोपी टाइमु (بخاريسٽ)", + "Europe\/Budapest": "सेंटरलु यूरपी टाइमु (بداپيسٽ)", + "Europe\/Busingen": "सेंटरलु यूरपी टाइमु (بزيجين)", + "Europe\/Chisinau": "उभिरंदो यूरोपी टाइमु (چسينائو)", + "Europe\/Copenhagen": "सेंटरलु यूरपी टाइमु (ڪوپن هيگن)", + "Europe\/Dublin": "ग्रीन विचु मीन टाइमु (ڊبلن)", + "Europe\/Gibraltar": "सेंटरलु यूरपी टाइमु (جبرالٽر)", + "Europe\/Guernsey": "ग्रीन विचु मीन टाइमु (گرنزي)", + "Europe\/Helsinki": "उभिरंदो यूरोपी टाइमु (هيلسنڪي)", + "Europe\/Isle_of_Man": "ग्रीन विचु मीन टाइमु (آئيزل آف مين)", + "Europe\/Istanbul": "ترڪي भेरो (استنبول)", + "Europe\/Jersey": "ग्रीन विचु मीन टाइमु (جرسي)", + "Europe\/Kaliningrad": "उभिरंदो यूरोपी टाइमु (ڪلينن گراڊ)", + "Europe\/Kiev": "उभिरंदो यूरोपी टाइमु (ڪيف)", + "Europe\/Kirov": "रशिया भेरो (ڪيروف)", + "Europe\/Lisbon": "उलहंदो वारो यूरोपी वारो वक्तु (لسبن)", + "Europe\/Ljubljana": "सेंटरलु यूरपी टाइमु (لبليانا)", + "Europe\/London": "ग्रीन विचु मीन टाइमु (لنڊن)", + "Europe\/Luxembourg": "सेंटरलु यूरपी टाइमु (لگزمبرگ)", + "Europe\/Madrid": "सेंटरलु यूरपी टाइमु (ميڊرڊ)", + "Europe\/Malta": "सेंटरलु यूरपी टाइमु (مالٽا)", + "Europe\/Mariehamn": "उभिरंदो यूरोपी टाइमु (ميريهام)", + "Europe\/Monaco": "सेंटरलु यूरपी टाइमु (موناڪو)", + "Europe\/Oslo": "सेंटरलु यूरपी टाइमु (اوسلو)", + "Europe\/Paris": "सेंटरलु यूरपी टाइमु (پئرس)", + "Europe\/Podgorica": "सेंटरलु यूरपी टाइमु (پوڊگورسيا)", + "Europe\/Prague": "सेंटरलु यूरपी टाइमु (پراگ)", + "Europe\/Riga": "उभिरंदो यूरोपी टाइमु (رگا)", + "Europe\/Rome": "सेंटरलु यूरपी टाइमु (روم)", + "Europe\/Samara": "रशिया भेरो (سمارا)", + "Europe\/San_Marino": "सेंटरलु यूरपी टाइमु (سين مرينو)", + "Europe\/Sarajevo": "सेंटरलु यूरपी टाइमु (سراجیوو)", + "Europe\/Skopje": "सेंटरलु यूरपी टाइमु (اسڪوپي)", + "Europe\/Sofia": "उभिरंदो यूरोपी टाइमु (سوفيا)", + "Europe\/Stockholm": "सेंटरलु यूरपी टाइमु (اسٽاڪ هوم)", + "Europe\/Tallinn": "उभिरंदो यूरोपी टाइमु (ٽالن)", + "Europe\/Tirane": "सेंटरलु यूरपी टाइमु (اراني)", + "Europe\/Uzhgorod": "उभिरंदो यूरोपी टाइमु (ازهارڊ)", + "Europe\/Vaduz": "सेंटरलु यूरपी टाइमु (وڊوز)", + "Europe\/Vatican": "सेंटरलु यूरपी टाइमु (وئٽيڪن)", + "Europe\/Vienna": "सेंटरलु यूरपी टाइमु (وينا)", + "Europe\/Vilnius": "उभिरंदो यूरोपी टाइमु (ويلنيس)", + "Europe\/Warsaw": "सेंटरलु यूरपी टाइमु (وارسا)", + "Europe\/Zagreb": "सेंटरलु यूरपी टाइमु (زغرب)", + "Europe\/Zaporozhye": "उभिरंदो यूरोपी टाइमु (زيپروزهايا)", + "Europe\/Zurich": "सेंटरलु यूरपी टाइमु (زيورخ)", + "MST7MDT": "टकरु वारो भेरो", + "PST8PDT": "पेसीफिक वारो टाइमु" + }, + "Meta": [] +} diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json b/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json index 7117c7076380..65a88fde2451 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/se_FI.json @@ -57,7 +57,6 @@ "America\/Anguilla": "Anguilla (atlántalaš áigi)", "America\/Antigua": "Antigua (atlántalaš áigi)", "America\/Araguaina": "Araguaina (Brasilia áigi)", - "America\/Argentina\/San_Luis": "San Luis (Oarje-Argentina áigi)", "America\/Aruba": "Aruba (atlántalaš áigi)", "America\/Asuncion": "Asuncion (Paraguaya áigi)", "America\/Bahia": "Bahia (Brasilia áigi)", @@ -212,7 +211,7 @@ "Asia\/Brunei": "Brunei Darussalama áigi", "Asia\/Calcutta": "Kolkata (India dálveáigi)", "Asia\/Chita": "Chita (Jakucka áigi)", - "Asia\/Choibalsan": "Choibalsan (Choibolsana áigi)", + "Asia\/Choibalsan": "Choibalsan (Ulan-Batora áigi)", "Asia\/Colombo": "Colombo (India dálveáigi)", "Asia\/Damascus": "Damaskos (Nuorta-Eurohpa áigi)", "Asia\/Dhaka": "Dhaka (Bangladesha áigi)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/si.json b/src/Symfony/Component/Intl/Resources/data/timezones/si.json index ea764579c629..94a8cb8615c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/si.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/si.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ආර්ජන්ටිනා වේලාව (රියෝ ගලෙගොස්)", "America\/Argentina\/Salta": "ආර්ජන්ටිනා වේලාව (සොල්ටා)", "America\/Argentina\/San_Juan": "ආර්ජන්ටිනා වේලාව (සැන් ජුවාන්)", - "America\/Argentina\/San_Luis": "බටහිර ආර්ජන්ටිනා වේලාව (සැන් ලුවිස්)", + "America\/Argentina\/San_Luis": "ආර්ජන්ටිනා වේලාව (සැන් ලුවිස්)", "America\/Argentina\/Tucuman": "ආර්ජන්ටිනා වේලාව (ටුකුමන්)", "America\/Argentina\/Ushuaia": "ආර්ජන්ටිනා වේලාව (උෂුඅයියා)", "America\/Aruba": "අත්ලාන්තික් වේලාව (අරූබා)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "බෘනායි දරුස්සලාම් වේලාව (බෲනායි)", "Asia\/Calcutta": "ඉන්දියානු වේලාව (කල්කටා)", "Asia\/Chita": "යකුට්ස්ක් වේලාව (චිටා)", - "Asia\/Choibalsan": "චොයිබල්සාන් වේලාව", + "Asia\/Choibalsan": "උලාන් බාටර් වේලාව (චොයිබල්සාන්)", "Asia\/Colombo": "ඉන්දියානු වේලාව (කොළඹ)", "Asia\/Damascus": "නැගෙනහිර යුරෝපීය වේලාව (ඩැමස්කස්)", "Asia\/Dhaka": "බංගලාදේශ වේලාව (ඩකා)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sk.json b/src/Symfony/Component/Intl/Resources/data/timezones/sk.json index 6de70ff5297b..a16bfb97d91e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sk.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "argentínsky čas (Rio Gallegos)", "America\/Argentina\/Salta": "argentínsky čas (Salta)", "America\/Argentina\/San_Juan": "argentínsky čas (San Juan)", - "America\/Argentina\/San_Luis": "západoargentínsky čas (San Luis)", + "America\/Argentina\/San_Luis": "argentínsky čas (San Luis)", "America\/Argentina\/Tucuman": "argentínsky čas (Tucuman)", "America\/Argentina\/Ushuaia": "argentínsky čas (Ushuaia)", "America\/Aruba": "atlantický čas (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "brunejský čas", "Asia\/Calcutta": "indický čas (Kalkata)", "Asia\/Chita": "jakutský čas (Čita)", - "Asia\/Choibalsan": "čojbalsanský čas", + "Asia\/Choibalsan": "ulanbátarský čas (Čojbalsan)", "Asia\/Colombo": "indický čas (Kolombo)", "Asia\/Damascus": "východoeurópsky čas (Damask)", "Asia\/Dhaka": "bangladéšsky čas (Dháka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sl.json b/src/Symfony/Component/Intl/Resources/data/timezones/sl.json index ef49715e9c9e..31f48dfa3bf9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sl.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentinski čas (Rio Gallegos)", "America\/Argentina\/Salta": "Argentinski čas (Salta)", "America\/Argentina\/San_Juan": "Argentinski čas (San Juan)", - "America\/Argentina\/San_Luis": "Argentinski zahodni čas (San Luis)", + "America\/Argentina\/San_Luis": "Argentinski čas (San Luis)", "America\/Argentina\/Tucuman": "Argentinski čas (Tucuman)", "America\/Argentina\/Ushuaia": "Argentinski čas (Ushuaia)", "America\/Aruba": "Atlantski čas (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunejski čas", "Asia\/Calcutta": "Indijski standardni čas (Kalkuta)", "Asia\/Chita": "Jakutski čas (Čita)", - "Asia\/Choibalsan": "Čojbalsanski čas", + "Asia\/Choibalsan": "Ulanbatorski čas (Čojbalsan)", "Asia\/Colombo": "Indijski standardni čas (Kolombo)", "Asia\/Damascus": "Vzhodnoevropski čas (Damask)", "Asia\/Dhaka": "Bangladeški čas (Daka)", @@ -419,7 +419,7 @@ "Pacific\/Midway": "Samoanski čas (Midway)", "Pacific\/Nauru": "Naurujski čas", "Pacific\/Niue": "Niuejski čas", - "Pacific\/Norfolk": "Čas: Norfolški otoki (Norfolk)", + "Pacific\/Norfolk": "Norfolški otoki čas (Norfolk)", "Pacific\/Noumea": "Novokaledonijski čas (Noumea)", "Pacific\/Pago_Pago": "Samoanski čas (Pago Pago)", "Pacific\/Palau": "Palavski čas (Palau)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/so.json b/src/Symfony/Component/Intl/Resources/data/timezones/so.json index a9409f21a264..02ae0a5308f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/so.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/so.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Waqtia Arjentiina (Riyo Jalejos)", "America\/Argentina\/Salta": "Waqtia Arjentiina (Salta)", "America\/Argentina\/San_Juan": "Waqtia Arjentiina (San Juwaan)", - "America\/Argentina\/San_Luis": "Waqtiga Galbeedka Arjentiina (San Luwis)", + "America\/Argentina\/San_Luis": "Waqtia Arjentiina (San Luwis)", "America\/Argentina\/Tucuman": "Waqtia Arjentiina (Tukuumaan)", "America\/Argentina\/Ushuaia": "Waqtia Arjentiina (Ushuaay)", "America\/Aruba": "Waqtiga Atlantika ee Waqooyiga Ameerika (Aruba)", @@ -98,7 +98,7 @@ "America\/Detroit": "Waqtiga Bariga ee Waqooyiga Ameerika (Detoroyt)", "America\/Dominica": "Waqtiga Atlantika ee Waqooyiga Ameerika (Dominiika)", "America\/Edmonton": "Waqtiga Buuraleyda ee Waqooyiga Ameerika (Edmonton)", - "America\/Eirunepe": "Waqtiga Baraasiil (Iiruneeb)", + "America\/Eirunepe": "Wakhtiga Acre (Iiruneeb)", "America\/El_Salvador": "Waqtiga Bartamaha Waqooyiga Ameerika (El Salfadoor)", "America\/Fort_Nelson": "Waqtiga Buuraleyda ee Waqooyiga Ameerika (Foot Nelson)", "America\/Fortaleza": "Waqtiga Baraasiliya (Footalesa)", @@ -175,7 +175,7 @@ "America\/Recife": "Waqtiga Baraasiliya (Receyf)", "America\/Regina": "Waqtiga Bartamaha Waqooyiga Ameerika (Rejiina)", "America\/Resolute": "Waqtiga Bartamaha Waqooyiga Ameerika (Resoluut)", - "America\/Rio_Branco": "Waqtiga Baraasiil (Riyo Baraanko)", + "America\/Rio_Branco": "Wakhtiga Acre (Riyo Baraanko)", "America\/Santa_Isabel": "Waqtiga Waqooyi-Galbeed Meksiko (Santa Isabel)", "America\/Santarem": "Waqtiga Baraasiliya (Santareem)", "America\/Santiago": "Waqtiga Jili (Santiyaago)", @@ -216,7 +216,7 @@ "Asia\/Aden": "Waqtiga Carabta (Cadan)", "Asia\/Almaty": "Waqtiga Bariga Kasakhistaan (Almati)", "Asia\/Amman": "Waqtiga Bariga Yurub (Ammaan)", - "Asia\/Anadyr": "Waqtiga Ruush (Anadiyr)", + "Asia\/Anadyr": "Wakhtiga Anadyr (Anadiyr)", "Asia\/Aqtau": "Waqtiga Koonfurta Kasakhistan (Aktaw)", "Asia\/Aqtobe": "Waqtiga Koonfurta Kasakhistan (Aqtobe)", "Asia\/Ashgabat": "Waqtiga Turkmenistaan (Ashgabat)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Waqtiga Buruney Daarusalaam", "Asia\/Calcutta": "Waqtiga Caadiga Ah ee Hindiya (Kolkaata)", "Asia\/Chita": "Waqtiyada Yakut (Jiita)", - "Asia\/Choibalsan": "Waqtiga Joybalsan", + "Asia\/Choibalsan": "Waqtiga Ulaanbaataar (Joybalsan)", "Asia\/Colombo": "Waqtiga Caadiga Ah ee Hindiya (Kolombo)", "Asia\/Damascus": "Waqtiga Bariga Yurub (Dimishiq)", "Asia\/Dhaka": "Waqtiga Bangledeesh (Dhaaka)", @@ -248,7 +248,7 @@ "Asia\/Jayapura": "Waqtiga Indoneeysiya (Jayabura)", "Asia\/Jerusalem": "Waqtiga Israaiil (Jeerusaalem)", "Asia\/Kabul": "Waqtiga Afggaanistaan (Kaabuul)", - "Asia\/Kamchatka": "Waqtiga Ruush (Kamkatka)", + "Asia\/Kamchatka": "Wakhtiga Petropavlovsk-Kamchatski (Kamkatka)", "Asia\/Karachi": "Waqtiga Bakistaan (Karaaji)", "Asia\/Katmandu": "Waqtiga Neebaal (Katmandu)", "Asia\/Khandyga": "Waqtiyada Yakut (Khandiyga)", @@ -361,7 +361,7 @@ "Europe\/Prague": "Waqtiga Bartamaha Yurub (Baraag)", "Europe\/Riga": "Waqtiga Bariga Yurub (Riija)", "Europe\/Rome": "Waqtiga Bartamaha Yurub (Rooma)", - "Europe\/Samara": "Waqtiga Ruush (Samara)", + "Europe\/Samara": "Wakhtiga Samara", "Europe\/San_Marino": "Waqtiga Bartamaha Yurub (San Mariino)", "Europe\/Sarajevo": "Waqtiga Bartamaha Yurub (Sarayeefo)", "Europe\/Saratov": "Waqtiga Moskow (Saratoof)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sq.json b/src/Symfony/Component/Intl/Resources/data/timezones/sq.json index d9fbeb931a22..4c1467a11b2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sq.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Ora e Argjentinës (Rio-Galegos)", "America\/Argentina\/Salta": "Ora e Argjentinës (Saltë)", "America\/Argentina\/San_Juan": "Ora e Argjentinës (San-Huan)", - "America\/Argentina\/San_Luis": "Ora e Argjentinës Perëndimore (Shën-Luis)", + "America\/Argentina\/San_Luis": "Ora e Argjentinës (Shën-Luis)", "America\/Argentina\/Tucuman": "Ora e Argjentinës (Tukuman)", "America\/Argentina\/Ushuaia": "Ora e Argjentinës (Ushuaja)", "America\/Aruba": "Ora e Atlantikut (Arubë)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Ora e Brunei-Durasalamit", "Asia\/Calcutta": "Ora standarde e Indisë (Kalkutë)", "Asia\/Chita": "Ora e Jakutskut (Çita)", - "Asia\/Choibalsan": "Ora e Çoibalsanit", + "Asia\/Choibalsan": "Ora e Ulan-Batorit (Çoibalsan)", "Asia\/Colombo": "Ora standarde e Indisë (Kolombo)", "Asia\/Damascus": "Ora e Evropës Lindore (Damask)", "Asia\/Dhaka": "Ora e Bangladeshit (Daka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sr.json b/src/Symfony/Component/Intl/Resources/data/timezones/sr.json index af7125b6a3f2..22eb5dbae88c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sr.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина време (Рио Гаљегос)", "America\/Argentina\/Salta": "Аргентина време (Салта)", "America\/Argentina\/San_Juan": "Аргентина време (Сан Хуан)", - "America\/Argentina\/San_Luis": "Западна Аргентина време (Сан Луи)", + "America\/Argentina\/San_Luis": "Аргентина време (Сан Луи)", "America\/Argentina\/Tucuman": "Аргентина време (Тукуман)", "America\/Argentina\/Ushuaia": "Аргентина време (Ушуаија)", "America\/Aruba": "Атлантско време (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Брунеј Дарусалум време", "Asia\/Calcutta": "Индијско стандардно време (Калкута)", "Asia\/Chita": "Јакутск време (Чита)", - "Asia\/Choibalsan": "Чојбалсан време", + "Asia\/Choibalsan": "Улан Батор време (Чојбалсан)", "Asia\/Colombo": "Индијско стандардно време (Коломбо)", "Asia\/Damascus": "Источноевропско време (Дамаск)", "Asia\/Dhaka": "Бангладеш време (Дака)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json index 2a143769805d..e08b07014a70 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sr_Latn.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina vreme (Rio Galjegos)", "America\/Argentina\/Salta": "Argentina vreme (Salta)", "America\/Argentina\/San_Juan": "Argentina vreme (San Huan)", - "America\/Argentina\/San_Luis": "Zapadna Argentina vreme (San Lui)", + "America\/Argentina\/San_Luis": "Argentina vreme (San Lui)", "America\/Argentina\/Tucuman": "Argentina vreme (Tukuman)", "America\/Argentina\/Ushuaia": "Argentina vreme (Ušuaija)", "America\/Aruba": "Atlantsko vreme (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunej Darusalum vreme", "Asia\/Calcutta": "Indijsko standardno vreme (Kalkuta)", "Asia\/Chita": "Jakutsk vreme (Čita)", - "Asia\/Choibalsan": "Čojbalsan vreme", + "Asia\/Choibalsan": "Ulan Bator vreme (Čojbalsan)", "Asia\/Colombo": "Indijsko standardno vreme (Kolombo)", "Asia\/Damascus": "Istočnoevropsko vreme (Damask)", "Asia\/Dhaka": "Bangladeš vreme (Daka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/su.json b/src/Symfony/Component/Intl/Resources/data/timezones/su.json new file mode 100644 index 000000000000..212ed3590fc1 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/timezones/su.json @@ -0,0 +1,243 @@ +{ + "Names": { + "Africa\/Abidjan": "Waktu Greenwich (Abidjan)", + "Africa\/Accra": "Waktu Greenwich (Accra)", + "Africa\/Algiers": "Waktu Éropa Tengah (Algiers)", + "Africa\/Bamako": "Waktu Greenwich (Bamako)", + "Africa\/Banjul": "Waktu Greenwich (Banjul)", + "Africa\/Bissau": "Waktu Greenwich (Bissau)", + "Africa\/Cairo": "Waktu Éropa Timur (Cairo)", + "Africa\/Casablanca": "Waktu Éropa Barat (Casablanca)", + "Africa\/Ceuta": "Waktu Éropa Tengah (Ceuta)", + "Africa\/Conakry": "Waktu Greenwich (Conakry)", + "Africa\/Dakar": "Waktu Greenwich (Dakar)", + "Africa\/El_Aaiun": "Waktu Éropa Barat (El Aaiun)", + "Africa\/Freetown": "Waktu Greenwich (Freetown)", + "Africa\/Lome": "Waktu Greenwich (Lome)", + "Africa\/Monrovia": "Waktu Greenwich (Monrovia)", + "Africa\/Nouakchott": "Waktu Greenwich (Nouakchott)", + "Africa\/Ouagadougou": "Waktu Greenwich (Ouagadougou)", + "Africa\/Sao_Tome": "Waktu Greenwich (Sao Tome)", + "Africa\/Tripoli": "Waktu Éropa Timur (Tripoli)", + "Africa\/Tunis": "Waktu Éropa Tengah (Tunis)", + "America\/Adak": "Amérika Sarikat (Adak)", + "America\/Anchorage": "Amérika Sarikat (Anchorage)", + "America\/Anguilla": "Waktu Atlantik (Anguilla)", + "America\/Antigua": "Waktu Atlantik (Antigua)", + "America\/Araguaina": "Brasil (Araguaina)", + "America\/Aruba": "Waktu Atlantik (Aruba)", + "America\/Bahia": "Brasil (Bahia)", + "America\/Bahia_Banderas": "Waktu Tengah (Bahia Banderas)", + "America\/Barbados": "Waktu Atlantik (Barbados)", + "America\/Belem": "Brasil (Belem)", + "America\/Belize": "Waktu Tengah (Belize)", + "America\/Blanc-Sablon": "Waktu Atlantik (Blanc-Sablon)", + "America\/Boa_Vista": "Brasil (Boa Vista)", + "America\/Bogota": "Waktu Kolombia (Bogota)", + "America\/Boise": "Waktu Pagunungan (Boise)", + "America\/Cambridge_Bay": "Waktu Pagunungan (Cambridge Bay)", + "America\/Campo_Grande": "Brasil (Campo Grande)", + "America\/Cancun": "Waktu Wétan (Cancun)", + "America\/Cayman": "Waktu Wétan (Cayman)", + "America\/Chicago": "Waktu Tengah (Chicago)", + "America\/Coral_Harbour": "Waktu Wétan (Atikokan)", + "America\/Costa_Rica": "Waktu Tengah (Costa Rica)", + "America\/Creston": "Waktu Pagunungan (Creston)", + "America\/Cuiaba": "Brasil (Cuiaba)", + "America\/Curacao": "Waktu Atlantik (Curacao)", + "America\/Danmarkshavn": "Waktu Greenwich (Danmarkshavn)", + "America\/Dawson": "Waktu Pasifik (Dawson)", + "America\/Dawson_Creek": "Waktu Pagunungan (Dawson Creek)", + "America\/Denver": "Waktu Pagunungan (Denver)", + "America\/Detroit": "Waktu Wétan (Detroit)", + "America\/Dominica": "Waktu Atlantik (Dominica)", + "America\/Edmonton": "Waktu Pagunungan (Edmonton)", + "America\/Eirunepe": "Brasil (Eirunepe)", + "America\/El_Salvador": "Waktu Tengah (El Salvador)", + "America\/Fort_Nelson": "Waktu Pagunungan (Fort Nelson)", + "America\/Fortaleza": "Brasil (Fortaleza)", + "America\/Glace_Bay": "Waktu Atlantik (Glace Bay)", + "America\/Goose_Bay": "Waktu Atlantik (Goose Bay)", + "America\/Grand_Turk": "Waktu Wétan (Grand Turk)", + "America\/Grenada": "Waktu Atlantik (Grenada)", + "America\/Guadeloupe": "Waktu Atlantik (Guadeloupe)", + "America\/Guatemala": "Waktu Tengah (Guatemala)", + "America\/Halifax": "Waktu Atlantik (Halifax)", + "America\/Indiana\/Knox": "Waktu Tengah (Knox, Indiana)", + "America\/Indiana\/Marengo": "Waktu Wétan (Marengo, Indiana)", + "America\/Indiana\/Petersburg": "Waktu Wétan (Petersburg, Indiana)", + "America\/Indiana\/Tell_City": "Waktu Tengah (Tell City, Indiana)", + "America\/Indiana\/Vevay": "Waktu Wétan (Vevay, Indiana)", + "America\/Indiana\/Vincennes": "Waktu Wétan (Vincennes, Indiana)", + "America\/Indiana\/Winamac": "Waktu Wétan (Winamac, Indiana)", + "America\/Indianapolis": "Waktu Wétan (Indianapolis)", + "America\/Inuvik": "Waktu Pagunungan (Inuvik)", + "America\/Iqaluit": "Waktu Wétan (Iqaluit)", + "America\/Jamaica": "Waktu Wétan (Jamaica)", + "America\/Juneau": "Amérika Sarikat (Juneau)", + "America\/Kentucky\/Monticello": "Waktu Wétan (Monticello, Kentucky)", + "America\/Kralendijk": "Waktu Atlantik (Kralendijk)", + "America\/Los_Angeles": "Waktu Pasifik (Los Angeles)", + "America\/Louisville": "Waktu Wétan (Louisville)", + "America\/Lower_Princes": "Waktu Atlantik (Lower Prince’s Quarter)", + "America\/Maceio": "Brasil (Maceio)", + "America\/Managua": "Waktu Tengah (Managua)", + "America\/Manaus": "Brasil (Manaus)", + "America\/Marigot": "Waktu Atlantik (Marigot)", + "America\/Martinique": "Waktu Atlantik (Martinique)", + "America\/Matamoros": "Waktu Tengah (Matamoros)", + "America\/Menominee": "Waktu Tengah (Menominee)", + "America\/Merida": "Waktu Tengah (Merida)", + "America\/Metlakatla": "Amérika Sarikat (Metlakatla)", + "America\/Mexico_City": "Waktu Tengah (Mexico City)", + "America\/Moncton": "Waktu Atlantik (Moncton)", + "America\/Monterrey": "Waktu Tengah (Monterrey)", + "America\/Montserrat": "Waktu Atlantik (Montserrat)", + "America\/Nassau": "Waktu Wétan (Nassau)", + "America\/New_York": "Waktu Wétan (New York)", + "America\/Nipigon": "Waktu Wétan (Nipigon)", + "America\/Nome": "Amérika Sarikat (Nome)", + "America\/Noronha": "Brasil (Noronha)", + "America\/North_Dakota\/Beulah": "Waktu Tengah (Beulah, North Dakota)", + "America\/North_Dakota\/Center": "Waktu Tengah (Center, North Dakota)", + "America\/North_Dakota\/New_Salem": "Waktu Tengah (New Salem, North Dakota)", + "America\/Ojinaga": "Waktu Pagunungan (Ojinaga)", + "America\/Panama": "Waktu Wétan (Panama)", + "America\/Pangnirtung": "Waktu Wétan (Pangnirtung)", + "America\/Phoenix": "Waktu Pagunungan (Phoenix)", + "America\/Port-au-Prince": "Waktu Wétan (Port-au-Prince)", + "America\/Port_of_Spain": "Waktu Atlantik (Port of Spain)", + "America\/Porto_Velho": "Brasil (Porto Velho)", + "America\/Puerto_Rico": "Waktu Atlantik (Puerto Rico)", + "America\/Rainy_River": "Waktu Tengah (Rainy River)", + "America\/Rankin_Inlet": "Waktu Tengah (Rankin Inlet)", + "America\/Recife": "Brasil (Recife)", + "America\/Regina": "Waktu Tengah (Regina)", + "America\/Resolute": "Waktu Tengah (Resolute)", + "America\/Rio_Branco": "Brasil (Rio Branco)", + "America\/Santarem": "Brasil (Santarem)", + "America\/Santo_Domingo": "Waktu Atlantik (Santo Domingo)", + "America\/Sao_Paulo": "Brasil (Sao Paulo)", + "America\/Sitka": "Amérika Sarikat (Sitka)", + "America\/St_Barthelemy": "Waktu Atlantik (St. Barthelemy)", + "America\/St_Kitts": "Waktu Atlantik (St. Kitts)", + "America\/St_Lucia": "Waktu Atlantik (St. Lucia)", + "America\/St_Thomas": "Waktu Atlantik (St. Thomas)", + "America\/St_Vincent": "Waktu Atlantik (St. Vincent)", + "America\/Swift_Current": "Waktu Tengah (Swift Current)", + "America\/Tegucigalpa": "Waktu Tengah (Tegucigalpa)", + "America\/Thule": "Waktu Atlantik (Thule)", + "America\/Thunder_Bay": "Waktu Wétan (Thunder Bay)", + "America\/Tijuana": "Waktu Pasifik (Tijuana)", + "America\/Toronto": "Waktu Wétan (Toronto)", + "America\/Tortola": "Waktu Atlantik (Tortola)", + "America\/Vancouver": "Waktu Pasifik (Vancouver)", + "America\/Whitehorse": "Waktu Pasifik (Whitehorse)", + "America\/Winnipeg": "Waktu Tengah (Winnipeg)", + "America\/Yakutat": "Amérika Sarikat (Yakutat)", + "America\/Yellowknife": "Waktu Pagunungan (Yellowknife)", + "Antarctica\/Troll": "Waktu Greenwich (Troll)", + "Arctic\/Longyearbyen": "Waktu Éropa Tengah (Longyearbyen)", + "Asia\/Amman": "Waktu Éropa Timur (Amman)", + "Asia\/Anadyr": "Rusia (Anadyr)", + "Asia\/Barnaul": "Rusia (Barnaul)", + "Asia\/Beirut": "Waktu Éropa Timur (Beirut)", + "Asia\/Calcutta": "India (Kolkata)", + "Asia\/Chita": "Rusia (Chita)", + "Asia\/Damascus": "Waktu Éropa Timur (Damascus)", + "Asia\/Famagusta": "Waktu Éropa Timur (Famagusta)", + "Asia\/Gaza": "Waktu Éropa Timur (Gaza)", + "Asia\/Hebron": "Waktu Éropa Timur (Hebron)", + "Asia\/Irkutsk": "Rusia (Irkutsk)", + "Asia\/Kamchatka": "Rusia (Kamchatka)", + "Asia\/Khandyga": "Rusia (Khandyga)", + "Asia\/Krasnoyarsk": "Rusia (Krasnoyarsk)", + "Asia\/Magadan": "Rusia (Magadan)", + "Asia\/Nicosia": "Waktu Éropa Timur (Nicosia)", + "Asia\/Novokuznetsk": "Rusia (Novokuznetsk)", + "Asia\/Novosibirsk": "Rusia (Novosibirsk)", + "Asia\/Omsk": "Rusia (Omsk)", + "Asia\/Sakhalin": "Rusia (Sakhalin)", + "Asia\/Shanghai": "Tiongkok (Shanghai)", + "Asia\/Srednekolymsk": "Rusia (Srednekolymsk)", + "Asia\/Tokyo": "Jepang (Tokyo)", + "Asia\/Tomsk": "Rusia (Tomsk)", + "Asia\/Urumqi": "Tiongkok (Urumqi)", + "Asia\/Ust-Nera": "Rusia (Ust-Nera)", + "Asia\/Vladivostok": "Rusia (Vladivostok)", + "Asia\/Yakutsk": "Rusia (Yakutsk)", + "Asia\/Yekaterinburg": "Rusia (Yekaterinburg)", + "Atlantic\/Bermuda": "Waktu Atlantik (Bermuda)", + "Atlantic\/Canary": "Waktu Éropa Barat (Canary)", + "Atlantic\/Faeroe": "Waktu Éropa Barat (Faroe)", + "Atlantic\/Madeira": "Waktu Éropa Barat (Madeira)", + "Atlantic\/Reykjavik": "Waktu Greenwich (Reykjavik)", + "Atlantic\/St_Helena": "Waktu Greenwich (St. Helena)", + "CST6CDT": "Waktu Tengah", + "EST5EDT": "Waktu Wétan", + "Etc\/GMT": "Waktu Greenwich", + "Etc\/UTC": "Waktu Universal Terkoordinasi", + "Europe\/Amsterdam": "Waktu Éropa Tengah (Amsterdam)", + "Europe\/Andorra": "Waktu Éropa Tengah (Andorra)", + "Europe\/Astrakhan": "Rusia (Astrakhan)", + "Europe\/Athens": "Waktu Éropa Timur (Athens)", + "Europe\/Belgrade": "Waktu Éropa Tengah (Belgrade)", + "Europe\/Berlin": "Waktu Éropa Tengah (Berlin)", + "Europe\/Bratislava": "Waktu Éropa Tengah (Bratislava)", + "Europe\/Brussels": "Waktu Éropa Tengah (Brussels)", + "Europe\/Bucharest": "Waktu Éropa Timur (Bucharest)", + "Europe\/Budapest": "Waktu Éropa Tengah (Budapest)", + "Europe\/Busingen": "Waktu Éropa Tengah (Busingen)", + "Europe\/Chisinau": "Waktu Éropa Timur (Chisinau)", + "Europe\/Copenhagen": "Waktu Éropa Tengah (Copenhagen)", + "Europe\/Dublin": "Waktu Greenwich (Dublin)", + "Europe\/Gibraltar": "Waktu Éropa Tengah (Gibraltar)", + "Europe\/Guernsey": "Waktu Greenwich (Guernsey)", + "Europe\/Helsinki": "Waktu Éropa Timur (Helsinki)", + "Europe\/Isle_of_Man": "Waktu Greenwich (Isle of Man)", + "Europe\/Jersey": "Waktu Greenwich (Jersey)", + "Europe\/Kaliningrad": "Waktu Éropa Timur (Kaliningrad)", + "Europe\/Kiev": "Waktu Éropa Timur (Kiev)", + "Europe\/Kirov": "Rusia (Kirov)", + "Europe\/Lisbon": "Waktu Éropa Barat (Lisbon)", + "Europe\/Ljubljana": "Waktu Éropa Tengah (Ljubljana)", + "Europe\/London": "Waktu Greenwich (London)", + "Europe\/Luxembourg": "Waktu Éropa Tengah (Luxembourg)", + "Europe\/Madrid": "Waktu Éropa Tengah (Madrid)", + "Europe\/Malta": "Waktu Éropa Tengah (Malta)", + "Europe\/Mariehamn": "Waktu Éropa Timur (Mariehamn)", + "Europe\/Monaco": "Waktu Éropa Tengah (Monaco)", + "Europe\/Moscow": "Rusia (Moscow)", + "Europe\/Oslo": "Waktu Éropa Tengah (Oslo)", + "Europe\/Paris": "Waktu Éropa Tengah (Paris)", + "Europe\/Podgorica": "Waktu Éropa Tengah (Podgorica)", + "Europe\/Prague": "Waktu Éropa Tengah (Prague)", + "Europe\/Riga": "Waktu Éropa Timur (Riga)", + "Europe\/Rome": "Waktu Éropa Tengah (Rome)", + "Europe\/Samara": "Rusia (Samara)", + "Europe\/San_Marino": "Waktu Éropa Tengah (San Marino)", + "Europe\/Sarajevo": "Waktu Éropa Tengah (Sarajevo)", + "Europe\/Saratov": "Rusia (Saratov)", + "Europe\/Skopje": "Waktu Éropa Tengah (Skopje)", + "Europe\/Sofia": "Waktu Éropa Timur (Sofia)", + "Europe\/Stockholm": "Waktu Éropa Tengah (Stockholm)", + "Europe\/Tallinn": "Waktu Éropa Timur (Tallinn)", + "Europe\/Tirane": "Waktu Éropa Tengah (Tirane)", + "Europe\/Ulyanovsk": "Rusia (Ulyanovsk)", + "Europe\/Uzhgorod": "Waktu Éropa Timur (Uzhgorod)", + "Europe\/Vaduz": "Waktu Éropa Tengah (Vaduz)", + "Europe\/Vatican": "Waktu Éropa Tengah (Vatican)", + "Europe\/Vienna": "Waktu Éropa Tengah (Vienna)", + "Europe\/Vilnius": "Waktu Éropa Timur (Vilnius)", + "Europe\/Volgograd": "Rusia (Volgograd)", + "Europe\/Warsaw": "Waktu Éropa Tengah (Warsaw)", + "Europe\/Zagreb": "Waktu Éropa Tengah (Zagreb)", + "Europe\/Zaporozhye": "Waktu Éropa Timur (Zaporozhye)", + "Europe\/Zurich": "Waktu Éropa Tengah (Zurich)", + "MST7MDT": "Waktu Pagunungan", + "PST8PDT": "Waktu Pasifik", + "Pacific\/Galapagos": "Waktu Galapagos", + "Pacific\/Honolulu": "Amérika Sarikat (Honolulu)" + }, + "Meta": [] +} diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sv.json b/src/Symfony/Component/Intl/Resources/data/timezones/sv.json index 5899c2ce3aeb..34181bfafe8f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sv.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "östargentinsk tid (Río Gallegos)", "America\/Argentina\/Salta": "östargentinsk tid (Salta)", "America\/Argentina\/San_Juan": "östargentinsk tid (San Juan)", - "America\/Argentina\/San_Luis": "västargentinsk tid (San Luis)", + "America\/Argentina\/San_Luis": "östargentinsk tid (San Luis)", "America\/Argentina\/Tucuman": "östargentinsk tid (Tucumán)", "America\/Argentina\/Ushuaia": "östargentinsk tid (Ushuaia)", "America\/Aruba": "nordamerikansk atlanttid (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Bruneitid", "Asia\/Calcutta": "indisk tid (Kolkata)", "Asia\/Chita": "Jakutsktid (Tjita)", - "Asia\/Choibalsan": "Tjojbalsantid", + "Asia\/Choibalsan": "Ulaanbaatartid (Tjojbalsan)", "Asia\/Colombo": "indisk tid (Colombo)", "Asia\/Damascus": "östeuropeisk tid (Damaskus)", "Asia\/Dhaka": "bangladeshisk tid (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sw.json b/src/Symfony/Component/Intl/Resources/data/timezones/sw.json index 4197c6283965..e026d966a490 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sw.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Saa za Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Saa za Argentina (Salta)", "America\/Argentina\/San_Juan": "Saa za Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Saa za Magharibi mwa Argentina (San Luis)", + "America\/Argentina\/San_Luis": "Saa za Argentina (San Luis)", "America\/Argentina\/Tucuman": "Saa za Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Saa za Argentina (Ushuaia)", "America\/Aruba": "Saa za Atlantiki (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Saa za Brunei Darussalam", "Asia\/Calcutta": "Saa Wastani za India (Kolkata)", "Asia\/Chita": "Saa za Yakutsk (Chita)", - "Asia\/Choibalsan": "Saa za Choibalsan", + "Asia\/Choibalsan": "Saa za Ulan Bator (Choibalsan)", "Asia\/Colombo": "Saa Wastani za India (Colombo)", "Asia\/Damascus": "Saa za Mashariki mwa Ulaya (Damascus)", "Asia\/Dhaka": "Saa za Bangladesh (Dhaka)", @@ -270,7 +270,7 @@ "Asia\/Pontianak": "Saa za Magharibi mwa Indonesia (Pontianak)", "Asia\/Pyongyang": "Saa za Korea (Pyongyang)", "Asia\/Qatar": "Saa za Uarabuni (Qatar)", - "Asia\/Qostanay": "Saa za Kazakhstan Mashariki (Qostanay)", + "Asia\/Qostanay": "Saa za Kazakhstan Mashariki (Kostanay)", "Asia\/Qyzylorda": "Saa za Kazakhstan Magharibi (Qyzylorda)", "Asia\/Rangoon": "Saa za Myanmar (Rangoon)", "Asia\/Riyadh": "Saa za Uarabuni (Riyadh)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json index f6cbeda18480..c9302de3fb76 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/sw_KE.json @@ -5,7 +5,7 @@ "America\/Argentina\/Rio_Gallegos": "Saa za Ajentina (Rio Gallegos)", "America\/Argentina\/Salta": "Saa za Ajentina (Salta)", "America\/Argentina\/San_Juan": "Saa za Ajentina (San Juan)", - "America\/Argentina\/San_Luis": "Saa za Magharibi mwa Ajentina (San Luis)", + "America\/Argentina\/San_Luis": "Saa za Ajentina (San Luis)", "America\/Argentina\/Tucuman": "Saa za Ajentina (Tucuman)", "America\/Argentina\/Ushuaia": "Saa za Ajentina (Ushuaia)", "America\/Asuncion": "Saa za Paragwai (Asuncion)", @@ -48,6 +48,7 @@ "Asia\/Atyrau": "Saa za Kazakistani Magharibi (Atyrau)", "Asia\/Baku": "Saa za Azabajani (Baku)", "Asia\/Calcutta": "Saa za Wastani za India (Kolkata)", + "Asia\/Choibalsan": "Saa za Ulaanbataar (Choibalsan)", "Asia\/Colombo": "Saa za Wastani za India (Kolombo)", "Asia\/Dhaka": "Saa za Bangladeshi (Dhaka)", "Asia\/Dubai": "Saa za Wastani za Ghuba (Dubai)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ta.json b/src/Symfony/Component/Intl/Resources/data/timezones/ta.json index 2dd2be964324..6a50919d66da 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ta.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "அர்ஜென்டினா நேரம் (ரியோ கேலெகோஸ்)", "America\/Argentina\/Salta": "அர்ஜென்டினா நேரம் (சால்டா)", "America\/Argentina\/San_Juan": "அர்ஜென்டினா நேரம் (சான் ஜுவான்)", - "America\/Argentina\/San_Luis": "மேற்கத்திய அர்ஜென்டினா நேரம் (சான் லூயிஸ்)", + "America\/Argentina\/San_Luis": "அர்ஜென்டினா நேரம் (சான் லூயிஸ்)", "America\/Argentina\/Tucuman": "அர்ஜென்டினா நேரம் (டுகுமன்)", "America\/Argentina\/Ushuaia": "அர்ஜென்டினா நேரம் (உஷுவாயா)", "America\/Aruba": "அட்லாண்டிக் நேரம் (அரூபா)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "புருனே டருஸ்ஸலாம் நேரம்", "Asia\/Calcutta": "இந்திய நிலையான நேரம் (கொல்கத்தா)", "Asia\/Chita": "யகுட்ஸ்க் நேரம் (சிடா)", - "Asia\/Choibalsan": "சோய்பால்சன் நேரம் (சோய்பால்சான்)", + "Asia\/Choibalsan": "உலன் பாடர் நேரம் (சோய்பால்சான்)", "Asia\/Colombo": "இந்திய நிலையான நேரம் (கொழும்பு)", "Asia\/Damascus": "கிழக்கத்திய ஐரோப்பிய நேரம் (டமாஸ்கஸ்)", "Asia\/Dhaka": "வங்கதேச நேரம் (டாக்கா)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/te.json b/src/Symfony/Component/Intl/Resources/data/timezones/te.json index 2b56da9ba787..c8a1834a5454 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/te.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/te.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "అర్జెంటీనా సమయం (రియో గల్లేగోస్)", "America\/Argentina\/Salta": "అర్జెంటీనా సమయం (సాల్టా)", "America\/Argentina\/San_Juan": "అర్జెంటీనా సమయం (శాన్ జ్యూన్)", - "America\/Argentina\/San_Luis": "పశ్చిమ అర్జెంటీనా సమయం (శాన్ లూయిస్)", + "America\/Argentina\/San_Luis": "అర్జెంటీనా సమయం (శాన్ లూయిస్)", "America\/Argentina\/Tucuman": "అర్జెంటీనా సమయం (టుకుమన్)", "America\/Argentina\/Ushuaia": "అర్జెంటీనా సమయం (ఉష్యూయ)", "America\/Aruba": "అట్లాంటిక్ సమయం (అరుబా)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "బ్రూనే దరుసలామ్ సమయం (బ్రూనై)", "Asia\/Calcutta": "భారతదేశ సమయం (కోల్‌కతా)", "Asia\/Chita": "యాకుట్స్క్ సమయం (చితా)", - "Asia\/Choibalsan": "చోయిబల్సాన్ సమయం (చోయిబాల్సన్)", + "Asia\/Choibalsan": "ఉలన్ బతోర్ సమయం (చోయిబాల్సన్)", "Asia\/Colombo": "భారతదేశ సమయం (కొలంబో)", "Asia\/Damascus": "తూర్పు యూరోపియన్ సమయం (డమాస్కస్)", "Asia\/Dhaka": "బంగ్లాదేశ్ సమయం (ఢాకా)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/th.json b/src/Symfony/Component/Intl/Resources/data/timezones/th.json index 5dc3ed1c84ad..c11fc2d8417a 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/th.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/th.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "เวลาอาร์เจนตินา (ริโอกาลเลกอส)", "America\/Argentina\/Salta": "เวลาอาร์เจนตินา (ซัลตา)", "America\/Argentina\/San_Juan": "เวลาอาร์เจนตินา (ซานฮวน)", - "America\/Argentina\/San_Luis": "เวลาตะวันตกของอาร์เจนตินา (ซันลูอิส)", + "America\/Argentina\/San_Luis": "เวลาอาร์เจนตินา (ซันลูอิส)", "America\/Argentina\/Tucuman": "เวลาอาร์เจนตินา (ทูคูแมน)", "America\/Argentina\/Ushuaia": "เวลาอาร์เจนตินา (อูชูเอีย)", "America\/Aruba": "เวลาแอตแลนติก (อารูบา)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "เวลาบรูไนดารุสซาลาม", "Asia\/Calcutta": "เวลาอินเดีย (โกลกาตา)", "Asia\/Chita": "เวลายาคุตสค์ (ชิตา)", - "Asia\/Choibalsan": "เวลาชอยปาลชาน (ชอยบาลซาน)", + "Asia\/Choibalsan": "เวลาอูลานบาตอร์ (ชอยบาลซาน)", "Asia\/Colombo": "เวลาอินเดีย (โคลัมโบ)", "Asia\/Damascus": "เวลายุโรปตะวันออก (ดามัสกัส)", "Asia\/Dhaka": "เวลาบังกลาเทศ (ดากา)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tk.json b/src/Symfony/Component/Intl/Resources/data/timezones/tk.json index 23a01cb2b604..ac81ee4d39da 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tk.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina wagty (Rio-Galegos)", "America\/Argentina\/Salta": "Argentina wagty (Salta)", "America\/Argentina\/San_Juan": "Argentina wagty (San-Huan)", - "America\/Argentina\/San_Luis": "Günbatar Argentina wagty (San-Luis)", + "America\/Argentina\/San_Luis": "Argentina wagty (San-Luis)", "America\/Argentina\/Tucuman": "Argentina wagty (Tukuman)", "America\/Argentina\/Ushuaia": "Argentina wagty (Uşuaýa)", "America\/Aruba": "Atlantik wagty (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Bruneý-Darussalam wagty", "Asia\/Calcutta": "Hindistan standart wagty (Kalkutta)", "Asia\/Chita": "Ýakutsk wagty (Çita)", - "Asia\/Choibalsan": "Çoýbalsan wagty", + "Asia\/Choibalsan": "Ulan-Bator wagty (Çoýbalsan)", "Asia\/Colombo": "Hindistan standart wagty (Kolombo)", "Asia\/Damascus": "Gündogar Ýewropa wagty (Damask)", "Asia\/Dhaka": "Bangladeş wagty (Dakka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/to.json b/src/Symfony/Component/Intl/Resources/data/timezones/to.json index a3e7aa8cd7a0..eab8a15b6bd9 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/to.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/to.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "houa fakaʻasenitina (Rio Gallegos)", "America\/Argentina\/Salta": "houa fakaʻasenitina (Salta)", "America\/Argentina\/San_Juan": "houa fakaʻasenitina (San Juan)", - "America\/Argentina\/San_Luis": "houa fakaʻasenitina-hihifo (San Luis)", + "America\/Argentina\/San_Luis": "houa fakaʻasenitina (San Luis)", "America\/Argentina\/Tucuman": "houa fakaʻasenitina (Tucuman)", "America\/Argentina\/Ushuaia": "houa fakaʻasenitina (Ushuaia)", "America\/Aruba": "houa fakaʻamelika-tokelau ʻatalanitiki (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "houa fakapulunei (Brunei)", "Asia\/Calcutta": "houa fakaʻinitia (Kolkata)", "Asia\/Chita": "houa fakalūsia-ʻiākutisiki (Chita)", - "Asia\/Choibalsan": "houa fakakoipalisani (Choibalsan)", + "Asia\/Choibalsan": "houa fakaʻulānipātā (Choibalsan)", "Asia\/Colombo": "houa fakaʻinitia (Colombo)", "Asia\/Damascus": "houa fakaʻeulope-hahake (Damascus)", "Asia\/Dhaka": "houa fakapāngilātesi (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/tr.json b/src/Symfony/Component/Intl/Resources/data/timezones/tr.json index b16bbca825e9..0dffaa0f37eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/tr.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Arjantin Saati (Rio Gallegos)", "America\/Argentina\/Salta": "Arjantin Saati (Salta)", "America\/Argentina\/San_Juan": "Arjantin Saati (San Juan)", - "America\/Argentina\/San_Luis": "Batı Arjantin Saati (San Luis)", + "America\/Argentina\/San_Luis": "Arjantin Saati (San Luis)", "America\/Argentina\/Tucuman": "Arjantin Saati (Tucuman)", "America\/Argentina\/Ushuaia": "Arjantin Saati (Ushuaia)", "America\/Aruba": "Atlantik Saati (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Brunei Darü’s-Selam Saati", "Asia\/Calcutta": "Hindistan Standart Saati (Kalküta)", "Asia\/Chita": "Yakutsk Saati (Çita)", - "Asia\/Choibalsan": "Çoybalsan Saati", + "Asia\/Choibalsan": "Ulan Batur Saati (Çoybalsan)", "Asia\/Colombo": "Hindistan Standart Saati (Kolombo)", "Asia\/Damascus": "Doğu Avrupa Saati (Şam)", "Asia\/Dhaka": "Bangladeş Saati (Dakka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ug.json b/src/Symfony/Component/Intl/Resources/data/timezones/ug.json index a6efe03986b4..2a70f3bc8e84 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ug.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ئارگېنتىنا ۋاقتى (Rio Gallegos)", "America\/Argentina\/Salta": "ئارگېنتىنا ۋاقتى (Salta)", "America\/Argentina\/San_Juan": "ئارگېنتىنا ۋاقتى (San Juan)", - "America\/Argentina\/San_Luis": "غەربىي ئارگېنتىنا ۋاقتى (San Luis)", + "America\/Argentina\/San_Luis": "ئارگېنتىنا ۋاقتى (San Luis)", "America\/Argentina\/Tucuman": "ئارگېنتىنا ۋاقتى (Tucuman)", "America\/Argentina\/Ushuaia": "ئارگېنتىنا ۋاقتى (Ushuaia)", "America\/Aruba": "ئاتلانتىك ئوكيان ۋاقتى (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "بىرۇنىي دارۇسسالام ۋاقتى (Brunei)", "Asia\/Calcutta": "ھىندىستان ئۆلچەملىك ۋاقتى (Kolkata)", "Asia\/Chita": "ياكۇتسك ۋاقتى (Chita)", - "Asia\/Choibalsan": "چويبالسان ۋاقتى (Choibalsan)", + "Asia\/Choibalsan": "ئۇلانباتور ۋاقتى (Choibalsan)", "Asia\/Colombo": "ھىندىستان ئۆلچەملىك ۋاقتى (Colombo)", "Asia\/Damascus": "شەرقىي ياۋروپا ۋاقتى (Damascus)", "Asia\/Dhaka": "باڭلادىش ۋاقتى (Dhaka)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uk.json b/src/Symfony/Component/Intl/Resources/data/timezones/uk.json index 82f10988f800..1391f92db7d3 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uk.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "за аргентинським часом (Ріо-Ґальєґос)", "America\/Argentina\/Salta": "за аргентинським часом (Сальта)", "America\/Argentina\/San_Juan": "за аргентинським часом (Сан-Хуан)", - "America\/Argentina\/San_Luis": "за західноаргентинським часом (Сан-Луїс)", + "America\/Argentina\/San_Luis": "за аргентинським часом (Сан-Луїс)", "America\/Argentina\/Tucuman": "за аргентинським часом (Тукуман)", "America\/Argentina\/Ushuaia": "за аргентинським часом (Ушуая)", "America\/Aruba": "за атлантичним часом (Аруба)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "за часом у Брунеї (Бруней)", "Asia\/Calcutta": "за індійським стандартним часом (Колката)", "Asia\/Chita": "за якутським часом (Чита)", - "Asia\/Choibalsan": "за часом у Чойбалсані", + "Asia\/Choibalsan": "за часом в Улан-Баторі (Чойбалсан)", "Asia\/Colombo": "за індійським стандартним часом (Коломбо)", "Asia\/Damascus": "за східноєвропейським часом (Дамаск)", "Asia\/Dhaka": "за часом у Бангладеш (Дакка)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ur.json b/src/Symfony/Component/Intl/Resources/data/timezones/ur.json index 89ef4b379ad8..560ae34a2b8e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ur.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "ارجنٹینا کا وقت (ریو گالیگوس)", "America\/Argentina\/Salta": "ارجنٹینا کا وقت (سالٹا)", "America\/Argentina\/San_Juan": "ارجنٹینا کا وقت (سان جوآن)", - "America\/Argentina\/San_Luis": "مغربی ارجنٹینا کا وقت (سان لوئس)", + "America\/Argentina\/San_Luis": "ارجنٹینا کا وقت (سان لوئس)", "America\/Argentina\/Tucuman": "ارجنٹینا کا وقت (ٹوکومین)", "America\/Argentina\/Ushuaia": "ارجنٹینا کا وقت (اوشوآئیا)", "America\/Aruba": "اٹلانٹک ٹائم (اروبا)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "برونئی دارالسلام ٹائم", "Asia\/Calcutta": "ہندوستان کا معیاری وقت (کولکاتا)", "Asia\/Chita": "یکوتسک ٹائم (چیتا)", - "Asia\/Choibalsan": "کوئبلسان ٹائم (چوئبالسان)", + "Asia\/Choibalsan": "یولان بیتور ٹائم (چوئبالسان)", "Asia\/Colombo": "ہندوستان کا معیاری وقت (کولمبو)", "Asia\/Damascus": "مشرقی یورپ کا وقت (دمشق)", "Asia\/Dhaka": "بنگلہ دیش کا وقت (ڈھاکہ)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json index 4fd5a2f1da95..17f21d7c0d76 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/ur_IN.json @@ -16,7 +16,6 @@ "Africa\/Ouagadougou": "گرین وچ مین ٹائم (اؤگاڈؤگوو)", "Africa\/Sao_Tome": "گرین وچ مین ٹائم (ساؤ ٹوم)", "Africa\/Tunis": "وسطی یورپ کا وقت (تیونس)", - "America\/Argentina\/San_Luis": "مغربی ارجنٹینا ٹائم (سان لوئس)", "America\/Asuncion": "پیراگوئے ٹائم (اسنسیئن)", "America\/Boa_Vista": "ایمیزون ٹائم (بوآ وسٹا)", "America\/Cambridge_Bay": "ماؤنٹین ٹائم (کیمبرج بے)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uz.json b/src/Symfony/Component/Intl/Resources/data/timezones/uz.json index 89bfeb2fb025..90bbceee8dfb 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uz.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina vaqti (Rio-Galyegos)", "America\/Argentina\/Salta": "Argentina vaqti (Salta)", "America\/Argentina\/San_Juan": "Argentina vaqti (San-Xuan)", - "America\/Argentina\/San_Luis": "Gʻarbiy Argentina vaqti (San-Luis)", + "America\/Argentina\/San_Luis": "Argentina vaqti (San-Luis)", "America\/Argentina\/Tucuman": "Argentina vaqti (Tukuman)", "America\/Argentina\/Ushuaia": "Argentina vaqti (Ushuaya)", "America\/Aruba": "Atlantika vaqti (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Bruney-Dorussalom vaqti", "Asia\/Calcutta": "Hindiston standart vaqti (Kalkutta)", "Asia\/Chita": "Yakutsk vaqti (Chita)", - "Asia\/Choibalsan": "Choybalsan vaqti", + "Asia\/Choibalsan": "Ulan-Bator vaqti (Choybalsan)", "Asia\/Colombo": "Hindiston standart vaqti (Kolombo)", "Asia\/Damascus": "Sharqiy Yevropa vaqti (Damashq)", "Asia\/Dhaka": "Bangladesh vaqti (Dakka)", @@ -270,7 +270,7 @@ "Asia\/Pontianak": "Gʻarbiy Indoneziya vaqti (Pontianak)", "Asia\/Pyongyang": "Koreya vaqti (Pxenyan)", "Asia\/Qatar": "Saudiya Arabistoni vaqti (Qatar)", - "Asia\/Qostanay": "Sharqiy Qozogʻiston vaqti (Qostanay)", + "Asia\/Qostanay": "Sharqiy Qozogʻiston vaqti (Kustanay)", "Asia\/Qyzylorda": "Gʻarbiy Qozogʻiston vaqti (Qizilo‘rda)", "Asia\/Rangoon": "Myanma vaqti (Rangun)", "Asia\/Riyadh": "Saudiya Arabistoni vaqti (Ar-Riyod)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json index 6231cd933bbb..09d7870b206b 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/uz_Cyrl.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Аргентина вақти (Rio-Galyegos)", "America\/Argentina\/Salta": "Аргентина вақти (Salta)", "America\/Argentina\/San_Juan": "Аргентина вақти (San-Xuan)", - "America\/Argentina\/San_Luis": "Ғарбий Аргентина вақти (San-Luis)", + "America\/Argentina\/San_Luis": "Аргентина вақти (San-Luis)", "America\/Argentina\/Tucuman": "Аргентина вақти (Tukuman)", "America\/Argentina\/Ushuaia": "Аргентина вақти (Ushuaya)", "America\/Aruba": "Атлантика вақти (Aruba)", @@ -227,7 +227,7 @@ "Asia\/Brunei": "Бруней Даруссалом вақти (Bruney)", "Asia\/Calcutta": "Ҳиндистон вақти (Kolkata)", "Asia\/Chita": "Якутск вақти (Chita)", - "Asia\/Choibalsan": "Чойбалсан вақти (Choybalsan)", + "Asia\/Choibalsan": "Улан-Батор вақти (Choybalsan)", "Asia\/Colombo": "Ҳиндистон вақти (Kolombo)", "Asia\/Damascus": "Шарқий Европа вақти (Damashq)", "Asia\/Dhaka": "Бангладеш вақти (Dakka)", @@ -266,7 +266,7 @@ "Asia\/Pontianak": "Ғарбий Индонезия вақти (Pontianak)", "Asia\/Pyongyang": "Корея вақти (Pxenyan)", "Asia\/Qatar": "Арабистон вақти (Qatar)", - "Asia\/Qostanay": "Шарқий Қозоғистон вақти (Qostanay)", + "Asia\/Qostanay": "Шарқий Қозоғистон вақти (Kustanay)", "Asia\/Qyzylorda": "Ғарбий Қозоғистон вақти (Qizilo‘rda)", "Asia\/Rangoon": "Мьянма вақти (Rangun)", "Asia\/Riyadh": "Арабистон вақти (Ar-Riyod)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/vi.json b/src/Symfony/Component/Intl/Resources/data/timezones/vi.json index 78fc20b7dd40..e85ddd97ec79 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/vi.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Giờ Argentina (Rio Gallegos)", "America\/Argentina\/Salta": "Giờ Argentina (Salta)", "America\/Argentina\/San_Juan": "Giờ Argentina (San Juan)", - "America\/Argentina\/San_Luis": "Giờ miền tây Argentina (San Luis)", + "America\/Argentina\/San_Luis": "Giờ Argentina (San Luis)", "America\/Argentina\/Tucuman": "Giờ Argentina (Tucuman)", "America\/Argentina\/Ushuaia": "Giờ Argentina (Ushuaia)", "America\/Aruba": "Giờ Đại Tây Dương (Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Giờ Brunei Darussalam", "Asia\/Calcutta": "Giờ Chuẩn Ấn Độ (Kolkata)", "Asia\/Chita": "Giờ Yakutsk (Chita)", - "Asia\/Choibalsan": "Giờ Choibalsan", + "Asia\/Choibalsan": "Giờ Ulan Bator (Choibalsan)", "Asia\/Colombo": "Giờ Chuẩn Ấn Độ (Colombo)", "Asia\/Damascus": "Giờ Đông Âu (Damascus)", "Asia\/Dhaka": "Giờ Bangladesh (Dhaka)", @@ -419,7 +419,7 @@ "Pacific\/Midway": "Giờ Samoa (Midway)", "Pacific\/Nauru": "Giờ Nauru", "Pacific\/Niue": "Giờ Niue", - "Pacific\/Norfolk": "Giờ đảo Norfolk", + "Pacific\/Norfolk": "Giờ Đảo Norfolk", "Pacific\/Noumea": "Giờ New Caledonia (Noumea)", "Pacific\/Pago_Pago": "Giờ Samoa (Pago Pago)", "Pacific\/Palau": "Giờ Palau", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/yo.json b/src/Symfony/Component/Intl/Resources/data/timezones/yo.json index 93d927afe758..ccac698f2c2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/yo.json @@ -52,7 +52,7 @@ "Africa\/Tripoli": "Àkókò Ìhà Ìlà Oòrùn Europe (Tripoli)", "Africa\/Tunis": "Àkókò Àárin Europe (Tunis)", "Africa\/Windhoek": "Central Africa Time (Windhoek)", - "America\/Adak": "Ìgbà Orílẹ̀-èdè Amẹrikà (Adak)", + "America\/Adak": "Àkókò Hawaii-Aleutian (Adak)", "America\/Anchorage": "Alaska Time (Anchorage)", "America\/Anguilla": "Àkókò Àtìláńtíìkì (Anguilla)", "America\/Antigua": "Àkókò Àtìláńtíìkì (Antigua)", @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Argentina Time (Rio Gallegos)", "America\/Argentina\/Salta": "Argentina Time (Salta)", "America\/Argentina\/San_Juan": "Argentina Time (San Juan)", - "America\/Argentina\/San_Luis": "Western Argentina Time (San Luis)", + "America\/Argentina\/San_Luis": "Argentina Time (San Luis)", "America\/Argentina\/Tucuman": "Argentina Time (Tucuman)", "America\/Argentina\/Ushuaia": "Argentina Time (Ushuaia)", "America\/Aruba": "Àkókò Àtìláńtíìkì (Aruba)", @@ -84,7 +84,7 @@ "America\/Cayenne": "French Guiana Time (Cayenne)", "America\/Cayman": "Àkókò ìhà ìlà oòrùn (Cayman)", "America\/Chicago": "àkókò àárín gbùngbùn (Chicago)", - "America\/Chihuahua": "Ìgbà Orílẹ́ède Mesiko (Chihuahua)", + "America\/Chihuahua": "Àkókò Pásífíìkì Mẹ́ṣíkò (Chihuahua)", "America\/Coral_Harbour": "Àkókò ìhà ìlà oòrùn (Atikokan)", "America\/Cordoba": "Argentina Time (Cordoba)", "America\/Costa_Rica": "àkókò àárín gbùngbùn (Costa Rica)", @@ -103,7 +103,7 @@ "America\/Fort_Nelson": "Àkókò òkè (Fort Nelson)", "America\/Fortaleza": "Brasilia Time (Fortaleza)", "America\/Glace_Bay": "Àkókò Àtìláńtíìkì (Glace Bay)", - "America\/Godthab": "Ìgbà Orílẹ́ède Gerelandi (Nuuk)", + "America\/Godthab": "Àkókò Ìwọ̀ oorùn Greenland (Nuuk)", "America\/Goose_Bay": "Àkókò Àtìláńtíìkì (Goose Bay)", "America\/Grand_Turk": "Àkókò ìhà ìlà oòrùn (Grand Turk)", "America\/Grenada": "Àkókò Àtìláńtíìkì (Grenada)", @@ -112,8 +112,8 @@ "America\/Guayaquil": "Ecuador Time (Guayaquil)", "America\/Guyana": "Guyana Time", "America\/Halifax": "Àkókò Àtìláńtíìkì (Halifax)", - "America\/Havana": "Ìgbà Orílẹ́ède Kúbà (Havana)", - "America\/Hermosillo": "Ìgbà Orílẹ́ède Mesiko (Hermosillo)", + "America\/Havana": "Àkókò Kúbà (Havana)", + "America\/Hermosillo": "Àkókò Pásífíìkì Mẹ́ṣíkò (Hermosillo)", "America\/Indiana\/Knox": "àkókò àárín gbùngbùn (Knox, Indiana)", "America\/Indiana\/Marengo": "Àkókò ìhà ìlà oòrùn (Marengo, Indiana)", "America\/Indiana\/Petersburg": "Àkókò ìhà ìlà oòrùn (Petersburg, Indiana)", @@ -140,13 +140,13 @@ "America\/Marigot": "Àkókò Àtìláńtíìkì (Marigot)", "America\/Martinique": "Àkókò Àtìláńtíìkì (Martinique)", "America\/Matamoros": "àkókò àárín gbùngbùn (Matamoros)", - "America\/Mazatlan": "Ìgbà Orílẹ́ède Mesiko (Mazatlan)", + "America\/Mazatlan": "Àkókò Pásífíìkì Mẹ́ṣíkò (Mazatlan)", "America\/Mendoza": "Argentina Time (Mendoza)", "America\/Menominee": "àkókò àárín gbùngbùn (Menominee)", "America\/Merida": "àkókò àárín gbùngbùn (Merida)", "America\/Metlakatla": "Alaska Time (Metlakatla)", "America\/Mexico_City": "àkókò àárín gbùngbùn (Mexico City)", - "America\/Miquelon": "Ìgbà Orílẹ́ède Pẹẹri ati mikuloni (Miquelon)", + "America\/Miquelon": "Àkókò Pierre & Miquelon", "America\/Moncton": "Àkókò Àtìláńtíìkì (Moncton)", "America\/Monterrey": "àkókò àárín gbùngbùn (Monterrey)", "America\/Montevideo": "Uruguay Time (Montevideo)", @@ -176,15 +176,15 @@ "America\/Regina": "àkókò àárín gbùngbùn (Regina)", "America\/Resolute": "àkókò àárín gbùngbùn (Resolute)", "America\/Rio_Branco": "Ìgbà Orilẹ̀-èdè Bàràsílì (Rio Branco)", - "America\/Santa_Isabel": "Ìgbà Orílẹ́ède Mesiko (Santa Isabel)", + "America\/Santa_Isabel": "Àkókò Apá Ìwọ̀ Oorùn Mẹ́ṣíkò (Santa Isabel)", "America\/Santarem": "Brasilia Time (Santarem)", "America\/Santiago": "Chile Time (Santiago)", "America\/Santo_Domingo": "Àkókò Àtìláńtíìkì (Santo Domingo)", "America\/Sao_Paulo": "Brasilia Time (Sao Paulo)", - "America\/Scoresbysund": "Ìgbà Orílẹ́ède Gerelandi (Ittoqqortoormiit)", + "America\/Scoresbysund": "Àkókò Ìlà oorùn Greenland (Ittoqqortoormiit)", "America\/Sitka": "Alaska Time (Sitka)", "America\/St_Barthelemy": "Àkókò Àtìláńtíìkì (St. Barthelemy)", - "America\/St_Johns": "Ìgbà Orílẹ́ède Kánádà (St. John’s)", + "America\/St_Johns": "Àkókò Newfoundland (St. John’s)", "America\/St_Kitts": "Àkókò Àtìláńtíìkì (St. Kitts)", "America\/St_Lucia": "Àkókò Àtìláńtíìkì (St. Lucia)", "America\/St_Thomas": "Àkókò Àtìláńtíìkì (St. Thomas)", @@ -224,18 +224,18 @@ "Asia\/Baghdad": "Arabian Time (Baghdad)", "Asia\/Bahrain": "Arabian Time (Bahrain)", "Asia\/Baku": "Azerbaijan Time (Baku)", - "Asia\/Bangkok": "Ìgbà Orílẹ́ède Tailandi (Bangkok)", + "Asia\/Bangkok": "Àkókò Indochina (Bangkok)", "Asia\/Barnaul": "Ìgbà Orílẹ́ède Rọṣia (Barnaul)", "Asia\/Beirut": "Àkókò Ìhà Ìlà Oòrùn Europe (Beirut)", "Asia\/Bishkek": "Kyrgyzstan Time (Bishkek)", "Asia\/Brunei": "Brunei Darussalam Time", "Asia\/Calcutta": "India Standard Time (Kolkata)", "Asia\/Chita": "Yakutsk Time (Chita)", - "Asia\/Choibalsan": "Choibalsan Time", + "Asia\/Choibalsan": "Ulaanbaatar Time (Choibalsan)", "Asia\/Colombo": "India Standard Time (Colombo)", "Asia\/Damascus": "Àkókò Ìhà Ìlà Oòrùn Europe (Damascus)", "Asia\/Dhaka": "Bangladesh Time (Dhaka)", - "Asia\/Dili": "Ìgbà Orílẹ́ède ÌlàOòrùn Tímọ̀ (Dili)", + "Asia\/Dili": "Àkókò Ìlà oorùn Timor (Dili)", "Asia\/Dubai": "Gulf Standard Time [translation hint: translate as just \"Gulf Time\"] (Dubai)", "Asia\/Dushanbe": "Tajikistan Time (Dushanbe)", "Asia\/Famagusta": "Àkókò Ìhà Ìlà Oòrùn Europe (Famagusta)", @@ -244,7 +244,7 @@ "Asia\/Hong_Kong": "Hong Kong Time", "Asia\/Hovd": "Hovd Time", "Asia\/Irkutsk": "Irkutsk Time", - "Asia\/Jakarta": "Ìgbà Orílẹ́ède Indonesia (Jakarta)", + "Asia\/Jakarta": "Àkókò Ìwọ̀ oorùn Indonesia (Jakarta)", "Asia\/Jayapura": "Eastern Indonesia Time (Jayapura)", "Asia\/Jerusalem": "Israel Time (Jerusalem)", "Asia\/Kabul": "Afghanistan Time (Kabul)", @@ -256,8 +256,9 @@ "Asia\/Kuala_Lumpur": "Malaysia Time (Kuala Lumpur)", "Asia\/Kuching": "Malaysia Time (Kuching)", "Asia\/Kuwait": "Arabian Time (Kuwait)", + "Asia\/Macau": "Àkókò Ṣáínà (Macao)", "Asia\/Magadan": "Magadan Time", - "Asia\/Makassar": "Ìgbà Orílẹ́ède Indonesia (Makassar)", + "Asia\/Makassar": "Àkókò Ààrin Gbùngbùn Indonesia (Makassar)", "Asia\/Manila": "Philippine Time (Manila)", "Asia\/Muscat": "Gulf Standard Time [translation hint: translate as just \"Gulf Time\"] (Muscat)", "Asia\/Nicosia": "Àkókò Ìhà Ìlà Oòrùn Europe (Nicosia)", @@ -265,19 +266,19 @@ "Asia\/Novosibirsk": "Novosibirsk Time", "Asia\/Omsk": "Omsk Time", "Asia\/Oral": "West Kazakhstan Time (Oral)", - "Asia\/Phnom_Penh": "Ìgbà Orílẹ́ède Kàmùbódíà (Phnom Penh)", - "Asia\/Pontianak": "Ìgbà Orílẹ́ède Indonesia (Pontianak)", + "Asia\/Phnom_Penh": "Àkókò Indochina (Phnom Penh)", + "Asia\/Pontianak": "Àkókò Ìwọ̀ oorùn Indonesia (Pontianak)", "Asia\/Pyongyang": "Korean Time (Pyongyang)", "Asia\/Qatar": "Arabian Time (Qatar)", "Asia\/Qostanay": "East Kazakhstan Time (Qostanay)", "Asia\/Qyzylorda": "West Kazakhstan Time (Qyzylorda)", "Asia\/Rangoon": "Myanmar Time (Yangon)", "Asia\/Riyadh": "Arabian Time (Riyadh)", - "Asia\/Saigon": "Ìgbà Orílẹ́ède Fẹtinami (Ho Chi Minh)", + "Asia\/Saigon": "Àkókò Indochina (Ho Chi Minh)", "Asia\/Sakhalin": "Sakhalin Time", "Asia\/Samarkand": "Uzbekistan Time (Samarkand)", "Asia\/Seoul": "Korean Time (Seoul)", - "Asia\/Shanghai": "Ìgbà Orilẹ̀-èdè Ṣáínà (Shanghai)", + "Asia\/Shanghai": "Àkókò Ṣáínà (Shanghai)", "Asia\/Singapore": "Singapore Standard Time", "Asia\/Srednekolymsk": "Magadan Time (Srednekolymsk)", "Asia\/Taipei": "Taipei Time", @@ -290,7 +291,7 @@ "Asia\/Ulaanbaatar": "Ulaanbaatar Time", "Asia\/Urumqi": "Ìgbà Orilẹ̀-èdè Ṣáínà (Urumqi)", "Asia\/Ust-Nera": "Vladivostok Time (Ust-Nera)", - "Asia\/Vientiane": "Ìgbà Orílẹ́ède Laosi (Vientiane)", + "Asia\/Vientiane": "Àkókò Indochina (Vientiane)", "Asia\/Vladivostok": "Vladivostok Time", "Asia\/Yakutsk": "Yakutsk Time", "Asia\/Yekaterinburg": "Yekaterinburg Time", @@ -408,7 +409,8 @@ "Pacific\/Gambier": "Gambier Time", "Pacific\/Guadalcanal": "Solomon Islands Time (Guadalcanal)", "Pacific\/Guam": "Chamorro Standard Time (Guam)", - "Pacific\/Honolulu": "Ìgbà Orílẹ̀-èdè Amẹrikà (Honolulu)", + "Pacific\/Honolulu": "Àkókò Hawaii-Aleutian (Honolulu)", + "Pacific\/Johnston": "Àkókò Hawaii-Aleutian (Johnston)", "Pacific\/Kiritimati": "Line Islands Time (Kiritimati)", "Pacific\/Kosrae": "Kosrae Time", "Pacific\/Kwajalein": "Marshall Islands Time (Kwajalein)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json index 25969c4192ce..efb21c0f31dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/yo_BJ.json @@ -2,33 +2,23 @@ "Names": { "Africa\/Casablanca": "Àkókò Ìwɔ Oòrùn Europe (Casablanca)", "Africa\/El_Aaiun": "Àkókò Ìwɔ Oòrùn Europe (El Aaiun)", - "America\/Adak": "Ìgbà Orílɛ̀-èdè Amɛrikà (Adak)", - "America\/Chihuahua": "Ìgbà Orílɛ́ède Mesiko (Chihuahua)", + "America\/Chihuahua": "Àkókò Pásífíìkì Mɛ́shíkò (Chihuahua)", "America\/Eirunepe": "Ìgbà Orilɛ̀-èdè Bàràsílì (Eirunepe)", - "America\/Godthab": "Ìgbà Orílɛ́ède Gerelandi (Nuuk)", - "America\/Havana": "Ìgbà Orílɛ́ède Kúbà (Havana)", - "America\/Hermosillo": "Ìgbà Orílɛ́ède Mesiko (Hermosillo)", - "America\/Mazatlan": "Ìgbà Orílɛ́ède Mesiko (Mazatlan)", - "America\/Miquelon": "Ìgbà Orílɛ́ède Pɛɛri ati mikuloni (Miquelon)", + "America\/Godthab": "Àkókò Ìwɔ̀ oorùn Greenland (Nuuk)", + "America\/Hermosillo": "Àkókò Pásífíìkì Mɛ́shíkò (Hermosillo)", + "America\/Mazatlan": "Àkókò Pásífíìkì Mɛ́shíkò (Mazatlan)", "America\/Montreal": "Ìgbà Orílɛ́ède Kánádà (Montreal)", "America\/Rio_Branco": "Ìgbà Orilɛ̀-èdè Bàràsílì (Rio Branco)", - "America\/Santa_Isabel": "Ìgbà Orílɛ́ède Mesiko (Santa Isabel)", - "America\/Scoresbysund": "Ìgbà Orílɛ́ède Gerelandi (Ittoqqortoormiit)", - "America\/St_Johns": "Ìgbà Orílɛ́ède Kánádà (St. John’s)", + "America\/Santa_Isabel": "Àkókò Apá Ìwɔ̀ Oorùn Mɛ́shíkò (Santa Isabel)", "Asia\/Anadyr": "Ìgbà Orílɛ́ède Rɔshia (Anadyr)", - "Asia\/Bangkok": "Ìgbà Orílɛ́ède Tailandi (Bangkok)", "Asia\/Barnaul": "Ìgbà Orílɛ́ède Rɔshia (Barnaul)", - "Asia\/Dili": "Ìgbà Orílɛ́ède ÌlàOòrùn Tímɔ̀ (Dili)", - "Asia\/Jakarta": "Ìgbà Orílɛ́ède Indonesia (Jakarta)", + "Asia\/Jakarta": "Àkókò Ìwɔ̀ oorùn Indonesia (Jakarta)", "Asia\/Kamchatka": "Ìgbà Orílɛ́ède Rɔshia (Kamchatka)", - "Asia\/Makassar": "Ìgbà Orílɛ́ède Indonesia (Makassar)", - "Asia\/Phnom_Penh": "Ìgbà Orílɛ́ède Kàmùbódíà (Phnom Penh)", - "Asia\/Pontianak": "Ìgbà Orílɛ́ède Indonesia (Pontianak)", - "Asia\/Saigon": "Ìgbà Orílɛ́ède Fɛtinami (Ho Chi Minh)", - "Asia\/Shanghai": "Ìgbà Orilɛ̀-èdè Sháínà (Shanghai)", + "Asia\/Macau": "Àkókò Sháínà (Macao)", + "Asia\/Pontianak": "Àkókò Ìwɔ̀ oorùn Indonesia (Pontianak)", + "Asia\/Shanghai": "Àkókò Sháínà (Shanghai)", "Asia\/Tomsk": "Ìgbà Orílɛ́ède Rɔshia (Tomsk)", "Asia\/Urumqi": "Ìgbà Orilɛ̀-èdè Sháínà (Urumqi)", - "Asia\/Vientiane": "Ìgbà Orílɛ́ède Laosi (Vientiane)", "Atlantic\/Canary": "Àkókò Ìwɔ Oòrùn Europe (Canary)", "Atlantic\/Faeroe": "Àkókò Ìwɔ Oòrùn Europe (Faroe)", "Atlantic\/Madeira": "Àkókò Ìwɔ Oòrùn Europe (Madeira)", @@ -36,8 +26,7 @@ "Europe\/Istanbul": "Ìgbà Orílɛ́ède Tɔɔki (Istanbul)", "Europe\/Kirov": "Ìgbà Orílɛ́ède Rɔshia (Kirov)", "Europe\/Lisbon": "Àkókò Ìwɔ Oòrùn Europe (Lisbon)", - "Europe\/Samara": "Ìgbà Orílɛ́ède Rɔshia (Samara)", - "Pacific\/Honolulu": "Ìgbà Orílɛ̀-èdè Amɛrikà (Honolulu)" + "Europe\/Samara": "Ìgbà Orílɛ́ède Rɔshia (Samara)" }, "Meta": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh.json index a62d6bec5a24..32490365a05f 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "阿根廷时间(里奥加耶戈斯)", "America\/Argentina\/Salta": "阿根廷时间(萨尔塔)", "America\/Argentina\/San_Juan": "阿根廷时间(圣胡安)", - "America\/Argentina\/San_Luis": "阿根廷西部时间(圣路易斯)", + "America\/Argentina\/San_Luis": "阿根廷时间(圣路易斯)", "America\/Argentina\/Tucuman": "阿根廷时间(图库曼)", "America\/Argentina\/Ushuaia": "阿根廷时间(乌斯怀亚)", "America\/Aruba": "大西洋时间(阿鲁巴)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "文莱达鲁萨兰时间", "Asia\/Calcutta": "印度时间(加尔各答)", "Asia\/Chita": "雅库茨克时间(赤塔)", - "Asia\/Choibalsan": "乔巴山时间", + "Asia\/Choibalsan": "乌兰巴托时间(乔巴山)", "Asia\/Colombo": "印度时间(科伦坡)", "Asia\/Damascus": "东欧时间(大马士革)", "Asia\/Dhaka": "孟加拉时间(达卡)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json index e806370fb6ce..66af86a22b6e 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hans_SG.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "阿根廷时间(里奥加耶戈斯)", "America\/Argentina\/Salta": "阿根廷时间(萨尔塔)", "America\/Argentina\/San_Juan": "阿根廷时间(圣胡安)", - "America\/Argentina\/San_Luis": "阿根廷西部时间(圣路易斯)", + "America\/Argentina\/San_Luis": "阿根廷时间(圣路易斯)", "America\/Argentina\/Tucuman": "阿根廷时间(图库曼)", "America\/Argentina\/Ushuaia": "阿根廷时间(乌斯怀亚)", "America\/Aruba": "大西洋时间(阿鲁巴)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "文莱达鲁萨兰时间", "Asia\/Calcutta": "印度时间(加尔各答)", "Asia\/Chita": "雅库茨克时间(赤塔)", - "Asia\/Choibalsan": "乔巴山时间", + "Asia\/Choibalsan": "乌兰巴托时间(乔巴山)", "Asia\/Colombo": "印度时间(科伦坡)", "Asia\/Damascus": "东欧时间(大马士革)", "Asia\/Dhaka": "孟加拉时间(达卡)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json index 8ac76b790643..d67959f8b29c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zh_Hant.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "阿根廷時間(里奧加耶戈斯)", "America\/Argentina\/Salta": "阿根廷時間(薩爾塔)", "America\/Argentina\/San_Juan": "阿根廷時間(聖胡安)", - "America\/Argentina\/San_Luis": "阿根廷西部時間(聖路易)", + "America\/Argentina\/San_Luis": "阿根廷時間(聖路易)", "America\/Argentina\/Tucuman": "阿根廷時間(吐庫曼)", "America\/Argentina\/Ushuaia": "阿根廷時間(烏斯懷亞)", "America\/Aruba": "大西洋時間(荷屬阿魯巴)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "汶萊時間", "Asia\/Calcutta": "印度標準時間(加爾各答)", "Asia\/Chita": "雅庫次克時間(赤塔)", - "Asia\/Choibalsan": "喬巴山時間", + "Asia\/Choibalsan": "烏蘭巴托時間(喬巴山)", "Asia\/Colombo": "印度標準時間(可倫坡)", "Asia\/Damascus": "東歐時間(大馬士革)", "Asia\/Dhaka": "孟加拉時間(達卡)", diff --git a/src/Symfony/Component/Intl/Resources/data/timezones/zu.json b/src/Symfony/Component/Intl/Resources/data/timezones/zu.json index b7016ece492c..35ea89ebf35c 100644 --- a/src/Symfony/Component/Intl/Resources/data/timezones/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/timezones/zu.json @@ -61,7 +61,7 @@ "America\/Argentina\/Rio_Gallegos": "Isikhathi sase-Argentina (i-Rio Gallegos)", "America\/Argentina\/Salta": "Isikhathi sase-Argentina (i-Salta)", "America\/Argentina\/San_Juan": "Isikhathi sase-Argentina (i-San Juan)", - "America\/Argentina\/San_Luis": "Isikhathi saseNyakatho ne-Argentina (i-San Luis)", + "America\/Argentina\/San_Luis": "Isikhathi sase-Argentina (i-San Luis)", "America\/Argentina\/Tucuman": "Isikhathi sase-Argentina (i-Tucuman)", "America\/Argentina\/Ushuaia": "Isikhathi sase-Argentina (i-Ushuaia)", "America\/Aruba": "Isikhathi sase-Atlantic (i-Aruba)", @@ -231,7 +231,7 @@ "Asia\/Brunei": "Isikhathi sase-Brunei Darussalam (i-Brunei)", "Asia\/Calcutta": "Isikhathi sase-India esivamile (i-Kolkata)", "Asia\/Chita": "Isikhathi sase-Yakutsk (i-Chita)", - "Asia\/Choibalsan": "Isikhathi sase-Choibalsan (i-Choibalsan)", + "Asia\/Choibalsan": "Isikhathi sase-Ulan Bator (i-Choibalsan)", "Asia\/Colombo": "Isikhathi sase-India esivamile (i-Colombo)", "Asia\/Damascus": "Isikhathi sase-Eastern Europe (i-Damascus)", "Asia\/Dhaka": "Isikhathi sase-Bangladesh (i-Dhaka)", diff --git a/src/Symfony/Component/Intl/Tests/ResourceBundleTestCase.php b/src/Symfony/Component/Intl/Tests/ResourceBundleTestCase.php index 6ab0be400511..11afeb8fc4f2 100644 --- a/src/Symfony/Component/Intl/Tests/ResourceBundleTestCase.php +++ b/src/Symfony/Component/Intl/Tests/ResourceBundleTestCase.php @@ -264,6 +264,19 @@ abstract class ResourceBundleTestCase 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', @@ -401,6 +414,8 @@ abstract class ResourceBundleTestCase extends TestCase 'ko_KP', 'ko_KR', 'ks', + 'ks_Arab', + 'ks_Arab_IN', 'ks_IN', 'ku', 'ku_TR', @@ -440,6 +455,7 @@ abstract class ResourceBundleTestCase extends TestCase 'mr_IN', 'ms', 'ms_BN', + 'ms_ID', 'ms_MY', 'ms_SG', 'mt', @@ -521,6 +537,10 @@ abstract class ResourceBundleTestCase extends TestCase 'rw', 'rw_RW', 'sd', + 'sd_Arab', + 'sd_Arab_PK', + 'sd_Deva', + 'sd_Deva_IN', 'sd_PK', 'se', 'se_FI', @@ -570,6 +590,10 @@ abstract class ResourceBundleTestCase extends TestCase 'sr_RS', 'sr_XK', 'sr_YU', + 'su', + 'su_ID', + 'su_Latn', + 'su_Latn_ID', 'sv', 'sv_AX', 'sv_FI', @@ -664,12 +688,14 @@ abstract class ResourceBundleTestCase 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', @@ -684,6 +710,7 @@ abstract class ResourceBundleTestCase 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/ScriptsTest.php b/src/Symfony/Component/Intl/Tests/ScriptsTest.php index 4b7967f5484d..b9c2bf7e621a 100644 --- a/src/Symfony/Component/Intl/Tests/ScriptsTest.php +++ b/src/Symfony/Component/Intl/Tests/ScriptsTest.php @@ -26,6 +26,7 @@ class ScriptsTest extends ResourceBundleTestCase 'Aghb', 'Ahom', 'Arab', + 'Aran', 'Armi', 'Armn', 'Avst', @@ -46,12 +47,14 @@ class ScriptsTest extends ResourceBundleTestCase 'Cari', 'Cham', 'Cher', + 'Chrs', 'Cirt', 'Copt', 'Cprt', 'Cyrl', 'Cyrs', 'Deva', + 'Diak', 'Dogr', 'Dsrt', 'Dupl', @@ -96,6 +99,7 @@ class ScriptsTest extends ResourceBundleTestCase 'Khar', 'Khmr', 'Khoj', + 'Kits', 'Knda', 'Kore', 'Kpel', @@ -202,6 +206,7 @@ class ScriptsTest extends ResourceBundleTestCase 'Wole', 'Xpeo', 'Xsux', + 'Yezi', 'Yiii', 'Zanb', 'Zinh', diff --git a/src/Symfony/Component/Translation/Resources/data/parents.json b/src/Symfony/Component/Translation/Resources/data/parents.json index 6e45d9f38837..d334b2982497 100644 --- a/src/Symfony/Component/Translation/Resources/data/parents.json +++ b/src/Symfony/Component/Translation/Resources/data/parents.json @@ -117,6 +117,7 @@ "es_US": "es_419", "es_UY": "es_419", "es_VE": "es_419", + "ff_Adlm": "root", "pa_Arab": "root", "pt_AO": "pt_PT", "pt_CH": "pt_PT", @@ -128,6 +129,7 @@ "pt_MZ": "pt_PT", "pt_ST": "pt_PT", "pt_TL": "pt_PT", + "sd_Deva": "root", "sr_Latn": "root", "uz_Arab": "root", "uz_Cyrl": "root", From f8aa0873cfe594919c69d4bd9872fde59010c9e8 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 10:37:50 +0200 Subject: [PATCH 072/145] Use ">=" for the "php" requirement --- composer.json | 2 +- src/Symfony/Bridge/Doctrine/composer.json | 2 +- src/Symfony/Bridge/Monolog/composer.json | 2 +- src/Symfony/Bridge/ProxyManager/composer.json | 2 +- src/Symfony/Bridge/Twig/composer.json | 2 +- src/Symfony/Bundle/DebugBundle/composer.json | 2 +- src/Symfony/Bundle/FrameworkBundle/composer.json | 2 +- src/Symfony/Bundle/SecurityBundle/composer.json | 2 +- src/Symfony/Bundle/TwigBundle/composer.json | 2 +- src/Symfony/Bundle/WebProfilerBundle/composer.json | 2 +- src/Symfony/Bundle/WebServerBundle/composer.json | 2 +- src/Symfony/Component/BrowserKit/composer.json | 2 +- src/Symfony/Component/Cache/composer.json | 2 +- src/Symfony/Component/Config/composer.json | 2 +- src/Symfony/Component/Console/composer.json | 2 +- src/Symfony/Component/Debug/composer.json | 2 +- src/Symfony/Component/DependencyInjection/composer.json | 2 +- src/Symfony/Component/DomCrawler/composer.json | 2 +- src/Symfony/Component/ErrorHandler/composer.json | 2 +- src/Symfony/Component/EventDispatcher/composer.json | 2 +- src/Symfony/Component/ExpressionLanguage/composer.json | 2 +- src/Symfony/Component/Filesystem/composer.json | 2 +- src/Symfony/Component/Form/composer.json | 2 +- src/Symfony/Component/HttpClient/composer.json | 2 +- src/Symfony/Component/HttpFoundation/composer.json | 2 +- src/Symfony/Component/HttpKernel/composer.json | 2 +- src/Symfony/Component/Inflector/composer.json | 2 +- src/Symfony/Component/Intl/composer.json | 2 +- src/Symfony/Component/Ldap/composer.json | 2 +- src/Symfony/Component/Lock/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Amazon/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Google/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Postmark/composer.json | 2 +- src/Symfony/Component/Mailer/Bridge/Sendgrid/composer.json | 2 +- src/Symfony/Component/Mailer/composer.json | 2 +- src/Symfony/Component/Messenger/composer.json | 2 +- src/Symfony/Component/Mime/composer.json | 2 +- src/Symfony/Component/PropertyAccess/composer.json | 2 +- src/Symfony/Component/PropertyInfo/composer.json | 2 +- src/Symfony/Component/Security/Core/composer.json | 2 +- src/Symfony/Component/Security/Csrf/composer.json | 2 +- src/Symfony/Component/Security/Guard/composer.json | 2 +- src/Symfony/Component/Security/Http/composer.json | 2 +- src/Symfony/Component/Security/composer.json | 2 +- src/Symfony/Component/Serializer/composer.json | 2 +- src/Symfony/Component/Stopwatch/composer.json | 2 +- src/Symfony/Component/Templating/composer.json | 2 +- src/Symfony/Component/Translation/composer.json | 2 +- src/Symfony/Component/Validator/composer.json | 2 +- src/Symfony/Component/VarDumper/composer.json | 2 +- src/Symfony/Component/WebLink/composer.json | 2 +- src/Symfony/Component/Workflow/composer.json | 2 +- src/Symfony/Component/Yaml/composer.json | 2 +- src/Symfony/Contracts/Cache/composer.json | 2 +- src/Symfony/Contracts/Service/composer.json | 2 +- src/Symfony/Contracts/composer.json | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/composer.json b/composer.json index ae4553377613..bd94123aa779 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "ext-xml": "*", "doctrine/event-manager": "~1.0", "doctrine/persistence": "^1.3", diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json index 64b21b426204..fde197dedb49 100644 --- a/src/Symfony/Bridge/Doctrine/composer.json +++ b/src/Symfony/Bridge/Doctrine/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "doctrine/event-manager": "~1.0", "doctrine/persistence": "^1.3", "symfony/polyfill-ctype": "~1.8", diff --git a/src/Symfony/Bridge/Monolog/composer.json b/src/Symfony/Bridge/Monolog/composer.json index 0325ed5447a8..82e44060701e 100644 --- a/src/Symfony/Bridge/Monolog/composer.json +++ b/src/Symfony/Bridge/Monolog/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "monolog/monolog": "^1.25.1", "symfony/service-contracts": "^1.1|^2", "symfony/http-kernel": "^4.3" diff --git a/src/Symfony/Bridge/ProxyManager/composer.json b/src/Symfony/Bridge/ProxyManager/composer.json index c7038a9c19d4..43664d6c5151 100644 --- a/src/Symfony/Bridge/ProxyManager/composer.json +++ b/src/Symfony/Bridge/ProxyManager/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/dependency-injection": "^4.0|^5.0", "ocramius/proxy-manager": "~2.1" }, diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json index 20df0ba12372..94574bf7b344 100644 --- a/src/Symfony/Bridge/Twig/composer.json +++ b/src/Symfony/Bridge/Twig/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/translation-contracts": "^1.1|^2", "twig/twig": "^1.41|^2.10|^3.0" }, diff --git a/src/Symfony/Bundle/DebugBundle/composer.json b/src/Symfony/Bundle/DebugBundle/composer.json index 5087c97e08b2..1336046bc664 100644 --- a/src/Symfony/Bundle/DebugBundle/composer.json +++ b/src/Symfony/Bundle/DebugBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "ext-xml": "*", "symfony/http-kernel": "^3.4|^4.0|^5.0", "symfony/twig-bridge": "^3.4|^4.0|^5.0", diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 0e994e66d5bb..c4f90e086a7f 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "ext-xml": "*", "symfony/cache": "^4.4|^5.0", "symfony/config": "^4.3.4|^5.0", diff --git a/src/Symfony/Bundle/SecurityBundle/composer.json b/src/Symfony/Bundle/SecurityBundle/composer.json index 6ccf682b3e6f..715425cd25f5 100644 --- a/src/Symfony/Bundle/SecurityBundle/composer.json +++ b/src/Symfony/Bundle/SecurityBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "ext-xml": "*", "symfony/config": "^4.2|^5.0", "symfony/dependency-injection": "^4.4|^5.0", diff --git a/src/Symfony/Bundle/TwigBundle/composer.json b/src/Symfony/Bundle/TwigBundle/composer.json index 55ec59a9b508..7fa821562690 100644 --- a/src/Symfony/Bundle/TwigBundle/composer.json +++ b/src/Symfony/Bundle/TwigBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/twig-bridge": "^4.4|^5.0", "symfony/http-foundation": "^4.3|^5.0", "symfony/http-kernel": "^4.4", diff --git a/src/Symfony/Bundle/WebProfilerBundle/composer.json b/src/Symfony/Bundle/WebProfilerBundle/composer.json index 1952a2e94c9a..2ad3b227ce34 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/composer.json +++ b/src/Symfony/Bundle/WebProfilerBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/config": "^4.2|^5.0", "symfony/framework-bundle": "^4.4|^5.0", "symfony/http-kernel": "^4.4", diff --git a/src/Symfony/Bundle/WebServerBundle/composer.json b/src/Symfony/Bundle/WebServerBundle/composer.json index 8360c3e04ac7..28a022f2eb10 100644 --- a/src/Symfony/Bundle/WebServerBundle/composer.json +++ b/src/Symfony/Bundle/WebServerBundle/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/config": "^3.4|^4.0|^5.0", "symfony/console": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", diff --git a/src/Symfony/Component/BrowserKit/composer.json b/src/Symfony/Component/BrowserKit/composer.json index c51477105776..6aa3f4006b01 100644 --- a/src/Symfony/Component/BrowserKit/composer.json +++ b/src/Symfony/Component/BrowserKit/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/dom-crawler": "^3.4|^4.0|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Cache/composer.json b/src/Symfony/Component/Cache/composer.json index 0f0033c40844..6d8754ac5e58 100644 --- a/src/Symfony/Component/Cache/composer.json +++ b/src/Symfony/Component/Cache/composer.json @@ -21,7 +21,7 @@ "symfony/cache-implementation": "1.0" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/cache": "~1.0", "psr/log": "~1.0", "symfony/cache-contracts": "^1.1.7|^2", diff --git a/src/Symfony/Component/Config/composer.json b/src/Symfony/Component/Config/composer.json index 78433bbe4d29..40807df2a9d0 100644 --- a/src/Symfony/Component/Config/composer.json +++ b/src/Symfony/Component/Config/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/polyfill-ctype": "~1.8" }, diff --git a/src/Symfony/Component/Console/composer.json b/src/Symfony/Component/Console/composer.json index 506539d1b55b..1f7240d4a625 100644 --- a/src/Symfony/Component/Console/composer.json +++ b/src/Symfony/Component/Console/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", "symfony/service-contracts": "^1.1|^2" diff --git a/src/Symfony/Component/Debug/composer.json b/src/Symfony/Component/Debug/composer.json index 96fe201bddc8..f68082db7b31 100644 --- a/src/Symfony/Component/Debug/composer.json +++ b/src/Symfony/Component/Debug/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0" }, "conflict": { diff --git a/src/Symfony/Component/DependencyInjection/composer.json b/src/Symfony/Component/DependencyInjection/composer.json index df1727b9d08e..0add7fc23703 100644 --- a/src/Symfony/Component/DependencyInjection/composer.json +++ b/src/Symfony/Component/DependencyInjection/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/container": "^1.0", "symfony/service-contracts": "^1.1.6|^2" }, diff --git a/src/Symfony/Component/DomCrawler/composer.json b/src/Symfony/Component/DomCrawler/composer.json index 81ddb8cbb8fb..c77a9916fe65 100644 --- a/src/Symfony/Component/DomCrawler/composer.json +++ b/src/Symfony/Component/DomCrawler/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, diff --git a/src/Symfony/Component/ErrorHandler/composer.json b/src/Symfony/Component/ErrorHandler/composer.json index 614bd4f5ac1f..857236e32cb6 100644 --- a/src/Symfony/Component/ErrorHandler/composer.json +++ b/src/Symfony/Component/ErrorHandler/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0", "symfony/debug": "^4.4.5", "symfony/var-dumper": "^4.4|^5.0" diff --git a/src/Symfony/Component/EventDispatcher/composer.json b/src/Symfony/Component/EventDispatcher/composer.json index ef36e455326d..62bea6cb115b 100644 --- a/src/Symfony/Component/EventDispatcher/composer.json +++ b/src/Symfony/Component/EventDispatcher/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/event-dispatcher-contracts": "^1.1" }, "require-dev": { diff --git a/src/Symfony/Component/ExpressionLanguage/composer.json b/src/Symfony/Component/ExpressionLanguage/composer.json index 6843975675ef..35538d61b003 100644 --- a/src/Symfony/Component/ExpressionLanguage/composer.json +++ b/src/Symfony/Component/ExpressionLanguage/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/cache": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2" }, diff --git a/src/Symfony/Component/Filesystem/composer.json b/src/Symfony/Component/Filesystem/composer.json index 9e0373d2f666..6e5df554baed 100644 --- a/src/Symfony/Component/Filesystem/composer.json +++ b/src/Symfony/Component/Filesystem/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "autoload": { diff --git a/src/Symfony/Component/Form/composer.json b/src/Symfony/Component/Form/composer.json index a3dbf875006c..ca855983927a 100644 --- a/src/Symfony/Component/Form/composer.json +++ b/src/Symfony/Component/Form/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/event-dispatcher": "^4.3", "symfony/intl": "^4.4|^5.0", "symfony/options-resolver": "~4.3|^5.0", diff --git a/src/Symfony/Component/HttpClient/composer.json b/src/Symfony/Component/HttpClient/composer.json index 68169d9da90f..979feb83171f 100644 --- a/src/Symfony/Component/HttpClient/composer.json +++ b/src/Symfony/Component/HttpClient/composer.json @@ -21,7 +21,7 @@ "symfony/http-client-implementation": "1.1" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "^1.0", "symfony/http-client-contracts": "^1.1.8|^2", "symfony/polyfill-php73": "^1.11", diff --git a/src/Symfony/Component/HttpFoundation/composer.json b/src/Symfony/Component/HttpFoundation/composer.json index efc4b9425558..a8c7c24c4073 100644 --- a/src/Symfony/Component/HttpFoundation/composer.json +++ b/src/Symfony/Component/HttpFoundation/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mime": "^4.3|^5.0", "symfony/polyfill-mbstring": "~1.1" }, diff --git a/src/Symfony/Component/HttpKernel/composer.json b/src/Symfony/Component/HttpKernel/composer.json index 14e1c64cc0f6..eca3b54b3661 100644 --- a/src/Symfony/Component/HttpKernel/composer.json +++ b/src/Symfony/Component/HttpKernel/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/error-handler": "^4.4", "symfony/event-dispatcher": "^4.4", "symfony/http-foundation": "^4.4|^5.0", diff --git a/src/Symfony/Component/Inflector/composer.json b/src/Symfony/Component/Inflector/composer.json index afd56dfd6bd3..f83c0c7f23d8 100644 --- a/src/Symfony/Component/Inflector/composer.json +++ b/src/Symfony/Component/Inflector/composer.json @@ -23,7 +23,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "autoload": { diff --git a/src/Symfony/Component/Intl/composer.json b/src/Symfony/Component/Intl/composer.json index 291b53684114..5c276c6f6c93 100644 --- a/src/Symfony/Component/Intl/composer.json +++ b/src/Symfony/Component/Intl/composer.json @@ -24,7 +24,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-intl-icu": "~1.0" }, "require-dev": { diff --git a/src/Symfony/Component/Ldap/composer.json b/src/Symfony/Component/Ldap/composer.json index d36fcb140cb0..4109567d91e7 100644 --- a/src/Symfony/Component/Ldap/composer.json +++ b/src/Symfony/Component/Ldap/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/options-resolver": "^4.2|^5.0", "ext-ldap": "*" }, diff --git a/src/Symfony/Component/Lock/composer.json b/src/Symfony/Component/Lock/composer.json index d604d2bd6837..895f32643165 100644 --- a/src/Symfony/Component/Lock/composer.json +++ b/src/Symfony/Component/Lock/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Amazon/composer.json b/src/Symfony/Component/Mailer/Bridge/Amazon/composer.json index b0fd9da26a60..e1037ce12909 100644 --- a/src/Symfony/Component/Mailer/Bridge/Amazon/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Amazon/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Google/composer.json b/src/Symfony/Component/Mailer/Bridge/Google/composer.json index ea7fd9a7ab42..6973b1cc4e0f 100644 --- a/src/Symfony/Component/Mailer/Bridge/Google/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Google/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json b/src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json index 569d39f2ec85..745d364f31ce 100644 --- a/src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Mailchimp/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json b/src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json index af7fa9b83691..38c38d22518b 100644 --- a/src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Mailgun/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Postmark/composer.json b/src/Symfony/Component/Mailer/Bridge/Postmark/composer.json index 572c27bf57b0..ac072372603b 100644 --- a/src/Symfony/Component/Mailer/Bridge/Postmark/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Postmark/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/Bridge/Sendgrid/composer.json b/src/Symfony/Component/Mailer/Bridge/Sendgrid/composer.json index bd7fae77dda0..78442fb8a5e0 100644 --- a/src/Symfony/Component/Mailer/Bridge/Sendgrid/composer.json +++ b/src/Symfony/Component/Mailer/Bridge/Sendgrid/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mailer": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mailer/composer.json b/src/Symfony/Component/Mailer/composer.json index f78cb2a967f6..cac72a7e2ed4 100644 --- a/src/Symfony/Component/Mailer/composer.json +++ b/src/Symfony/Component/Mailer/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "egulias/email-validator": "^2.1.10", "psr/log": "~1.0", "symfony/event-dispatcher": "^4.3", diff --git a/src/Symfony/Component/Messenger/composer.json b/src/Symfony/Component/Messenger/composer.json index 1d247f42db6d..dfe66f10f04e 100644 --- a/src/Symfony/Component/Messenger/composer.json +++ b/src/Symfony/Component/Messenger/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0" }, "require-dev": { diff --git a/src/Symfony/Component/Mime/composer.json b/src/Symfony/Component/Mime/composer.json index 4cf3c42c8ea7..039845224522 100644 --- a/src/Symfony/Component/Mime/composer.json +++ b/src/Symfony/Component/Mime/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, diff --git a/src/Symfony/Component/PropertyAccess/composer.json b/src/Symfony/Component/PropertyAccess/composer.json index 02eb76a2d6fc..758342a94195 100644 --- a/src/Symfony/Component/PropertyAccess/composer.json +++ b/src/Symfony/Component/PropertyAccess/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/inflector": "^3.4|^4.0|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/PropertyInfo/composer.json b/src/Symfony/Component/PropertyInfo/composer.json index 8e48c335be7e..fa24113005ea 100644 --- a/src/Symfony/Component/PropertyInfo/composer.json +++ b/src/Symfony/Component/PropertyInfo/composer.json @@ -23,7 +23,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/inflector": "^3.4|^4.0|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Security/Core/composer.json b/src/Symfony/Component/Security/Core/composer.json index ae44882f36c1..73f5eab5b3de 100644 --- a/src/Symfony/Component/Security/Core/composer.json +++ b/src/Symfony/Component/Security/Core/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/event-dispatcher-contracts": "^1.1|^2", "symfony/service-contracts": "^1.1.6|^2" }, diff --git a/src/Symfony/Component/Security/Csrf/composer.json b/src/Symfony/Component/Security/Csrf/composer.json index 81359829f866..5ec2c2543ee8 100644 --- a/src/Symfony/Component/Security/Csrf/composer.json +++ b/src/Symfony/Component/Security/Csrf/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/security-core": "^3.4|^4.0|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Security/Guard/composer.json b/src/Symfony/Component/Security/Guard/composer.json index 09b30d11ef3c..fc2b7f9a2b87 100644 --- a/src/Symfony/Component/Security/Guard/composer.json +++ b/src/Symfony/Component/Security/Guard/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/security-core": "^3.4.22|^4.2.3|^5.0", "symfony/security-http": "^4.4.1" }, diff --git a/src/Symfony/Component/Security/Http/composer.json b/src/Symfony/Component/Security/Http/composer.json index 6b23f5cc8e31..ac1d0965253f 100644 --- a/src/Symfony/Component/Security/Http/composer.json +++ b/src/Symfony/Component/Security/Http/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/security-core": "^4.4.8", "symfony/http-foundation": "^3.4.40|^4.4.7|^5.0.7", "symfony/http-kernel": "^4.4", diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json index 5cd3193d4ce8..27f664d457f1 100644 --- a/src/Symfony/Component/Security/composer.json +++ b/src/Symfony/Component/Security/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/event-dispatcher-contracts": "^1.1|^2", "symfony/http-foundation": "^3.4.40|^4.4.7|^5.0.7", "symfony/http-kernel": "^4.4", diff --git a/src/Symfony/Component/Serializer/composer.json b/src/Symfony/Component/Serializer/composer.json index a28d18fe4e26..3c8daad18690 100644 --- a/src/Symfony/Component/Serializer/composer.json +++ b/src/Symfony/Component/Serializer/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "require-dev": { diff --git a/src/Symfony/Component/Stopwatch/composer.json b/src/Symfony/Component/Stopwatch/composer.json index 50186a01ff90..491e371f3eb0 100644 --- a/src/Symfony/Component/Stopwatch/composer.json +++ b/src/Symfony/Component/Stopwatch/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/service-contracts": "^1.0|^2" }, "autoload": { diff --git a/src/Symfony/Component/Templating/composer.json b/src/Symfony/Component/Templating/composer.json index f785cf1cca66..085a161421e4 100644 --- a/src/Symfony/Component/Templating/composer.json +++ b/src/Symfony/Component/Templating/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "require-dev": { diff --git a/src/Symfony/Component/Translation/composer.json b/src/Symfony/Component/Translation/composer.json index 5b01b6ddc0ef..730ecb49a9f8 100644 --- a/src/Symfony/Component/Translation/composer.json +++ b/src/Symfony/Component/Translation/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/translation-contracts": "^1.1.6|^2" }, diff --git a/src/Symfony/Component/Validator/composer.json b/src/Symfony/Component/Validator/composer.json index 230dfab8e222..385ab3784983 100644 --- a/src/Symfony/Component/Validator/composer.json +++ b/src/Symfony/Component/Validator/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0", "symfony/translation-contracts": "^1.1|^2" diff --git a/src/Symfony/Component/VarDumper/composer.json b/src/Symfony/Component/VarDumper/composer.json index 5225e8c4638f..bee166a79098 100644 --- a/src/Symfony/Component/VarDumper/composer.json +++ b/src/Symfony/Component/VarDumper/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php72": "~1.5" }, diff --git a/src/Symfony/Component/WebLink/composer.json b/src/Symfony/Component/WebLink/composer.json index 87eccfbffa08..c5745debe241 100644 --- a/src/Symfony/Component/WebLink/composer.json +++ b/src/Symfony/Component/WebLink/composer.json @@ -19,7 +19,7 @@ "psr/link-implementation": "1.0" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/link": "^1.0", "symfony/polyfill-php72": "^1.5" }, diff --git a/src/Symfony/Component/Workflow/composer.json b/src/Symfony/Component/Workflow/composer.json index dffc3f836a17..ac323a71f1a5 100644 --- a/src/Symfony/Component/Workflow/composer.json +++ b/src/Symfony/Component/Workflow/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/property-access": "^3.4|^4.3|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/Yaml/composer.json b/src/Symfony/Component/Yaml/composer.json index 407b297c2f24..e8701850c3bf 100644 --- a/src/Symfony/Component/Yaml/composer.json +++ b/src/Symfony/Component/Yaml/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "require-dev": { diff --git a/src/Symfony/Contracts/Cache/composer.json b/src/Symfony/Contracts/Cache/composer.json index 4e0bd1a42270..ee73315d755c 100644 --- a/src/Symfony/Contracts/Cache/composer.json +++ b/src/Symfony/Contracts/Cache/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/cache": "^1.0" }, "suggest": { diff --git a/src/Symfony/Contracts/Service/composer.json b/src/Symfony/Contracts/Service/composer.json index f4209cc41c48..293734edfb90 100644 --- a/src/Symfony/Contracts/Service/composer.json +++ b/src/Symfony/Contracts/Service/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/container": "^1.0" }, "suggest": { diff --git a/src/Symfony/Contracts/composer.json b/src/Symfony/Contracts/composer.json index b9277e1dd161..4ac096ed11c0 100644 --- a/src/Symfony/Contracts/composer.json +++ b/src/Symfony/Contracts/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/cache": "^1.0", "psr/container": "^1.0" }, From 5aa25ceb414dfa32c83c396744355edb931bdef7 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 20 May 2020 18:09:19 +0200 Subject: [PATCH 073/145] [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 074/145] [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 075/145] [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 076/145] [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 077/145] [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 034989072002de01fb6c975718777661cb4c4714 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 21 May 2020 00:28:08 +0200 Subject: [PATCH 078/145] fix merge --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php index fab3892f0167..a8ff2bb9b174 100644 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php @@ -165,7 +165,7 @@ } $info = []; - 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 53b1677a4e82d7c11b3dc99eeb4c1c2264947ef5 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 21 May 2020 13:30:55 +0200 Subject: [PATCH 079/145] 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 080/145] [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 081/145] [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 082/145] 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 083/145] [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 084/145] [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 085/145] [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 7d2ad4b265e42f54ce49d7e103ae243081aef1b7 Mon Sep 17 00:00:00 2001 From: Thibaut Salanon Date: Tue, 3 Mar 2020 16:54:02 +0100 Subject: [PATCH 086/145] Fix wrong roles comparison --- .../Security/Core/Authentication/Token/AbstractToken.php | 7 ++----- .../Core/Tests/Authentication/Token/AbstractTokenTest.php | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php index e59997de3491..de0ebac26488 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php @@ -317,13 +317,10 @@ private function hasUserChanged(UserInterface $user): bool return true; } + $currentUserRoles = array_map('strval', (array) $this->user->getRoles()); $userRoles = array_map('strval', (array) $user->getRoles()); - if ($this instanceof SwitchUserToken) { - $userRoles[] = 'ROLE_PREVIOUS_ADMIN'; - } - - if (\count($userRoles) !== \count($this->getRoleNames()) || \count($userRoles) !== \count(array_intersect($userRoles, $this->getRoleNames()))) { + if (\count($userRoles) !== \count($currentUserRoles) || \count($userRoles) !== \count(array_intersect($userRoles, $currentUserRoles))) { return true; } diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php index fe0ed08cc66d..031fe4989884 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php @@ -238,7 +238,7 @@ public function getUserChangesAdvancedUser() */ public function testSetUserDoesNotSetAuthenticatedToFalseWhenUserDoesNotChange($user) { - $token = new ConcreteToken(); + $token = new ConcreteToken(['ROLE_FOO']); $token->setAuthenticated(true); $this->assertTrue($token->isAuthenticated()); From 1bbfdcbb8dff99ad52cfa26300dca56d09d87a3c Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 15:23:31 +0200 Subject: [PATCH 087/145] [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 088/145] [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 089/145] [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 d2dd92be77b919248c261c626897a1b8003726a3 Mon Sep 17 00:00:00 2001 From: Oleksii Zhurbytskyi Date: Sat, 16 May 2020 16:01:37 +0200 Subject: [PATCH 090/145] [BrowserKit] Raw body with custom Content-Type header --- src/Symfony/Component/BrowserKit/HttpBrowser.php | 11 +++++++++-- .../Component/BrowserKit/Tests/HttpBrowserTest.php | 4 ++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/HttpBrowser.php b/src/Symfony/Component/BrowserKit/HttpBrowser.php index 9c2b3fcf57e5..ed6c10028145 100644 --- a/src/Symfony/Component/BrowserKit/HttpBrowser.php +++ b/src/Symfony/Component/BrowserKit/HttpBrowser.php @@ -39,10 +39,13 @@ public function __construct(HttpClientInterface $client = null, History $history parent::__construct([], $history, $cookieJar); } + /** + * @param Request $request + */ protected function doRequest($request): Response { $headers = $this->getHeaders($request); - [$body, $extraHeaders] = $this->getBodyAndExtraHeaders($request); + [$body, $extraHeaders] = $this->getBodyAndExtraHeaders($request, $headers); $response = $this->client->request($request->getMethod(), $request->getUri(), [ 'headers' => array_merge($headers, $extraHeaders), @@ -56,7 +59,7 @@ protected function doRequest($request): Response /** * @return array [$body, $headers] */ - private function getBodyAndExtraHeaders(Request $request): array + private function getBodyAndExtraHeaders(Request $request, array $headers): array { if (\in_array($request->getMethod(), ['GET', 'HEAD'])) { return ['', []]; @@ -67,6 +70,10 @@ private function getBodyAndExtraHeaders(Request $request): array } if (null !== $content = $request->getContent()) { + if (isset($headers['content-type'])) { + return [$content, []]; + } + $part = new TextPart($content, 'utf-8', 'plain', '8bit'); return [$part->bodyToString(), $part->getPreparedHeaders()->toArray()]; diff --git a/src/Symfony/Component/BrowserKit/Tests/HttpBrowserTest.php b/src/Symfony/Component/BrowserKit/Tests/HttpBrowserTest.php index 77586f44e774..1397d9b10c38 100644 --- a/src/Symfony/Component/BrowserKit/Tests/HttpBrowserTest.php +++ b/src/Symfony/Component/BrowserKit/Tests/HttpBrowserTest.php @@ -59,6 +59,10 @@ public function validContentTypes() ['POST', 'http://example.com/', [], [], [], 'content'], ['POST', 'http://example.com/', ['headers' => $defaultHeaders + ['Content-Type: text/plain; charset=utf-8', 'Content-Transfer-Encoding: 8bit'], 'body' => 'content', 'max_redirects' => 0]], ]; + yield 'POST JSON' => [ + ['POST', 'http://example.com/', [], [], ['CONTENT_TYPE' => 'application/json'], '["content"]'], + ['POST', 'http://example.com/', ['headers' => $defaultHeaders + ['content-type' => 'application/json'], 'body' => '["content"]', 'max_redirects' => 0]], + ]; } public function testMultiPartRequestWithSingleFile() From 1da347e5ba96f3ebd5950aa0ac5540d51a1d5722 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 14:25:04 +0200 Subject: [PATCH 091/145] [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 092/145] [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 093/145] [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 54f18698afab34270dcc168a09c8453b39200225 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 21:58:53 +0200 Subject: [PATCH 094/145] [ErrorHandler] Apply php8 fixes from Debug component. --- .../ErrorHandler/Tests/ErrorHandlerTest.php | 40 ++++++++++++++----- .../ErrorHandlerThatUsesThePreviousOne.php | 4 +- 2 files changed, 33 insertions(+), 11 deletions(-) diff --git a/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php b/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php index 28b311549272..d34961a00b0e 100644 --- a/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php @@ -91,9 +91,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(); @@ -121,7 +126,7 @@ public static function triggerNotice($that) public function testFailureCall() { $this->expectException(\ErrorException::class); - $this->expectExceptionMessage('fopen(unknown.txt): failed to open stream: No such file or directory'); + $this->expectExceptionMessageMatches('/^fopen\(unknown\.txt\): [Ff]ailed to open stream: No such file or directory$/'); ErrorHandler::call('fopen', 'unknown.txt', 'r'); } @@ -149,9 +154,14 @@ public function testCallErrorExceptionInfo() $this->fail('An \ErrorException should have been raised'); } catch (\ErrorException $e) { $trace = $e->getTrace(); - $this->assertSame(E_NOTICE, $e->getSeverity()); + if (\PHP_VERSION_ID < 80000) { + $this->assertEquals(E_NOTICE, $e->getSeverity()); + $this->assertSame('Undefined variable: foo', $e->getMessage()); + } else { + $this->assertEquals(E_WARNING, $e->getSeverity()); + $this->assertSame('Undefined variable $foo', $e->getMessage()); + } $this->assertSame(__FILE__, $e->getFile()); - $this->assertSame('Undefined variable: foo', $e->getMessage()); $this->assertSame(0, $e->getCode()); $this->assertSame('Symfony\Component\ErrorHandler\{closure}', $trace[0]['function']); $this->assertSame(ErrorHandler::class, $trace[0]['class']); @@ -288,11 +298,18 @@ 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()); @@ -306,8 +323,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++; diff --git a/src/Symfony/Component/ErrorHandler/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php b/src/Symfony/Component/ErrorHandler/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php index 7cc51ff3229f..66755ce314cf 100644 --- a/src/Symfony/Component/ErrorHandler/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +++ b/src/Symfony/Component/ErrorHandler/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 6fda276febe0a0cbc818daea2195dbe6d9e50a67 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 21:28:54 +0200 Subject: [PATCH 095/145] Made method signatures compatible with their corresponding traits. --- src/Symfony/Component/Cache/Adapter/Psr16Adapter.php | 2 +- src/Symfony/Component/Cache/Traits/AbstractTrait.php | 2 +- src/Symfony/Component/Cache/Traits/ApcuTrait.php | 2 +- src/Symfony/Component/Cache/Traits/DoctrineTrait.php | 2 +- src/Symfony/Component/Cache/Traits/FilesystemTrait.php | 2 +- src/Symfony/Component/Cache/Traits/MemcachedTrait.php | 2 +- src/Symfony/Component/Cache/Traits/PdoTrait.php | 2 +- src/Symfony/Component/Cache/Traits/PhpFilesTrait.php | 2 +- src/Symfony/Component/Cache/Traits/RedisTrait.php | 2 +- .../Component/HttpClient/Response/CurlResponse.php | 9 +++++++-- .../Component/HttpClient/Response/NativeResponse.php | 9 +++++++-- 11 files changed, 23 insertions(+), 13 deletions(-) diff --git a/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php b/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php index bb38871019d2..aa93dfef0fb5 100644 --- a/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php +++ b/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php @@ -79,7 +79,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { return $this->pool->setMultiple($values, 0 === $lifetime ? null : $lifetime); } diff --git a/src/Symfony/Component/Cache/Traits/AbstractTrait.php b/src/Symfony/Component/Cache/Traits/AbstractTrait.php index 5876c1c393e8..8006855c5be2 100644 --- a/src/Symfony/Component/Cache/Traits/AbstractTrait.php +++ b/src/Symfony/Component/Cache/Traits/AbstractTrait.php @@ -78,7 +78,7 @@ abstract protected function doDelete(array $ids); * * @return array|bool The identifiers that failed to be cached or a boolean stating if caching succeeded or not */ - abstract protected function doSave(array $values, $lifetime); + abstract protected function doSave(array $values, ?int $lifetime); /** * {@inheritdoc} diff --git a/src/Symfony/Component/Cache/Traits/ApcuTrait.php b/src/Symfony/Component/Cache/Traits/ApcuTrait.php index f681c0596f94..4e1acc16274a 100644 --- a/src/Symfony/Component/Cache/Traits/ApcuTrait.php +++ b/src/Symfony/Component/Cache/Traits/ApcuTrait.php @@ -101,7 +101,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { try { if (false === $failures = apcu_store($values, null, $lifetime)) { diff --git a/src/Symfony/Component/Cache/Traits/DoctrineTrait.php b/src/Symfony/Component/Cache/Traits/DoctrineTrait.php index c87ecabafc80..f795e67868e6 100644 --- a/src/Symfony/Component/Cache/Traits/DoctrineTrait.php +++ b/src/Symfony/Component/Cache/Traits/DoctrineTrait.php @@ -91,7 +91,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { return $this->provider->saveMultiple($values, $lifetime); } diff --git a/src/Symfony/Component/Cache/Traits/FilesystemTrait.php b/src/Symfony/Component/Cache/Traits/FilesystemTrait.php index acf3ea0b9813..fe8ab2bda3e5 100644 --- a/src/Symfony/Component/Cache/Traits/FilesystemTrait.php +++ b/src/Symfony/Component/Cache/Traits/FilesystemTrait.php @@ -91,7 +91,7 @@ protected function doHave($id) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { $expiresAt = $lifetime ? (time() + $lifetime) : 0; $values = $this->marshaller->marshall($values, $failed); diff --git a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php index ca26f7e4ff7f..89abe35d6ad1 100644 --- a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php +++ b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php @@ -223,7 +223,7 @@ public static function createConnection($servers, array $options = []) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; diff --git a/src/Symfony/Component/Cache/Traits/PdoTrait.php b/src/Symfony/Component/Cache/Traits/PdoTrait.php index 9b03f1cd2c08..5970ec430393 100644 --- a/src/Symfony/Component/Cache/Traits/PdoTrait.php +++ b/src/Symfony/Component/Cache/Traits/PdoTrait.php @@ -275,7 +275,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; diff --git a/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php b/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php index 6f8c45ee513b..567bea1d1b49 100644 --- a/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php +++ b/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php @@ -194,7 +194,7 @@ protected function doHave($id) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { $ok = true; $expiry = $lifetime ? time() + $lifetime : 'PHP_INT_MAX'; diff --git a/src/Symfony/Component/Cache/Traits/RedisTrait.php b/src/Symfony/Component/Cache/Traits/RedisTrait.php index 2288fcddf635..bd506999b6db 100644 --- a/src/Symfony/Component/Cache/Traits/RedisTrait.php +++ b/src/Symfony/Component/Cache/Traits/RedisTrait.php @@ -404,7 +404,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, $lifetime) + protected function doSave(array $values, ?int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; diff --git a/src/Symfony/Component/HttpClient/Response/CurlResponse.php b/src/Symfony/Component/HttpClient/Response/CurlResponse.php index 80709ed8a6a7..e7de360a8e41 100644 --- a/src/Symfony/Component/HttpClient/Response/CurlResponse.php +++ b/src/Symfony/Component/HttpClient/Response/CurlResponse.php @@ -15,6 +15,7 @@ use Symfony\Component\HttpClient\Chunk\FirstChunk; use Symfony\Component\HttpClient\Chunk\InformationalChunk; use Symfony\Component\HttpClient\Exception\TransportException; +use Symfony\Component\HttpClient\Internal\ClientState; use Symfony\Component\HttpClient\Internal\CurlClientState; use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface; use Symfony\Contracts\HttpClient\ResponseInterface; @@ -242,8 +243,10 @@ private static function schedule(self $response, array &$runningResponses): void /** * {@inheritdoc} + * + * @param CurlClientState $multi */ - private static function perform(CurlClientState $multi, array &$responses = null): void + private static function perform(ClientState $multi, array &$responses = null): void { if (self::$performing) { if ($responses) { @@ -289,8 +292,10 @@ private static function perform(CurlClientState $multi, array &$responses = null /** * {@inheritdoc} + * + * @param CurlClientState $multi */ - private static function select(CurlClientState $multi, float $timeout): int + private static function select(ClientState $multi, float $timeout): int { if (\PHP_VERSION_ID < 70123 || (70200 <= \PHP_VERSION_ID && \PHP_VERSION_ID < 70211)) { // workaround https://bugs.php.net/76480 diff --git a/src/Symfony/Component/HttpClient/Response/NativeResponse.php b/src/Symfony/Component/HttpClient/Response/NativeResponse.php index 6fccfbef5a6a..639957415f0d 100644 --- a/src/Symfony/Component/HttpClient/Response/NativeResponse.php +++ b/src/Symfony/Component/HttpClient/Response/NativeResponse.php @@ -14,6 +14,7 @@ use Psr\Log\LoggerInterface; use Symfony\Component\HttpClient\Chunk\FirstChunk; use Symfony\Component\HttpClient\Exception\TransportException; +use Symfony\Component\HttpClient\Internal\ClientState; use Symfony\Component\HttpClient\Internal\NativeClientState; use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface; use Symfony\Contracts\HttpClient\ResponseInterface; @@ -214,8 +215,10 @@ private static function schedule(self $response, array &$runningResponses): void /** * {@inheritdoc} + * + * @param NativeClientState $multi */ - private static function perform(NativeClientState $multi, array &$responses = null): void + private static function perform(ClientState $multi, array &$responses = null): void { // List of native handles for stream_select() if (null !== $responses) { @@ -326,8 +329,10 @@ private static function perform(NativeClientState $multi, array &$responses = nu /** * {@inheritdoc} + * + * @param NativeClientState $multi */ - private static function select(NativeClientState $multi, float $timeout): int + private static function select(ClientState $multi, float $timeout): int { $_ = []; From 32691e515758129b68b687d0671b6ea041581cdd Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 02:03:06 +0200 Subject: [PATCH 096/145] [DomCrawler] Catch expected ValueError. --- src/Symfony/Component/DomCrawler/Crawler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php index e89476f1229d..b8329ed2cf8c 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -1204,11 +1204,11 @@ private function convertToHtmlEntities(string $htmlContent, string $charset = 'U try { return mb_convert_encoding($htmlContent, 'HTML-ENTITIES', $charset); - } catch (\Exception $e) { + } catch (\Exception | \ValueError $e) { try { $htmlContent = iconv($charset, 'UTF-8', $htmlContent); $htmlContent = mb_convert_encoding($htmlContent, 'HTML-ENTITIES', 'UTF-8'); - } catch (\Exception $e) { + } catch (\Exception | \ValueError $e) { } return $htmlContent; From 1090738264e0ebc816ede60f42365c8694b8b165 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 22 May 2020 09:54:48 +0200 Subject: [PATCH 097/145] 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 098/145] [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 099/145] [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 100/145] 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 101/145] [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 1575d853f1232b35aa75ef0f0898a9f59b92e370 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 14:09:32 +0200 Subject: [PATCH 102/145] Remove calls to deprecated ReflectionParameter::getClass(). --- src/Symfony/Component/OptionsResolver/OptionsResolver.php | 2 +- .../Component/Serializer/Normalizer/AbstractNormalizer.php | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/OptionsResolver/OptionsResolver.php b/src/Symfony/Component/OptionsResolver/OptionsResolver.php index bc2546397a47..370fd579f95c 100644 --- a/src/Symfony/Component/OptionsResolver/OptionsResolver.php +++ b/src/Symfony/Component/OptionsResolver/OptionsResolver.php @@ -201,7 +201,7 @@ public function setDefault($option, $value) return $this; } - if (isset($params[0]) && null !== ($class = $params[0]->getClass()) && self::class === $class->name && (!isset($params[1]) || (null !== ($class = $params[1]->getClass()) && Options::class === $class->name))) { + if (isset($params[0]) && null !== ($type = $params[0]->getType()) && self::class === $type->getName() && (!isset($params[1]) || (null !== ($type = $params[1]->getType()) && Options::class === $type->getName()))) { // Store closure for later evaluation $this->nested[$option][] = $value; $this->defaults[$option] = []; diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php index f3b24e420f32..b98d58273867 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php @@ -522,9 +522,7 @@ protected function instantiateObject(array &$data, $class, array &$context, \Ref protected function denormalizeParameter(\ReflectionClass $class, \ReflectionParameter $parameter, $parameterName, $parameterData, array $context, $format = null) { 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()) { + if ($parameter->hasType() && ($parameterType = $parameter->getType()) && !$parameterType->isBuiltin()) { $parameterClass = $parameterType->getName(); new \ReflectionClass($parameterClass); // throws a \ReflectionException if the class doesn't exist } else { From 232725243bd8be0828bb4a522d954f9a884cd632 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 14:14:15 +0200 Subject: [PATCH 103/145] 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 ae49c3c6497eaab1bd756e624d7111a8d775e6cf Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 14:37:04 +0200 Subject: [PATCH 104/145] fix merge --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bd94123aa779..5ad1c5cc8322 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,8 @@ "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php72": "~1.5", - "symfony/polyfill-php73": "^1.11" + "symfony/polyfill-php73": "^1.11", + "symfony/polyfill-php80": "^1.15" }, "replace": { "symfony/asset": "self.version", From ca695e55e80048cf7b676e325b08b8f0ad5d3d78 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 14:46:57 +0200 Subject: [PATCH 105/145] [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 c8c7d4c4588d46590ba96602e840a7688ca4171f Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 15:02:18 +0200 Subject: [PATCH 106/145] [Cache] $lifetime cannot be null --- src/Symfony/Component/Cache/Adapter/AbstractTagAwareAdapter.php | 2 +- .../Component/Cache/Adapter/FilesystemTagAwareAdapter.php | 2 +- src/Symfony/Component/Cache/Adapter/Psr16Adapter.php | 2 +- src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php | 2 +- src/Symfony/Component/Cache/Traits/AbstractTrait.php | 2 +- src/Symfony/Component/Cache/Traits/ApcuTrait.php | 2 +- src/Symfony/Component/Cache/Traits/DoctrineTrait.php | 2 +- src/Symfony/Component/Cache/Traits/FilesystemTrait.php | 2 +- src/Symfony/Component/Cache/Traits/MemcachedTrait.php | 2 +- src/Symfony/Component/Cache/Traits/PdoTrait.php | 2 +- src/Symfony/Component/Cache/Traits/PhpFilesTrait.php | 2 +- src/Symfony/Component/Cache/Traits/RedisTrait.php | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Symfony/Component/Cache/Adapter/AbstractTagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/AbstractTagAwareAdapter.php index 5a9f94bb9a6a..1a73d974c98f 100644 --- a/src/Symfony/Component/Cache/Adapter/AbstractTagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/AbstractTagAwareAdapter.php @@ -128,7 +128,7 @@ static function ($deferred, &$expiredIds) use ($getId, $tagPrefix) { * * @return array The identifiers that failed to be cached or a boolean stating if caching succeeded or not */ - abstract protected function doSave(array $values, ?int $lifetime, array $addTagData = [], array $removeTagData = []): array; + abstract protected function doSave(array $values, int $lifetime, array $addTagData = [], array $removeTagData = []): array; /** * Removes multiple items from the pool and their corresponding tags. diff --git a/src/Symfony/Component/Cache/Adapter/FilesystemTagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/FilesystemTagAwareAdapter.php index 2ce9eeb977fc..f9ad16811cf9 100644 --- a/src/Symfony/Component/Cache/Adapter/FilesystemTagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/FilesystemTagAwareAdapter.php @@ -93,7 +93,7 @@ protected function doClear($namespace) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime, array $addTagData = [], array $removeTagData = []): array + protected function doSave(array $values, int $lifetime, array $addTagData = [], array $removeTagData = []): array { $failed = $this->doSaveCache($values, $lifetime); diff --git a/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php b/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php index aa93dfef0fb5..4cbe35c43f1f 100644 --- a/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php +++ b/src/Symfony/Component/Cache/Adapter/Psr16Adapter.php @@ -79,7 +79,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { return $this->pool->setMultiple($values, 0 === $lifetime ? null : $lifetime); } diff --git a/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php index 8bf9d37db794..6e7bb182123e 100644 --- a/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php @@ -91,7 +91,7 @@ public function __construct($redisClient, string $namespace = '', int $defaultLi /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime, array $addTagData = [], array $delTagData = []): array + protected function doSave(array $values, int $lifetime, array $addTagData = [], array $delTagData = []): array { $eviction = $this->getRedisEvictionPolicy(); if ('noeviction' !== $eviction && 0 !== strpos($eviction, 'volatile-')) { diff --git a/src/Symfony/Component/Cache/Traits/AbstractTrait.php b/src/Symfony/Component/Cache/Traits/AbstractTrait.php index 8006855c5be2..fbcdc74defdb 100644 --- a/src/Symfony/Component/Cache/Traits/AbstractTrait.php +++ b/src/Symfony/Component/Cache/Traits/AbstractTrait.php @@ -78,7 +78,7 @@ abstract protected function doDelete(array $ids); * * @return array|bool The identifiers that failed to be cached or a boolean stating if caching succeeded or not */ - abstract protected function doSave(array $values, ?int $lifetime); + abstract protected function doSave(array $values, int $lifetime); /** * {@inheritdoc} diff --git a/src/Symfony/Component/Cache/Traits/ApcuTrait.php b/src/Symfony/Component/Cache/Traits/ApcuTrait.php index 4e1acc16274a..88c3360ccc5d 100644 --- a/src/Symfony/Component/Cache/Traits/ApcuTrait.php +++ b/src/Symfony/Component/Cache/Traits/ApcuTrait.php @@ -101,7 +101,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { try { if (false === $failures = apcu_store($values, null, $lifetime)) { diff --git a/src/Symfony/Component/Cache/Traits/DoctrineTrait.php b/src/Symfony/Component/Cache/Traits/DoctrineTrait.php index f795e67868e6..98dc95e91166 100644 --- a/src/Symfony/Component/Cache/Traits/DoctrineTrait.php +++ b/src/Symfony/Component/Cache/Traits/DoctrineTrait.php @@ -91,7 +91,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { return $this->provider->saveMultiple($values, $lifetime); } diff --git a/src/Symfony/Component/Cache/Traits/FilesystemTrait.php b/src/Symfony/Component/Cache/Traits/FilesystemTrait.php index fe8ab2bda3e5..aea8cd58f7f7 100644 --- a/src/Symfony/Component/Cache/Traits/FilesystemTrait.php +++ b/src/Symfony/Component/Cache/Traits/FilesystemTrait.php @@ -91,7 +91,7 @@ protected function doHave($id) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { $expiresAt = $lifetime ? (time() + $lifetime) : 0; $values = $this->marshaller->marshall($values, $failed); diff --git a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php index 89abe35d6ad1..c03dc7106131 100644 --- a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php +++ b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php @@ -223,7 +223,7 @@ public static function createConnection($servers, array $options = []) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; diff --git a/src/Symfony/Component/Cache/Traits/PdoTrait.php b/src/Symfony/Component/Cache/Traits/PdoTrait.php index 5970ec430393..943d34e5ebd4 100644 --- a/src/Symfony/Component/Cache/Traits/PdoTrait.php +++ b/src/Symfony/Component/Cache/Traits/PdoTrait.php @@ -275,7 +275,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; diff --git a/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php b/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php index 567bea1d1b49..ac4d7ce9ca1d 100644 --- a/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php +++ b/src/Symfony/Component/Cache/Traits/PhpFilesTrait.php @@ -194,7 +194,7 @@ protected function doHave($id) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { $ok = true; $expiry = $lifetime ? time() + $lifetime : 'PHP_INT_MAX'; diff --git a/src/Symfony/Component/Cache/Traits/RedisTrait.php b/src/Symfony/Component/Cache/Traits/RedisTrait.php index bd506999b6db..322eeee19b85 100644 --- a/src/Symfony/Component/Cache/Traits/RedisTrait.php +++ b/src/Symfony/Component/Cache/Traits/RedisTrait.php @@ -404,7 +404,7 @@ protected function doDelete(array $ids) /** * {@inheritdoc} */ - protected function doSave(array $values, ?int $lifetime) + protected function doSave(array $values, int $lifetime) { if (!$values = $this->marshaller->marshall($values, $failed)) { return $failed; From fceea7ce01bebe75e33d5f32f153b15829cbd721 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 15:12:54 +0200 Subject: [PATCH 107/145] [BrowserKit] fix bad merge --- src/Symfony/Component/BrowserKit/HttpBrowser.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/BrowserKit/HttpBrowser.php b/src/Symfony/Component/BrowserKit/HttpBrowser.php index bd5cef13057a..ed6c10028145 100644 --- a/src/Symfony/Component/BrowserKit/HttpBrowser.php +++ b/src/Symfony/Component/BrowserKit/HttpBrowser.php @@ -39,7 +39,10 @@ public function __construct(HttpClientInterface $client = null, History $history parent::__construct([], $history, $cookieJar); } - protected function doRequest(Request $request): Response + /** + * @param Request $request + */ + protected function doRequest($request): Response { $headers = $this->getHeaders($request); [$body, $extraHeaders] = $this->getBodyAndExtraHeaders($request, $headers); From c26044b0b1b1b155b341b581e62df867c7679256 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 15:21:30 +0200 Subject: [PATCH 108/145] [travis] skip extensions that dont compile on nightly --- .travis.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61d060433eac..115fa34aa918 100644 --- a/.travis.yml +++ b/.travis.yml @@ -155,14 +155,15 @@ before_install: fi if [[ $PHP = nightly ]]; then tfold ext.memcached tpecl memcached-3.1.5 memcached.so $INI + else + tfold ext.apcu tpecl apcu-5.1.18 apcu.so $INI + tfold ext.mongodb tpecl mongodb-1.6.16 mongodb.so $INI + tfold ext.zookeeper tpecl zookeeper-0.7.2 zookeeper.so $INI + tfold ext.amqp tpecl amqp-1.10.2 amqp.so $INI + tfold ext.redis tpecl redis-5.2.2 redis.so $INI "no" fi - tfold ext.apcu tpecl apcu-5.1.17 apcu.so $INI - tfold ext.mongodb tpecl mongodb-1.6.0 mongodb.so $INI tfold ext.igbinary tpecl igbinary-3.1.2 igbinary.so $INI - tfold ext.zookeeper tpecl zookeeper-0.7.1 zookeeper.so $INI - tfold ext.amqp tpecl amqp-1.9.4 amqp.so $INI - tfold ext.redis tpecl redis-4.3.0 redis.so $INI "no" done - | # List all php extensions with versions @@ -266,7 +267,7 @@ install: return fi phpenv global $PHP - ([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; cp composer.json composer.bak; composer config platform.ext-mongodb 1.6.0; composer require --dev --no-update mongodb/mongodb ~1.5.0) + ([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; cp composer.json composer.bak; composer config platform.ext-mongodb 1.6.99; composer require --dev --no-update mongodb/mongodb ~1.5.0) tfold 'composer update' $COMPOSER_UP tfold 'phpunit install' ./phpunit install if [[ $deps = high ]]; then @@ -283,7 +284,7 @@ install: git fetch --depth=2 origin $SYMFONY_VERSION git checkout -m FETCH_HEAD COMPONENTS=$(echo "$COMPONENTS" | xargs dirname | xargs -n1 -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort) - (cd src/Symfony/Component/HttpFoundation; composer config platform.ext-mongodb 1.6.0; composer require --dev --no-update mongodb/mongodb) + (cd src/Symfony/Component/HttpFoundation; composer config platform.ext-mongodb 1.6.99; composer require --dev --no-update mongodb/mongodb) [[ ! $COMPONENTS ]] || tfold 'phpunit install' SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 ./phpunit install [[ ! $COMPONENTS ]] || echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && rm composer.lock vendor/ -Rf && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" || X=1 fi From 7dc3f9cb4230879d7dbfb3b255e2d8a3fe9b4ded Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 17:22:21 +0200 Subject: [PATCH 109/145] Don't execute tests with DBAL 2.x on php 8. --- .../Component/Cache/Tests/Adapter/PdoAdapterTest.php | 5 +++++ .../Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php | 5 +++++ .../Component/Cache/Tests/Simple/PdoDbalCacheTest.php | 5 +++++ .../Component/Lock/Tests/Store/PdoDbalStoreTest.php | 5 +++++ src/Symfony/Component/Lock/Tests/Store/PdoStoreTest.php | 5 +++++ src/Symfony/Component/Lock/composer.json | 2 +- .../Tests/Transport/Doctrine/DoctrineIntegrationTest.php | 8 ++++++++ src/Symfony/Component/Messenger/composer.json | 2 +- 8 files changed, 35 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php index dbd93bdd71f0..9056c848718b 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/PdoAdapterTest.php @@ -11,6 +11,7 @@ namespace Symfony\Component\Cache\Tests\Adapter; +use Doctrine\DBAL\Version; use Psr\Cache\CacheItemPoolInterface; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -30,6 +31,10 @@ public static function setUpBeforeClass(): void 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('sqlite:'.self::$dbFile); diff --git a/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php index 0e45324c0c12..4374d4e8297e 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 Psr\Cache\CacheItemPoolInterface; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -31,6 +32,10 @@ public static function setUpBeforeClass(): void 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'); } diff --git a/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/PdoDbalCacheTest.php index 1629959b4343..26dcb2f54ab2 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 Psr\SimpleCache\CacheInterface; use Symfony\Component\Cache\Simple\PdoCache; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; @@ -32,6 +33,10 @@ public static function setUpBeforeClass(): void 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/Lock/Tests/Store/PdoDbalStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/PdoDbalStoreTest.php index 264c99829c98..829e8ec9f761 100644 --- a/src/Symfony/Component/Lock/Tests/Store/PdoDbalStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/PdoDbalStoreTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Lock\Tests\Store; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use Symfony\Component\Lock\PersistingStoreInterface; use Symfony\Component\Lock\Store\PdoStore; @@ -30,6 +31,10 @@ public static function setUpBeforeClass(): void { self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_lock'); + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + $store = new PdoStore(DriverManager::getConnection(['driver' => 'pdo_sqlite', 'path' => self::$dbFile])); $store->createTable(); } diff --git a/src/Symfony/Component/Lock/Tests/Store/PdoStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/PdoStoreTest.php index 800397d153d1..f69436304530 100644 --- a/src/Symfony/Component/Lock/Tests/Store/PdoStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/PdoStoreTest.php @@ -11,6 +11,7 @@ namespace Symfony\Component\Lock\Tests\Store; +use Doctrine\DBAL\Version; use Symfony\Component\Lock\Key; use Symfony\Component\Lock\PersistingStoreInterface; use Symfony\Component\Lock\Store\PdoStore; @@ -30,6 +31,10 @@ public static function setUpBeforeClass(): void { self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_lock'); + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + $store = new PdoStore('sqlite:'.self::$dbFile); $store->createTable(); } diff --git a/src/Symfony/Component/Lock/composer.json b/src/Symfony/Component/Lock/composer.json index 895f32643165..c815813c0c6c 100644 --- a/src/Symfony/Component/Lock/composer.json +++ b/src/Symfony/Component/Lock/composer.json @@ -20,7 +20,7 @@ "psr/log": "~1.0" }, "require-dev": { - "doctrine/dbal": "~2.5", + "doctrine/dbal": "^2.5|^3.0", "predis/predis": "~1.0" }, "conflict": { diff --git a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php index a01e68db39e2..f417283aa5bb 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Messenger\Tests\Transport\Doctrine; use Doctrine\DBAL\DriverManager; +use Doctrine\DBAL\Version; use PHPUnit\Framework\TestCase; use Symfony\Component\Messenger\Tests\Fixtures\DummyMessage; use Symfony\Component\Messenger\Transport\Doctrine\Connection; @@ -28,6 +29,13 @@ class DoctrineIntegrationTest extends TestCase /** @var string */ private $sqliteFile; + public static function setUpBeforeClass(): void + { + if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) { + self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.'); + } + } + protected function setUp(): void { $this->sqliteFile = sys_get_temp_dir().'/symfony.messenger.sqlite'; diff --git a/src/Symfony/Component/Messenger/composer.json b/src/Symfony/Component/Messenger/composer.json index dfe66f10f04e..04d48d59883c 100644 --- a/src/Symfony/Component/Messenger/composer.json +++ b/src/Symfony/Component/Messenger/composer.json @@ -20,7 +20,7 @@ "psr/log": "~1.0" }, "require-dev": { - "doctrine/dbal": "^2.6", + "doctrine/dbal": "^2.6|^3.0", "psr/cache": "~1.0", "doctrine/persistence": "^1.3", "symfony/console": "^3.4|^4.0|^5.0", From 6a73bcdb8e4f338ba79946dda57972a08e94e492 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 17:44:24 +0200 Subject: [PATCH 110/145] [PropertyAccessor] Added missing property path on php 8. --- src/Symfony/Component/PropertyAccess/PropertyAccessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php index 2d47e3d2561c..4e0ba6f1511d 100644 --- a/src/Symfony/Component/PropertyAccess/PropertyAccessor.php +++ b/src/Symfony/Component/PropertyAccess/PropertyAccessor.php @@ -204,7 +204,7 @@ private static function throwInvalidArgumentException(string $message, array $tr 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); + throw new InvalidArgumentException(sprintf('Expected argument of type "%s", "%s" given at property path "%s".', $expectedType, 'NULL' === $actualType ? 'null' : $actualType, $propertyPath), 0, $previous); } } From 896b69c9073f9d3b78ce6e95fd81288756d1b1e3 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 23 May 2020 18:25:05 +0200 Subject: [PATCH 111/145] 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 112/145] 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 113/145] [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 98e5105bd30d0067ee8aee162d38a4d9c6d06c61 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 21:47:49 +0200 Subject: [PATCH 114/145] [Process] Fix failing test on php 8. --- src/Symfony/Component/Process/Tests/ProcessTest.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index 5841e9c856b6..0f4d15f226cd 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -992,24 +992,16 @@ public function testWrongSignal() $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'); - } + $this->expectException(RuntimeException::class); $process = $this->getProcessForCode('sleep(38);'); $process->start(); try { $process->signal(-4); $this->fail('A RuntimeException must have been thrown'); - } catch (\TypeError $e) { - $process->stop(0); - } catch (RuntimeException $e) { + } finally { $process->stop(0); } - - throw $e; } public function testDisableOutputDisablesTheOutput() From e3e1558a0babd2e622d762fcc1a70d3a661ab7d9 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 23:26:28 +0200 Subject: [PATCH 115/145] 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 9d702fd94b514ac4f7d455503045c257c62d72f5 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 23 May 2020 00:49:08 +0200 Subject: [PATCH 116/145] Parse and render anonymous classes correctly on php 8 --- .travis.yml | 2 -- src/Symfony/Component/Console/Application.php | 9 ++++--- .../Console/Tests/ApplicationTest.php | 16 ++++++++----- src/Symfony/Component/Console/composer.json | 1 + src/Symfony/Component/Debug/ErrorHandler.php | 4 ++-- .../Debug/Exception/FatalThrowableError.php | 2 +- .../Debug/Exception/FlattenException.php | 10 ++++---- .../Debug/Tests/ErrorHandlerTest.php | 20 ++++++++++++++++ .../Tests/Exception/FlattenExceptionTest.php | 5 ++++ src/Symfony/Component/Debug/composer.json | 3 ++- .../ErrorHandler/DebugClassLoader.php | 2 +- .../Component/ErrorHandler/ErrorHandler.php | 8 +++---- .../Exception/FlattenException.php | 10 ++++---- .../ErrorHandler/Tests/ErrorHandlerTest.php | 24 +++++++++++++++++++ .../Tests/Exception/FlattenExceptionTest.php | 5 ++++ .../Component/ErrorHandler/composer.json | 1 + src/Symfony/Component/HttpKernel/Kernel.php | 7 ++---- .../Component/HttpKernel/Tests/KernelTest.php | 21 ++++++++++++++++ .../Component/HttpKernel/composer.json | 1 + .../Middleware/TraceableMiddleware.php | 3 +-- .../Middleware/TraceableMiddlewareTest.php | 19 ++++++++------- src/Symfony/Component/Messenger/composer.json | 3 ++- .../Component/VarDumper/Caster/ClassStub.php | 6 ++--- .../VarDumper/Caster/ExceptionCaster.php | 9 ++++--- 24 files changed, 135 insertions(+), 56 deletions(-) diff --git a/.travis.yml b/.travis.yml index 115fa34aa918..feb49ef8b063 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,8 +31,6 @@ matrix: - php: nightly services: [memcached] fast_finish: true - allow_failures: - - php: nightly cache: directories: diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index 4cea086b78e7..199ed6804c3f 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -863,17 +863,16 @@ private function doActuallyRenderThrowable(\Throwable $e, OutputInterface $outpu do { $message = trim($e->getMessage()); if ('' === $message || OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) { - $class = \get_class($e); - $class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; + $class = get_debug_type($e); $title = sprintf(' [%s%s] ', $class, 0 !== ($code = $e->getCode()) ? ' ('.$code.')' : ''); $len = Helper::strlen($title); } else { $len = 0; } - if (false !== strpos($message, "class@anonymous\0")) { - $message = preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + if (false !== strpos($message, "@anonymous\0")) { + $message = preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $message); } diff --git a/src/Symfony/Component/Console/Tests/ApplicationTest.php b/src/Symfony/Component/Console/Tests/ApplicationTest.php index cc68f596eea9..7fa460d7d87f 100644 --- a/src/Symfony/Component/Console/Tests/ApplicationTest.php +++ b/src/Symfony/Component/Console/Tests/ApplicationTest.php @@ -897,7 +897,8 @@ public function testRenderAnonymousException() $application = new Application(); $application->setAutoExit(false); $application->register('foo')->setCode(function () { - throw new class('') extends \InvalidArgumentException { }; + throw new class('') extends \InvalidArgumentException { + }; }); $tester = new ApplicationTester($application); @@ -907,12 +908,13 @@ public function testRenderAnonymousException() $application = new Application(); $application->setAutoExit(false); $application->register('foo')->setCode(function () { - throw new \InvalidArgumentException(sprintf('Dummy type "%s" is invalid.', \get_class(new class() { }))); + throw new \InvalidArgumentException(sprintf('Dummy type "%s" is invalid.', \get_class(new class() { + }))); }); $tester = new ApplicationTester($application); $tester->run(['command' => 'foo'], ['decorated' => false]); - $this->assertStringContainsString('Dummy type "@anonymous" is invalid.', $tester->getDisplay(true)); + $this->assertStringContainsString('Dummy type "class@anonymous" is invalid.', $tester->getDisplay(true)); } public function testRenderExceptionStackTraceContainsRootException() @@ -920,7 +922,8 @@ public function testRenderExceptionStackTraceContainsRootException() $application = new Application(); $application->setAutoExit(false); $application->register('foo')->setCode(function () { - throw new class('') extends \InvalidArgumentException { }; + throw new class('') extends \InvalidArgumentException { + }; }); $tester = new ApplicationTester($application); @@ -930,12 +933,13 @@ public function testRenderExceptionStackTraceContainsRootException() $application = new Application(); $application->setAutoExit(false); $application->register('foo')->setCode(function () { - throw new \InvalidArgumentException(sprintf('Dummy type "%s" is invalid.', \get_class(new class() { }))); + throw new \InvalidArgumentException(sprintf('Dummy type "%s" is invalid.', \get_class(new class() { + }))); }); $tester = new ApplicationTester($application); $tester->run(['command' => 'foo'], ['decorated' => false]); - $this->assertStringContainsString('Dummy type "@anonymous" is invalid.', $tester->getDisplay(true)); + $this->assertStringContainsString('Dummy type "class@anonymous" is invalid.', $tester->getDisplay(true)); } public function testRun() diff --git a/src/Symfony/Component/Console/composer.json b/src/Symfony/Component/Console/composer.json index 1f7240d4a625..42d74977ffec 100644 --- a/src/Symfony/Component/Console/composer.json +++ b/src/Symfony/Component/Console/composer.json @@ -19,6 +19,7 @@ "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1|^2" }, "require-dev": { diff --git a/src/Symfony/Component/Debug/ErrorHandler.php b/src/Symfony/Component/Debug/ErrorHandler.php index fe84ba5dad29..0cac5208c2cf 100644 --- a/src/Symfony/Component/Debug/ErrorHandler.php +++ b/src/Symfony/Component/Debug/ErrorHandler.php @@ -415,7 +415,7 @@ public function handleError($type, $message, $file, $line) $context = $e; } - if (false !== strpos($message, "class@anonymous\0")) { + if (false !== strpos($message, "@anonymous\0")) { $logMessage = $this->levels[$type].': '.(new FlattenException())->setMessage($message)->getMessage(); } else { $logMessage = $this->levels[$type].': '.$message; @@ -540,7 +540,7 @@ public function handleException($exception, array $error = null) $handlerException = null; if (($this->loggedErrors & $type) || $exception instanceof FatalThrowableError) { - if (false !== strpos($message = $exception->getMessage(), "class@anonymous\0")) { + if (false !== strpos($message = $exception->getMessage(), "@anonymous\0")) { $message = (new FlattenException())->setMessage($message)->getMessage(); } if ($exception instanceof FatalErrorException) { diff --git a/src/Symfony/Component/Debug/Exception/FatalThrowableError.php b/src/Symfony/Component/Debug/Exception/FatalThrowableError.php index e13b0172f058..5f86fecd6957 100644 --- a/src/Symfony/Component/Debug/Exception/FatalThrowableError.php +++ b/src/Symfony/Component/Debug/Exception/FatalThrowableError.php @@ -26,7 +26,7 @@ class FatalThrowableError extends FatalErrorException public function __construct(\Throwable $e) { - $this->originalClassName = \get_class($e); + $this->originalClassName = get_debug_type($e); if ($e instanceof \ParseError) { $severity = E_PARSE; diff --git a/src/Symfony/Component/Debug/Exception/FlattenException.php b/src/Symfony/Component/Debug/Exception/FlattenException.php index a4cb517cb20f..ac9545628a1a 100644 --- a/src/Symfony/Component/Debug/Exception/FlattenException.php +++ b/src/Symfony/Component/Debug/Exception/FlattenException.php @@ -67,7 +67,7 @@ public static function createFromThrowable(\Throwable $exception, int $statusCod $e->setStatusCode($statusCode); $e->setHeaders($headers); $e->setTraceFromThrowable($exception); - $e->setClass($exception instanceof FatalThrowableError ? $exception->getOriginalClassName() : \get_class($exception)); + $e->setClass($exception instanceof FatalThrowableError ? $exception->getOriginalClassName() : get_debug_type($exception)); $e->setFile($exception->getFile()); $e->setLine($exception->getLine()); @@ -134,7 +134,7 @@ public function getClass() */ public function setClass($class) { - $this->class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; + $this->class = false !== strpos($class, "@anonymous\0") ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' : $class; return $this; } @@ -179,9 +179,9 @@ public function getMessage() */ public function setMessage($message) { - if (false !== strpos($message, "class@anonymous\0")) { - $message = preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + if (false !== strpos($message, "@anonymous\0")) { + $message = preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $message); } diff --git a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php index 2ba84c171b97..5943ff21b770 100644 --- a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php @@ -325,6 +325,26 @@ public function testHandleUserError() } } + public function testHandleErrorWithAnonymousClass() + { + $handler = ErrorHandler::register(); + $handler->throwAt(E_USER_WARNING, true); + try { + $handler->handleError(E_USER_WARNING, 'foo '.\get_class(new class() extends \stdClass { + }).' bar', 'foo.php', 12); + $this->fail('Exception expected.'); + } catch (\ErrorException $e) { + } finally { + restore_error_handler(); + restore_exception_handler(); + } + + $this->assertSame('User Warning: foo stdClass@anonymous bar', $e->getMessage()); + $this->assertSame(E_USER_WARNING, $e->getSeverity()); + $this->assertSame('foo.php', $e->getFile()); + $this->assertSame(12, $e->getLine()); + } + public function testHandleDeprecation() { $logArgCheck = function ($level, $message, $context) { diff --git a/src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php b/src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php index a2620b2e2833..9f715a816bd2 100644 --- a/src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php +++ b/src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php @@ -355,6 +355,11 @@ public function testAnonymousClass() $this->assertSame('RuntimeException@anonymous', $flattened->getClass()); + $flattened->setClass(\get_class(new class('Oops') extends NotFoundHttpException { + })); + + $this->assertSame('Symfony\Component\HttpKernel\Exception\NotFoundHttpException@anonymous', $flattened->getClass()); + $flattened = FlattenException::create(new \Exception(sprintf('Class "%s" blah.', \get_class(new class() extends \RuntimeException { })))); diff --git a/src/Symfony/Component/Debug/composer.json b/src/Symfony/Component/Debug/composer.json index f68082db7b31..3dab2888e34e 100644 --- a/src/Symfony/Component/Debug/composer.json +++ b/src/Symfony/Component/Debug/composer.json @@ -17,7 +17,8 @@ ], "require": { "php": ">=7.1.3", - "psr/log": "~1.0" + "psr/log": "~1.0", + "symfony/polyfill-php80": "^1.15" }, "conflict": { "symfony/http-kernel": "<3.4" diff --git a/src/Symfony/Component/ErrorHandler/DebugClassLoader.php b/src/Symfony/Component/ErrorHandler/DebugClassLoader.php index 71f21f50fadf..fe6227e8146e 100644 --- a/src/Symfony/Component/ErrorHandler/DebugClassLoader.php +++ b/src/Symfony/Component/ErrorHandler/DebugClassLoader.php @@ -407,7 +407,7 @@ public function checkAnnotations(\ReflectionClass $refl, string $class): array } $deprecations = []; - $className = isset($class[15]) && "\0" === $class[15] && 0 === strpos($class, "class@anonymous\x00") ? get_parent_class($class).'@anonymous' : $class; + $className = false !== strpos($class, "@anonymous\0") ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' : $class; // Don't trigger deprecations for classes in the same vendor if ($class !== $className) { diff --git a/src/Symfony/Component/ErrorHandler/ErrorHandler.php b/src/Symfony/Component/ErrorHandler/ErrorHandler.php index 0c8edfcd9d3b..e02a8fc45dce 100644 --- a/src/Symfony/Component/ErrorHandler/ErrorHandler.php +++ b/src/Symfony/Component/ErrorHandler/ErrorHandler.php @@ -435,7 +435,7 @@ public function handleError(int $type, string $message, string $file, int $line) $context = $e; } - if (false !== strpos($message, "class@anonymous\0")) { + if (false !== strpos($message, "@anonymous\0")) { $logMessage = $this->parseAnonymousClass($message); } else { $logMessage = $this->levels[$type].': '.$message; @@ -558,7 +558,7 @@ public function handleException(\Throwable $exception) } if ($this->loggedErrors & $type) { - if (false !== strpos($message = $exception->getMessage(), "class@anonymous\0")) { + if (false !== strpos($message = $exception->getMessage(), "@anonymous\0")) { $message = $this->parseAnonymousClass($message); } @@ -768,8 +768,8 @@ private function cleanTrace(array $backtrace, int $type, string $file, int $line */ private function parseAnonymousClass(string $message): string { - return preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', static function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + return preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', static function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $message); } } diff --git a/src/Symfony/Component/ErrorHandler/Exception/FlattenException.php b/src/Symfony/Component/ErrorHandler/Exception/FlattenException.php index 61a3497adc9f..e275ed1262bb 100644 --- a/src/Symfony/Component/ErrorHandler/Exception/FlattenException.php +++ b/src/Symfony/Component/ErrorHandler/Exception/FlattenException.php @@ -71,7 +71,7 @@ public static function createFromThrowable(\Throwable $exception, int $statusCod $e->setStatusCode($statusCode); $e->setHeaders($headers); $e->setTraceFromThrowable($exception); - $e->setClass($exception instanceof FatalThrowableError ? $exception->getOriginalClassName() : \get_class($exception)); + $e->setClass($exception instanceof FatalThrowableError ? $exception->getOriginalClassName() : get_debug_type($exception)); $e->setFile($exception->getFile()); $e->setLine($exception->getLine()); @@ -138,7 +138,7 @@ public function getClass(): string */ public function setClass($class): self { - $this->class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; + $this->class = false !== strpos($class, "@anonymous\0") ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' : $class; return $this; } @@ -195,9 +195,9 @@ public function getMessage(): string */ public function setMessage($message): self { - if (false !== strpos($message, "class@anonymous\0")) { - $message = preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + if (false !== strpos($message, "@anonymous\0")) { + $message = preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $message); } diff --git a/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php b/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php index d34961a00b0e..bb910b6d1a11 100644 --- a/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/ErrorHandler/Tests/ErrorHandlerTest.php @@ -365,6 +365,26 @@ public function testHandleUserError() } } + public function testHandleErrorWithAnonymousClass() + { + $handler = ErrorHandler::register(); + $handler->throwAt(3, true); + try { + $handler->handleError(3, 'foo '.\get_class(new class() extends \stdClass { + }).' bar', 'foo.php', 12); + $this->fail('Exception expected.'); + } catch (\ErrorException $e) { + } finally { + restore_error_handler(); + restore_exception_handler(); + } + + $this->assertSame('foo stdClass@anonymous bar', $e->getMessage()); + $this->assertSame(3, $e->getSeverity()); + $this->assertSame('foo.php', $e->getFile()); + $this->assertSame(12, $e->getLine()); + } + public function testHandleDeprecation() { $logArgCheck = function ($level, $message, $context) { @@ -433,6 +453,10 @@ public function handleExceptionProvider(): array { return [ ['Uncaught Exception: foo', new \Exception('foo')], + ['Uncaught Exception: foo', new class('foo') extends \RuntimeException { + }], + ['Uncaught Exception: foo stdClass@anonymous bar', new \RuntimeException('foo '.\get_class(new class() extends \stdClass { + }).' bar')], ['Uncaught Error: bar', new \Error('bar')], ['Uncaught ccc', new \ErrorException('ccc')], ]; diff --git a/src/Symfony/Component/ErrorHandler/Tests/Exception/FlattenExceptionTest.php b/src/Symfony/Component/ErrorHandler/Tests/Exception/FlattenExceptionTest.php index 437d211f7159..55fd4de29f57 100644 --- a/src/Symfony/Component/ErrorHandler/Tests/Exception/FlattenExceptionTest.php +++ b/src/Symfony/Component/ErrorHandler/Tests/Exception/FlattenExceptionTest.php @@ -373,6 +373,11 @@ public function testAnonymousClass() $this->assertSame('RuntimeException@anonymous', $flattened->getClass()); + $flattened->setClass(\get_class(new class('Oops') extends NotFoundHttpException { + })); + + $this->assertSame('Symfony\Component\HttpKernel\Exception\NotFoundHttpException@anonymous', $flattened->getClass()); + $flattened = FlattenException::createFromThrowable(new \Exception(sprintf('Class "%s" blah.', \get_class(new class() extends \RuntimeException { })))); diff --git a/src/Symfony/Component/ErrorHandler/composer.json b/src/Symfony/Component/ErrorHandler/composer.json index 857236e32cb6..a685b6b36828 100644 --- a/src/Symfony/Component/ErrorHandler/composer.json +++ b/src/Symfony/Component/ErrorHandler/composer.json @@ -19,6 +19,7 @@ "php": ">=7.1.3", "psr/log": "~1.0", "symfony/debug": "^4.4.5", + "symfony/polyfill-php80": "^1.15", "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 8349de676a97..438ef37f3450 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -228,10 +228,7 @@ public function getBundles() public function getBundle($name) { if (!isset($this->bundles[$name])) { - $class = static::class; - $class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; - - throw new \InvalidArgumentException(sprintf('Bundle "%s" does not exist or it is not enabled. Maybe you forgot to add it in the "registerBundles()" method of your "%s.php" file?', $name, $class)); + throw new \InvalidArgumentException(sprintf('Bundle "%s" does not exist or it is not enabled. Maybe you forgot to add it in the "registerBundles()" method of your "%s.php" file?', $name, get_debug_type($this))); } return $this->bundles[$name]; @@ -474,7 +471,7 @@ protected function build(ContainerBuilder $container) protected function getContainerClass() { $class = static::class; - $class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).str_replace('.', '_', ContainerBuilder::hash($class)) : $class; + $class = false !== strpos($class, "@anonymous\0") ? get_parent_class($class).str_replace('.', '_', ContainerBuilder::hash($class)) : $class; $class = $this->name.str_replace('\\', '_', $class).ucfirst($this->environment).($this->debug ? 'Debug' : '').'Container'; if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $class)) { diff --git a/src/Symfony/Component/HttpKernel/Tests/KernelTest.php b/src/Symfony/Component/HttpKernel/Tests/KernelTest.php index deac82b72d5f..36f8ea6e6650 100644 --- a/src/Symfony/Component/HttpKernel/Tests/KernelTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/KernelTest.php @@ -640,6 +640,27 @@ public function testKernelStartTimeIsResetWhileBootingAlreadyBootedKernel() $this->assertGreaterThan($preReBoot, $kernel->getStartTime()); } + public function testAnonymousKernelGeneratesValidContainerClass(): void + { + $kernel = new class('test', true) extends Kernel { + public function registerBundles(): iterable + { + return []; + } + + public function registerContainerConfiguration(LoaderInterface $loader): void + { + } + + public function getContainerClass(): string + { + return parent::getContainerClass(); + } + }; + + $this->assertRegExp('/^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*TestDebugContainer$/', $kernel->getContainerClass()); + } + /** * Returns a mock for the BundleInterface. */ diff --git a/src/Symfony/Component/HttpKernel/composer.json b/src/Symfony/Component/HttpKernel/composer.json index eca3b54b3661..2ae07df88445 100644 --- a/src/Symfony/Component/HttpKernel/composer.json +++ b/src/Symfony/Component/HttpKernel/composer.json @@ -22,6 +22,7 @@ "symfony/http-foundation": "^4.4|^5.0", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.15", "psr/log": "~1.0" }, "require-dev": { diff --git a/src/Symfony/Component/Messenger/Middleware/TraceableMiddleware.php b/src/Symfony/Component/Messenger/Middleware/TraceableMiddleware.php index f0400c3cb660..bedade318fe0 100644 --- a/src/Symfony/Component/Messenger/Middleware/TraceableMiddleware.php +++ b/src/Symfony/Component/Messenger/Middleware/TraceableMiddleware.php @@ -78,8 +78,7 @@ public function next(): MiddlewareInterface if ($this->stack === $nextMiddleware = $this->stack->next()) { $this->currentEvent = 'Tail'; } else { - $class = \get_class($nextMiddleware); - $this->currentEvent = sprintf('"%s"', 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class); + $this->currentEvent = sprintf('"%s"', get_debug_type($nextMiddleware)); } $this->currentEvent .= sprintf(' on "%s"', $this->busName); diff --git a/src/Symfony/Component/Messenger/Tests/Middleware/TraceableMiddlewareTest.php b/src/Symfony/Component/Messenger/Tests/Middleware/TraceableMiddlewareTest.php index 54be57755499..3bc64675d9cf 100644 --- a/src/Symfony/Component/Messenger/Tests/Middleware/TraceableMiddlewareTest.php +++ b/src/Symfony/Component/Messenger/Tests/Middleware/TraceableMiddlewareTest.php @@ -30,14 +30,16 @@ public function testHandle() $busId = 'command_bus'; $envelope = new Envelope(new DummyMessage('Hello')); - $middleware = $this->getMockBuilder(MiddlewareInterface::class)->getMock(); - $middleware->expects($this->once()) - ->method('handle') - ->with($envelope, $this->anything()) - ->willReturnCallback(function ($envelope, StackInterface $stack) { + $middleware = new class() implements MiddlewareInterface { + public $calls = 0; + + public function handle(Envelope $envelope, StackInterface $stack): Envelope + { + ++$this->calls; + return $stack->next()->handle($envelope, $stack); - }) - ; + } + }; $stopwatch = $this->createMock(Stopwatch::class); $stopwatch->expects($this->once())->method('isStarted')->willReturn(true); @@ -51,7 +53,7 @@ public function testHandle() $stopwatch->expects($this->exactly(2)) ->method('stop') ->withConsecutive( - [$this->matches('"%sMiddlewareInterface%s" on "command_bus"')], + ['"Symfony\Component\Messenger\Middleware\MiddlewareInterface@anonymous" on "command_bus"'], ['Tail on "command_bus"'] ) ; @@ -59,6 +61,7 @@ public function testHandle() $traced = new TraceableMiddleware($stopwatch, $busId); $traced->handle($envelope, new StackMiddleware(new \ArrayIterator([null, $middleware]))); + $this->assertSame(1, $middleware->calls); } public function testHandleWithException() diff --git a/src/Symfony/Component/Messenger/composer.json b/src/Symfony/Component/Messenger/composer.json index dfe66f10f04e..4d818a4952f0 100644 --- a/src/Symfony/Component/Messenger/composer.json +++ b/src/Symfony/Component/Messenger/composer.json @@ -17,7 +17,8 @@ ], "require": { "php": ">=7.1.3", - "psr/log": "~1.0" + "psr/log": "~1.0", + "symfony/polyfill-php80": "^1.15" }, "require-dev": { "doctrine/dbal": "^2.6", diff --git a/src/Symfony/Component/VarDumper/Caster/ClassStub.php b/src/Symfony/Component/VarDumper/Caster/ClassStub.php index c998b49f2cc4..612a7ca2d993 100644 --- a/src/Symfony/Component/VarDumper/Caster/ClassStub.php +++ b/src/Symfony/Component/VarDumper/Caster/ClassStub.php @@ -55,9 +55,9 @@ public function __construct(string $identifier, $callable = null) } } - if (false !== strpos($identifier, "class@anonymous\0")) { - $this->value = $identifier = preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + if (false !== strpos($identifier, "@anonymous\0")) { + $this->value = $identifier = preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $identifier); } diff --git a/src/Symfony/Component/VarDumper/Caster/ExceptionCaster.php b/src/Symfony/Component/VarDumper/Caster/ExceptionCaster.php index 9fe1e39ae49e..dc9ed7e322ba 100644 --- a/src/Symfony/Component/VarDumper/Caster/ExceptionCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/ExceptionCaster.php @@ -73,8 +73,7 @@ public static function castThrowingCasterException(ThrowingCasterException $e, a if (isset($a[$xPrefix.'previous'], $a[$trace]) && $a[$xPrefix.'previous'] instanceof \Exception) { $b = (array) $a[$xPrefix.'previous']; - $class = \get_class($a[$xPrefix.'previous']); - $class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; + $class = get_debug_type($a[$xPrefix.'previous']); self::traceUnshift($b[$xPrefix.'trace'], $class, $b[$prefix.'file'], $b[$prefix.'line']); $a[$trace] = new TraceStub($b[$xPrefix.'trace'], false, 0, -\count($a[$trace]->value)); } @@ -282,9 +281,9 @@ private static function filterExceptionArray(string $xClass, array $a, string $x } unset($a[$xPrefix.'string'], $a[Caster::PREFIX_DYNAMIC.'xdebug_message'], $a[Caster::PREFIX_DYNAMIC.'__destructorException']); - if (isset($a[Caster::PREFIX_PROTECTED.'message']) && false !== strpos($a[Caster::PREFIX_PROTECTED.'message'], "class@anonymous\0")) { - $a[Caster::PREFIX_PROTECTED.'message'] = preg_replace_callback('/class@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { - return class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0]; + if (isset($a[Caster::PREFIX_PROTECTED.'message']) && false !== strpos($a[Caster::PREFIX_PROTECTED.'message'], "@anonymous\0")) { + $a[Caster::PREFIX_PROTECTED.'message'] = preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) { + return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' : $m[0]; }, $a[Caster::PREFIX_PROTECTED.'message']); } From 83a34a84abac7949ecf3d605abb743074b6ca05d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 24 May 2020 10:55:27 +0200 Subject: [PATCH 117/145] [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 aa53bdb77bb5536c7fc59212df40bfae592fca39 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 24 May 2020 11:45:24 +0200 Subject: [PATCH 118/145] [Security/Core] fix PHP8 deprecation --- .../Security/Core/Authentication/Token/SwitchUserToken.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php index 4390d68a6e5c..accea459349d 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/SwitchUserToken.php @@ -28,7 +28,7 @@ class SwitchUserToken extends UsernamePasswordToken * * @throws \InvalidArgumentException */ - public function __construct($user, $credentials, string $providerKey, array $roles = [], TokenInterface $originalToken) + public function __construct($user, $credentials, string $providerKey, array $roles, TokenInterface $originalToken) { parent::__construct($user, $credentials, $providerKey, $roles); From d4b598c7892df9e349a2a2a9d03e6736e94038b8 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 24 May 2020 14:21:57 +0200 Subject: [PATCH 119/145] 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 120/145] [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 35b7e1cb9a9c3fafe0c68386fae13721ea05aa82 Mon Sep 17 00:00:00 2001 From: Ernest Hymel Date: Sun, 24 May 2020 11:54:18 -0500 Subject: [PATCH 121/145] Allow email message to have "To", "Cc", or "Bcc" header to be valid --- src/Symfony/Component/Mime/Message.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Mime/Message.php b/src/Symfony/Component/Mime/Message.php index 94a49764e491..b7ddb76bc780 100644 --- a/src/Symfony/Component/Mime/Message.php +++ b/src/Symfony/Component/Mime/Message.php @@ -122,8 +122,8 @@ public function toIterable(): iterable public function ensureValidity() { - if (!$this->headers->has('To')) { - throw new LogicException('An email must have a "To" header.'); + if (!$this->headers->has('To') && !$this->headers->has('Cc') && !$this->headers->has('Bcc')) { + throw new LogicException('An email must have a "To", "Cc", or "Bcc" header.'); } if (!$this->headers->has('From') && !$this->headers->has('Sender')) { From f3b8a585139bb3b95473a2c679c6f02b26958bc1 Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Mon, 25 May 2020 17:24:52 +0200 Subject: [PATCH 122/145] [DotEnv][WebLink][Templating][ErrorHandler] Updated README with minimal example --- src/Symfony/Component/Dotenv/README.md | 24 +++++++++++++++- src/Symfony/Component/ErrorHandler/README.md | 29 ++++++++++++++++++++ src/Symfony/Component/Templating/README.md | 25 ++++++++++++++++- src/Symfony/Component/WebLink/README.md | 22 ++++++++++++++- 4 files changed, 97 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Dotenv/README.md b/src/Symfony/Component/Dotenv/README.md index 10bfff14ba78..855b8c02a1df 100644 --- a/src/Symfony/Component/Dotenv/README.md +++ b/src/Symfony/Component/Dotenv/README.md @@ -4,10 +4,32 @@ Dotenv Component Symfony Dotenv parses `.env` files to make environment variables stored in them accessible via `$_SERVER` or `$_ENV`. +Getting Started +--------------- + +``` +$ composer require symfony/dotenv +``` + +```php +use Symfony\Component\Dotenv\Dotenv; + +$dotenv = new Dotenv(); +$dotenv->load(__DIR__.'/.env'); + +// you can also load several files +$dotenv->load(__DIR__.'/.env', __DIR__.'/.env.dev'); + +// overwrites existing env variables +$dotenv->overload(__DIR__.'/.env'); + +// loads .env, .env.local, and .env.$APP_ENV.local or .env.$APP_ENV +$dotenv->loadEnv(__DIR__.'/.env'); +``` + Resources --------- - * [Documentation](https://symfony.com/doc/current/components/dotenv.html) * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) diff --git a/src/Symfony/Component/ErrorHandler/README.md b/src/Symfony/Component/ErrorHandler/README.md index 17e1cfd751d0..d14ccfd7b9c5 100644 --- a/src/Symfony/Component/ErrorHandler/README.md +++ b/src/Symfony/Component/ErrorHandler/README.md @@ -3,6 +3,35 @@ ErrorHandler Component The ErrorHandler component provides tools to manage errors and ease debugging PHP code. +Getting Started +--------------- + +``` +$ composer require symfony/error-handler +``` + +```php +use Symfony\Component\ErrorHandler\Debug; +use Symfony\Component\ErrorHandler\ErrorHandler; +use Symfony\Component\ErrorHandler\DebugClassLoader; + +Debug::enable(); + +// or enable only one feature +//ErrorHandler::register(); +//DebugClassLoader::enable(); + +$data = ErrorHandler::call(static function () use ($filename, $datetimeFormat) { + // if any code executed inside this anonymous function fails, a PHP exception + // will be thrown, even if the code uses the '@' PHP silence operator + $data = json_decode(file_get_contents($filename), true); + $data['read_at'] = date($datetimeFormat); + file_put_contents($filename, json_encode($data)); + + return $data; +}); +``` + Resources --------- diff --git a/src/Symfony/Component/Templating/README.md b/src/Symfony/Component/Templating/README.md index 2b8ecad87396..a4798fdaafde 100644 --- a/src/Symfony/Component/Templating/README.md +++ b/src/Symfony/Component/Templating/README.md @@ -9,10 +9,33 @@ for changes. It also provides a concrete template engine implementation using PHP with additional tools for escaping and separating templates into blocks and layouts. +Getting Started +--------------- + +``` +$ composer require symfony/templating +``` + +```php +use Symfony\Component\Templating\Loader\FilesystemLoader; +use Symfony\Component\Templating\PhpEngine; +use Symfony\Component\Templating\Helper\SlotsHelper; +use Symfony\Component\Templating\TemplateNameParser; + +$filesystemLoader = new FilesystemLoader(__DIR__.'/views/%name%'); + +$templating = new PhpEngine(new TemplateNameParser(), $filesystemLoader); +$templating->set(new SlotsHelper()); + +echo $templating->render('hello.php', ['firstname' => 'Fabien']); + +// hello.php +Hello, escape($firstname) ?>! +``` + Resources --------- - * [Documentation](https://symfony.com/doc/current/components/templating.html) * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) diff --git a/src/Symfony/Component/WebLink/README.md b/src/Symfony/Component/WebLink/README.md index d246e5075431..7c6abd3969a5 100644 --- a/src/Symfony/Component/WebLink/README.md +++ b/src/Symfony/Component/WebLink/README.md @@ -8,10 +8,30 @@ This component implements the [HTML5's Links](https://www.w3.org/TR/html5/links. and [Resource Hints](https://www.w3.org/TR/resource-hints/) W3C's specifications. It can also be used with extensions defined in the [HTML5 link type extensions wiki](http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions). +Getting Started +--------------- + +``` +$ composer require symfony/web-link +``` + +```php +use Symfony\Component\WebLink\GenericLinkProvider; +use Symfony\Component\WebLink\HttpHeaderSerializer; +use Symfony\Component\WebLink\Link; + +$linkProvider = (new GenericLinkProvider()) + ->withLink(new Link('preload', '/bootstrap.min.css')); + +header('Link: '.(new HttpHeaderSerializer())->serialize($linkProvider->getLinks())); + +echo 'Hello'; +``` + Resources --------- - * [Documentation](https://symfony.com/doc/current/components/web_link.html) + * [Documentation](https://symfony.com/doc/current/web_link.html) * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) From a91204a79d146d063898345d87813744592343fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Loi=CC=88c=20Beurlet?= Date: Tue, 26 May 2020 14:58:50 +0200 Subject: [PATCH 123/145] [WebProfilerBundle] changed label of memory usage in time panel (Mb into MiB) --- .../Bundle/WebProfilerBundle/Resources/views/Collector/time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.js b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.js index 6e693a9dc57c..588a9d22ed35 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.js +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.js @@ -94,7 +94,7 @@ class TimelineEngine { createLabel(name, duration, memory, period) { const label = this.renderer.createText(name, period.start * this.scale, this.labelY, 'timeline-label'); - const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} Mb`, 'timeline-sublabel'); + const sublabel = this.renderer.createTspan(` ${duration} ms / ${memory} MiB`, 'timeline-sublabel'); label.appendChild(sublabel); From 50348f2eb70501ec706b6effb9afe073a60c1e6d Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Tue, 26 May 2020 16:53:18 +0200 Subject: [PATCH 124/145] 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 125/145] [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 126/145] 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 1385213a9adf6bc6723b67c8bbe3a4e02e36de5a Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 28 May 2020 01:00:48 +0200 Subject: [PATCH 127/145] Handle fetch mode deprecation of DBAL 2.11. --- .../Component/Cache/Traits/PdoTrait.php | 2 +- src/Symfony/Component/Lock/Store/PdoStore.php | 2 +- .../Transport/Doctrine/ConnectionTest.php | 21 +++++++++++++------ .../Doctrine/DoctrineIntegrationTest.php | 7 +++---- .../Transport/Doctrine/Connection.php | 17 ++++++++------- 5 files changed, 30 insertions(+), 19 deletions(-) diff --git a/src/Symfony/Component/Cache/Traits/PdoTrait.php b/src/Symfony/Component/Cache/Traits/PdoTrait.php index 943d34e5ebd4..cb5bb0511f25 100644 --- a/src/Symfony/Component/Cache/Traits/PdoTrait.php +++ b/src/Symfony/Component/Cache/Traits/PdoTrait.php @@ -226,7 +226,7 @@ protected function doHave($id) $stmt->bindValue(':time', time(), \PDO::PARAM_INT); $stmt->execute(); - return (bool) $stmt->fetchColumn(); + return (bool) (method_exists($stmt, 'fetchOne') ? $stmt->fetchOne() : $stmt->fetchColumn()); } /** diff --git a/src/Symfony/Component/Lock/Store/PdoStore.php b/src/Symfony/Component/Lock/Store/PdoStore.php index 5e2f01caa408..7af7f3870fad 100644 --- a/src/Symfony/Component/Lock/Store/PdoStore.php +++ b/src/Symfony/Component/Lock/Store/PdoStore.php @@ -203,7 +203,7 @@ public function exists(Key $key) $stmt->bindValue(':token', $this->getUniqueToken($key)); $stmt->execute(); - return (bool) $stmt->fetchColumn(); + return (bool) (method_exists($stmt, 'fetchOne') ? $stmt->fetchOne() : $stmt->fetchColumn()); } /** diff --git a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/ConnectionTest.php b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/ConnectionTest.php index bd7fff769bcc..d34e45d2ce51 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/ConnectionTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/ConnectionTest.php @@ -12,7 +12,8 @@ namespace Symfony\Component\Messenger\Tests\Transport\Doctrine; use Doctrine\DBAL\DBALException; -use Doctrine\DBAL\Driver\Statement; +use Doctrine\DBAL\Driver\ResultStatement; +use Doctrine\DBAL\ForwardCompatibility\Driver\ResultStatement as ForwardCompatibleResultStatement; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Query\QueryBuilder; use Doctrine\DBAL\Schema\AbstractSchemaManager; @@ -142,11 +143,16 @@ private function getQueryBuilderMock() return $queryBuilder; } - private function getStatementMock($expectedResult): Statement + private function getStatementMock($expectedResult): ResultStatement { - $stmt = $this->createMock(Statement::class); + $mockedInterface = interface_exists(ForwardCompatibleResultStatement::class) + ? ForwardCompatibleResultStatement::class + : ResultStatement::class; + + $stmt = $this->createMock($mockedInterface); + $stmt->expects($this->once()) - ->method('fetch') + ->method(method_exists($mockedInterface, 'fetchAssociative') ? 'fetchAssociative' : 'fetch') ->willReturn($expectedResult); return $stmt; @@ -306,9 +312,12 @@ public function testFindAll() 'headers' => json_encode(['type' => DummyMessage::class]), ]; - $stmt = $this->createMock(Statement::class); + $mockedInterface = interface_exists(ForwardCompatibleResultStatement::class) + ? ForwardCompatibleResultStatement::class + : ResultStatement::class; + $stmt = $this->createMock($mockedInterface); $stmt->expects($this->once()) - ->method('fetchAll') + ->method(method_exists($mockedInterface, 'fetchAllAssociative') ? 'fetchAllAssociative' : 'fetchAll') ->willReturn([$message1, $message2]); $driverConnection diff --git a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php index f417283aa5bb..45ca64b77106 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/Doctrine/DoctrineIntegrationTest.php @@ -64,15 +64,14 @@ public function testSendWithDelay() { $this->connection->send('{"message": "Hi i am delayed"}', ['type' => DummyMessage::class], 600000); - $available_at = $this->driverConnection->createQueryBuilder() + $stmt = $this->driverConnection->createQueryBuilder() ->select('m.available_at') ->from('messenger_messages', 'm') ->where('m.body = :body') ->setParameter(':body', '{"message": "Hi i am delayed"}') - ->execute() - ->fetchColumn(); + ->execute(); - $available_at = new \DateTime($available_at); + $available_at = new \DateTime(method_exists($stmt, 'fetchOne') ? $stmt->fetchOne() : $stmt->fetchColumn()); $now = new \DateTime(); $now->modify('+60 seconds'); diff --git a/src/Symfony/Component/Messenger/Transport/Doctrine/Connection.php b/src/Symfony/Component/Messenger/Transport/Doctrine/Connection.php index 6004bf360e3b..4f5b43c4ac8d 100644 --- a/src/Symfony/Component/Messenger/Transport/Doctrine/Connection.php +++ b/src/Symfony/Component/Messenger/Transport/Doctrine/Connection.php @@ -159,11 +159,12 @@ public function get(): ?array ->setMaxResults(1); // use SELECT ... FOR UPDATE to lock table - $doctrineEnvelope = $this->executeQuery( + $stmt = $this->executeQuery( $query->getSQL().' '.$this->driverConnection->getDatabasePlatform()->getWriteLockSQL(), $query->getParameters(), $query->getParameterTypes() - )->fetch(); + ); + $doctrineEnvelope = method_exists($stmt, 'fetchAssociative') ? $stmt->fetchAssociative() : $stmt->fetch(); if (false === $doctrineEnvelope) { $this->driverConnection->commit(); @@ -249,7 +250,9 @@ public function getMessageCount(): int ->select('COUNT(m.id) as message_count') ->setMaxResults(1); - return $this->executeQuery($queryBuilder->getSQL(), $queryBuilder->getParameters(), $queryBuilder->getParameterTypes())->fetchColumn(); + $stmt = $this->executeQuery($queryBuilder->getSQL(), $queryBuilder->getParameters(), $queryBuilder->getParameterTypes()); + + return method_exists($stmt, 'fetchOne') ? $stmt->fetchOne() : $stmt->fetchColumn(); } public function findAll(int $limit = null): array @@ -259,7 +262,8 @@ public function findAll(int $limit = null): array $queryBuilder->setMaxResults($limit); } - $data = $this->executeQuery($queryBuilder->getSQL(), $queryBuilder->getParameters(), $queryBuilder->getParameterTypes())->fetchAll(); + $stmt = $this->executeQuery($queryBuilder->getSQL(), $queryBuilder->getParameters(), $queryBuilder->getParameterTypes()); + $data = method_exists($stmt, 'fetchAllAssociative') ? $stmt->fetchAllAssociative() : $stmt->fetchAll(); return array_map(function ($doctrineEnvelope) { return $this->decodeEnvelopeHeaders($doctrineEnvelope); @@ -271,9 +275,8 @@ public function find($id): ?array $queryBuilder = $this->createQueryBuilder() ->where('m.id = ?'); - $data = $this->executeQuery($queryBuilder->getSQL(), [ - $id, - ])->fetch(); + $stmt = $this->executeQuery($queryBuilder->getSQL(), [$id]); + $data = method_exists($stmt, 'fetchAssociative') ? $stmt->fetchAssociative() : $stmt->fetch(); return false === $data ? null : $this->decodeEnvelopeHeaders($data); } From afdda5d764cf002cc8069149b5f4b2033d4324c1 Mon Sep 17 00:00:00 2001 From: Martin Hujer Date: Wed, 27 May 2020 12:01:07 +0200 Subject: [PATCH 128/145] [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 aa50c9287c93b0972dafc533e350fff75c5820a3 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 28 May 2020 12:36:45 +0200 Subject: [PATCH 129/145] [ErrorHandler] fix setting $trace to null in FatalError --- src/Symfony/Component/ErrorHandler/Error/FatalError.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/ErrorHandler/Error/FatalError.php b/src/Symfony/Component/ErrorHandler/Error/FatalError.php index 68172d876cb5..98490b5accc4 100644 --- a/src/Symfony/Component/ErrorHandler/Error/FatalError.php +++ b/src/Symfony/Component/ErrorHandler/Error/FatalError.php @@ -72,9 +72,11 @@ public function __construct(string $message, int $code, array $error, int $trace 'line' => $error['line'], 'trace' => $trace, ] as $property => $value) { - $refl = new \ReflectionProperty(\Error::class, $property); - $refl->setAccessible(true); - $refl->setValue($this, $value); + if (null !== $value) { + $refl = new \ReflectionProperty(\Error::class, $property); + $refl->setAccessible(true); + $refl->setValue($this, $value); + } } } From 15d4f7ac041a59272af282a21228621a26311165 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 28 May 2020 14:17:38 +0200 Subject: [PATCH 130/145] [Security/Http] fix merge --- .../Component/Security/Http/Firewall/ExceptionListener.php | 2 +- .../Security/Http/Tests/Firewall/ExceptionListenerTest.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php index 09ef9564ed0c..93fe14c4c556 100644 --- a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php @@ -183,7 +183,7 @@ private function handleAccessDeniedException(GetResponseForExceptionEvent $event private function handleLogoutException(GetResponseForExceptionEvent $event, LogoutException $exception): void { - $event->setException(new AccessDeniedHttpException($exception->getMessage(), $exception)); + $event->setThrowable(new AccessDeniedHttpException($exception->getMessage(), $exception)); if (null !== $this->logger) { $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 53204129fedd..7328394b486d 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php @@ -165,8 +165,8 @@ public function testLogoutException() $listener = $this->createExceptionListener(); $listener->onKernelException($event); - $this->assertEquals('Invalid CSRF.', $event->getException()->getMessage()); - $this->assertEquals(403, $event->getException()->getStatusCode()); + $this->assertEquals('Invalid CSRF.', $event->getThrowable()->getMessage()); + $this->assertEquals(403, $event->getThrowable()->getStatusCode()); } public function getAccessDeniedExceptionProvider() From 6f59d605083b619ee41b07add28c5cfd42357ad2 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 28 May 2020 15:20:36 +0200 Subject: [PATCH 131/145] [TwigBridge] fix fallback html-to-txt body converter --- src/Symfony/Bridge/Twig/Mime/BodyRenderer.php | 2 +- src/Symfony/Bridge/Twig/Tests/Mime/BodyRendererTest.php | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Mime/BodyRenderer.php b/src/Symfony/Bridge/Twig/Mime/BodyRenderer.php index e1031b3d569c..e082d8313b5e 100644 --- a/src/Symfony/Bridge/Twig/Mime/BodyRenderer.php +++ b/src/Symfony/Bridge/Twig/Mime/BodyRenderer.php @@ -74,6 +74,6 @@ private function convertHtmlToText(string $html): string return $this->converter->convert($html); } - return strip_tags($html); + return strip_tags(preg_replace('{<(head|style)\b.*?}i', '', $html)); } } diff --git a/src/Symfony/Bridge/Twig/Tests/Mime/BodyRendererTest.php b/src/Symfony/Bridge/Twig/Tests/Mime/BodyRendererTest.php index 6eeade3a737a..175a8e197806 100644 --- a/src/Symfony/Bridge/Twig/Tests/Mime/BodyRendererTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Mime/BodyRendererTest.php @@ -29,11 +29,12 @@ public function testRenderTextOnly(): void public function testRenderHtmlOnly(): void { - $email = $this->prepareEmail(null, 'HTML'); + $html = 'headHTML'; + $email = $this->prepareEmail(null, $html); $body = $email->getBody(); $this->assertInstanceOf(AlternativePart::class, $body); $this->assertEquals('HTML', $body->getParts()[0]->bodyToString()); - $this->assertEquals('HTML', $body->getParts()[1]->bodyToString()); + $this->assertEquals(str_replace('=', '=3D', $html), $body->getParts()[1]->bodyToString()); } public function testRenderHtmlOnlyWithTextSet(): void From 03b4e986301cbe0c23fd6a56f4ee18afef31139f Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 29 May 2020 02:02:01 +0200 Subject: [PATCH 132/145] [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 133/145] 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 134/145] 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 135/145] 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 472883313f32f09a52973479edbbde5532d65141 Mon Sep 17 00:00:00 2001 From: Pierre du Plessis Date: Tue, 19 May 2020 10:49:18 +0200 Subject: [PATCH 136/145] [Validator] Use Mime component to determine mime type for file validator --- .../Validator/Constraints/FileValidator.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Validator/Constraints/FileValidator.php b/src/Symfony/Component/Validator/Constraints/FileValidator.php index 52e937944188..31218c2020fa 100644 --- a/src/Symfony/Component/Validator/Constraints/FileValidator.php +++ b/src/Symfony/Component/Validator/Constraints/FileValidator.php @@ -13,8 +13,10 @@ use Symfony\Component\HttpFoundation\File\File as FileObject; use Symfony\Component\HttpFoundation\File\UploadedFile; +use Symfony\Component\Mime\MimeTypes; use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\ConstraintValidator; +use Symfony\Component\Validator\Exception\LogicException; use Symfony\Component\Validator\Exception\UnexpectedTypeException; use Symfony\Component\Validator\Exception\UnexpectedValueException; @@ -170,12 +172,17 @@ public function validate($value, Constraint $constraint) } if ($constraint->mimeTypes) { - if (!$value instanceof FileObject) { - $value = new FileObject($value); + if ($value instanceof FileObject) { + $mime = $value->getMimeType(); + } elseif (class_exists(MimeTypes::class)) { + $mime = MimeTypes::getDefault()->guessMimeType($path); + } elseif (!class_exists(FileObject::class)) { + throw new LogicException('You cannot validate the mime-type of files as the Mime component is not installed. Try running "composer require symfony/mime".'); + } else { + $mime = (new FileObject($value))->getMimeType(); } $mimeTypes = (array) $constraint->mimeTypes; - $mime = $value->getMimeType(); foreach ($mimeTypes as $mimeType) { if ($mimeType === $mime) { From 5d93b61278bff6a3919081fbcc7d10c1928896f2 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Fri, 29 May 2020 16:03:43 +0200 Subject: [PATCH 137/145] [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 138/145] 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 a337ba55474f45c93d77a640268abe79e1bf2d3a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 30 May 2020 20:30:09 +0200 Subject: [PATCH 139/145] [HttpClient] fix issues in tests --- .travis.yml | 1 + .../DataCollector/HttpClientDataCollectorTest.php | 12 +++++++----- .../HttpClient/Tests/HttplugClientTest.php | 2 -- .../Component/HttpClient/Tests/Psr18ClientTest.php | 2 -- .../Contracts/HttpClient/Test/TestHttpServer.php | 13 +++++++------ 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5d6c2159a6fb..fc26dc6491e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -151,6 +151,7 @@ before_install: INI=~/.phpenv/versions/$PHP/etc/conf.d/travis.ini echo date.timezone = Europe/Paris >> $INI echo memory_limit = -1 >> $INI + echo default_socket_timeout = 10 >> $INI echo session.gc_probability = 0 >> $INI echo opcache.enable_cli = 1 >> $INI echo apc.enable_cli = 1 >> $INI diff --git a/src/Symfony/Component/HttpClient/Tests/DataCollector/HttpClientDataCollectorTest.php b/src/Symfony/Component/HttpClient/Tests/DataCollector/HttpClientDataCollectorTest.php index d173c172501a..b5787105467d 100755 --- a/src/Symfony/Component/HttpClient/Tests/DataCollector/HttpClientDataCollectorTest.php +++ b/src/Symfony/Component/HttpClient/Tests/DataCollector/HttpClientDataCollectorTest.php @@ -9,6 +9,8 @@ * file that was distributed with this source code. */ +namespace Symfony\Component\HttpClient\Tests\DataCollector; + use PHPUnit\Framework\TestCase; use Symfony\Component\HttpClient\DataCollector\HttpClientDataCollector; use Symfony\Component\HttpClient\NativeHttpClient; @@ -19,9 +21,13 @@ class HttpClientDataCollectorTest extends TestCase { - public function testItCollectsRequestCount() + public static function setUpBeforeClass(): void { TestHttpServer::start(); + } + + public function testItCollectsRequestCount() + { $httpClient1 = $this->httpClientThatHasTracedRequests([ [ 'method' => 'GET', @@ -50,7 +56,6 @@ public function testItCollectsRequestCount() public function testItCollectsErrorCount() { - TestHttpServer::start(); $httpClient1 = $this->httpClientThatHasTracedRequests([ [ 'method' => 'GET', @@ -80,7 +85,6 @@ public function testItCollectsErrorCount() public function testItCollectsErrorCountByClient() { - TestHttpServer::start(); $httpClient1 = $this->httpClientThatHasTracedRequests([ [ 'method' => 'GET', @@ -113,7 +117,6 @@ public function testItCollectsErrorCountByClient() public function testItCollectsTracesByClient() { - TestHttpServer::start(); $httpClient1 = $this->httpClientThatHasTracedRequests([ [ 'method' => 'GET', @@ -146,7 +149,6 @@ public function testItCollectsTracesByClient() public function testItIsEmptyAfterReset() { - TestHttpServer::start(); $httpClient1 = $this->httpClientThatHasTracedRequests([ [ 'method' => 'GET', diff --git a/src/Symfony/Component/HttpClient/Tests/HttplugClientTest.php b/src/Symfony/Component/HttpClient/Tests/HttplugClientTest.php index 66a8cef6e7c5..6a8cadbbc88a 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttplugClientTest.php +++ b/src/Symfony/Component/HttpClient/Tests/HttplugClientTest.php @@ -22,8 +22,6 @@ class HttplugClientTest extends TestCase { - private static $server; - public static function setUpBeforeClass(): void { TestHttpServer::start(); diff --git a/src/Symfony/Component/HttpClient/Tests/Psr18ClientTest.php b/src/Symfony/Component/HttpClient/Tests/Psr18ClientTest.php index 42e627b590e1..1ef36fc5bd09 100644 --- a/src/Symfony/Component/HttpClient/Tests/Psr18ClientTest.php +++ b/src/Symfony/Component/HttpClient/Tests/Psr18ClientTest.php @@ -21,8 +21,6 @@ class Psr18ClientTest extends TestCase { - private static $server; - public static function setUpBeforeClass(): void { TestHttpServer::start(); diff --git a/src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php b/src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php index 0adb1a52a303..cfc100d80ce6 100644 --- a/src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php +++ b/src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php @@ -19,12 +19,12 @@ */ class TestHttpServer { - private static $started; + private static $process; public static function start() { - if (self::$started) { - return; + if (self::$process) { + self::$process->stop(); } $finder = new PhpExecutableFinder(); @@ -32,9 +32,10 @@ public static function start() $process->setWorkingDirectory(__DIR__.'/Fixtures/web'); $process->start(); - register_shutdown_function([$process, 'stop']); - sleep('\\' === \DIRECTORY_SEPARATOR ? 10 : 1); + do { + usleep(50000); + } while (!@fopen('http://127.0.0.1:8057/', 'r')); - self::$started = true; + self::$process = $process; } } From d8f282edca9f58bfab51d4300683e40c9423db84 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 30 May 2020 20:58:05 +0200 Subject: [PATCH 140/145] 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 141/145] 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 142/145] [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 f297beb42cf34ca96a2c994db0ca18a15a25ed69 Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Sat, 30 May 2020 11:27:30 +0200 Subject: [PATCH 143/145] [Security] Fixed AbstractToken::hasUserChanged() --- .../Authentication/Token/AbstractToken.php | 7 +- .../Token/AbstractTokenTest.php | 67 ++++++++++++++++++- 2 files changed, 71 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php index de0ebac26488..e59997de3491 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php @@ -317,10 +317,13 @@ private function hasUserChanged(UserInterface $user): bool return true; } - $currentUserRoles = array_map('strval', (array) $this->user->getRoles()); $userRoles = array_map('strval', (array) $user->getRoles()); - if (\count($userRoles) !== \count($currentUserRoles) || \count($userRoles) !== \count(array_intersect($userRoles, $currentUserRoles))) { + if ($this instanceof SwitchUserToken) { + $userRoles[] = 'ROLE_PREVIOUS_ADMIN'; + } + + if (\count($userRoles) !== \count($this->getRoleNames()) || \count($userRoles) !== \count(array_intersect($userRoles, $this->getRoleNames()))) { return true; } diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php index 031fe4989884..b61af1d6bab7 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/AbstractTokenTest.php @@ -238,13 +238,28 @@ public function getUserChangesAdvancedUser() */ public function testSetUserDoesNotSetAuthenticatedToFalseWhenUserDoesNotChange($user) { - $token = new ConcreteToken(['ROLE_FOO']); + $token = new ConcreteToken(); + $token->setAuthenticated(true); + $this->assertTrue($token->isAuthenticated()); + + $token->setUser($user); + $this->assertTrue($token->isAuthenticated()); + + $token->setUser($user); + $this->assertTrue($token->isAuthenticated()); + } + + public function testIsUserChangedWhenSerializing() + { + $token = new ConcreteToken(['ROLE_ADMIN']); $token->setAuthenticated(true); $this->assertTrue($token->isAuthenticated()); + $user = new SerializableUser('wouter', ['ROLE_ADMIN']); $token->setUser($user); $this->assertTrue($token->isAuthenticated()); + $token = unserialize(serialize($token)); $token->setUser($user); $this->assertTrue($token->isAuthenticated()); } @@ -265,6 +280,56 @@ public function __toString(): string } } +class SerializableUser implements UserInterface, \Serializable +{ + private $roles; + private $name; + + public function __construct($name, array $roles = []) + { + $this->name = $name; + $this->roles = $roles; + } + + public function getUsername() + { + return $this->name; + } + + public function getPassword() + { + return '***'; + } + + public function getRoles() + { + if (empty($this->roles)) { + return ['ROLE_USER']; + } + + return $this->roles; + } + + public function eraseCredentials() + { + } + + public function getSalt() + { + return null; + } + + public function serialize() + { + return serialize($this->name); + } + + public function unserialize($serialized) + { + $this->name = unserialize($serialized); + } +} + class ConcreteToken extends AbstractToken { private $credentials = 'credentials_value'; From bf7200d032c44d85e2573f8aed393bfe9493a8ef Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 31 May 2020 07:30:04 +0200 Subject: [PATCH 144/145] updated CHANGELOG for 5.0.9 --- CHANGELOG-5.0.md | 62 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/CHANGELOG-5.0.md b/CHANGELOG-5.0.md index 03f182478ebf..83f8709d3b7c 100644 --- a/CHANGELOG-5.0.md +++ b/CHANGELOG-5.0.md @@ -7,6 +7,68 @@ in 5.0 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/v5.0.0...v5.0.1 +* 5.0.9 (2020-05-31) + + * bug #37008 [Security] Fixed AbstractToken::hasUserChanged() (wouterj) + * 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 #36868 [Validator] Use Mime component to determine mime type for file validator (pierredup) + * bug #37000 Add meaningful message when using ProcessHelper and Process is not installed (l-vo) + * bug #36995 [TwigBridge] fix fallback html-to-txt body converter (nicolas-grekas) + * bug #36993 [ErrorHandler] fix setting $trace to null in FatalError (nicolas-grekas) + * bug #36987 Handle fetch mode deprecation of DBAL 2.11. (derrabus) + * bug #36974 [Security] Fixed handling of CSRF logout error (wouterj) + * bug #36947 [Mime] Allow email message to have "To", "Cc", or "Bcc" header to be valid (Ernest Hymel) + * bug #36914 Parse and render anonymous classes correctly on php 8 (derrabus) + * bug #36921 [OptionsResolver][Serializer] Remove calls to deprecated ReflectionParameter::getClass() (derrabus) + * 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 #36915 [DomCrawler] Catch expected ValueError (derrabus) + * bug #36908 [Cache][HttpClient] Made method signatures compatible with their corresponding traits (derrabus) + * bug #36906 [DomCrawler] Catch expected ValueError (derrabus) + * bug #36904 [PropertyAccess] Parse php 8 TypeErrors correctly (derrabus) + * bug #36839 [BrowserKit] Raw body with custom Content-Type header (azhurb) + * bug #36896 [Config] Removed implicit cast of ReflectionProperty to string (derrabus) + * bug #35944 [Security/Core] Fix wrong roles comparison (thlbaut) + * 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 #36862 [Security] Unserialize $parentData, if needed, to avoid errors (rfaivre) + * bug #36855 [HttpKernel] Fix error logger when stderr is redirected to /dev/null (fabpot) + * bug #36838 [HttpKernel] Bring back the debug toolbar (derrabus) + * bug #36592 [BrowserKit] Allow Referer set by history to be overridden (Slamdunk) + * bug #36823 [HttpClient] fix PHP warning + accept status code >= 600 (nicolas-grekas) + * bug #36824 [Security/Core] fix compat of `NativePasswordEncoder` with pre-PHP74 values of `PASSWORD_*` consts (nicolas-grekas) + * bug #36811 [DependencyInjection] Fix register event listeners compiler pass (X-Coder264) + * bug #36789 Change priority of KernelEvents::RESPONSE subscriber (marcw) + * bug #36794 [Serializer] fix issue with PHP 8 (nicolas-grekas) + * bug #36786 [WebProfiler] Remove 'none' when appending CSP tokens (ndench) + * bug #36743 [Yaml] Fix escaped quotes in quoted multi-line string (ossinkine) + * bug #36777 [TwigBundle] FormExtension does not have a constructor anymore since sf 4.0 (Tobion) + * bug #36716 [Mime] handle passing custom mime types as string (mcneely) + * bug #36747 Queue name is a required parameter (theravel) + * bug #36751 [Mime] fix bad method call on `EmailAddressContains` (Kocal) + * bug #36696 [Console] don't check tty on stdin, it breaks with "data lost during stream conversion" (nicolas-grekas) + * 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 #36590 [Console] Default hidden question to 1 attempt for non-tty session (ostrolucky) + * 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 #36505 [Translation] Fix for translation:update command updating ICU messages (artemoliynyk) + * bug #36627 [Validator] fix lazy property usage. (bendavies) + * bug #36601 [Serializer] do not transform empty \Traversable to Array (soyuka) + * bug #36606 [Cache] Fixed not supported Redis eviction policies (SerheyDolgushev) + * bug #36625 [PhpUnitBridge] fix compat with PHP 5.3 (nicolas-grekas) + * 5.0.8 (2020-04-28) * bug #36536 [Cache] Allow invalidateTags calls to be traced by data collector (l-vo) From 0bf2da0734aac6d5c3df7091b7bb197b1645efb8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 31 May 2020 07:30:12 +0200 Subject: [PATCH 145/145] updated VERSION for 5.0.9 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index d90cb2b6c8a5..25111f3bc4c0 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -68,12 +68,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '5.0.9-DEV'; + const VERSION = '5.0.9'; const VERSION_ID = 50009; const MAJOR_VERSION = 5; const MINOR_VERSION = 0; const RELEASE_VERSION = 9; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '07/2020'; const END_OF_LIFE = '07/2020';