From 5309e64949c76e457ac4296c072b6d4847053208 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Mon, 8 Jul 2019 16:55:23 +0200 Subject: [PATCH 01/83] Fix toolbar load when GET params are present in "_wdt" route When using a custom router that inject GET parameters, eg: ``` # services.yaml parameters: # Replace default url generator service router.options.generator_base_class: Combodo\iTop\Portal\Routing\UrlGenerator ``` The path generated by the toolbar JS is HTML entity encoded which breaks the JS call (`&` becomes `&`). --- .../Resources/views/Profiler/toolbar_js.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig index f13edfcfebf52..9da75d0559219 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_js.html.twig @@ -15,7 +15,7 @@ Sfjs.load( 'sfwdt{{ token }}', - '{{ path("_wdt", { "token": token }) }}', + '{{ path("_wdt", { "token": token })|escape('js') }}', function(xhr, el) { /* Evaluate embedded scripts inside the toolbar */ From 9ed5f03b980aba0a35b2eb9a9a2d7b915a2cb295 Mon Sep 17 00:00:00 2001 From: Arman Hosseini <44655055+Arman-Hosseini@users.noreply.github.com> Date: Tue, 30 Jul 2019 22:16:01 +0430 Subject: [PATCH 02/83] Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler --- src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php b/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php index af65f7ec5725d..ec690d41b0d9b 100644 --- a/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php +++ b/src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php @@ -106,7 +106,7 @@ private function getFileLinkFormat() } return [ - $request->getSchemeAndHttpHost().$request->getBasePath().$this->urlFormat, + $request->getSchemeAndHttpHost().$this->urlFormat, $this->baseDir.\DIRECTORY_SEPARATOR, '', ]; } From afe2f0c511b1ad1d43ed1f37699578b857d281e6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 26 Aug 2019 18:46:48 +0200 Subject: [PATCH 03/83] bumped Symfony version to 3.4.32 --- 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 eda423e59ddbf..981b500b00718 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.31'; - const VERSION_ID = 30431; + const VERSION = '3.4.32-DEV'; + const VERSION_ID = 30432; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; - const RELEASE_VERSION = 31; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 32; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021'; From a790eeefa04e431f4726dbb117f8626dfe20b533 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 26 Aug 2019 19:51:50 +0100 Subject: [PATCH 04/83] Upgraded CI Composer --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 940eefd2318c2..b5fcad5e9b972 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -50,7 +50,7 @@ install: - copy /Y php.ini-min php.ini - echo extension=php_openssl.dll >> php.ini - cd c:\projects\symfony - - IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.7.1/composer.phar) + - IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.9.0/composer.phar) - php composer.phar self-update - copy /Y .composer\* %APPDATA%\Composer\ - php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master From 19b292893aaa404330884f9c726a47324a9dca80 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 26 Aug 2019 21:59:46 +0200 Subject: [PATCH 05/83] fix parameter type declaration and make fabbot happy --- src/Symfony/Component/Form/FormInterface.php | 2 +- .../Component/Form/Tests/FormFactoryTest.php | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Form/FormInterface.php b/src/Symfony/Component/Form/FormInterface.php index f8d5c6ea5b8f1..5c55bcd7951dc 100644 --- a/src/Symfony/Component/Form/FormInterface.php +++ b/src/Symfony/Component/Form/FormInterface.php @@ -31,7 +31,7 @@ interface FormInterface extends \ArrayAccess, \Traversable, \Countable * @throws Exception\LogicException when trying to set a parent for a form with * an empty name */ - public function setParent(FormInterface $parent = null); + public function setParent(self $parent = null); /** * Returns the parent form. diff --git a/src/Symfony/Component/Form/Tests/FormFactoryTest.php b/src/Symfony/Component/Form/Tests/FormFactoryTest.php index 79421be6353e5..7a978b1dfd14b 100644 --- a/src/Symfony/Component/Form/Tests/FormFactoryTest.php +++ b/src/Symfony/Component/Form/Tests/FormFactoryTest.php @@ -13,8 +13,9 @@ use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; +use Symfony\Component\EventDispatcher\EventDispatcher; +use Symfony\Component\Form\FormBuilder; use Symfony\Component\Form\FormFactory; -use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormTypeGuesserChain; use Symfony\Component\Form\Guess\Guess; use Symfony\Component\Form\Guess\TypeGuess; @@ -194,7 +195,7 @@ public function testCreateUsesBlockPrefixIfTypeGivenAsString() ->method('buildForm') ->with($this->builder, $resolvedOptions); - $form = $this->createMock(FormInterface::class); + $form = $this->createForm(); $this->builder->expects($this->once()) ->method('getForm') @@ -227,7 +228,7 @@ public function testCreateNamed() ->method('buildForm') ->with($this->builder, $resolvedOptions); - $form = $this->createMock(FormInterface::class); + $form = $this->createForm(); $this->builder->expects($this->once()) ->method('getForm') @@ -467,6 +468,13 @@ public function testCreateBuilderUsesPatternIfFound() $this->assertSame($this->builder, $this->builder); } + protected function createForm() + { + $formBuilder = new FormBuilder('', null, new EventDispatcher(), $this->factory); + + return $formBuilder->getForm(); + } + private function getMockFactory(array $methods = []) { return $this->getMockBuilder('Symfony\Component\Form\FormFactory') From 55517636b7b53c161cf53d8ea0fd996d049952f1 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 27 Aug 2019 07:02:45 +0200 Subject: [PATCH 06/83] Sort components on CI --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97301f2861117..93529bda2eb44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,7 +73,7 @@ before_install: export PHPUNIT=$(readlink -f ./phpunit) export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data" export COMPOSER_UP='composer update --no-progress --no-suggest --ansi' - export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n') + export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) find ~/.phpenv -name xdebug.ini -delete if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then @@ -244,7 +244,7 @@ install: SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) && git fetch origin $SYMFONY_VERSION && git checkout -m FETCH_HEAD && - COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n') + COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) else SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') fi @@ -252,7 +252,7 @@ install: - | # Skip the phpunit-bridge on not-master branches when $deps is empty if [[ ! $deps && $TRAVIS_BRANCH != master ]]; then - COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n') + COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort) fi - | From 390f4f43294784af0e127c2e682e1668e438630c Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 29 Aug 2019 10:14:38 +0200 Subject: [PATCH 07/83] fix dumping not inlined scalar tag values --- src/Symfony/Component/Yaml/Dumper.php | 4 ++++ src/Symfony/Component/Yaml/Tests/DumperTest.php | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/src/Symfony/Component/Yaml/Dumper.php b/src/Symfony/Component/Yaml/Dumper.php index 0012df4a358fc..7f38a5435c95c 100644 --- a/src/Symfony/Component/Yaml/Dumper.php +++ b/src/Symfony/Component/Yaml/Dumper.php @@ -120,6 +120,10 @@ public function dump($input, $inline = 0, $indent = 0, $flags = 0) } else { $output .= "\n"; $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags); + + if (is_scalar($value->getValue())) { + $output .= "\n"; + } } continue; diff --git a/src/Symfony/Component/Yaml/Tests/DumperTest.php b/src/Symfony/Component/Yaml/Tests/DumperTest.php index 4646c0c38b7f8..d4554392a2c43 100644 --- a/src/Symfony/Component/Yaml/Tests/DumperTest.php +++ b/src/Symfony/Component/Yaml/Tests/DumperTest.php @@ -525,6 +525,23 @@ public function testDumpingTaggedValueMapWithInlinedTagValues() $this->assertSame($expected, $yaml); } + public function testDumpingNotInlinedScalarTaggedValue() + { + $data = [ + 'user1' => new TaggedValue('user', 'jane'), + 'user2' => new TaggedValue('user', 'john'), + ]; + $expected = <<assertSame($expected, $this->dumper->dump($data, 2)); + } + public function testDumpMultiLineStringAsScalarBlock() { $data = [ From 792f93018a41498b7fae0de0a51e4ac647d14321 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 29 Aug 2019 16:54:55 +0200 Subject: [PATCH 08/83] [ProxyManager] remove ProxiedMethodReturnExpression polyfill --- composer.json | 3 +- .../Legacy/ProxiedMethodReturnExpression.php | 75 ------------------- src/Symfony/Bridge/ProxyManager/composer.json | 1 - 3 files changed, 1 insertion(+), 78 deletions(-) delete mode 100644 src/Symfony/Bridge/ProxyManager/Legacy/ProxiedMethodReturnExpression.php diff --git a/composer.json b/composer.json index 5799e0d27eacb..42397d75b851d 100644 --- a/composer.json +++ b/composer.json @@ -123,8 +123,7 @@ "Symfony\\Component\\": "src/Symfony/Component/" }, "classmap": [ - "src/Symfony/Component/Intl/Resources/stubs", - "src/Symfony/Bridge/ProxyManager/Legacy/ProxiedMethodReturnExpression.php" + "src/Symfony/Component/Intl/Resources/stubs" ], "exclude-from-classmap": [ "**/Tests/" diff --git a/src/Symfony/Bridge/ProxyManager/Legacy/ProxiedMethodReturnExpression.php b/src/Symfony/Bridge/ProxyManager/Legacy/ProxiedMethodReturnExpression.php deleted file mode 100644 index 1d75041113578..0000000000000 --- a/src/Symfony/Bridge/ProxyManager/Legacy/ProxiedMethodReturnExpression.php +++ /dev/null @@ -1,75 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace ProxyManager\Generator\Util; - -use Composer\Autoload\ClassLoader; -use ProxyManager\Version; - -if (class_exists(Version::class) && version_compare(\defined(Version::class.'::VERSION') ? Version::VERSION : Version::getVersion(), '2.5', '<')) { - /** - * Utility class to generate return expressions in method, given a method signature. - * - * This is required since return expressions may be forbidden by the method signature (void). - * - * @author Marco Pivetta - * @license MIT - * - * @see https://github.com/Ocramius/ProxyManager - */ - final class ProxiedMethodReturnExpression - { - public static function generate(string $returnedValueExpression, ?\ReflectionMethod $originalMethod): string - { - $originalReturnType = null === $originalMethod ? null : $originalMethod->getReturnType(); - - $originalReturnTypeName = null === $originalReturnType ? null : $originalReturnType->getName(); - - if ('void' === $originalReturnTypeName) { - return $returnedValueExpression.";\nreturn;"; - } - - return 'return '.$returnedValueExpression.';'; - } - } -} else { - // Fallback to the original class by unregistering this file from composer class loader - $getComposerClassLoader = static function ($functionLoader) use (&$getComposerClassLoader) { - if (\is_array($functionLoader)) { - $functionLoader = $functionLoader[0]; - } - if (!\is_object($functionLoader)) { - return null; - } - if ($functionLoader instanceof ClassLoader) { - return $functionLoader; - } - if ($functionLoader instanceof \Symfony\Component\Debug\DebugClassLoader) { - return $getComposerClassLoader($functionLoader->getClassLoader()); - } - if ($functionLoader instanceof \Symfony\Component\ErrorHandler\DebugClassLoader) { - return $getComposerClassLoader($functionLoader->getClassLoader()); - } - - return null; - }; - - $classLoader = null; - $functions = spl_autoload_functions(); - while (null === $classLoader && $functions) { - $classLoader = $getComposerClassLoader(array_shift($functions)); - } - $getComposerClassLoader = null; - - if (null !== $classLoader) { - $classLoader->addClassMap([ProxiedMethodReturnExpression::class => null]); - $classLoader->loadClass(ProxiedMethodReturnExpression::class); - } -} diff --git a/src/Symfony/Bridge/ProxyManager/composer.json b/src/Symfony/Bridge/ProxyManager/composer.json index 4adc5c063f89d..7e34cd90b5139 100644 --- a/src/Symfony/Bridge/ProxyManager/composer.json +++ b/src/Symfony/Bridge/ProxyManager/composer.json @@ -25,7 +25,6 @@ }, "autoload": { "psr-4": { "Symfony\\Bridge\\ProxyManager\\": "" }, - "classmap": [ "Legacy/ProxiedMethodReturnExpression.php" ], "exclude-from-classmap": [ "/Tests/" ] From 59ad6c29d104903e5bcba6c3cd7e20423a97d51b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 29 Aug 2019 18:09:35 +0200 Subject: [PATCH 09/83] [Console] allow Command::getName() to return null --- src/Symfony/Component/Console/Application.php | 5 +++++ src/Symfony/Component/Console/Command/Command.php | 6 +----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index 9bb0746e404cf..fcdcd908a8981 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -21,6 +21,7 @@ use Symfony\Component\Console\Event\ConsoleTerminateEvent; use Symfony\Component\Console\Exception\CommandNotFoundException; use Symfony\Component\Console\Exception\ExceptionInterface; +use Symfony\Component\Console\Exception\LogicException; use Symfony\Component\Console\Formatter\OutputFormatter; use Symfony\Component\Console\Helper\DebugFormatterHelper; use Symfony\Component\Console\Helper\FormatterHelper; @@ -459,6 +460,10 @@ public function add(Command $command) // Will throw if the command is not correctly initialized. $command->getDefinition(); + if (!$command->getName()) { + throw new LogicException(sprintf('The command defined in "%s" cannot have an empty name.', \get_class($command))); + } + $this->commands[$command->getName()] = $command; foreach ($command->getAliases() as $alias) { diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index b68c05dedac85..493800b315d92 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -453,14 +453,10 @@ public function setProcessTitle($title) /** * Returns the command name. * - * @return string The command name + * @return string|null */ public function getName() { - if (!$this->name) { - throw new LogicException(sprintf('The command defined in "%s" cannot have an empty name.', \get_class($this))); - } - return $this->name; } From 5e3c7ea4524eddb4d54c5cd900ec58a66ba599d4 Mon Sep 17 00:00:00 2001 From: Daniel Rotter Date: Tue, 27 Aug 2019 10:31:03 +0200 Subject: [PATCH 10/83] Return null as Expire header if it was set to null --- src/Symfony/Component/HttpFoundation/HeaderBag.php | 10 +++++++++- .../Component/HttpFoundation/Tests/HeaderBagTest.php | 10 ++++++++++ .../Component/HttpFoundation/Tests/ResponseTest.php | 6 ++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/HeaderBag.php b/src/Symfony/Component/HttpFoundation/HeaderBag.php index 08299977cace9..35bd6ad8fd704 100644 --- a/src/Symfony/Component/HttpFoundation/HeaderBag.php +++ b/src/Symfony/Component/HttpFoundation/HeaderBag.php @@ -121,7 +121,15 @@ public function get($key, $default = null, $first = true) } if ($first) { - return \count($headers[$key]) ? (string) $headers[$key][0] : $default; + if (!$headers[$key]) { + return $default; + } + + if (null === $headers[$key][0]) { + return null; + } + + return (string) $headers[$key][0]; } return $headers[$key]; diff --git a/src/Symfony/Component/HttpFoundation/Tests/HeaderBagTest.php b/src/Symfony/Component/HttpFoundation/Tests/HeaderBagTest.php index a5876f9e3a7c2..dcc266f69c41a 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/HeaderBagTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/HeaderBagTest.php @@ -48,6 +48,13 @@ public function testGetDate() $this->assertInstanceOf('DateTime', $headerDate); } + public function testGetDateNull() + { + $bag = new HeaderBag(['foo' => null]); + $headerDate = $bag->getDate('foo'); + $this->assertNull($headerDate); + } + public function testGetDateException() { $this->expectException('RuntimeException'); @@ -96,6 +103,9 @@ public function testGet() $bag->set('foo', 'bor', false); $this->assertEquals('bar', $bag->get('foo'), '->get return first value'); $this->assertEquals(['bar', 'bor'], $bag->get('foo', 'nope', false), '->get return all values as array'); + + $bag->set('baz', null); + $this->assertNull($bag->get('baz', 'nope'), '->get return null although different default value is given'); } public function testSetAssociativeArray() diff --git a/src/Symfony/Component/HttpFoundation/Tests/ResponseTest.php b/src/Symfony/Component/HttpFoundation/Tests/ResponseTest.php index c61dbacddb6d2..b846cdad3c3fe 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/ResponseTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/ResponseTest.php @@ -369,6 +369,12 @@ public function testExpire() $this->assertNull($response->headers->get('Expires'), '->expire() removes the Expires header when the response is fresh'); } + public function testNullExpireHeader() + { + $response = new Response(null, 200, ['Expires' => null]); + $this->assertNull($response->getExpires()); + } + public function testGetTtl() { $response = new Response(); From dede158e8a395a187815a1640e864e152d2ea654 Mon Sep 17 00:00:00 2001 From: Kyle Date: Fri, 30 Aug 2019 15:50:48 +0200 Subject: [PATCH 11/83] Fix #33395 PHP 5.3 compatibility --- src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php index 39676baf3e951..a0271cf3dad02 100644 --- a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php +++ b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php @@ -308,7 +308,7 @@ public static function collectDeprecations($outputFile) public static function getPhpUnitErrorHandler() { if (!isset(self::$isAtLeastPhpUnit83)) { - self::$isAtLeastPhpUnit83 = class_exists(ErrorHandler::class) && method_exists(ErrorHandler::class, '__invoke'); + self::$isAtLeastPhpUnit83 = class_exists('PHPUnit\Util\ErrorHandler') && method_exists('PHPUnit\Util\ErrorHandler', '__invoke'); } if (!self::$isAtLeastPhpUnit83) { return (class_exists('PHPUnit_Util_ErrorHandler', false) ? 'PHPUnit_Util_' : 'PHPUnit\Util\\').'ErrorHandler::handleError'; From 162bfc3cade0b63d55b4aa6ce209d63be6d0d7e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Wed, 21 Aug 2019 21:34:00 +0200 Subject: [PATCH 12/83] [DomCrawler] Fix FileFormField PHPDoc --- src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php | 2 +- src/Symfony/Component/DomCrawler/Field/FileFormField.php | 2 +- src/Symfony/Component/DomCrawler/Field/FormField.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php index 5ebf47464a046..db1b9de2bf154 100644 --- a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php @@ -113,7 +113,7 @@ public function untick() /** * Sets the value of the field. * - * @param string|array $value The value of the field + * @param string|array|bool $value The value of the field * * @throws \InvalidArgumentException When value type provided is not correct */ diff --git a/src/Symfony/Component/DomCrawler/Field/FileFormField.php b/src/Symfony/Component/DomCrawler/Field/FileFormField.php index 9e21c9c4b9bd1..9abdca8827ef5 100644 --- a/src/Symfony/Component/DomCrawler/Field/FileFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/FileFormField.php @@ -48,7 +48,7 @@ public function upload($value) /** * Sets the value of the field. * - * @param string $value The value of the field + * @param string|null $value The value of the field */ public function setValue($value) { diff --git a/src/Symfony/Component/DomCrawler/Field/FormField.php b/src/Symfony/Component/DomCrawler/Field/FormField.php index 51d875514c6d3..0bc4f54479f3b 100644 --- a/src/Symfony/Component/DomCrawler/Field/FormField.php +++ b/src/Symfony/Component/DomCrawler/Field/FormField.php @@ -99,7 +99,7 @@ public function getValue() /** * Sets the value of the field. * - * @param string $value The value of the field + * @param string|array|bool|null $value The value of the field */ public function setValue($value) { From 997cc5c3f0b73d6a2cda5e815dea4550674bf917 Mon Sep 17 00:00:00 2001 From: Joe Springe <518362+jspringe@users.noreply.github.com> Date: Fri, 30 Aug 2019 15:02:11 -0400 Subject: [PATCH 13/83] [Finder] Prevent unintentional file locks in Windows --- .../Component/Finder/Iterator/SortableIterator.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Finder/Iterator/SortableIterator.php b/src/Symfony/Component/Finder/Iterator/SortableIterator.php index 3c7157adb9258..e67997d117a93 100644 --- a/src/Symfony/Component/Finder/Iterator/SortableIterator.php +++ b/src/Symfony/Component/Finder/Iterator/SortableIterator.php @@ -38,11 +38,11 @@ public function __construct(\Traversable $iterator, $sort) $this->iterator = $iterator; if (self::SORT_BY_NAME === $sort) { - $this->sort = function ($a, $b) { + $this->sort = static function ($a, $b) { return strcmp($a->getRealPath() ?: $a->getPathname(), $b->getRealPath() ?: $b->getPathname()); }; } elseif (self::SORT_BY_TYPE === $sort) { - $this->sort = function ($a, $b) { + $this->sort = static function ($a, $b) { if ($a->isDir() && $b->isFile()) { return -1; } elseif ($a->isFile() && $b->isDir()) { @@ -52,15 +52,15 @@ public function __construct(\Traversable $iterator, $sort) return strcmp($a->getRealPath() ?: $a->getPathname(), $b->getRealPath() ?: $b->getPathname()); }; } elseif (self::SORT_BY_ACCESSED_TIME === $sort) { - $this->sort = function ($a, $b) { + $this->sort = static function ($a, $b) { return $a->getATime() - $b->getATime(); }; } elseif (self::SORT_BY_CHANGED_TIME === $sort) { - $this->sort = function ($a, $b) { + $this->sort = static function ($a, $b) { return $a->getCTime() - $b->getCTime(); }; } elseif (self::SORT_BY_MODIFIED_TIME === $sort) { - $this->sort = function ($a, $b) { + $this->sort = static function ($a, $b) { return $a->getMTime() - $b->getMTime(); }; } elseif (\is_callable($sort)) { From a461943345e5f97819d4cd1a3e55cc5e1e325fca Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Sep 2019 16:10:40 +0200 Subject: [PATCH 14/83] Cleanup tests --- src/Symfony/Component/HttpKernel/Kernel.php | 7 ++++- .../Tests/Fixtures/KernelForTest.php | 5 ++++ .../Component/HttpKernel/Tests/KernelTest.php | 23 +++++++++------ .../Tests/Store/BlockingStoreTestTrait.php | 4 +++ .../Tests/Encoder/ChainEncoderTest.php | 29 ------------------- 5 files changed, 29 insertions(+), 39 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 981b500b00718..a01558377f66d 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -354,7 +354,12 @@ public function getProjectDir() { if (null === $this->projectDir) { $r = new \ReflectionObject($this); - $dir = $rootDir = \dirname($r->getFileName()); + + if (!file_exists($dir = $r->getFileName())) { + throw new \LogicException(sprintf('Cannot auto-detect project dir for kernel of class "%s".', $r->name)); + } + + $dir = $rootDir = \dirname($dir); while (!file_exists($dir.'/composer.json')) { if ($dir === \dirname($dir)) { return $this->projectDir = $rootDir; diff --git a/src/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php b/src/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php index 88c34b023136a..8c3571281535e 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php @@ -34,4 +34,9 @@ public function isBooted() { return $this->booted; } + + public function getProjectDir() + { + return __DIR__; + } } diff --git a/src/Symfony/Component/HttpKernel/Tests/KernelTest.php b/src/Symfony/Component/HttpKernel/Tests/KernelTest.php index 10acb00a9654a..e4e2e0727b19f 100644 --- a/src/Symfony/Component/HttpKernel/Tests/KernelTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/KernelTest.php @@ -22,7 +22,6 @@ use Symfony\Component\HttpKernel\Config\EnvParametersResource; use Symfony\Component\HttpKernel\DependencyInjection\ResettableServicePass; use Symfony\Component\HttpKernel\DependencyInjection\ServicesResetter; -use Symfony\Component\HttpKernel\HttpKernel; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\HttpKernel\Tests\Fixtures\KernelForOverrideName; @@ -119,7 +118,7 @@ public function testBootSetsTheContainerToTheBundles() public function testBootSetsTheBootedFlagToTrue() { // use test kernel to access isBooted() - $kernel = $this->getKernelForTest(['initializeBundles', 'initializeContainer']); + $kernel = $this->getKernel(['initializeBundles', 'initializeContainer']); $kernel->boot(); $this->assertTrue($kernel->isBooted()); @@ -899,7 +898,7 @@ public function testServicesResetter() */ public function testKernelStartTimeIsResetWhileBootingAlreadyBootedKernel() { - $kernel = $this->getKernelForTest(['initializeBundles'], true); + $kernel = $this->getKernel(['initializeBundles'], [], true); $kernel->boot(); $preReBoot = $kernel->getStartTime(); @@ -957,15 +956,15 @@ protected function getBundle($dir = null, $parent = null, $className = null, $bu * * @return Kernel */ - protected function getKernel(array $methods = [], array $bundles = []) + protected function getKernel(array $methods = [], array $bundles = [], $debug = false) { $methods[] = 'registerBundles'; $kernel = $this - ->getMockBuilder('Symfony\Component\HttpKernel\Kernel') + ->getMockBuilder(KernelForTest::class) ->setMethods($methods) - ->setConstructorArgs(['test', false]) - ->getMockForAbstractClass() + ->setConstructorArgs(['test', $debug]) + ->getMock() ; $kernel->expects($this->any()) ->method('registerBundles') @@ -980,10 +979,11 @@ protected function getKernel(array $methods = [], array $bundles = []) protected function getKernelForTest(array $methods = [], $debug = false) { - $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest') + $kernel = $this->getMockBuilder(KernelForTest::class) ->setConstructorArgs(['test', $debug]) ->setMethods($methods) - ->getMock(); + ->getMock() + ; $p = new \ReflectionProperty($kernel, 'rootDir'); $p->setAccessible(true); $p->setValue($kernel, __DIR__.'/Fixtures'); @@ -1004,6 +1004,11 @@ public function terminate() public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true) { } + + public function getProjectDir() + { + return __DIR__.'/Fixtures'; + } } class CustomProjectDirKernel extends Kernel diff --git a/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php b/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php index 3fafcb98e4bf3..361b45b71a286 100644 --- a/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php +++ b/src/Symfony/Component/Lock/Tests/Store/BlockingStoreTestTrait.php @@ -30,6 +30,10 @@ abstract protected function getStore(); * * This test is time sensible: the $clockDelay could be adjust. * + * It also fails when run with the global ./phpunit test suite. + * + * @group transient + * * @requires extension pcntl * @requires extension posix * @requires function pcntl_sigwaitinfo diff --git a/src/Symfony/Component/Serializer/Tests/Encoder/ChainEncoderTest.php b/src/Symfony/Component/Serializer/Tests/Encoder/ChainEncoderTest.php index 9f674e030842d..14a3c687fccfd 100644 --- a/src/Symfony/Component/Serializer/Tests/Encoder/ChainEncoderTest.php +++ b/src/Symfony/Component/Serializer/Tests/Encoder/ChainEncoderTest.php @@ -84,23 +84,6 @@ public function testNeedsNormalizationBasic() $this->assertTrue($this->chainEncoder->needsNormalization(self::FORMAT_2)); } - /** - * @dataProvider booleanProvider - */ - public function testNeedsNormalizationChainNormalizationAware($bool) - { - $chainEncoder = $this - ->getMockBuilder('Symfony\Component\Serializer\Tests\Encoder\ChainNormalizationAwareEncoder') - ->getMock(); - - $chainEncoder->method('supportsEncoding')->willReturn(true); - $chainEncoder->method('needsNormalization')->willReturn($bool); - - $sut = new ChainEncoder([$chainEncoder]); - - $this->assertEquals($bool, $sut->needsNormalization(self::FORMAT_1)); - } - public function testNeedsNormalizationNormalizationAware() { $encoder = new NormalizationAwareEncoder(); @@ -108,18 +91,6 @@ public function testNeedsNormalizationNormalizationAware() $this->assertFalse($sut->needsNormalization(self::FORMAT_1)); } - - public function booleanProvider() - { - return [ - [true], - [false], - ]; - } -} - -class ChainNormalizationAwareEncoder extends ChainEncoder implements NormalizationAwareInterface -{ } class NormalizationAwareEncoder implements EncoderInterface, NormalizationAwareInterface From 62020ab91fc63cb5ac4b16751e103f8680ae7dfb Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Sep 2019 20:32:45 +0200 Subject: [PATCH 15/83] [Bridge/PhpUnit] fix looking for composer --- 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 dec8a5e77c602..1b1c489094168 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -57,7 +57,9 @@ foreach ($defaultEnvs as $envName => $envValue) { } } -$COMPOSER = file_exists($COMPOSER = $oldPwd.'/composer.phar') || ($COMPOSER = rtrim('\\' === DIRECTORY_SEPARATOR ? preg_replace('/[\r\n].*/', '', `where.exe composer.phar`) : `which composer.phar 2> /dev/null`)) +$COMPOSER = file_exists($COMPOSER = $oldPwd.'/composer.phar') + || ($COMPOSER = rtrim('\\' === DIRECTORY_SEPARATOR ? preg_replace('/[\r\n].*/', '', `where.exe composer.phar`) : `which composer.phar 2> /dev/null`)) + || ($COMPOSER = rtrim('\\' === DIRECTORY_SEPARATOR ? preg_replace('/[\r\n].*/', '', `where.exe composer`) : `which composer 2> /dev/null`)) ? $PHP.' '.escapeshellarg($COMPOSER) : 'composer'; From b1905362053cf733bfcee7ca5d0b17a1a30f5c53 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 28 May 2019 16:21:01 +0100 Subject: [PATCH 16/83] Check phpunit configuration for listeners The bridge listener can be registered via configuration by the user. In that case, we do not want to add it again to the list of listeners. Closes #31649 --- .../Bridge/PhpUnit/Legacy/CommandForV5.php | 17 ++++++++++++++--- .../Bridge/PhpUnit/Legacy/CommandForV6.php | 18 +++++++++++++++--- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV5.php b/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV5.php index 95dcb1e5541fc..ed4128482f91f 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV5.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV5.php @@ -23,8 +23,6 @@ class CommandForV5 extends \PHPUnit_TextUI_Command */ protected function createRunner() { - $listener = new SymfonyTestsListenerForV5(); - $this->arguments['listeners'] = isset($this->arguments['listeners']) ? $this->arguments['listeners'] : array(); $registeredLocally = false; @@ -37,8 +35,21 @@ protected function createRunner() } } + if (isset($this->arguments['configuration'])) { + $configuration = $this->arguments['configuration']; + if (!$configuration instanceof \PHPUnit_Util_Configuration) { + $configuration = \PHPUnit_Util_Configuration::getInstance($this->arguments['configuration']); + } + foreach ($configuration->getListenerConfiguration() as $registeredListener) { + if ('Symfony\Bridge\PhpUnit\SymfonyTestsListener' === ltrim($registeredListener['class'], '\\')) { + $registeredLocally = true; + break; + } + } + } + if (!$registeredLocally) { - $this->arguments['listeners'][] = $listener; + $this->arguments['listeners'][] = new SymfonyTestsListenerForV5(); } return parent::createRunner(); diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV6.php b/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV6.php index f8f75bb09a93b..93e1ad975b7e4 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV6.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/CommandForV6.php @@ -13,6 +13,7 @@ use PHPUnit\TextUI\Command as BaseCommand; use PHPUnit\TextUI\TestRunner as BaseRunner; +use PHPUnit\Util\Configuration; use Symfony\Bridge\PhpUnit\SymfonyTestsListener; /** @@ -27,8 +28,6 @@ class CommandForV6 extends BaseCommand */ protected function createRunner(): BaseRunner { - $listener = new SymfonyTestsListener(); - $this->arguments['listeners'] = isset($this->arguments['listeners']) ? $this->arguments['listeners'] : []; $registeredLocally = false; @@ -41,8 +40,21 @@ protected function createRunner(): BaseRunner } } + if (isset($this->arguments['configuration'])) { + $configuration = $this->arguments['configuration']; + if (!$configuration instanceof Configuration) { + $configuration = Configuration::getInstance($this->arguments['configuration']); + } + foreach ($configuration->getListenerConfiguration() as $registeredListener) { + if ('Symfony\Bridge\PhpUnit\SymfonyTestsListener' === ltrim($registeredListener['class'], '\\')) { + $registeredLocally = true; + break; + } + } + } + if (!$registeredLocally) { - $this->arguments['listeners'][] = $listener; + $this->arguments['listeners'][] = new SymfonyTestsListener(); } return parent::createRunner(); From 28d7d9444f6ee23bc094a28c53b6beced936549d Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Tue, 3 Sep 2019 10:55:46 +0200 Subject: [PATCH 17/83] [Validator] Sync string to date behavior and throw a better exception --- .../AbstractComparisonValidator.php | 16 ++++++------ .../Validator/Constraints/RangeValidator.php | 19 ++++++++++++-- .../AbstractComparisonValidatorTestCase.php | 26 +++++++++++++++++++ .../Tests/Constraints/RangeValidatorTest.php | 26 +++++++++++++++++++ 4 files changed, 77 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php b/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php index 7e9934d133a24..cd96bc9df75f8 100644 --- a/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php +++ b/src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php @@ -65,14 +65,14 @@ public function validate($value, Constraint $constraint) // This allows to compare with any date/time value supported by // the DateTime constructor: // https://php.net/datetime.formats - if (\is_string($comparedValue)) { - if ($value instanceof \DateTimeImmutable) { - // If $value is immutable, convert the compared value to a - // DateTimeImmutable too - $comparedValue = new \DateTimeImmutable($comparedValue); - } elseif ($value instanceof \DateTimeInterface) { - // Otherwise use DateTime - $comparedValue = new \DateTime($comparedValue); + if (\is_string($comparedValue) && $value instanceof \DateTimeInterface) { + // If $value is immutable, convert the compared value to a DateTimeImmutable too, otherwise use DateTime + $dateTimeClass = $value instanceof \DateTimeImmutable ? \DateTimeImmutable::class : \DateTime::class; + + try { + $comparedValue = new $dateTimeClass($comparedValue); + } catch (\Exception $e) { + throw new ConstraintDefinitionException(sprintf('The compared value "%s" could not be converted to a "%s" instance in the "%s" constraint.', $comparedValue, $dateTimeClass, \get_class($constraint))); } } diff --git a/src/Symfony/Component/Validator/Constraints/RangeValidator.php b/src/Symfony/Component/Validator/Constraints/RangeValidator.php index c7cb859a5af62..ea7d2778088c3 100644 --- a/src/Symfony/Component/Validator/Constraints/RangeValidator.php +++ b/src/Symfony/Component/Validator/Constraints/RangeValidator.php @@ -13,6 +13,7 @@ use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\ConstraintValidator; +use Symfony\Component\Validator\Exception\ConstraintDefinitionException; use Symfony\Component\Validator\Exception\UnexpectedTypeException; /** @@ -50,12 +51,26 @@ public function validate($value, Constraint $constraint) // the DateTime constructor: // https://php.net/datetime.formats if ($value instanceof \DateTimeInterface) { + $dateTimeClass = null; + if (\is_string($min)) { - $min = new \DateTime($min); + $dateTimeClass = $value instanceof \DateTimeImmutable ? \DateTimeImmutable::class : \DateTime::class; + + try { + $min = new $dateTimeClass($min); + } catch (\Exception $e) { + throw new ConstraintDefinitionException(sprintf('The min value "%s" could not be converted to a "%s" instance in the "%s" constraint.', $min, $dateTimeClass, \get_class($constraint))); + } } if (\is_string($max)) { - $max = new \DateTime($max); + $dateTimeClass = $dateTimeClass ?: ($value instanceof \DateTimeImmutable ? \DateTimeImmutable::class : \DateTime::class); + + try { + $max = new $dateTimeClass($max); + } catch (\Exception $e) { + throw new ConstraintDefinitionException(sprintf('The max value "%s" could not be converted to a "%s" instance in the "%s" constraint.', $max, $dateTimeClass, \get_class($constraint))); + } } } diff --git a/src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php b/src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php index cb10c061643c8..b02e57cfa2358 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php @@ -13,6 +13,7 @@ use Symfony\Component\Intl\Util\IntlTestHelper; use Symfony\Component\Validator\Constraint; +use Symfony\Component\Validator\Constraints\AbstractComparison; use Symfony\Component\Validator\Exception\ConstraintDefinitionException; use Symfony\Component\Validator\Test\ConstraintValidatorTestCase; @@ -211,6 +212,31 @@ public function testInvalidComparisonToValue($dirtyValue, $dirtyValueAsString, $ ->assertRaised(); } + /** + * @dataProvider throwsOnInvalidStringDatesProvider + */ + public function testThrowsOnInvalidStringDates(AbstractComparison $constraint, $expectedMessage, $value) + { + $this->expectException(ConstraintDefinitionException::class); + $this->expectExceptionMessage($expectedMessage); + + $this->validator->validate($value, $constraint); + } + + public function throwsOnInvalidStringDatesProvider() + { + $constraint = $this->createConstraint([ + 'value' => 'foo', + ]); + + $constraintClass = \get_class($constraint); + + return [ + [$constraint, sprintf('The compared value "foo" could not be converted to a "DateTimeImmutable" instance in the "%s" constraint.', $constraintClass), new \DateTimeImmutable()], + [$constraint, sprintf('The compared value "foo" could not be converted to a "DateTime" instance in the "%s" constraint.', $constraintClass), new \DateTime()], + ]; + } + /** * @return array */ diff --git a/src/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php index df33d2c422f95..83e32d8d97dd5 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php @@ -14,6 +14,7 @@ use Symfony\Component\Intl\Util\IntlTestHelper; use Symfony\Component\Validator\Constraints\Range; use Symfony\Component\Validator\Constraints\RangeValidator; +use Symfony\Component\Validator\Exception\ConstraintDefinitionException; use Symfony\Component\Validator\Test\ConstraintValidatorTestCase; class RangeValidatorTest extends ConstraintValidatorTestCase @@ -389,4 +390,29 @@ public function testNonNumeric() ->setCode(Range::INVALID_CHARACTERS_ERROR) ->assertRaised(); } + + /** + * @dataProvider throwsOnInvalidStringDatesProvider + */ + public function testThrowsOnInvalidStringDates($expectedMessage, $value, $min, $max) + { + $this->expectException(ConstraintDefinitionException::class); + $this->expectExceptionMessage($expectedMessage); + + $this->validator->validate($value, new Range([ + 'min' => $min, + 'max' => $max, + ])); + } + + public function throwsOnInvalidStringDatesProvider() + { + return [ + ['The min value "foo" could not be converted to a "DateTimeImmutable" instance in the "Symfony\Component\Validator\Constraints\Range" constraint.', new \DateTimeImmutable(), 'foo', null], + ['The min value "foo" could not be converted to a "DateTime" instance in the "Symfony\Component\Validator\Constraints\Range" constraint.', new \DateTime(), 'foo', null], + ['The max value "foo" could not be converted to a "DateTimeImmutable" instance in the "Symfony\Component\Validator\Constraints\Range" constraint.', new \DateTimeImmutable(), null, 'foo'], + ['The max value "foo" could not be converted to a "DateTime" instance in the "Symfony\Component\Validator\Constraints\Range" constraint.', new \DateTime(), null, 'foo'], + ['The min value "bar" could not be converted to a "DateTimeImmutable" instance in the "Symfony\Component\Validator\Constraints\Range" constraint.', new \DateTimeImmutable(), 'bar', 'ccc'], + ]; + } } From b688aa31ec9e533aa85593c728316f1ed491cfee Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Tue, 3 Sep 2019 13:59:35 +0200 Subject: [PATCH 18/83] [Validator] Add ConstraintValidator::formatValue() tests --- .../Validator/ConstraintValidator.php | 6 +- .../Tests/ConstraintValidatorTest.php | 65 +++++++++++++++++++ 2 files changed, 67 insertions(+), 4 deletions(-) create mode 100644 src/Symfony/Component/Validator/Tests/ConstraintValidatorTest.php diff --git a/src/Symfony/Component/Validator/ConstraintValidator.php b/src/Symfony/Component/Validator/ConstraintValidator.php index 35f41889eaee7..93cca2ea74a5e 100644 --- a/src/Symfony/Component/Validator/ConstraintValidator.php +++ b/src/Symfony/Component/Validator/ConstraintValidator.php @@ -85,12 +85,10 @@ protected function formatTypeOf($value) */ protected function formatValue($value, $format = 0) { - $isDateTime = $value instanceof \DateTimeInterface; - - if (($format & self::PRETTY_DATE) && $isDateTime) { + if (($format & self::PRETTY_DATE) && $value instanceof \DateTimeInterface) { if (class_exists('IntlDateFormatter')) { $locale = \Locale::getDefault(); - $formatter = new \IntlDateFormatter($locale, \IntlDateFormatter::MEDIUM, \IntlDateFormatter::SHORT); + $formatter = new \IntlDateFormatter($locale, \IntlDateFormatter::MEDIUM, \IntlDateFormatter::SHORT, $value->getTimezone()); // neither the native nor the stub IntlDateFormatter support // DateTimeImmutable as of yet diff --git a/src/Symfony/Component/Validator/Tests/ConstraintValidatorTest.php b/src/Symfony/Component/Validator/Tests/ConstraintValidatorTest.php new file mode 100644 index 0000000000000..96af6f13eb4e7 --- /dev/null +++ b/src/Symfony/Component/Validator/Tests/ConstraintValidatorTest.php @@ -0,0 +1,65 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Validator\Tests; + +use PHPUnit\Framework\TestCase; +use Symfony\Component\Validator\Constraint; +use Symfony\Component\Validator\ConstraintValidator; + +final class ConstraintValidatorTest extends TestCase +{ + /** + * @dataProvider formatValueProvider + */ + public function testFormatValue($expected, $value, $format = 0) + { + $this->assertSame($expected, (new TestFormatValueConstraintValidator())->formatValueProxy($value, $format)); + } + + public function formatValueProvider() + { + $data = [ + ['true', true], + ['false', false], + ['null', null], + ['resource', fopen('php://memory', 'r')], + ['"foo"', 'foo'], + ['array', []], + ['object', $toString = new TestToStringObject()], + ['ccc', $toString, ConstraintValidator::OBJECT_TO_STRING], + ['object', $dateTime = (new \DateTimeImmutable('@0'))->setTimezone(new \DateTimeZone('UTC'))], + [class_exists(\IntlDateFormatter::class) ? 'Jan 1, 1970, 12:00 AM' : '1970-01-01 00:00:00', $dateTime, ConstraintValidator::PRETTY_DATE], + ]; + + return $data; + } +} + +final class TestFormatValueConstraintValidator extends ConstraintValidator +{ + public function validate($value, Constraint $constraint) + { + } + + public function formatValueProxy($value, $format) + { + return $this->formatValue($value, $format); + } +} + +final class TestToStringObject +{ + public function __toString() + { + return 'ccc'; + } +} From fbeef96d666ce54bedd8c716900ea2e3a333738c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 6 Sep 2019 16:49:07 +0200 Subject: [PATCH 19/83] cs fix --- .../Tests/Extension/DataCollector/FormDataExtractorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Form/Tests/Extension/DataCollector/FormDataExtractorTest.php b/src/Symfony/Component/Form/Tests/Extension/DataCollector/FormDataExtractorTest.php index 4b61223773532..ea701b6e0497b 100644 --- a/src/Symfony/Component/Form/Tests/Extension/DataCollector/FormDataExtractorTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/DataCollector/FormDataExtractorTest.php @@ -15,8 +15,8 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\Form\CallbackTransformer; use Symfony\Component\Form\Exception\TransformationFailedException; -use Symfony\Component\Form\Extension\DataCollector\FormDataExtractor; use Symfony\Component\Form\Extension\Core\Type\HiddenType; +use Symfony\Component\Form\Extension\DataCollector\FormDataExtractor; use Symfony\Component\Form\FormBuilder; use Symfony\Component\Form\FormError; use Symfony\Component\Form\FormView; From 9e942768c9d1fb2d5ed5f59714f68cda1a6d89b5 Mon Sep 17 00:00:00 2001 From: Peter Bowyer Date: Fri, 6 Sep 2019 09:27:37 +0100 Subject: [PATCH 20/83] [HttpKernel] Fix Apache mod_expires Session Cache-Control issue --- .../HttpKernel/EventListener/AbstractSessionListener.php | 1 + .../Tests/EventListener/SessionListenerTest.php | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php b/src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php index aee5d6f88f50b..0a6bb4f79a665 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php @@ -56,6 +56,7 @@ public function onKernelResponse(FilterResponseEvent $event) if ($session instanceof Session ? $session->getUsageIndex() !== end($this->sessionUsageStack) : $session->isStarted()) { $event->getResponse() + ->setExpires(new \DateTime()) ->setPrivate() ->setMaxAge(0) ->headers->addCacheControlDirective('must-revalidate'); diff --git a/src/Symfony/Component/HttpKernel/Tests/EventListener/SessionListenerTest.php b/src/Symfony/Component/HttpKernel/Tests/EventListener/SessionListenerTest.php index f0bac60505bc6..e8ab0deed490b 100644 --- a/src/Symfony/Component/HttpKernel/Tests/EventListener/SessionListenerTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/EventListener/SessionListenerTest.php @@ -75,6 +75,9 @@ public function testResponseIsPrivate() $this->assertTrue($response->headers->hasCacheControlDirective('private')); $this->assertTrue($response->headers->hasCacheControlDirective('must-revalidate')); $this->assertSame('0', $response->headers->getCacheControlDirective('max-age')); + + $this->assertTrue($response->headers->has('Expires')); + $this->assertLessThanOrEqual((new \DateTime('now', new \DateTimeZone('UTC'))), (new \DateTime($response->headers->get('Expires')))); } public function testSurrogateMasterRequestIsPublic() @@ -104,10 +107,15 @@ public function testSurrogateMasterRequestIsPublic() $this->assertFalse($response->headers->hasCacheControlDirective('must-revalidate')); $this->assertSame('30', $response->headers->getCacheControlDirective('max-age')); + $this->assertFalse($response->headers->has('Expires')); + $listener->onKernelResponse(new FilterResponseEvent($kernel, $request, HttpKernelInterface::MASTER_REQUEST, $response)); $this->assertTrue($response->headers->hasCacheControlDirective('private')); $this->assertTrue($response->headers->hasCacheControlDirective('must-revalidate')); $this->assertSame('0', $response->headers->getCacheControlDirective('max-age')); + + $this->assertTrue($response->headers->has('Expires')); + $this->assertLessThanOrEqual((new \DateTime('now', new \DateTimeZone('UTC'))), (new \DateTime($response->headers->get('Expires')))); } } From 32ea4496794a4f592b034624f6ef3ba8b5a81b24 Mon Sep 17 00:00:00 2001 From: Vladimir Reznichenko Date: Sun, 8 Sep 2019 17:58:07 +0200 Subject: [PATCH 21/83] SCA: minor code tweaks --- .../DependencyInjection/AbstractDoctrineExtension.php | 6 +++--- src/Symfony/Component/Console/Application.php | 3 +-- src/Symfony/Component/HttpKernel/Kernel.php | 2 +- src/Symfony/Component/Intl/Data/Util/LocaleScanner.php | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php index ad58296475221..d8dfab3b2b505 100644 --- a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php +++ b/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php @@ -260,11 +260,11 @@ protected function detectMetadataDriver($dir, ContainerBuilder $container) $configPath = $this->getMappingResourceConfigDirectory(); $extension = $this->getMappingResourceExtension(); - if (glob($dir.'/'.$configPath.'/*.'.$extension.'.xml')) { + if (glob($dir.'/'.$configPath.'/*.'.$extension.'.xml', GLOB_NOSORT)) { $driver = 'xml'; - } elseif (glob($dir.'/'.$configPath.'/*.'.$extension.'.yml')) { + } elseif (glob($dir.'/'.$configPath.'/*.'.$extension.'.yml', GLOB_NOSORT)) { $driver = 'yml'; - } elseif (glob($dir.'/'.$configPath.'/*.'.$extension.'.php')) { + } elseif (glob($dir.'/'.$configPath.'/*.'.$extension.'.php', GLOB_NOSORT)) { $driver = 'php'; } else { // add the closest existing directory as a resource diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index fcdcd908a8981..8a9bdc39bf6e5 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -1098,8 +1098,7 @@ private function getAbbreviationSuggestions($abbrevs) */ public function extractNamespace($name, $limit = null) { - $parts = explode(':', $name); - array_pop($parts); + $parts = explode(':', $name, -1); return implode(':', null === $limit ? $parts : \array_slice($parts, 0, $limit)); } diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index a01558377f66d..8ad08b9c7de77 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -673,7 +673,7 @@ protected function initializeContainer() static $legacyContainers = []; $oldContainerDir = \dirname($oldContainer->getFileName()); $legacyContainers[$oldContainerDir.'.legacy'] = true; - foreach (glob(\dirname($oldContainerDir).\DIRECTORY_SEPARATOR.'*.legacy') as $legacyContainer) { + foreach (glob(\dirname($oldContainerDir).\DIRECTORY_SEPARATOR.'*.legacy', GLOB_NOSORT) as $legacyContainer) { if (!isset($legacyContainers[$legacyContainer]) && @unlink($legacyContainer)) { (new Filesystem())->remove(substr($legacyContainer, 0, -7)); } diff --git a/src/Symfony/Component/Intl/Data/Util/LocaleScanner.php b/src/Symfony/Component/Intl/Data/Util/LocaleScanner.php index ba0a6c5f08399..259358d9e9143 100644 --- a/src/Symfony/Component/Intl/Data/Util/LocaleScanner.php +++ b/src/Symfony/Component/Intl/Data/Util/LocaleScanner.php @@ -42,7 +42,7 @@ class LocaleScanner */ public function scanLocales($sourceDir) { - $locales = glob($sourceDir.'/*.txt'); + $locales = glob($sourceDir.'/*.txt', GLOB_NOSORT); // Remove file extension and sort array_walk($locales, function (&$locale) { $locale = basename($locale, '.txt'); }); From 9665d7633de2137b14d10ae7e0def9da754ff82b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 10 Sep 2019 12:13:59 +0200 Subject: [PATCH 22/83] Remove Google references when not needed --- .../AbstractBootstrap3LayoutTest.php | 8 ++--- .../Component/BrowserKit/Tests/CookieTest.php | 4 +-- .../Form/Tests/AbstractLayoutTest.php | 8 ++--- .../Component/HttpKernel/Tests/ClientTest.php | 4 +-- .../Tests/Constraints/UrlValidatorTest.php | 30 +++++++++---------- .../VarDumper/Tests/Caster/SplCasterTest.php | 6 ++-- 6 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php index 5763345afd8bd..f04372c5423b0 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php @@ -2396,7 +2396,7 @@ public function testTimezoneWithPlaceholder() public function testUrlWithDefaultProtocol() { - $url = 'http://www.google.com?foo1=bar1&foo2=bar2'; + $url = 'http://www.example.com?foo1=bar1&foo2=bar2'; $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\UrlType', $url, ['default_protocol' => 'http']); $this->assertWidgetMatchesXpath($form->createView(), ['attr' => ['class' => 'my&class']], @@ -2404,7 +2404,7 @@ public function testUrlWithDefaultProtocol() [@type="text"] [@name="name"] [@class="my&class form-control"] - [@value="http://www.google.com?foo1=bar1&foo2=bar2"] + [@value="http://www.example.com?foo1=bar1&foo2=bar2"] [@inputmode="url"] ' ); @@ -2412,7 +2412,7 @@ public function testUrlWithDefaultProtocol() public function testUrlWithoutDefaultProtocol() { - $url = 'http://www.google.com?foo1=bar1&foo2=bar2'; + $url = 'http://www.example.com?foo1=bar1&foo2=bar2'; $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\UrlType', $url, ['default_protocol' => null]); $this->assertWidgetMatchesXpath($form->createView(), ['attr' => ['class' => 'my&class']], @@ -2420,7 +2420,7 @@ public function testUrlWithoutDefaultProtocol() [@type="url"] [@name="name"] [@class="my&class form-control"] - [@value="http://www.google.com?foo1=bar1&foo2=bar2"] + [@value="http://www.example.com?foo1=bar1&foo2=bar2"] ' ); } diff --git a/src/Symfony/Component/BrowserKit/Tests/CookieTest.php b/src/Symfony/Component/BrowserKit/Tests/CookieTest.php index 694b164851e19..1404da9a1c089 100644 --- a/src/Symfony/Component/BrowserKit/Tests/CookieTest.php +++ b/src/Symfony/Component/BrowserKit/Tests/CookieTest.php @@ -44,10 +44,10 @@ public function getTestsForToFromString() return [ ['foo=bar; path=/'], ['foo=bar; path=/foo'], - ['foo=bar; domain=google.com; path=/'], + ['foo=bar; domain=example.com; path=/'], ['foo=bar; domain=example.com; path=/; secure', 'https://example.com/'], ['foo=bar; path=/; httponly'], - ['foo=bar; domain=google.com; path=/foo; secure; httponly', 'https://google.com/'], + ['foo=bar; domain=example.com; path=/foo; secure; httponly', 'https://example.com/'], ['foo=bar=baz; path=/'], ['foo=bar%3Dbaz; path=/'], ]; diff --git a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php index 8fc2c4002eaba..0165552f73e08 100644 --- a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php @@ -2189,14 +2189,14 @@ public function testTimezoneWithPlaceholder() public function testUrlWithDefaultProtocol() { - $url = 'http://www.google.com?foo1=bar1&foo2=bar2'; + $url = 'http://www.example.com?foo1=bar1&foo2=bar2'; $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\UrlType', $url, ['default_protocol' => 'http']); $this->assertWidgetMatchesXpath($form->createView(), [], '/input [@type="text"] [@name="name"] - [@value="http://www.google.com?foo1=bar1&foo2=bar2"] + [@value="http://www.example.com?foo1=bar1&foo2=bar2"] [@inputmode="url"] ' ); @@ -2204,14 +2204,14 @@ public function testUrlWithDefaultProtocol() public function testUrlWithoutDefaultProtocol() { - $url = 'http://www.google.com?foo1=bar1&foo2=bar2'; + $url = 'http://www.example.com?foo1=bar1&foo2=bar2'; $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\UrlType', $url, ['default_protocol' => null]); $this->assertWidgetMatchesXpath($form->createView(), [], '/input [@type="url"] [@name="name"] - [@value="http://www.google.com?foo1=bar1&foo2=bar2"] + [@value="http://www.example.com?foo1=bar1&foo2=bar2"] ' ); } diff --git a/src/Symfony/Component/HttpKernel/Tests/ClientTest.php b/src/Symfony/Component/HttpKernel/Tests/ClientTest.php index 86a51ce7651a2..b141c16d64601 100644 --- a/src/Symfony/Component/HttpKernel/Tests/ClientTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/ClientTest.php @@ -39,8 +39,8 @@ public function testDoRequest() $this->assertEquals('Request: /', $client->getResponse()->getContent(), '->doRequest() uses the request handler to make the request'); $this->assertEquals('www.example.com', $client->getRequest()->getHost(), '->doRequest() uses the request handler to make the request'); - $client->request('GET', 'http://www.example.com/?parameter=http://google.com'); - $this->assertEquals('http://www.example.com/?parameter='.urlencode('http://google.com'), $client->getRequest()->getUri(), '->doRequest() uses the request handler to make the request'); + $client->request('GET', 'http://www.example.com/?parameter=http://example.com'); + $this->assertEquals('http://www.example.com/?parameter='.urlencode('http://example.com'), $client->getRequest()->getUri(), '->doRequest() uses the request handler to make the request'); } public function testGetScript() diff --git a/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php index e54a936685cd9..ab845d45db47c 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php @@ -67,11 +67,11 @@ public function getValidUrls() { return [ ['http://a.pl'], - ['http://www.google.com'], - ['http://www.google.com.'], - ['http://www.google.museum'], - ['https://google.com/'], - ['https://google.com:80/'], + ['http://www.example.com'], + ['http://www.example.com.'], + ['http://www.example.museum'], + ['https://example.com/'], + ['https://example.com:80/'], ['http://www.example.coop/'], ['http://www.test-example.com/'], ['http://www.symfony.com/'], @@ -148,15 +148,15 @@ public function testInvalidUrls($url) public function getInvalidUrls() { return [ - ['google.com'], - ['://google.com'], - ['http ://google.com'], - ['http:/google.com'], - ['http://goog_le.com'], - ['http://google.com::aa'], - ['http://google.com:aa'], - ['ftp://google.fr'], - ['faked://google.fr'], + ['example.com'], + ['://example.com'], + ['http ://example.com'], + ['http:/example.com'], + ['http://examp_le.com'], + ['http://example.com::aa'], + ['http://example.com:aa'], + ['ftp://example.fr'], + ['faked://example.fr'], ['http://127.0.0.1:aa/'], ['ftp://[::1]/'], ['http://[::1'], @@ -189,7 +189,7 @@ public function testCustomProtocolIsValid($url) public function getValidCustomUrls() { return [ - ['ftp://google.com'], + ['ftp://example.com'], ['file://127.0.0.1'], ['git://[::1]/'], ]; diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php index 984b340c6d70d..a146a2f6b96a8 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php @@ -50,12 +50,12 @@ public function getCastFileInfoTests() %A} EOTXT ], - ['https://google.com/about', <<<'EOTXT' + ['https://example.com/about', <<<'EOTXT' SplFileInfo { -%Apath: "https://google.com" +%Apath: "https://example.com" filename: "about" basename: "about" - pathname: "https://google.com/about" + pathname: "https://example.com/about" extension: "" realPath: false %A} From a549069a49b7959d7fd83fab2b95c03c9cae2ecc Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 9 Sep 2019 13:39:48 +0200 Subject: [PATCH 23/83] don't dump a scalar tag value on its own line --- src/Symfony/Component/Yaml/Dumper.php | 6 +----- .../Component/Yaml/Tests/DumperTest.php | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Component/Yaml/Dumper.php b/src/Symfony/Component/Yaml/Dumper.php index 7f38a5435c95c..a496dcc88ec2f 100644 --- a/src/Symfony/Component/Yaml/Dumper.php +++ b/src/Symfony/Component/Yaml/Dumper.php @@ -115,15 +115,11 @@ public function dump($input, $inline = 0, $indent = 0, $flags = 0) if ($value instanceof TaggedValue) { $output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value->getTag()); - if ($inline - 1 <= 0) { + if ($inline - 1 <= 0 || null === $value->getValue() || is_scalar($value->getValue())) { $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n"; } else { $output .= "\n"; $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags); - - if (is_scalar($value->getValue())) { - $output .= "\n"; - } } continue; diff --git a/src/Symfony/Component/Yaml/Tests/DumperTest.php b/src/Symfony/Component/Yaml/Tests/DumperTest.php index d4554392a2c43..1a1ef25a5a4bc 100644 --- a/src/Symfony/Component/Yaml/Tests/DumperTest.php +++ b/src/Symfony/Component/Yaml/Tests/DumperTest.php @@ -532,10 +532,21 @@ public function testDumpingNotInlinedScalarTaggedValue() 'user2' => new TaggedValue('user', 'john'), ]; $expected = <<assertSame($expected, $this->dumper->dump($data, 2)); + } + + public function testDumpingNotInlinedNullTaggedValue() + { + $data = [ + 'foo' => new TaggedValue('bar', null), + ]; + $expected = << Date: Wed, 29 May 2019 18:52:38 +0200 Subject: [PATCH 24/83] Update GitHub PR template --- .github/PULL_REQUEST_TEMPLATE.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 52ffbb2a4d1ae..b863dea0cbf9a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,20 +3,19 @@ | Branch? | 4.4 for features / 3.4 or 4.3 for bug fixes | Bug fix? | yes/no | New feature? | yes/no -| BC breaks? | no | Deprecations? | yes/no -| Tests pass? | yes -| Fixed tickets | #... +| Tickets | Fix #... | License | MIT | Doc PR | symfony/symfony-docs#... - From 45b4edc2dc27dbf7e50239a3b63b14c4fde116f3 Mon Sep 17 00:00:00 2001 From: Maxime Helias Date: Fri, 13 Sep 2019 11:49:22 +0200 Subject: [PATCH 25/83] [Inflector] add support 'see' to 'ee' for singularize 'fees' to 'fee' --- src/Symfony/Component/Inflector/Inflector.php | 3 +++ src/Symfony/Component/Inflector/Tests/InflectorTest.php | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Inflector/Inflector.php b/src/Symfony/Component/Inflector/Inflector.php index 1d499ef876563..bfd1fbdef4471 100644 --- a/src/Symfony/Component/Inflector/Inflector.php +++ b/src/Symfony/Component/Inflector/Inflector.php @@ -124,6 +124,9 @@ final class Inflector // bureaus (bureau) ['suae', 4, false, true, 'eau'], + // fees (fee), trees (tree), employees (employee) + ['see', 3, true, true, 'ee'], + // roses (rose), garages (garage), cassettes (cassette), // waltzes (waltz), heroes (hero), bushes (bush), arches (arch), // shoes (shoe) diff --git a/src/Symfony/Component/Inflector/Tests/InflectorTest.php b/src/Symfony/Component/Inflector/Tests/InflectorTest.php index 9f1e1c6bafa38..ea752b3fac91f 100644 --- a/src/Symfony/Component/Inflector/Tests/InflectorTest.php +++ b/src/Symfony/Component/Inflector/Tests/InflectorTest.php @@ -38,7 +38,7 @@ public function singularizeProvider() ['bases', ['bas', 'base', 'basis']], ['batches', ['batch', 'batche']], ['beaux', 'beau'], - ['bees', ['be', 'bee']], + ['bees', 'bee'], ['boxes', 'box'], ['boys', 'boy'], ['bureaus', 'bureau'], @@ -68,7 +68,9 @@ public function singularizeProvider() ['echoes', ['echo', 'echoe']], ['elves', ['elf', 'elve', 'elff']], ['emphases', ['emphas', 'emphase', 'emphasis']], + ['employees', 'employee'], ['faxes', 'fax'], + ['fees', 'fee'], ['feet', 'foot'], ['feedback', 'feedback'], ['foci', 'focus'], @@ -139,14 +141,14 @@ public function singularizeProvider() ['teeth', 'tooth'], ['theses', ['thes', 'these', 'thesis']], ['thieves', ['thief', 'thieve', 'thieff']], - ['trees', ['tre', 'tree']], + ['trees', 'tree'], ['waltzes', ['waltz', 'waltze']], ['wives', 'wife'], // test casing: if the first letter was uppercase, it should remain so ['Men', 'Man'], ['GrandChildren', 'GrandChild'], - ['SubTrees', ['SubTre', 'SubTree']], + ['SubTrees', 'SubTree'], // Known issues //['insignia', 'insigne'], From 52650803bf950556d0465e20fbea6dc14886cbc8 Mon Sep 17 00:00:00 2001 From: rtek Date: Fri, 26 Jul 2019 10:00:35 -0400 Subject: [PATCH 26/83] [Console] Get dimensions from stty on windows if possible --- .../Console/Helper/QuestionHelper.php | 21 ++-------- src/Symfony/Component/Console/Terminal.php | 28 +++++++++++++- .../Tests/Helper/QuestionHelperTest.php | 24 +++++------- .../Component/Console/Tests/TerminalTest.php | 38 +++++++++++++++++++ 4 files changed, 77 insertions(+), 34 deletions(-) diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php index c046f5ec9faff..af4d0b9cca459 100644 --- a/src/Symfony/Component/Console/Helper/QuestionHelper.php +++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php @@ -21,6 +21,7 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ChoiceQuestion; use Symfony\Component\Console\Question\Question; +use Symfony\Component\Console\Terminal; /** * The QuestionHelper class provides helpers to interact with the user. @@ -157,7 +158,7 @@ private function doAsk(OutputInterface $output, Question $question) $inputStream = $this->inputStream ?: STDIN; $autocomplete = $question->getAutocompleterValues(); - if (null === $autocomplete || !$this->hasSttyAvailable()) { + if (null === $autocomplete || !Terminal::hasSttyAvailable()) { $ret = false; if ($question->isHidden()) { try { @@ -409,7 +410,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream) return $value; } - if ($this->hasSttyAvailable()) { + if (Terminal::hasSttyAvailable()) { $sttyMode = shell_exec('stty -g'); shell_exec('stty -echo'); @@ -495,20 +496,4 @@ private function getShell() return self::$shell; } - - /** - * Returns whether Stty is available or not. - * - * @return bool - */ - private function hasSttyAvailable() - { - if (null !== self::$stty) { - return self::$stty; - } - - exec('stty 2>&1', $output, $exitcode); - - return self::$stty = 0 === $exitcode; - } } diff --git a/src/Symfony/Component/Console/Terminal.php b/src/Symfony/Component/Console/Terminal.php index 56eb05096442b..53a0f7890b6ff 100644 --- a/src/Symfony/Component/Console/Terminal.php +++ b/src/Symfony/Component/Console/Terminal.php @@ -15,6 +15,7 @@ class Terminal { private static $width; private static $height; + private static $stty; /** * Gets the terminal width. @@ -54,6 +55,22 @@ public function getHeight() return self::$height ?: 50; } + /** + * @internal + * + * @return bool + */ + public static function hasSttyAvailable() + { + if (null !== self::$stty) { + return self::$stty; + } + + exec('stty 2>&1', $output, $exitcode); + + return self::$stty = 0 === $exitcode; + } + private static function initDimensions() { if ('\\' === \DIRECTORY_SEPARATOR) { @@ -62,12 +79,21 @@ private static function initDimensions() // or [w, h] from "wxh" self::$width = (int) $matches[1]; self::$height = isset($matches[4]) ? (int) $matches[4] : (int) $matches[2]; + } elseif (self::hasSttyAvailable()) { + self::initDimensionsUsingStty(); } elseif (null !== $dimensions = self::getConsoleMode()) { // extract [w, h] from "wxh" self::$width = (int) $dimensions[0]; self::$height = (int) $dimensions[1]; } - } elseif ($sttyString = self::getSttyColumns()) { + } else { + self::initDimensionsUsingStty(); + } + } + + private static function initDimensionsUsingStty() + { + if ($sttyString = self::getSttyColumns()) { if (preg_match('/rows.(\d+);.columns.(\d+);/i', $sttyString, $matches)) { // extract [w, h] from "rows h; columns w;" self::$width = (int) $matches[2]; diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index d4ac0f4693ae7..fc2589097c301 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -19,6 +19,7 @@ use Symfony\Component\Console\Question\ChoiceQuestion; use Symfony\Component\Console\Question\ConfirmationQuestion; use Symfony\Component\Console\Question\Question; +use Symfony\Component\Console\Terminal; /** * @group tty @@ -167,7 +168,7 @@ public function testAsk() public function testAskWithAutocomplete() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -200,7 +201,7 @@ public function testAskWithAutocomplete() public function testAskWithAutocompleteWithNonSequentialKeys() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -219,7 +220,7 @@ public function testAskWithAutocompleteWithNonSequentialKeys() public function testAskWithAutocompleteWithExactMatch() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -255,7 +256,7 @@ public function getInputs() */ public function testAskWithAutocompleteWithMultiByteCharacter($character) { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -279,7 +280,7 @@ public function testAskWithAutocompleteWithMultiByteCharacter($character) public function testAutocompleteWithTrailingBackslash() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -672,7 +673,7 @@ public function testLegacyAsk() */ public function testLegacyAskWithAutocomplete() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -709,7 +710,7 @@ public function testLegacyAskWithAutocomplete() */ public function testLegacyAskWithAutocompleteWithNonSequentialKeys() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -977,7 +978,7 @@ public function testEmptyChoices() public function testTraversableAutocomplete() { - if (!$this->hasSttyAvailable()) { + if (!Terminal::hasSttyAvailable()) { $this->markTestSkipped('`stty` is required to test autocomplete functionality'); } @@ -1062,13 +1063,6 @@ protected function createInputInterfaceMock($interactive = true) return $mock; } - - private function hasSttyAvailable() - { - exec('stty 2>&1', $output, $exitcode); - - return 0 === $exitcode; - } } class AutocompleteValues implements \IteratorAggregate diff --git a/src/Symfony/Component/Console/Tests/TerminalTest.php b/src/Symfony/Component/Console/Tests/TerminalTest.php index 93b8c44a78158..546d2214c4c46 100644 --- a/src/Symfony/Component/Console/Tests/TerminalTest.php +++ b/src/Symfony/Component/Console/Tests/TerminalTest.php @@ -18,17 +18,31 @@ class TerminalTest extends TestCase { private $colSize; private $lineSize; + private $ansiCon; protected function setUp() { $this->colSize = getenv('COLUMNS'); $this->lineSize = getenv('LINES'); + $this->ansiCon = getenv('ANSICON'); + $this->resetStatics(); } protected function tearDown() { putenv($this->colSize ? 'COLUMNS='.$this->colSize : 'COLUMNS'); putenv($this->lineSize ? 'LINES' : 'LINES='.$this->lineSize); + putenv($this->ansiCon ? 'ANSICON='.$this->ansiCon : 'ANSICON'); + $this->resetStatics(); + } + + private function resetStatics() + { + foreach (['height', 'width', 'stty'] as $name) { + $property = new \ReflectionProperty(Terminal::class, $name); + $property->setAccessible(true); + $property->setValue(null); + } } public function test() @@ -56,4 +70,28 @@ public function test_zero_values() $this->assertSame(0, $terminal->getWidth()); $this->assertSame(0, $terminal->getHeight()); } + + public function testSttyOnWindows() + { + if ('\\' !== \DIRECTORY_SEPARATOR) { + $this->markTestSkipped('Must be on windows'); + } + + $sttyString = exec('(stty -a | grep columns) 2>&1', $output, $exitcode); + if (0 !== $exitcode) { + $this->markTestSkipped('Must have stty support'); + } + + $matches = []; + if (0 === preg_match('/columns.(\d+)/i', $sttyString, $matches)) { + $this->fail('Could not determine existing stty columns'); + } + + putenv('COLUMNS'); + putenv('LINES'); + putenv('ANSICON'); + + $terminal = new Terminal(); + $this->assertSame((int) $matches[1], $terminal->getWidth()); + } } From 7c7422f384e2bebfa139c5d891d65d62c7eb8204 Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Sun, 15 Sep 2019 19:41:45 +0200 Subject: [PATCH 27/83] [Security] Removed unused argument in Test After #32998 there was a minor left over, the `testHandleAuthenticationClearsToken` `$tokenClass` argument is no longer used and can be safely removed. --- .../Guard/Tests/GuardAuthenticatorHandlerTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Security/Guard/Tests/GuardAuthenticatorHandlerTest.php b/src/Symfony/Component/Security/Guard/Tests/GuardAuthenticatorHandlerTest.php index dd41c69800806..7fe29cacc0fc5 100644 --- a/src/Symfony/Component/Security/Guard/Tests/GuardAuthenticatorHandlerTest.php +++ b/src/Symfony/Component/Security/Guard/Tests/GuardAuthenticatorHandlerTest.php @@ -83,7 +83,7 @@ public function testHandleAuthenticationFailure() /** * @dataProvider getTokenClearingTests */ - public function testHandleAuthenticationClearsToken($tokenClass, $tokenProviderKey, $actualProviderKey) + public function testHandleAuthenticationClearsToken($tokenProviderKey, $actualProviderKey) { $this->tokenStorage->expects($this->never()) ->method('setToken') @@ -104,10 +104,10 @@ public function testHandleAuthenticationClearsToken($tokenClass, $tokenProviderK public function getTokenClearingTests() { $tests = []; - // correct token class and matching firewall => clear the token - $tests[] = ['Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken', 'the_firewall_key', 'the_firewall_key']; - $tests[] = ['Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken', 'the_firewall_key', 'different_key']; - $tests[] = ['Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken', 'the_firewall_key', 'the_firewall_key']; + // matching firewall => clear the token + $tests[] = ['the_firewall_key', 'the_firewall_key']; + $tests[] = ['the_firewall_key', 'different_key']; + $tests[] = ['the_firewall_key', 'the_firewall_key']; return $tests; } From fdd7ef593ec3a42782f0489981698ce561e592c3 Mon Sep 17 00:00:00 2001 From: Valentine Boineau Date: Tue, 17 Sep 2019 10:36:34 +0200 Subject: [PATCH 28/83] [Inflector] Add .gitignore file --- src/Symfony/Component/Inflector/.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/Symfony/Component/Inflector/.gitignore diff --git a/src/Symfony/Component/Inflector/.gitignore b/src/Symfony/Component/Inflector/.gitignore new file mode 100644 index 0000000000000..c49a5d8df5c65 --- /dev/null +++ b/src/Symfony/Component/Inflector/.gitignore @@ -0,0 +1,3 @@ +vendor/ +composer.lock +phpunit.xml From 16a422b8be04d3d6ec7a07e61b1bd404341f3c4d Mon Sep 17 00:00:00 2001 From: Valentine Boineau Date: Tue, 17 Sep 2019 11:21:05 +0200 Subject: [PATCH 29/83] Add gitignore file for Symfony 3.4 --- src/Symfony/Component/PropertyInfo/.gitignore | 3 +++ src/Symfony/Component/Workflow/.gitignore | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 src/Symfony/Component/PropertyInfo/.gitignore create mode 100644 src/Symfony/Component/Workflow/.gitignore diff --git a/src/Symfony/Component/PropertyInfo/.gitignore b/src/Symfony/Component/PropertyInfo/.gitignore new file mode 100644 index 0000000000000..c49a5d8df5c65 --- /dev/null +++ b/src/Symfony/Component/PropertyInfo/.gitignore @@ -0,0 +1,3 @@ +vendor/ +composer.lock +phpunit.xml diff --git a/src/Symfony/Component/Workflow/.gitignore b/src/Symfony/Component/Workflow/.gitignore new file mode 100644 index 0000000000000..c49a5d8df5c65 --- /dev/null +++ b/src/Symfony/Component/Workflow/.gitignore @@ -0,0 +1,3 @@ +vendor/ +composer.lock +phpunit.xml From 786d136b5ecb75a81ac17381c9ae578ed3e0e396 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 17 Sep 2019 12:18:13 +0200 Subject: [PATCH 30/83] [Twig] Remove dead code --- .../TokenParser/FormThemeTokenParserTest.php | 4 +--- .../Tests/Translation/TwigExtractorTest.php | 11 ++++----- .../Bridge/Twig/Translation/TwigExtractor.php | 6 +---- src/Symfony/Bundle/TwigBundle/TwigEngine.php | 23 ------------------- 4 files changed, 6 insertions(+), 38 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php b/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php index 71180156ba2b1..ce1980eb16403 100644 --- a/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php +++ b/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php @@ -34,9 +34,7 @@ public function testCompile($source, $expected) $stream = $env->tokenize($source); $parser = new Parser($env); - if (method_exists($expected, 'setSourceContext')) { - $expected->setSourceContext($source); - } + $expected->setSourceContext($source); $this->assertEquals($expected, $parser->parse($stream)->getNode('body')->getNode(0)); } diff --git a/src/Symfony/Bridge/Twig/Tests/Translation/TwigExtractorTest.php b/src/Symfony/Bridge/Twig/Tests/Translation/TwigExtractorTest.php index 3f14878d1eb1c..82d72983657ba 100644 --- a/src/Symfony/Bridge/Twig/Tests/Translation/TwigExtractorTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Translation/TwigExtractorTest.php @@ -89,13 +89,10 @@ public function testExtractSyntaxError($resources) try { $extractor->extract($resources, new MessageCatalogue('en')); } catch (Error $e) { - if (method_exists($e, 'getSourceContext')) { - $this->assertSame(\dirname(__DIR__).strtr('/Fixtures/extractor/syntax_error.twig', '/', \DIRECTORY_SEPARATOR), $e->getFile()); - $this->assertSame(1, $e->getLine()); - $this->assertSame('Unclosed "block".', $e->getMessage()); - } else { - $this->expectExceptionMessageRegExp('/Unclosed "block" in ".*extractor(\\/|\\\\)syntax_error\\.twig" at line 1/'); - } + $this->assertSame(\dirname(__DIR__).strtr('/Fixtures/extractor/syntax_error.twig', '/', \DIRECTORY_SEPARATOR), $e->getFile()); + $this->assertSame(1, $e->getLine()); + $this->assertSame('Unclosed "block".', $e->getMessage()); + throw $e; } } diff --git a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php index 56427c762ffbd..b7c787226656f 100644 --- a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php +++ b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php @@ -61,11 +61,7 @@ public function extract($resource, MessageCatalogue $catalogue) if ($file instanceof \SplFileInfo) { $path = $file->getRealPath() ?: $file->getPathname(); $name = $file instanceof SplFileInfo ? $file->getRelativePathname() : $path; - if (method_exists($e, 'setSourceContext')) { - $e->setSourceContext(new Source('', $name, $path)); - } else { - $e->setTemplateName($name); - } + $e->setSourceContext(new Source('', $name, $path)); } throw $e; diff --git a/src/Symfony/Bundle/TwigBundle/TwigEngine.php b/src/Symfony/Bundle/TwigBundle/TwigEngine.php index 39115199e5ddd..f2dc6b5569c63 100644 --- a/src/Symfony/Bundle/TwigBundle/TwigEngine.php +++ b/src/Symfony/Bundle/TwigBundle/TwigEngine.php @@ -13,7 +13,6 @@ use Symfony\Bridge\Twig\TwigEngine as BaseEngine; use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface; -use Symfony\Bundle\FrameworkBundle\Templating\TemplateReference; use Symfony\Component\Config\FileLocatorInterface; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Templating\TemplateNameParserInterface; @@ -36,28 +35,6 @@ public function __construct(Environment $environment, TemplateNameParserInterfac $this->locator = $locator; } - /** - * {@inheritdoc} - */ - public function render($name, array $parameters = []) - { - try { - return parent::render($name, $parameters); - } catch (Error $e) { - if ($name instanceof TemplateReference && !method_exists($e, 'setSourceContext')) { - try { - // try to get the real name of the template where the error occurred - $name = $e->getTemplateName(); - $path = (string) $this->locator->locate($this->parser->parse($name)); - $e->setTemplateName($path); - } catch (\Exception $e2) { - } - } - - throw $e; - } - } - /** * {@inheritdoc} * From cd2f3a605674f792f26a7e91f9be39cb30394501 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 17 Sep 2019 16:29:00 +0200 Subject: [PATCH 31/83] fix tests depending on other components' tests --- src/Symfony/Bridge/Doctrine/composer.json | 2 +- .../Controller/ControllerResolverTest.php | 4 +- .../Bundle/FrameworkBundle/composer.json | 2 +- .../Form/Test/FormPerformanceTestCase.php | 2 - .../Form/{Tests => Test}/VersionAwareTest.php | 5 +- .../Form/Tests/AbstractLayoutTest.php | 1 + .../Extension/Core/Type/BaseTypeTest.php | 2 +- .../ContainerControllerResolverTestCase.php | 301 ++++++++++++++++ .../Controller/ControllerResolverTestCase.php | 328 ++++++++++++++++++ .../Controller/NullableController.php | 5 +- .../Controller/VariadicController.php | 5 +- .../Tests/Controller/ArgumentResolverTest.php | 4 +- .../ContainerControllerResolverTest.php | 284 +-------------- .../Controller/ControllerResolverTest.php | 311 +---------------- .../ArgumentMetadataFactoryTest.php | 4 +- 15 files changed, 655 insertions(+), 605 deletions(-) rename src/Symfony/Component/Form/{Tests => Test}/VersionAwareTest.php (92%) create mode 100644 src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php create mode 100644 src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php rename src/Symfony/Component/HttpKernel/{Tests => Test}/Fixtures/Controller/NullableController.php (81%) rename src/Symfony/Component/HttpKernel/{Tests => Test}/Fixtures/Controller/VariadicController.php (78%) diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json index 1aa2315c609cb..0fb219a7d2e4c 100644 --- a/src/Symfony/Bridge/Doctrine/composer.json +++ b/src/Symfony/Bridge/Doctrine/composer.json @@ -25,7 +25,7 @@ "doctrine/annotations": "~1.7", "symfony/stopwatch": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "~3.4|~4.0", - "symfony/form": "^3.3.10|~4.0", + "symfony/form": "^3.4.32|^4.3.5", "symfony/http-kernel": "~2.8|~3.0|~4.0", "symfony/property-access": "~2.8|~3.0|~4.0", "symfony/property-info": "~2.8|3.0|~4.0", diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php index 6af19862e6e83..a26dc13e19e24 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php @@ -20,9 +20,9 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Tests\Controller\ContainerControllerResolverTest; +use Symfony\Component\HttpKernel\Test\Controller\ContainerControllerResolverTestCase; -class ControllerResolverTest extends ContainerControllerResolverTest +class ControllerResolverTest extends ContainerControllerResolverTestCase { public function testGetControllerOnContainerAware() { diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index dae941c1f780e..0a8ede5cdb300 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -25,7 +25,7 @@ "symfony/debug": "~2.8|~3.0|~4.0", "symfony/event-dispatcher": "~3.4|~4.0", "symfony/http-foundation": "^3.4.13|~4.3", - "symfony/http-kernel": "^3.4.31|^4.3.4", + "symfony/http-kernel": "^3.4.32|^4.3.5", "symfony/polyfill-mbstring": "~1.0", "symfony/filesystem": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", diff --git a/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php b/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php index e11ce03357f6d..859129ac56bf4 100644 --- a/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php +++ b/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php @@ -11,8 +11,6 @@ namespace Symfony\Component\Form\Test; -use Symfony\Component\Form\Tests\VersionAwareTest; - /** * Base class for performance tests. * diff --git a/src/Symfony/Component/Form/Tests/VersionAwareTest.php b/src/Symfony/Component/Form/Test/VersionAwareTest.php similarity index 92% rename from src/Symfony/Component/Form/Tests/VersionAwareTest.php rename to src/Symfony/Component/Form/Test/VersionAwareTest.php index 2b8489a6a27cf..62d12c433d41b 100644 --- a/src/Symfony/Component/Form/Tests/VersionAwareTest.php +++ b/src/Symfony/Component/Form/Test/VersionAwareTest.php @@ -9,8 +9,11 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Tests; +namespace Symfony\Component\Form\Test; +/** + * @internal + */ trait VersionAwareTest { protected static $supportedFeatureSetVersion = 304; diff --git a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php index 0165552f73e08..61d6bbf846496 100644 --- a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php @@ -15,6 +15,7 @@ use Symfony\Component\Form\FormError; use Symfony\Component\Form\FormView; use Symfony\Component\Form\Test\FormIntegrationTestCase; +use Symfony\Component\Form\Test\VersionAwareTest; abstract class AbstractLayoutTest extends FormIntegrationTestCase { diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php index 62654fc618376..4380204c2b4b3 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php @@ -12,7 +12,7 @@ namespace Symfony\Component\Form\Tests\Extension\Core\Type; use Symfony\Component\Form\Test\TypeTestCase; -use Symfony\Component\Form\Tests\VersionAwareTest; +use Symfony\Component\Form\Test\VersionAwareTest; /** * @author Bernhard Schussek diff --git a/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php b/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php new file mode 100644 index 0000000000000..5e5970705f3f6 --- /dev/null +++ b/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php @@ -0,0 +1,301 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\HttpKernel\Test\Controller; + +use Psr\Container\ContainerInterface; +use Psr\Log\LoggerInterface; +use Symfony\Component\Debug\ErrorHandler; +use Symfony\Component\DependencyInjection\Container; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver; + +/** + * @internal + */ +class ContainerControllerResolverTestCase extends ControllerResolverTestCase +{ + public function testGetControllerService() + { + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with('foo') + ->willReturn(true); + $container->expects($this->once()) + ->method('get') + ->with('foo') + ->willReturn($this) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', 'foo:controllerMethod1'); + + $controller = $resolver->getController($request); + + $this->assertInstanceOf(\get_class($this), $controller[0]); + $this->assertSame('controllerMethod1', $controller[1]); + } + + public function testGetControllerInvokableService() + { + $invokableController = new InvokableController('bar'); + + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with('foo') + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with('foo') + ->willReturn($invokableController) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', 'foo'); + + $controller = $resolver->getController($request); + + $this->assertEquals($invokableController, $controller); + } + + public function testGetControllerInvokableServiceWithClassNameAsName() + { + $invokableController = new InvokableController('bar'); + $className = __NAMESPACE__.'\InvokableController'; + + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with($className) + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with($className) + ->willReturn($invokableController) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', $className); + + $controller = $resolver->getController($request); + + $this->assertEquals($invokableController, $controller); + } + + public function testNonInstantiableController() + { + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with(NonInstantiableController::class) + ->willReturn(false) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); + + $controller = $resolver->getController($request); + + $this->assertSame([NonInstantiableController::class, 'action'], $controller); + } + + public function testNonConstructController() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "Symfony\Component\HttpKernel\Test\Controller\ImpossibleConstructController" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->at(0)) + ->method('has') + ->with(ImpossibleConstructController::class) + ->willReturn(true) + ; + + $container->expects($this->at(1)) + ->method('has') + ->with(ImpossibleConstructController::class) + ->willReturn(false) + ; + + $container->expects($this->atLeastOnce()) + ->method('getRemovedIds') + ->with() + ->willReturn([ImpossibleConstructController::class => true]) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [ImpossibleConstructController::class, 'action']); + + if (\PHP_VERSION_ID < 70100) { + ErrorHandler::register(); + try { + $resolver->getController($request); + } finally { + restore_error_handler(); + restore_exception_handler(); + } + } else { + $resolver->getController($request); + } + } + + public function testNonInstantiableControllerWithCorrespondingService() + { + $service = new \stdClass(); + + $container = $this->createMockContainer(); + $container->expects($this->atLeastOnce()) + ->method('has') + ->with(NonInstantiableController::class) + ->willReturn(true) + ; + $container->expects($this->atLeastOnce()) + ->method('get') + ->with(NonInstantiableController::class) + ->willReturn($service) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); + + $controller = $resolver->getController($request); + + $this->assertSame([$service, 'action'], $controller); + } + + public function testExceptionWhenUsingRemovedControllerService() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "app.my_controller" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->at(0)) + ->method('has') + ->with('app.my_controller') + ->willReturn(false) + ; + + $container->expects($this->atLeastOnce()) + ->method('getRemovedIds') + ->with() + ->willReturn(['app.my_controller' => true]) + ; + + $resolver = $this->createControllerResolver(null, $container); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'app.my_controller'); + $resolver->getController($request); + } + + public function testExceptionWhenUsingControllerWithoutAnInvokeMethod() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "app.my_controller" cannot be called without a method name. Did you forget an "__invoke" method?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->once()) + ->method('has') + ->with('app.my_controller') + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with('app.my_controller') + ->willReturn(new ImpossibleConstructController('toto', 'controller')) + ; + + $resolver = $this->createControllerResolver(null, $container); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'app.my_controller'); + $resolver->getController($request); + } + + /** + * @dataProvider getUndefinedControllers + */ + public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) + { + // All this logic needs to be duplicated, since calling parent::testGetControllerOnNonUndefinedFunction will override the expected excetion and not use the regex + $resolver = $this->createControllerResolver(); + $this->expectException($exceptionName); + $this->expectExceptionMessageRegExp($exceptionMessage); + + $request = Request::create('/'); + $request->attributes->set('_controller', $controller); + $resolver->getController($request); + } + + public function getUndefinedControllers() + { + return [ + ['foo', \LogicException::class, '/Controller not found: service "foo" does not exist\./'], + ['oof::bar', \InvalidArgumentException::class, '/Class "oof" does not exist\./'], + ['stdClass', \LogicException::class, '/Controller not found: service "stdClass" does not exist\./'], + [ + 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTest::bar', + \InvalidArgumentException::class, + '/.?[cC]ontroller(.*?) for URI "\/" is not callable\.( Expected method(.*) Available methods)?/', + ], + ]; + } + + protected function createControllerResolver(LoggerInterface $logger = null, ContainerInterface $container = null) + { + if (!$container) { + $container = $this->createMockContainer(); + } + + return new ContainerControllerResolver($container, $logger); + } + + protected function createMockContainer() + { + return $this->getMockBuilder(ContainerInterface::class)->getMock(); + } +} + +class InvokableController +{ + public function __construct($bar) // mandatory argument to prevent automatic instantiation + { + } + + public function __invoke() + { + } +} + +abstract class NonInstantiableController +{ + public static function action() + { + } +} + +class ImpossibleConstructController +{ + public function __construct($toto, $controller) + { + } + + public function action() + { + } +} diff --git a/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php b/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php new file mode 100644 index 0000000000000..9d0a2eb2299c8 --- /dev/null +++ b/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php @@ -0,0 +1,328 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\HttpKernel\Test\Controller; + +use PHPUnit\Framework\TestCase; +use Psr\Log\LoggerInterface; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpKernel\Controller\ControllerResolver; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; + +/** + * @internal + */ +class ControllerResolverTestCase extends TestCase +{ + public function testGetControllerWithoutControllerParameter() + { + $logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock(); + $logger->expects($this->once())->method('warning')->with('Unable to look for the controller as the "_controller" parameter is missing.'); + $resolver = $this->createControllerResolver($logger); + + $request = Request::create('/'); + $this->assertFalse($resolver->getController($request), '->getController() returns false when the request has no _controller attribute'); + } + + public function testGetControllerWithLambda() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', $lambda = function () {}); + $controller = $resolver->getController($request); + $this->assertSame($lambda, $controller); + } + + public function testGetControllerWithObjectAndInvokeMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', $this); + $controller = $resolver->getController($request); + $this->assertSame($this, $controller); + } + + public function testGetControllerWithObjectAndMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', [$this, 'controllerMethod1']); + $controller = $resolver->getController($request); + $this->assertSame([$this, 'controllerMethod1'], $controller); + } + + public function testGetControllerWithClassAndMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', ['Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', 'controllerMethod4']); + $controller = $resolver->getController($request); + $this->assertSame(['Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', 'controllerMethod4'], $controller); + } + + public function testGetControllerWithObjectAndMethodAsString() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase::controllerMethod1'); + $controller = $resolver->getController($request); + $this->assertInstanceOf('Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', $controller[0], '->getController() returns a PHP callable'); + } + + public function testGetControllerWithClassAndInvokeMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase'); + $controller = $resolver->getController($request); + $this->assertInstanceOf('Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', $controller); + } + + public function testGetControllerOnObjectWithoutInvokeMethod() + { + $this->expectException('InvalidArgumentException'); + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', new \stdClass()); + $resolver->getController($request); + } + + public function testGetControllerWithFunction() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\some_controller_function'); + $controller = $resolver->getController($request); + $this->assertSame('Symfony\Component\HttpKernel\Test\Controller\some_controller_function', $controller); + } + + /** + * @dataProvider getUndefinedControllers + */ + public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) + { + $resolver = $this->createControllerResolver(); + $this->expectException($exceptionName); + $this->expectExceptionMessage($exceptionMessage); + + $request = Request::create('/'); + $request->attributes->set('_controller', $controller); + $resolver->getController($request); + } + + public function getUndefinedControllers() + { + return [ + [1, 'InvalidArgumentException', 'Unable to find controller "1".'], + ['foo', 'InvalidArgumentException', 'Unable to find controller "foo".'], + ['oof::bar', 'InvalidArgumentException', 'Class "oof" does not exist.'], + ['stdClass', 'InvalidArgumentException', 'Unable to find controller "stdClass".'], + ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::staticsAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest", did you mean "staticAction"?'], + ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::privateAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest" should be public and non-abstract'], + ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::protectedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest" should be public and non-abstract'], + ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::undefinedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'], + ]; + } + + /** + * @group legacy + */ + public function testGetArguments() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $controller = [new self(), 'testGetArguments']; + $this->assertEquals([], $resolver->getArguments($request, $controller), '->getArguments() returns an empty array if the method takes no arguments'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = [new self(), 'controllerMethod1']; + $this->assertEquals(['foo'], $resolver->getArguments($request, $controller), '->getArguments() returns an array of arguments for the controller method'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = [new self(), 'controllerMethod2']; + $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller), '->getArguments() uses default values if present'); + + $request->attributes->set('bar', 'bar'); + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller), '->getArguments() overrides default values if provided in the request attributes'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = function ($foo) {}; + $this->assertEquals(['foo'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = function ($foo, $bar = 'bar') {}; + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = new self(); + $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller)); + $request->attributes->set('bar', 'bar'); + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('foobar', 'foobar'); + $controller = 'Symfony\Component\HttpKernel\Test\Controller\some_controller_function'; + $this->assertEquals(['foo', 'foobar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('foobar', 'foobar'); + $controller = [new self(), 'controllerMethod3']; + + try { + $resolver->getArguments($request, $controller); + $this->fail('->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); + } catch (\Exception $e) { + $this->assertInstanceOf('\RuntimeException', $e, '->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); + } + + $request = Request::create('/'); + $controller = [new self(), 'controllerMethod5']; + $this->assertEquals([$request], $resolver->getArguments($request, $controller), '->getArguments() injects the request'); + } + + /** + * @requires PHP 5.6 + * @group legacy + */ + public function testGetVariadicArguments() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('bar', ['foo', 'bar']); + $controller = [new VariadicController(), 'action']; + $this->assertEquals(['foo', 'foo', 'bar'], $resolver->getArguments($request, $controller)); + } + + public function testCreateControllerCanReturnAnyCallable() + { + $mock = $this->getMockBuilder('Symfony\Component\HttpKernel\Controller\ControllerResolver')->setMethods(['createController'])->getMock(); + $mock->expects($this->once())->method('createController')->willReturn('Symfony\Component\HttpKernel\Test\Controller\some_controller_function'); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'foobar'); + $mock->getController($request); + } + + /** + * @group legacy + */ + public function testIfExceptionIsThrownWhenMissingAnArgument() + { + $this->expectException('RuntimeException'); + $resolver = new ControllerResolver(); + $request = Request::create('/'); + + $controller = [$this, 'controllerMethod1']; + + $resolver->getArguments($request, $controller); + } + + /** + * @requires PHP 7.1 + * @group legacy + */ + public function testGetNullableArguments() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('bar', new \stdClass()); + $request->attributes->set('mandatory', 'mandatory'); + $controller = [new NullableController(), 'action']; + $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], $resolver->getArguments($request, $controller)); + } + + /** + * @requires PHP 7.1 + * @group legacy + */ + public function testGetNullableArgumentsWithDefaults() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('mandatory', 'mandatory'); + $controller = [new NullableController(), 'action']; + $this->assertEquals([null, null, 'value', 'mandatory'], $resolver->getArguments($request, $controller)); + } + + protected function createControllerResolver(LoggerInterface $logger = null) + { + return new ControllerResolver($logger); + } + + public function __invoke($foo, $bar = null) + { + } + + public function controllerMethod1($foo) + { + } + + protected function controllerMethod2($foo, $bar = null) + { + } + + protected function controllerMethod3($foo, $bar, $foobar) + { + } + + protected static function controllerMethod4() + { + } + + protected function controllerMethod5(Request $request) + { + } +} + +function some_controller_function($foo, $foobar) +{ +} + +class ControllerTest +{ + public function publicAction() + { + } + + private function privateAction() + { + } + + protected function protectedAction() + { + } + + public static function staticAction() + { + } +} diff --git a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php b/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php similarity index 81% rename from src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php rename to src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php index 9db4df7b4c173..8cf95f2f547a0 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php +++ b/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php @@ -9,8 +9,11 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller; +namespace Symfony\Component\HttpKernel\Test\Fixtures\Controller; +/** + * @internal + */ class NullableController { public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', $mandatory) diff --git a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php b/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php similarity index 78% rename from src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php rename to src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php index c39812453bb01..0201f50759cc1 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php +++ b/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php @@ -9,8 +9,11 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller; +namespace Symfony\Component\HttpKernel\Test\Fixtures\Controller; +/** + * @internal + */ class VariadicController { public function action($foo, ...$bar) diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php index a964aaeb5828b..9818ab99f2ee1 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php @@ -20,10 +20,10 @@ use Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestAttributeValueResolver; use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\ExtendingRequest; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\ExtendingSession; -use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\NullableController; -use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\VariadicController; class ArgumentResolverTest extends TestCase { diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php index 1f8ddb83143f4..2396ffd87da6f 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php @@ -11,288 +11,8 @@ namespace Symfony\Component\HttpKernel\Tests\Controller; -use Psr\Container\ContainerInterface; -use Psr\Log\LoggerInterface; -use Symfony\Component\Debug\ErrorHandler; -use Symfony\Component\DependencyInjection\Container; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver; +use Symfony\Component\HttpKernel\Test\Controller\ContainerControllerResolverTestCase; -class ContainerControllerResolverTest extends ControllerResolverTest +class ContainerControllerResolverTest extends ContainerControllerResolverTestCase { - public function testGetControllerService() - { - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with('foo') - ->willReturn(true); - $container->expects($this->once()) - ->method('get') - ->with('foo') - ->willReturn($this) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', 'foo:controllerMethod1'); - - $controller = $resolver->getController($request); - - $this->assertInstanceOf(\get_class($this), $controller[0]); - $this->assertSame('controllerMethod1', $controller[1]); - } - - public function testGetControllerInvokableService() - { - $invokableController = new InvokableController('bar'); - - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with('foo') - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with('foo') - ->willReturn($invokableController) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', 'foo'); - - $controller = $resolver->getController($request); - - $this->assertEquals($invokableController, $controller); - } - - public function testGetControllerInvokableServiceWithClassNameAsName() - { - $invokableController = new InvokableController('bar'); - $className = __NAMESPACE__.'\InvokableController'; - - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with($className) - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with($className) - ->willReturn($invokableController) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', $className); - - $controller = $resolver->getController($request); - - $this->assertEquals($invokableController, $controller); - } - - public function testNonInstantiableController() - { - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with(NonInstantiableController::class) - ->willReturn(false) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); - - $controller = $resolver->getController($request); - - $this->assertSame([NonInstantiableController::class, 'action'], $controller); - } - - public function testNonConstructController() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "Symfony\Component\HttpKernel\Tests\Controller\ImpossibleConstructController" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->at(0)) - ->method('has') - ->with(ImpossibleConstructController::class) - ->willReturn(true) - ; - - $container->expects($this->at(1)) - ->method('has') - ->with(ImpossibleConstructController::class) - ->willReturn(false) - ; - - $container->expects($this->atLeastOnce()) - ->method('getRemovedIds') - ->with() - ->willReturn([ImpossibleConstructController::class => true]) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [ImpossibleConstructController::class, 'action']); - - if (\PHP_VERSION_ID < 70100) { - ErrorHandler::register(); - try { - $resolver->getController($request); - } finally { - restore_error_handler(); - restore_exception_handler(); - } - } else { - $resolver->getController($request); - } - } - - public function testNonInstantiableControllerWithCorrespondingService() - { - $service = new \stdClass(); - - $container = $this->createMockContainer(); - $container->expects($this->atLeastOnce()) - ->method('has') - ->with(NonInstantiableController::class) - ->willReturn(true) - ; - $container->expects($this->atLeastOnce()) - ->method('get') - ->with(NonInstantiableController::class) - ->willReturn($service) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); - - $controller = $resolver->getController($request); - - $this->assertSame([$service, 'action'], $controller); - } - - public function testExceptionWhenUsingRemovedControllerService() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "app.my_controller" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->at(0)) - ->method('has') - ->with('app.my_controller') - ->willReturn(false) - ; - - $container->expects($this->atLeastOnce()) - ->method('getRemovedIds') - ->with() - ->willReturn(['app.my_controller' => true]) - ; - - $resolver = $this->createControllerResolver(null, $container); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'app.my_controller'); - $resolver->getController($request); - } - - public function testExceptionWhenUsingControllerWithoutAnInvokeMethod() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "app.my_controller" cannot be called without a method name. Did you forget an "__invoke" method?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->once()) - ->method('has') - ->with('app.my_controller') - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with('app.my_controller') - ->willReturn(new ImpossibleConstructController('toto', 'controller')) - ; - - $resolver = $this->createControllerResolver(null, $container); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'app.my_controller'); - $resolver->getController($request); - } - - /** - * @dataProvider getUndefinedControllers - */ - public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) - { - // All this logic needs to be duplicated, since calling parent::testGetControllerOnNonUndefinedFunction will override the expected excetion and not use the regex - $resolver = $this->createControllerResolver(); - $this->expectException($exceptionName); - $this->expectExceptionMessageRegExp($exceptionMessage); - - $request = Request::create('/'); - $request->attributes->set('_controller', $controller); - $resolver->getController($request); - } - - public function getUndefinedControllers() - { - return [ - ['foo', \LogicException::class, '/Controller not found: service "foo" does not exist\./'], - ['oof::bar', \InvalidArgumentException::class, '/Class "oof" does not exist\./'], - ['stdClass', \LogicException::class, '/Controller not found: service "stdClass" does not exist\./'], - [ - 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::bar', - \InvalidArgumentException::class, - '/.?[cC]ontroller(.*?) for URI "\/" is not callable\.( Expected method(.*) Available methods)?/', - ], - ]; - } - - protected function createControllerResolver(LoggerInterface $logger = null, ContainerInterface $container = null) - { - if (!$container) { - $container = $this->createMockContainer(); - } - - return new ContainerControllerResolver($container, $logger); - } - - protected function createMockContainer() - { - return $this->getMockBuilder(ContainerInterface::class)->getMock(); - } -} - -class InvokableController -{ - public function __construct($bar) // mandatory argument to prevent automatic instantiation - { - } - - public function __invoke() - { - } -} - -abstract class NonInstantiableController -{ - public static function action() - { - } -} - -class ImpossibleConstructController -{ - public function __construct($toto, $controller) - { - } - - public function action() - { - } } diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php index e34427a32e5c4..90dc626008575 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php @@ -11,315 +11,8 @@ namespace Symfony\Component\HttpKernel\Tests\Controller; -use PHPUnit\Framework\TestCase; -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\VariadicController; +use Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase; -class ControllerResolverTest extends TestCase +class ControllerResolverTest extends ControllerResolverTestCase { - public function testGetControllerWithoutControllerParameter() - { - $logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock(); - $logger->expects($this->once())->method('warning')->with('Unable to look for the controller as the "_controller" parameter is missing.'); - $resolver = $this->createControllerResolver($logger); - - $request = Request::create('/'); - $this->assertFalse($resolver->getController($request), '->getController() returns false when the request has no _controller attribute'); - } - - public function testGetControllerWithLambda() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', $lambda = function () {}); - $controller = $resolver->getController($request); - $this->assertSame($lambda, $controller); - } - - public function testGetControllerWithObjectAndInvokeMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', $this); - $controller = $resolver->getController($request); - $this->assertSame($this, $controller); - } - - public function testGetControllerWithObjectAndMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', [$this, 'controllerMethod1']); - $controller = $resolver->getController($request); - $this->assertSame([$this, 'controllerMethod1'], $controller); - } - - public function testGetControllerWithClassAndMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', ['Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', 'controllerMethod4']); - $controller = $resolver->getController($request); - $this->assertSame(['Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', 'controllerMethod4'], $controller); - } - - public function testGetControllerWithObjectAndMethodAsString() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::controllerMethod1'); - $controller = $resolver->getController($request); - $this->assertInstanceOf('Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', $controller[0], '->getController() returns a PHP callable'); - } - - public function testGetControllerWithClassAndInvokeMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest'); - $controller = $resolver->getController($request); - $this->assertInstanceOf('Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', $controller); - } - - public function testGetControllerOnObjectWithoutInvokeMethod() - { - $this->expectException('InvalidArgumentException'); - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', new \stdClass()); - $resolver->getController($request); - } - - public function testGetControllerWithFunction() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'); - $controller = $resolver->getController($request); - $this->assertSame('Symfony\Component\HttpKernel\Tests\Controller\some_controller_function', $controller); - } - - /** - * @dataProvider getUndefinedControllers - */ - public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) - { - $resolver = $this->createControllerResolver(); - $this->expectException($exceptionName); - $this->expectExceptionMessage($exceptionMessage); - - $request = Request::create('/'); - $request->attributes->set('_controller', $controller); - $resolver->getController($request); - } - - public function getUndefinedControllers() - { - return [ - [1, 'InvalidArgumentException', 'Unable to find controller "1".'], - ['foo', 'InvalidArgumentException', 'Unable to find controller "foo".'], - ['oof::bar', 'InvalidArgumentException', 'Class "oof" does not exist.'], - ['stdClass', 'InvalidArgumentException', 'Unable to find controller "stdClass".'], - ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::staticsAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest", did you mean "staticAction"?'], - ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::privateAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'], - ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::protectedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'], - ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::undefinedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'], - ]; - } - - /** - * @group legacy - */ - public function testGetArguments() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $controller = [new self(), 'testGetArguments']; - $this->assertEquals([], $resolver->getArguments($request, $controller), '->getArguments() returns an empty array if the method takes no arguments'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = [new self(), 'controllerMethod1']; - $this->assertEquals(['foo'], $resolver->getArguments($request, $controller), '->getArguments() returns an array of arguments for the controller method'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = [new self(), 'controllerMethod2']; - $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller), '->getArguments() uses default values if present'); - - $request->attributes->set('bar', 'bar'); - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller), '->getArguments() overrides default values if provided in the request attributes'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = function ($foo) {}; - $this->assertEquals(['foo'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = function ($foo, $bar = 'bar') {}; - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = new self(); - $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller)); - $request->attributes->set('bar', 'bar'); - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('foobar', 'foobar'); - $controller = 'Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'; - $this->assertEquals(['foo', 'foobar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('foobar', 'foobar'); - $controller = [new self(), 'controllerMethod3']; - - try { - $resolver->getArguments($request, $controller); - $this->fail('->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); - } catch (\Exception $e) { - $this->assertInstanceOf('\RuntimeException', $e, '->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); - } - - $request = Request::create('/'); - $controller = [new self(), 'controllerMethod5']; - $this->assertEquals([$request], $resolver->getArguments($request, $controller), '->getArguments() injects the request'); - } - - /** - * @requires PHP 5.6 - * @group legacy - */ - public function testGetVariadicArguments() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('bar', ['foo', 'bar']); - $controller = [new VariadicController(), 'action']; - $this->assertEquals(['foo', 'foo', 'bar'], $resolver->getArguments($request, $controller)); - } - - public function testCreateControllerCanReturnAnyCallable() - { - $mock = $this->getMockBuilder('Symfony\Component\HttpKernel\Controller\ControllerResolver')->setMethods(['createController'])->getMock(); - $mock->expects($this->once())->method('createController')->willReturn('Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'foobar'); - $mock->getController($request); - } - - /** - * @group legacy - */ - public function testIfExceptionIsThrownWhenMissingAnArgument() - { - $this->expectException('RuntimeException'); - $resolver = new ControllerResolver(); - $request = Request::create('/'); - - $controller = [$this, 'controllerMethod1']; - - $resolver->getArguments($request, $controller); - } - - /** - * @requires PHP 7.1 - * @group legacy - */ - public function testGetNullableArguments() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('bar', new \stdClass()); - $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; - $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], $resolver->getArguments($request, $controller)); - } - - /** - * @requires PHP 7.1 - * @group legacy - */ - public function testGetNullableArgumentsWithDefaults() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; - $this->assertEquals([null, null, 'value', 'mandatory'], $resolver->getArguments($request, $controller)); - } - - protected function createControllerResolver(LoggerInterface $logger = null) - { - return new ControllerResolver($logger); - } - - public function __invoke($foo, $bar = null) - { - } - - public function controllerMethod1($foo) - { - } - - protected function controllerMethod2($foo, $bar = null) - { - } - - protected function controllerMethod3($foo, $bar, $foobar) - { - } - - protected static function controllerMethod4() - { - } - - protected function controllerMethod5(Request $request) - { - } -} - -function some_controller_function($foo, $foobar) -{ -} - -class ControllerTest -{ - public function publicAction() - { - } - - private function privateAction() - { - } - - protected function protectedAction() - { - } - - public static function staticAction() - { - } } diff --git a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php index 1c0c4648a0f2a..f58188ded50a8 100644 --- a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php @@ -15,9 +15,9 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\BasicTypesController; -use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\NullableController; -use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\VariadicController; class ArgumentMetadataFactoryTest extends TestCase { From e2043ff53ee644004900b79b1b57622af5bbf276 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 18 Sep 2019 09:39:27 +0200 Subject: [PATCH 32/83] [Twig] Fix Twig config extra keys --- .../DependencyInjection/TwigExtension.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php index a0000afa9047b..52ba0503e4ed1 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/TwigExtension.php @@ -150,18 +150,20 @@ public function load(array $configs, ContainerBuilder $container) } } - unset( - $config['form'], - $config['globals'], - $config['extensions'] - ); - if (isset($config['autoescape_service']) && isset($config['autoescape_service_method'])) { $config['autoescape'] = [new Reference($config['autoescape_service']), $config['autoescape_service_method']]; } - unset($config['autoescape_service'], $config['autoescape_service_method']); - $container->getDefinition('twig')->replaceArgument(1, $config); + $container->getDefinition('twig')->replaceArgument(1, array_intersect_key($config, [ + 'debug' => true, + 'charset' => true, + 'base_template_class' => true, + 'strict_variables' => true, + 'autoescape' => true, + 'cache' => true, + 'auto_reload' => true, + 'optimizations' => true, + ])); $container->registerForAutoconfiguration(\Twig_ExtensionInterface::class)->addTag('twig.extension'); $container->registerForAutoconfiguration(\Twig_LoaderInterface::class)->addTag('twig.loader'); From 6a8ab6cb73fde983f732ff3b2c097cb506918b51 Mon Sep 17 00:00:00 2001 From: mmokhi Date: Wed, 11 Sep 2019 11:18:08 +0200 Subject: [PATCH 33/83] Call AssertEquals with proper parameters Since `$response->getContent()` returns string and our first parameter is already string as well, in some cases (with different precisions) it may "compare strings" as "strings" and this is not what the test wants. By changing the first parameter to actual number we force `AssertEquals` to compare them numerically rather than literally by string content. --- .../Component/HttpFoundation/Tests/JsonResponseTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/Tests/JsonResponseTest.php b/src/Symfony/Component/HttpFoundation/Tests/JsonResponseTest.php index fd045fb9c36f5..9642dc28d3be3 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/JsonResponseTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/JsonResponseTest.php @@ -52,7 +52,7 @@ public function testConstructorWithSimpleTypes() $this->assertSame('0', $response->getContent()); $response = new JsonResponse(0.1); - $this->assertEquals('0.1', $response->getContent()); + $this->assertEquals(0.1, $response->getContent()); $this->assertIsString($response->getContent()); $response = new JsonResponse(true); @@ -141,7 +141,7 @@ public function testStaticCreateWithSimpleTypes() $response = JsonResponse::create(0.1); $this->assertInstanceOf('Symfony\Component\HttpFoundation\JsonResponse', $response); - $this->assertEquals('0.1', $response->getContent()); + $this->assertEquals(0.1, $response->getContent()); $this->assertIsString($response->getContent()); $response = JsonResponse::create(true); From 2d708b3e60e5e5e03ed9a028faaa999bcdd293c2 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 18 Sep 2019 15:36:31 +0200 Subject: [PATCH 34/83] ensure compatibility with type resolver 0.5 --- .../Component/PropertyInfo/Util/PhpDocTypeHelper.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php b/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php index 0879a0459087c..c013062d549a4 100644 --- a/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php +++ b/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php @@ -55,7 +55,14 @@ public function getTypes(DocType $varType) $varTypes = []; for ($typeIndex = 0; $varType->has($typeIndex); ++$typeIndex) { - $varTypes[] = (string) $varType->get($typeIndex); + $nestedVarType = $varType->get($typeIndex); + + if ($nestedVarType instanceof Nullable) { + $varTypes[] = (string) $nestedVarType->getActualType(); + $nullable = true; + } else { + $varTypes[] = (string) $nestedVarType; + } } // If null is present, all types are nullable From c79290821743b81702f7bd1492be3480f1881b79 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 19 Sep 2019 09:02:46 +0200 Subject: [PATCH 35/83] install from source to include components tests --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 93529bda2eb44..45ffe08cb3c1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -294,12 +294,12 @@ install: tfold 'phpunit install' ./phpunit install fi if [[ $deps = high ]]; then - echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" + echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && $COMPOSER_UP --prefer-source && $PHPUNIT_X$LEGACY'" elif [[ $deps = low ]]; then [[ -e ~/php-ext/composer-lowest.lock.tar ]] && tar -xf ~/php-ext/composer-lowest.lock.tar tar -cf ~/php-ext/composer-lowest.lock.tar --files-from /dev/null php .github/rm-invalid-lowest-lock-files.php $COMPONENTS - echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && ([ -e composer.lock ] && ${COMPOSER_UP/update/install} || $COMPOSER_UP --prefer-lowest --prefer-stable) && $PHPUNIT_X'" + echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && ([ -e composer.lock ] && ${COMPOSER_UP/update/install} || $COMPOSER_UP --prefer-lowest --prefer-stable --prefer-source) && $PHPUNIT_X'" echo "$COMPONENTS" | xargs -n1 -I{} tar --append -f ~/php-ext/composer-lowest.lock.tar {}/composer.lock elif [[ $PHP = hhvm* ]]; then rm src/Symfony/Bridge/PhpUnit -Rf From 5aa4328b0863849f36f4713277ee704d62eef1b2 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 19 Sep 2019 09:17:54 +0200 Subject: [PATCH 36/83] Revert "bug #33618 fix tests depending on other components' tests (xabbuh)" This reverts commit 47fb0900fb69f8b6396cecd78ed3904fcc6433e6, reversing changes made to 6fad4f1215b386c4769c39945a62b1e93255ad01. --- src/Symfony/Bridge/Doctrine/composer.json | 2 +- .../Controller/ControllerResolverTest.php | 4 +- .../Bundle/FrameworkBundle/composer.json | 2 +- .../Form/Test/FormPerformanceTestCase.php | 2 + .../Form/Tests/AbstractLayoutTest.php | 1 - .../Extension/Core/Type/BaseTypeTest.php | 2 +- .../Form/{Test => Tests}/VersionAwareTest.php | 5 +- .../ContainerControllerResolverTestCase.php | 301 ---------------- .../Controller/ControllerResolverTestCase.php | 328 ------------------ .../Tests/Controller/ArgumentResolverTest.php | 4 +- .../ContainerControllerResolverTest.php | 284 ++++++++++++++- .../Controller/ControllerResolverTest.php | 311 ++++++++++++++++- .../ArgumentMetadataFactoryTest.php | 4 +- .../Controller/NullableController.php | 5 +- .../Controller/VariadicController.php | 5 +- 15 files changed, 605 insertions(+), 655 deletions(-) rename src/Symfony/Component/Form/{Test => Tests}/VersionAwareTest.php (92%) delete mode 100644 src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php delete mode 100644 src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php rename src/Symfony/Component/HttpKernel/{Test => Tests}/Fixtures/Controller/NullableController.php (81%) rename src/Symfony/Component/HttpKernel/{Test => Tests}/Fixtures/Controller/VariadicController.php (78%) diff --git a/src/Symfony/Bridge/Doctrine/composer.json b/src/Symfony/Bridge/Doctrine/composer.json index 0fb219a7d2e4c..1aa2315c609cb 100644 --- a/src/Symfony/Bridge/Doctrine/composer.json +++ b/src/Symfony/Bridge/Doctrine/composer.json @@ -25,7 +25,7 @@ "doctrine/annotations": "~1.7", "symfony/stopwatch": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "~3.4|~4.0", - "symfony/form": "^3.4.32|^4.3.5", + "symfony/form": "^3.3.10|~4.0", "symfony/http-kernel": "~2.8|~3.0|~4.0", "symfony/property-access": "~2.8|~3.0|~4.0", "symfony/property-info": "~2.8|3.0|~4.0", diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php index a26dc13e19e24..6af19862e6e83 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Controller/ControllerResolverTest.php @@ -20,9 +20,9 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Test\Controller\ContainerControllerResolverTestCase; +use Symfony\Component\HttpKernel\Tests\Controller\ContainerControllerResolverTest; -class ControllerResolverTest extends ContainerControllerResolverTestCase +class ControllerResolverTest extends ContainerControllerResolverTest { public function testGetControllerOnContainerAware() { diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 0a8ede5cdb300..dae941c1f780e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -25,7 +25,7 @@ "symfony/debug": "~2.8|~3.0|~4.0", "symfony/event-dispatcher": "~3.4|~4.0", "symfony/http-foundation": "^3.4.13|~4.3", - "symfony/http-kernel": "^3.4.32|^4.3.5", + "symfony/http-kernel": "^3.4.31|^4.3.4", "symfony/polyfill-mbstring": "~1.0", "symfony/filesystem": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", diff --git a/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php b/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php index 859129ac56bf4..e11ce03357f6d 100644 --- a/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php +++ b/src/Symfony/Component/Form/Test/FormPerformanceTestCase.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Form\Test; +use Symfony\Component\Form\Tests\VersionAwareTest; + /** * Base class for performance tests. * diff --git a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php index 61d6bbf846496..0165552f73e08 100644 --- a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php @@ -15,7 +15,6 @@ use Symfony\Component\Form\FormError; use Symfony\Component\Form\FormView; use Symfony\Component\Form\Test\FormIntegrationTestCase; -use Symfony\Component\Form\Test\VersionAwareTest; abstract class AbstractLayoutTest extends FormIntegrationTestCase { diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php index 4380204c2b4b3..62654fc618376 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/BaseTypeTest.php @@ -12,7 +12,7 @@ namespace Symfony\Component\Form\Tests\Extension\Core\Type; use Symfony\Component\Form\Test\TypeTestCase; -use Symfony\Component\Form\Test\VersionAwareTest; +use Symfony\Component\Form\Tests\VersionAwareTest; /** * @author Bernhard Schussek diff --git a/src/Symfony/Component/Form/Test/VersionAwareTest.php b/src/Symfony/Component/Form/Tests/VersionAwareTest.php similarity index 92% rename from src/Symfony/Component/Form/Test/VersionAwareTest.php rename to src/Symfony/Component/Form/Tests/VersionAwareTest.php index 62d12c433d41b..2b8489a6a27cf 100644 --- a/src/Symfony/Component/Form/Test/VersionAwareTest.php +++ b/src/Symfony/Component/Form/Tests/VersionAwareTest.php @@ -9,11 +9,8 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Test; +namespace Symfony\Component\Form\Tests; -/** - * @internal - */ trait VersionAwareTest { protected static $supportedFeatureSetVersion = 304; diff --git a/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php b/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php deleted file mode 100644 index 5e5970705f3f6..0000000000000 --- a/src/Symfony/Component/HttpKernel/Test/Controller/ContainerControllerResolverTestCase.php +++ /dev/null @@ -1,301 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\HttpKernel\Test\Controller; - -use Psr\Container\ContainerInterface; -use Psr\Log\LoggerInterface; -use Symfony\Component\Debug\ErrorHandler; -use Symfony\Component\DependencyInjection\Container; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver; - -/** - * @internal - */ -class ContainerControllerResolverTestCase extends ControllerResolverTestCase -{ - public function testGetControllerService() - { - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with('foo') - ->willReturn(true); - $container->expects($this->once()) - ->method('get') - ->with('foo') - ->willReturn($this) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', 'foo:controllerMethod1'); - - $controller = $resolver->getController($request); - - $this->assertInstanceOf(\get_class($this), $controller[0]); - $this->assertSame('controllerMethod1', $controller[1]); - } - - public function testGetControllerInvokableService() - { - $invokableController = new InvokableController('bar'); - - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with('foo') - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with('foo') - ->willReturn($invokableController) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', 'foo'); - - $controller = $resolver->getController($request); - - $this->assertEquals($invokableController, $controller); - } - - public function testGetControllerInvokableServiceWithClassNameAsName() - { - $invokableController = new InvokableController('bar'); - $className = __NAMESPACE__.'\InvokableController'; - - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with($className) - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with($className) - ->willReturn($invokableController) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', $className); - - $controller = $resolver->getController($request); - - $this->assertEquals($invokableController, $controller); - } - - public function testNonInstantiableController() - { - $container = $this->createMockContainer(); - $container->expects($this->once()) - ->method('has') - ->with(NonInstantiableController::class) - ->willReturn(false) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); - - $controller = $resolver->getController($request); - - $this->assertSame([NonInstantiableController::class, 'action'], $controller); - } - - public function testNonConstructController() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "Symfony\Component\HttpKernel\Test\Controller\ImpossibleConstructController" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->at(0)) - ->method('has') - ->with(ImpossibleConstructController::class) - ->willReturn(true) - ; - - $container->expects($this->at(1)) - ->method('has') - ->with(ImpossibleConstructController::class) - ->willReturn(false) - ; - - $container->expects($this->atLeastOnce()) - ->method('getRemovedIds') - ->with() - ->willReturn([ImpossibleConstructController::class => true]) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [ImpossibleConstructController::class, 'action']); - - if (\PHP_VERSION_ID < 70100) { - ErrorHandler::register(); - try { - $resolver->getController($request); - } finally { - restore_error_handler(); - restore_exception_handler(); - } - } else { - $resolver->getController($request); - } - } - - public function testNonInstantiableControllerWithCorrespondingService() - { - $service = new \stdClass(); - - $container = $this->createMockContainer(); - $container->expects($this->atLeastOnce()) - ->method('has') - ->with(NonInstantiableController::class) - ->willReturn(true) - ; - $container->expects($this->atLeastOnce()) - ->method('get') - ->with(NonInstantiableController::class) - ->willReturn($service) - ; - - $resolver = $this->createControllerResolver(null, $container); - $request = Request::create('/'); - $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); - - $controller = $resolver->getController($request); - - $this->assertSame([$service, 'action'], $controller); - } - - public function testExceptionWhenUsingRemovedControllerService() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "app.my_controller" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->at(0)) - ->method('has') - ->with('app.my_controller') - ->willReturn(false) - ; - - $container->expects($this->atLeastOnce()) - ->method('getRemovedIds') - ->with() - ->willReturn(['app.my_controller' => true]) - ; - - $resolver = $this->createControllerResolver(null, $container); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'app.my_controller'); - $resolver->getController($request); - } - - public function testExceptionWhenUsingControllerWithoutAnInvokeMethod() - { - $this->expectException('LogicException'); - $this->expectExceptionMessage('Controller "app.my_controller" cannot be called without a method name. Did you forget an "__invoke" method?'); - $container = $this->getMockBuilder(Container::class)->getMock(); - $container->expects($this->once()) - ->method('has') - ->with('app.my_controller') - ->willReturn(true) - ; - $container->expects($this->once()) - ->method('get') - ->with('app.my_controller') - ->willReturn(new ImpossibleConstructController('toto', 'controller')) - ; - - $resolver = $this->createControllerResolver(null, $container); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'app.my_controller'); - $resolver->getController($request); - } - - /** - * @dataProvider getUndefinedControllers - */ - public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) - { - // All this logic needs to be duplicated, since calling parent::testGetControllerOnNonUndefinedFunction will override the expected excetion and not use the regex - $resolver = $this->createControllerResolver(); - $this->expectException($exceptionName); - $this->expectExceptionMessageRegExp($exceptionMessage); - - $request = Request::create('/'); - $request->attributes->set('_controller', $controller); - $resolver->getController($request); - } - - public function getUndefinedControllers() - { - return [ - ['foo', \LogicException::class, '/Controller not found: service "foo" does not exist\./'], - ['oof::bar', \InvalidArgumentException::class, '/Class "oof" does not exist\./'], - ['stdClass', \LogicException::class, '/Controller not found: service "stdClass" does not exist\./'], - [ - 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTest::bar', - \InvalidArgumentException::class, - '/.?[cC]ontroller(.*?) for URI "\/" is not callable\.( Expected method(.*) Available methods)?/', - ], - ]; - } - - protected function createControllerResolver(LoggerInterface $logger = null, ContainerInterface $container = null) - { - if (!$container) { - $container = $this->createMockContainer(); - } - - return new ContainerControllerResolver($container, $logger); - } - - protected function createMockContainer() - { - return $this->getMockBuilder(ContainerInterface::class)->getMock(); - } -} - -class InvokableController -{ - public function __construct($bar) // mandatory argument to prevent automatic instantiation - { - } - - public function __invoke() - { - } -} - -abstract class NonInstantiableController -{ - public static function action() - { - } -} - -class ImpossibleConstructController -{ - public function __construct($toto, $controller) - { - } - - public function action() - { - } -} diff --git a/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php b/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php deleted file mode 100644 index 9d0a2eb2299c8..0000000000000 --- a/src/Symfony/Component/HttpKernel/Test/Controller/ControllerResolverTestCase.php +++ /dev/null @@ -1,328 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\HttpKernel\Test\Controller; - -use PHPUnit\Framework\TestCase; -use Psr\Log\LoggerInterface; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Controller\ControllerResolver; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; - -/** - * @internal - */ -class ControllerResolverTestCase extends TestCase -{ - public function testGetControllerWithoutControllerParameter() - { - $logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock(); - $logger->expects($this->once())->method('warning')->with('Unable to look for the controller as the "_controller" parameter is missing.'); - $resolver = $this->createControllerResolver($logger); - - $request = Request::create('/'); - $this->assertFalse($resolver->getController($request), '->getController() returns false when the request has no _controller attribute'); - } - - public function testGetControllerWithLambda() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', $lambda = function () {}); - $controller = $resolver->getController($request); - $this->assertSame($lambda, $controller); - } - - public function testGetControllerWithObjectAndInvokeMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', $this); - $controller = $resolver->getController($request); - $this->assertSame($this, $controller); - } - - public function testGetControllerWithObjectAndMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', [$this, 'controllerMethod1']); - $controller = $resolver->getController($request); - $this->assertSame([$this, 'controllerMethod1'], $controller); - } - - public function testGetControllerWithClassAndMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', ['Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', 'controllerMethod4']); - $controller = $resolver->getController($request); - $this->assertSame(['Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', 'controllerMethod4'], $controller); - } - - public function testGetControllerWithObjectAndMethodAsString() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase::controllerMethod1'); - $controller = $resolver->getController($request); - $this->assertInstanceOf('Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', $controller[0], '->getController() returns a PHP callable'); - } - - public function testGetControllerWithClassAndInvokeMethod() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase'); - $controller = $resolver->getController($request); - $this->assertInstanceOf('Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase', $controller); - } - - public function testGetControllerOnObjectWithoutInvokeMethod() - { - $this->expectException('InvalidArgumentException'); - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', new \stdClass()); - $resolver->getController($request); - } - - public function testGetControllerWithFunction() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Test\Controller\some_controller_function'); - $controller = $resolver->getController($request); - $this->assertSame('Symfony\Component\HttpKernel\Test\Controller\some_controller_function', $controller); - } - - /** - * @dataProvider getUndefinedControllers - */ - public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) - { - $resolver = $this->createControllerResolver(); - $this->expectException($exceptionName); - $this->expectExceptionMessage($exceptionMessage); - - $request = Request::create('/'); - $request->attributes->set('_controller', $controller); - $resolver->getController($request); - } - - public function getUndefinedControllers() - { - return [ - [1, 'InvalidArgumentException', 'Unable to find controller "1".'], - ['foo', 'InvalidArgumentException', 'Unable to find controller "foo".'], - ['oof::bar', 'InvalidArgumentException', 'Class "oof" does not exist.'], - ['stdClass', 'InvalidArgumentException', 'Unable to find controller "stdClass".'], - ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::staticsAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest", did you mean "staticAction"?'], - ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::privateAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest" should be public and non-abstract'], - ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::protectedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest" should be public and non-abstract'], - ['Symfony\Component\HttpKernel\Test\Controller\ControllerTest::undefinedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Test\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'], - ]; - } - - /** - * @group legacy - */ - public function testGetArguments() - { - $resolver = $this->createControllerResolver(); - - $request = Request::create('/'); - $controller = [new self(), 'testGetArguments']; - $this->assertEquals([], $resolver->getArguments($request, $controller), '->getArguments() returns an empty array if the method takes no arguments'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = [new self(), 'controllerMethod1']; - $this->assertEquals(['foo'], $resolver->getArguments($request, $controller), '->getArguments() returns an array of arguments for the controller method'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = [new self(), 'controllerMethod2']; - $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller), '->getArguments() uses default values if present'); - - $request->attributes->set('bar', 'bar'); - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller), '->getArguments() overrides default values if provided in the request attributes'); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = function ($foo) {}; - $this->assertEquals(['foo'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = function ($foo, $bar = 'bar') {}; - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $controller = new self(); - $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller)); - $request->attributes->set('bar', 'bar'); - $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('foobar', 'foobar'); - $controller = 'Symfony\Component\HttpKernel\Test\Controller\some_controller_function'; - $this->assertEquals(['foo', 'foobar'], $resolver->getArguments($request, $controller)); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('foobar', 'foobar'); - $controller = [new self(), 'controllerMethod3']; - - try { - $resolver->getArguments($request, $controller); - $this->fail('->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); - } catch (\Exception $e) { - $this->assertInstanceOf('\RuntimeException', $e, '->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); - } - - $request = Request::create('/'); - $controller = [new self(), 'controllerMethod5']; - $this->assertEquals([$request], $resolver->getArguments($request, $controller), '->getArguments() injects the request'); - } - - /** - * @requires PHP 5.6 - * @group legacy - */ - public function testGetVariadicArguments() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('bar', ['foo', 'bar']); - $controller = [new VariadicController(), 'action']; - $this->assertEquals(['foo', 'foo', 'bar'], $resolver->getArguments($request, $controller)); - } - - public function testCreateControllerCanReturnAnyCallable() - { - $mock = $this->getMockBuilder('Symfony\Component\HttpKernel\Controller\ControllerResolver')->setMethods(['createController'])->getMock(); - $mock->expects($this->once())->method('createController')->willReturn('Symfony\Component\HttpKernel\Test\Controller\some_controller_function'); - - $request = Request::create('/'); - $request->attributes->set('_controller', 'foobar'); - $mock->getController($request); - } - - /** - * @group legacy - */ - public function testIfExceptionIsThrownWhenMissingAnArgument() - { - $this->expectException('RuntimeException'); - $resolver = new ControllerResolver(); - $request = Request::create('/'); - - $controller = [$this, 'controllerMethod1']; - - $resolver->getArguments($request, $controller); - } - - /** - * @requires PHP 7.1 - * @group legacy - */ - public function testGetNullableArguments() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('foo', 'foo'); - $request->attributes->set('bar', new \stdClass()); - $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; - $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], $resolver->getArguments($request, $controller)); - } - - /** - * @requires PHP 7.1 - * @group legacy - */ - public function testGetNullableArgumentsWithDefaults() - { - $resolver = new ControllerResolver(); - - $request = Request::create('/'); - $request->attributes->set('mandatory', 'mandatory'); - $controller = [new NullableController(), 'action']; - $this->assertEquals([null, null, 'value', 'mandatory'], $resolver->getArguments($request, $controller)); - } - - protected function createControllerResolver(LoggerInterface $logger = null) - { - return new ControllerResolver($logger); - } - - public function __invoke($foo, $bar = null) - { - } - - public function controllerMethod1($foo) - { - } - - protected function controllerMethod2($foo, $bar = null) - { - } - - protected function controllerMethod3($foo, $bar, $foobar) - { - } - - protected static function controllerMethod4() - { - } - - protected function controllerMethod5(Request $request) - { - } -} - -function some_controller_function($foo, $foobar) -{ -} - -class ControllerTest -{ - public function publicAction() - { - } - - private function privateAction() - { - } - - protected function protectedAction() - { - } - - public static function staticAction() - { - } -} diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php index 9818ab99f2ee1..a964aaeb5828b 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolverTest.php @@ -20,10 +20,10 @@ use Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestAttributeValueResolver; use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\ExtendingRequest; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\ExtendingSession; +use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\VariadicController; class ArgumentResolverTest extends TestCase { diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php index 2396ffd87da6f..1f8ddb83143f4 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ContainerControllerResolverTest.php @@ -11,8 +11,288 @@ namespace Symfony\Component\HttpKernel\Tests\Controller; -use Symfony\Component\HttpKernel\Test\Controller\ContainerControllerResolverTestCase; +use Psr\Container\ContainerInterface; +use Psr\Log\LoggerInterface; +use Symfony\Component\Debug\ErrorHandler; +use Symfony\Component\DependencyInjection\Container; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver; -class ContainerControllerResolverTest extends ContainerControllerResolverTestCase +class ContainerControllerResolverTest extends ControllerResolverTest { + public function testGetControllerService() + { + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with('foo') + ->willReturn(true); + $container->expects($this->once()) + ->method('get') + ->with('foo') + ->willReturn($this) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', 'foo:controllerMethod1'); + + $controller = $resolver->getController($request); + + $this->assertInstanceOf(\get_class($this), $controller[0]); + $this->assertSame('controllerMethod1', $controller[1]); + } + + public function testGetControllerInvokableService() + { + $invokableController = new InvokableController('bar'); + + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with('foo') + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with('foo') + ->willReturn($invokableController) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', 'foo'); + + $controller = $resolver->getController($request); + + $this->assertEquals($invokableController, $controller); + } + + public function testGetControllerInvokableServiceWithClassNameAsName() + { + $invokableController = new InvokableController('bar'); + $className = __NAMESPACE__.'\InvokableController'; + + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with($className) + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with($className) + ->willReturn($invokableController) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', $className); + + $controller = $resolver->getController($request); + + $this->assertEquals($invokableController, $controller); + } + + public function testNonInstantiableController() + { + $container = $this->createMockContainer(); + $container->expects($this->once()) + ->method('has') + ->with(NonInstantiableController::class) + ->willReturn(false) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); + + $controller = $resolver->getController($request); + + $this->assertSame([NonInstantiableController::class, 'action'], $controller); + } + + public function testNonConstructController() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "Symfony\Component\HttpKernel\Tests\Controller\ImpossibleConstructController" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->at(0)) + ->method('has') + ->with(ImpossibleConstructController::class) + ->willReturn(true) + ; + + $container->expects($this->at(1)) + ->method('has') + ->with(ImpossibleConstructController::class) + ->willReturn(false) + ; + + $container->expects($this->atLeastOnce()) + ->method('getRemovedIds') + ->with() + ->willReturn([ImpossibleConstructController::class => true]) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [ImpossibleConstructController::class, 'action']); + + if (\PHP_VERSION_ID < 70100) { + ErrorHandler::register(); + try { + $resolver->getController($request); + } finally { + restore_error_handler(); + restore_exception_handler(); + } + } else { + $resolver->getController($request); + } + } + + public function testNonInstantiableControllerWithCorrespondingService() + { + $service = new \stdClass(); + + $container = $this->createMockContainer(); + $container->expects($this->atLeastOnce()) + ->method('has') + ->with(NonInstantiableController::class) + ->willReturn(true) + ; + $container->expects($this->atLeastOnce()) + ->method('get') + ->with(NonInstantiableController::class) + ->willReturn($service) + ; + + $resolver = $this->createControllerResolver(null, $container); + $request = Request::create('/'); + $request->attributes->set('_controller', [NonInstantiableController::class, 'action']); + + $controller = $resolver->getController($request); + + $this->assertSame([$service, 'action'], $controller); + } + + public function testExceptionWhenUsingRemovedControllerService() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "app.my_controller" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->at(0)) + ->method('has') + ->with('app.my_controller') + ->willReturn(false) + ; + + $container->expects($this->atLeastOnce()) + ->method('getRemovedIds') + ->with() + ->willReturn(['app.my_controller' => true]) + ; + + $resolver = $this->createControllerResolver(null, $container); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'app.my_controller'); + $resolver->getController($request); + } + + public function testExceptionWhenUsingControllerWithoutAnInvokeMethod() + { + $this->expectException('LogicException'); + $this->expectExceptionMessage('Controller "app.my_controller" cannot be called without a method name. Did you forget an "__invoke" method?'); + $container = $this->getMockBuilder(Container::class)->getMock(); + $container->expects($this->once()) + ->method('has') + ->with('app.my_controller') + ->willReturn(true) + ; + $container->expects($this->once()) + ->method('get') + ->with('app.my_controller') + ->willReturn(new ImpossibleConstructController('toto', 'controller')) + ; + + $resolver = $this->createControllerResolver(null, $container); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'app.my_controller'); + $resolver->getController($request); + } + + /** + * @dataProvider getUndefinedControllers + */ + public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) + { + // All this logic needs to be duplicated, since calling parent::testGetControllerOnNonUndefinedFunction will override the expected excetion and not use the regex + $resolver = $this->createControllerResolver(); + $this->expectException($exceptionName); + $this->expectExceptionMessageRegExp($exceptionMessage); + + $request = Request::create('/'); + $request->attributes->set('_controller', $controller); + $resolver->getController($request); + } + + public function getUndefinedControllers() + { + return [ + ['foo', \LogicException::class, '/Controller not found: service "foo" does not exist\./'], + ['oof::bar', \InvalidArgumentException::class, '/Class "oof" does not exist\./'], + ['stdClass', \LogicException::class, '/Controller not found: service "stdClass" does not exist\./'], + [ + 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::bar', + \InvalidArgumentException::class, + '/.?[cC]ontroller(.*?) for URI "\/" is not callable\.( Expected method(.*) Available methods)?/', + ], + ]; + } + + protected function createControllerResolver(LoggerInterface $logger = null, ContainerInterface $container = null) + { + if (!$container) { + $container = $this->createMockContainer(); + } + + return new ContainerControllerResolver($container, $logger); + } + + protected function createMockContainer() + { + return $this->getMockBuilder(ContainerInterface::class)->getMock(); + } +} + +class InvokableController +{ + public function __construct($bar) // mandatory argument to prevent automatic instantiation + { + } + + public function __invoke() + { + } +} + +abstract class NonInstantiableController +{ + public static function action() + { + } +} + +class ImpossibleConstructController +{ + public function __construct($toto, $controller) + { + } + + public function action() + { + } } diff --git a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php index 90dc626008575..e34427a32e5c4 100644 --- a/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php @@ -11,8 +11,315 @@ namespace Symfony\Component\HttpKernel\Tests\Controller; -use Symfony\Component\HttpKernel\Test\Controller\ControllerResolverTestCase; +use PHPUnit\Framework\TestCase; +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\VariadicController; -class ControllerResolverTest extends ControllerResolverTestCase +class ControllerResolverTest extends TestCase { + public function testGetControllerWithoutControllerParameter() + { + $logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock(); + $logger->expects($this->once())->method('warning')->with('Unable to look for the controller as the "_controller" parameter is missing.'); + $resolver = $this->createControllerResolver($logger); + + $request = Request::create('/'); + $this->assertFalse($resolver->getController($request), '->getController() returns false when the request has no _controller attribute'); + } + + public function testGetControllerWithLambda() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', $lambda = function () {}); + $controller = $resolver->getController($request); + $this->assertSame($lambda, $controller); + } + + public function testGetControllerWithObjectAndInvokeMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', $this); + $controller = $resolver->getController($request); + $this->assertSame($this, $controller); + } + + public function testGetControllerWithObjectAndMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', [$this, 'controllerMethod1']); + $controller = $resolver->getController($request); + $this->assertSame([$this, 'controllerMethod1'], $controller); + } + + public function testGetControllerWithClassAndMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', ['Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', 'controllerMethod4']); + $controller = $resolver->getController($request); + $this->assertSame(['Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', 'controllerMethod4'], $controller); + } + + public function testGetControllerWithObjectAndMethodAsString() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::controllerMethod1'); + $controller = $resolver->getController($request); + $this->assertInstanceOf('Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', $controller[0], '->getController() returns a PHP callable'); + } + + public function testGetControllerWithClassAndInvokeMethod() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest'); + $controller = $resolver->getController($request); + $this->assertInstanceOf('Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest', $controller); + } + + public function testGetControllerOnObjectWithoutInvokeMethod() + { + $this->expectException('InvalidArgumentException'); + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', new \stdClass()); + $resolver->getController($request); + } + + public function testGetControllerWithFunction() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'); + $controller = $resolver->getController($request); + $this->assertSame('Symfony\Component\HttpKernel\Tests\Controller\some_controller_function', $controller); + } + + /** + * @dataProvider getUndefinedControllers + */ + public function testGetControllerOnNonUndefinedFunction($controller, $exceptionName = null, $exceptionMessage = null) + { + $resolver = $this->createControllerResolver(); + $this->expectException($exceptionName); + $this->expectExceptionMessage($exceptionMessage); + + $request = Request::create('/'); + $request->attributes->set('_controller', $controller); + $resolver->getController($request); + } + + public function getUndefinedControllers() + { + return [ + [1, 'InvalidArgumentException', 'Unable to find controller "1".'], + ['foo', 'InvalidArgumentException', 'Unable to find controller "foo".'], + ['oof::bar', 'InvalidArgumentException', 'Class "oof" does not exist.'], + ['stdClass', 'InvalidArgumentException', 'Unable to find controller "stdClass".'], + ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::staticsAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest", did you mean "staticAction"?'], + ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::privateAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'], + ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::protectedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'], + ['Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::undefinedAction', 'InvalidArgumentException', 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'], + ]; + } + + /** + * @group legacy + */ + public function testGetArguments() + { + $resolver = $this->createControllerResolver(); + + $request = Request::create('/'); + $controller = [new self(), 'testGetArguments']; + $this->assertEquals([], $resolver->getArguments($request, $controller), '->getArguments() returns an empty array if the method takes no arguments'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = [new self(), 'controllerMethod1']; + $this->assertEquals(['foo'], $resolver->getArguments($request, $controller), '->getArguments() returns an array of arguments for the controller method'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = [new self(), 'controllerMethod2']; + $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller), '->getArguments() uses default values if present'); + + $request->attributes->set('bar', 'bar'); + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller), '->getArguments() overrides default values if provided in the request attributes'); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = function ($foo) {}; + $this->assertEquals(['foo'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = function ($foo, $bar = 'bar') {}; + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $controller = new self(); + $this->assertEquals(['foo', null], $resolver->getArguments($request, $controller)); + $request->attributes->set('bar', 'bar'); + $this->assertEquals(['foo', 'bar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('foobar', 'foobar'); + $controller = 'Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'; + $this->assertEquals(['foo', 'foobar'], $resolver->getArguments($request, $controller)); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('foobar', 'foobar'); + $controller = [new self(), 'controllerMethod3']; + + try { + $resolver->getArguments($request, $controller); + $this->fail('->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); + } catch (\Exception $e) { + $this->assertInstanceOf('\RuntimeException', $e, '->getArguments() throws a \RuntimeException exception if it cannot determine the argument value'); + } + + $request = Request::create('/'); + $controller = [new self(), 'controllerMethod5']; + $this->assertEquals([$request], $resolver->getArguments($request, $controller), '->getArguments() injects the request'); + } + + /** + * @requires PHP 5.6 + * @group legacy + */ + public function testGetVariadicArguments() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('bar', ['foo', 'bar']); + $controller = [new VariadicController(), 'action']; + $this->assertEquals(['foo', 'foo', 'bar'], $resolver->getArguments($request, $controller)); + } + + public function testCreateControllerCanReturnAnyCallable() + { + $mock = $this->getMockBuilder('Symfony\Component\HttpKernel\Controller\ControllerResolver')->setMethods(['createController'])->getMock(); + $mock->expects($this->once())->method('createController')->willReturn('Symfony\Component\HttpKernel\Tests\Controller\some_controller_function'); + + $request = Request::create('/'); + $request->attributes->set('_controller', 'foobar'); + $mock->getController($request); + } + + /** + * @group legacy + */ + public function testIfExceptionIsThrownWhenMissingAnArgument() + { + $this->expectException('RuntimeException'); + $resolver = new ControllerResolver(); + $request = Request::create('/'); + + $controller = [$this, 'controllerMethod1']; + + $resolver->getArguments($request, $controller); + } + + /** + * @requires PHP 7.1 + * @group legacy + */ + public function testGetNullableArguments() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('foo', 'foo'); + $request->attributes->set('bar', new \stdClass()); + $request->attributes->set('mandatory', 'mandatory'); + $controller = [new NullableController(), 'action']; + $this->assertEquals(['foo', new \stdClass(), 'value', 'mandatory'], $resolver->getArguments($request, $controller)); + } + + /** + * @requires PHP 7.1 + * @group legacy + */ + public function testGetNullableArgumentsWithDefaults() + { + $resolver = new ControllerResolver(); + + $request = Request::create('/'); + $request->attributes->set('mandatory', 'mandatory'); + $controller = [new NullableController(), 'action']; + $this->assertEquals([null, null, 'value', 'mandatory'], $resolver->getArguments($request, $controller)); + } + + protected function createControllerResolver(LoggerInterface $logger = null) + { + return new ControllerResolver($logger); + } + + public function __invoke($foo, $bar = null) + { + } + + public function controllerMethod1($foo) + { + } + + protected function controllerMethod2($foo, $bar = null) + { + } + + protected function controllerMethod3($foo, $bar, $foobar) + { + } + + protected static function controllerMethod4() + { + } + + protected function controllerMethod5(Request $request) + { + } +} + +function some_controller_function($foo, $foobar) +{ +} + +class ControllerTest +{ + public function publicAction() + { + } + + private function privateAction() + { + } + + protected function protectedAction() + { + } + + public static function staticAction() + { + } } diff --git a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php index f58188ded50a8..1c0c4648a0f2a 100644 --- a/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php @@ -15,9 +15,9 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\NullableController; -use Symfony\Component\HttpKernel\Test\Fixtures\Controller\VariadicController; use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\BasicTypesController; +use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\NullableController; +use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\VariadicController; class ArgumentMetadataFactoryTest extends TestCase { diff --git a/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php similarity index 81% rename from src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php rename to src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php index 8cf95f2f547a0..9db4df7b4c173 100644 --- a/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/NullableController.php +++ b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/NullableController.php @@ -9,11 +9,8 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\HttpKernel\Test\Fixtures\Controller; +namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller; -/** - * @internal - */ class NullableController { public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', $mandatory) diff --git a/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php similarity index 78% rename from src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php rename to src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php index 0201f50759cc1..c39812453bb01 100644 --- a/src/Symfony/Component/HttpKernel/Test/Fixtures/Controller/VariadicController.php +++ b/src/Symfony/Component/HttpKernel/Tests/Fixtures/Controller/VariadicController.php @@ -9,11 +9,8 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\HttpKernel\Test\Fixtures\Controller; +namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller; -/** - * @internal - */ class VariadicController { public function action($foo, ...$bar) From 9e4e191535468a3a08023031be69eb07a3f72f35 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 13 Sep 2019 11:27:15 +0200 Subject: [PATCH 37/83] Re-enable previously failing PHP 7.4 test cases --- .travis.yml | 11 ----------- .../PhpUnit/DeprecationErrorHandler.php | 4 ++-- .../CacheWarmer/ValidatorCacheWarmerTest.php | 5 ----- .../Tests/Command/YamlLintCommandTest.php | 19 +------------------ .../Resource/ClassExistenceResourceTest.php | 10 ---------- src/Symfony/Component/Debug/ErrorHandler.php | 3 +-- .../Tests/Compiler/AutowirePassTest.php | 15 --------------- .../Compiler/ResolveBindingsPassTest.php | 5 ----- .../Tests/Dumper/PhpDumperTest.php | 5 ----- .../Tests/Loader/FileLoaderTest.php | 15 --------------- .../Component/Process/Tests/ProcessTest.php | 2 +- 11 files changed, 5 insertions(+), 89 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45ffe08cb3c1d..f6bada98461b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,11 +28,6 @@ matrix: env: deps=high - php: 7.4snapshot env: deps=low - - php: 7.4snapshot - env: deps= - allow_failures: - - php: 7.4snapshot - env: deps= fast_finish: true cache: @@ -76,12 +71,6 @@ before_install: export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) find ~/.phpenv -name xdebug.ini -delete - if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then - export PHPUNIT_X="$PHPUNIT_X,issue-32995" - elif [[ $TRAVIS_PHP_VERSION = 7.4* ]]; then - export PHPUNIT_X="$PHPUNIT --group issue-32995" - fi - if [[ $TRAVIS_PHP_VERSION = 5.* || $TRAVIS_PHP_VERSION = hhvm* ]]; then composer () { $HOME/.phpenv/versions/7.1/bin/php $HOME/.phpenv/versions/7.1/bin/composer config platform.php $(echo ' array(), ); $deprecationHandler = function ($type, $msg, $file, $line, $context = array()) use (&$deprecations, $getMode, $UtilPrefix, $inVendors) { - if ((E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type) || DeprecationErrorHandler::MODE_DISABLED === $mode = $getMode()) { + if ((E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type && (E_WARNING !== $type || false === strpos($msg, '" targeting switch is equivalent to "break'))) || DeprecationErrorHandler::MODE_DISABLED === $mode = $getMode()) { return \call_user_func(DeprecationErrorHandler::getPhpUnitErrorHandler(), $type, $msg, $file, $line, $context); } @@ -285,7 +285,7 @@ public static function collectDeprecations($outputFile) { $deprecations = array(); $previousErrorHandler = set_error_handler(function ($type, $msg, $file, $line, $context = array()) use (&$deprecations, &$previousErrorHandler) { - if (E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type) { + if (E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type && (E_WARNING !== $type || false === strpos($msg, '" targeting switch is equivalent to "break'))) { if ($previousErrorHandler) { return $previousErrorHandler($type, $msg, $file, $line, $context); } diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ValidatorCacheWarmerTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ValidatorCacheWarmerTest.php index e43659b95632a..33d1140351cda 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ValidatorCacheWarmerTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ValidatorCacheWarmerTest.php @@ -21,11 +21,6 @@ class ValidatorCacheWarmerTest extends TestCase { - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testWarmUp() { $validatorBuilder = new ValidatorBuilder(); diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Command/YamlLintCommandTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Command/YamlLintCommandTest.php index 410ab4f90c8fc..ba883543cadb0 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Command/YamlLintCommandTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Command/YamlLintCommandTest.php @@ -72,29 +72,12 @@ public function testGetHelp() { $command = new YamlLintCommand(); $expected = <<%command.name% command lints a YAML file and outputs to STDOUT -the first encountered syntax error. - -You can validates YAML contents passed from STDIN: - - cat filename | php %command.full_name% - -You can also validate the syntax of a file: - - php %command.full_name% filename - -Or of a whole directory: - - php %command.full_name% dirname - php %command.full_name% dirname --format=json - Or find all files in a bundle: php %command.full_name% @AcmeDemoBundle - EOF; - $this->assertEquals($expected, $command->getHelp()); + $this->assertStringContainsString($expected, $command->getHelp()); } public function testLintFilesFromBundleDirectory() diff --git a/src/Symfony/Component/Config/Tests/Resource/ClassExistenceResourceTest.php b/src/Symfony/Component/Config/Tests/Resource/ClassExistenceResourceTest.php index f096b376368f1..6b38e33baf4a2 100644 --- a/src/Symfony/Component/Config/Tests/Resource/ClassExistenceResourceTest.php +++ b/src/Symfony/Component/Config/Tests/Resource/ClassExistenceResourceTest.php @@ -75,22 +75,12 @@ public function testExistsKo() } } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testBadParentWithTimestamp() { $res = new ClassExistenceResource(BadParent::class, false); $this->assertTrue($res->isFresh(time())); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testBadParentWithNoTimestamp() { $this->expectException('ReflectionException'); diff --git a/src/Symfony/Component/Debug/ErrorHandler.php b/src/Symfony/Component/Debug/ErrorHandler.php index 794f5ca029ea0..1b39fab5ca401 100644 --- a/src/Symfony/Component/Debug/ErrorHandler.php +++ b/src/Symfony/Component/Debug/ErrorHandler.php @@ -382,8 +382,7 @@ private function reRegister($prev) */ public function handleError($type, $message, $file, $line) { - // @deprecated to be removed in Symfony 5.0 - if (\PHP_VERSION_ID >= 70300 && $message && '"' === $message[0] && 0 === strpos($message, '"continue') && preg_match('/^"continue(?: \d++)?" targeting switch is equivalent to "break(?: \d++)?"\. Did you mean to use "continue(?: \d++)?"\?$/', $message)) { + if (\PHP_VERSION_ID >= 70300 && E_WARNING === $type && '"' === $message[0] && false !== strpos($message, '" targeting switch is equivalent to "break')) { $type = E_DEPRECATED; } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php index b2a08c4d6ece4..f729f72ba0dba 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php @@ -377,11 +377,6 @@ public function testClassNotFoundThrowsException() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testParentClassNotFoundThrowsException() { $this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException'); @@ -693,11 +688,6 @@ public function getCreateResourceTests() ]; } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testIgnoreServiceWithClassNotExisting() { $container = new ContainerBuilder(); @@ -896,11 +886,6 @@ public function testExceptionWhenAliasExists() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testExceptionWhenAliasDoesNotExist() { $this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException'); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php index 9a6404b5c4ee8..a44fea4d60e08 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php @@ -61,11 +61,6 @@ public function testUnusedBinding() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testMissingParent() { $this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException'); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php b/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php index c63380d3d96c3..4e6083d99814f 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php @@ -893,11 +893,6 @@ public function testInlineSelfRef() $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_inline_self_ref.php', $dumper->dump(['class' => 'Symfony_DI_PhpDumper_Test_Inline_Self_Ref'])); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testHotPathOptimizations() { $container = include self::$fixturesPath.'/containers/container_inline_requires.php'; diff --git a/src/Symfony/Component/DependencyInjection/Tests/Loader/FileLoaderTest.php b/src/Symfony/Component/DependencyInjection/Tests/Loader/FileLoaderTest.php index c5f1725fb05fb..b6a816e40898e 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Loader/FileLoaderTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Loader/FileLoaderTest.php @@ -107,11 +107,6 @@ public function testRegisterClasses() ); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testRegisterClassesWithExclude() { $container = new ContainerBuilder(); @@ -141,11 +136,6 @@ public function testRegisterClassesWithExclude() ); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testNestedRegisterClasses() { $container = new ContainerBuilder(); @@ -174,11 +164,6 @@ public function testNestedRegisterClasses() $this->assertFalse($alias->isPrivate()); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testMissingParentClass() { $container = new ContainerBuilder(); diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index 9a7c515e8a5ec..18657f7309adf 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -75,7 +75,7 @@ public function testThatProcessDoesNotThrowWarningDuringRun() $process = $this->getProcessForCode('sleep(3)'); $process->run(); $actualError = error_get_last(); - $this->assertEquals('Test Error', $actualError['message']); + $this->assertEquals('Test Error', $actualError['message'], print_r($actualError, true)); $this->assertEquals(E_USER_NOTICE, $actualError['type']); } From 76d4ef83e9f0a6e981ba5ef11353590bd61a46a5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 19 Sep 2019 18:13:23 +0200 Subject: [PATCH 38/83] [PhpUnitBridge] bump cache id --- phpunit | 2 +- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit b/phpunit index 46aec35a98352..d334dc0720936 100755 --- a/phpunit +++ b/phpunit @@ -1,7 +1,7 @@ #!/usr/bin/env php Date: Thu, 19 Sep 2019 19:10:56 +0200 Subject: [PATCH 39/83] [Process] fix typo in tests --- src/Symfony/Component/Process/Tests/ProcessTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index 18657f7309adf..9a7c515e8a5ec 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -75,7 +75,7 @@ public function testThatProcessDoesNotThrowWarningDuringRun() $process = $this->getProcessForCode('sleep(3)'); $process->run(); $actualError = error_get_last(); - $this->assertEquals('Test Error', $actualError['message'], print_r($actualError, true)); + $this->assertEquals('Test Error', $actualError['message']); $this->assertEquals(E_USER_NOTICE, $actualError['type']); } From 04f79c5536089b044192ce63b1978c53351b3553 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Fri, 20 Sep 2019 09:04:12 +0200 Subject: [PATCH 40/83] fix tests --- .../LazyLoadingMetadataFactoryTest.php | 29 ++++--------------- 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/src/Symfony/Component/Validator/Tests/Mapping/Factory/LazyLoadingMetadataFactoryTest.php b/src/Symfony/Component/Validator/Tests/Mapping/Factory/LazyLoadingMetadataFactoryTest.php index f3332b8ff9dd2..6a89ef1c30514 100644 --- a/src/Symfony/Component/Validator/Tests/Mapping/Factory/LazyLoadingMetadataFactoryTest.php +++ b/src/Symfony/Component/Validator/Tests/Mapping/Factory/LazyLoadingMetadataFactoryTest.php @@ -12,7 +12,9 @@ namespace Symfony\Component\Validator\Tests\Mapping\Factory; use PHPUnit\Framework\TestCase; +use Symfony\Component\Cache\Adapter\ArrayAdapter; use Symfony\Component\Validator\Constraints\Callback; +use Symfony\Component\Validator\Mapping\Cache\Psr6Cache; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory; use Symfony\Component\Validator\Mapping\Loader\LoaderInterface; @@ -78,41 +80,20 @@ public function testMergeParentConstraints() public function testWriteMetadataToCache() { - $cache = $this->getMockBuilder('Symfony\Component\Validator\Mapping\Cache\CacheInterface')->getMock(); + $cache = new Psr6Cache(new ArrayAdapter()); $factory = new LazyLoadingMetadataFactory(new TestLoader(), $cache); $parentClassConstraints = [ new ConstraintA(['groups' => ['Default', 'EntityParent']]), new ConstraintA(['groups' => ['Default', 'EntityInterfaceA', 'EntityParent']]), ]; - $interfaceAConstraints = [ - new ConstraintA(['groups' => ['Default', 'EntityInterfaceA']]), - ]; - - $cache->expects($this->never()) - ->method('has'); - $cache->expects($this->exactly(2)) - ->method('read') - ->withConsecutive( - [$this->equalTo(self::PARENT_CLASS)], - [$this->equalTo(self::INTERFACE_A_CLASS)] - ) - ->willReturn(false); - $cache->expects($this->exactly(2)) - ->method('write') - ->withConsecutive( - $this->callback(function ($metadata) use ($interfaceAConstraints) { - return $interfaceAConstraints == $metadata->getConstraints(); - }), - $this->callback(function ($metadata) use ($parentClassConstraints) { - return $parentClassConstraints == $metadata->getConstraints(); - }) - ); $metadata = $factory->getMetadataFor(self::PARENT_CLASS); $this->assertEquals(self::PARENT_CLASS, $metadata->getClassName()); $this->assertEquals($parentClassConstraints, $metadata->getConstraints()); + $this->assertInstanceOf(ClassMetadata::class, $cache->read(self::PARENT_CLASS)); + $this->assertInstanceOf(ClassMetadata::class, $cache->read(self::INTERFACE_A_CLASS)); } public function testReadMetadataFromCache() From 1de84836cfb2fd78c514229fdc5d79719da5c323 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 20 Sep 2019 18:57:15 +0200 Subject: [PATCH 41/83] [travis] install from dist except for selected components --- .appveyor.yml | 2 +- .composer/config.json | 7 ------- .github/composer-config.json | 10 ++++++++++ .travis.yml | 21 +++++++++++++-------- 4 files changed, 24 insertions(+), 16 deletions(-) delete mode 100644 .composer/config.json create mode 100644 .github/composer-config.json diff --git a/.appveyor.yml b/.appveyor.yml index b5fcad5e9b972..5146a65ae6cab 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -52,7 +52,7 @@ install: - cd c:\projects\symfony - IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.9.0/composer.phar) - php composer.phar self-update - - copy /Y .composer\* %APPDATA%\Composer\ + - copy /Y .github\composer-config.json %APPDATA%\Composer\config.json - php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master - php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit - IF %APPVEYOR_REPO_BRANCH%==master (SET COMPOSER_ROOT_VERSION=dev-master) ELSE (SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev) diff --git a/.composer/config.json b/.composer/config.json deleted file mode 100644 index 941bc3b56e8cd..0000000000000 --- a/.composer/config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "config": { - "preferred-install": { - "*": "dist" - } - } -} diff --git a/.github/composer-config.json b/.github/composer-config.json new file mode 100644 index 0000000000000..185292ab21cea --- /dev/null +++ b/.github/composer-config.json @@ -0,0 +1,10 @@ +{ + "config": { + "preferred-install": { + "symfony/form": "source", + "symfony/http-kernel": "source", + "symfony/validator": "source", + "*": "dist" + } + } +} diff --git a/.travis.yml b/.travis.yml index f6bada98461b9..dfa3300974ddd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,7 +64,7 @@ before_install: mkdir /tmp/slapd slapd -f src/Symfony/Component/Ldap/Tests/Fixtures/conf/slapd.conf -h ldap://localhost:3389 & [ -d ~/.composer ] || mkdir ~/.composer - cp .composer/* ~/.composer/ + cp .github/composer-config.json ~/.composer/config.json export PHPUNIT=$(readlink -f ./phpunit) export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data" export COMPOSER_UP='composer update --no-progress --no-suggest --ansi' @@ -95,7 +95,7 @@ before_install: # tfold is a helper to create folded reports tfold () { - local title="🐘 $PHP $1" + local title="🐘 $PHP $1 $FLIP" local fold=$(echo $title | sed -r 's/[^-_A-Za-z0-9]+/./g') shift local id=$(printf %08x $(( RANDOM * RANDOM ))) @@ -202,7 +202,7 @@ install: #SYMFONY_PHPUNIT_BRIDGE_PR=32886 if [[ $SYMFONY_PHPUNIT_BRIDGE_PR ]]; then - git fetch origin refs/pull/$SYMFONY_PHPUNIT_BRIDGE_PR/head + git fetch --depth=2 origin refs/pull/$SYMFONY_PHPUNIT_BRIDGE_PR/head git rm -rq src/Symfony/Bridge/PhpUnit git checkout -q FETCH_HEAD -- src/Symfony/Bridge/PhpUnit SYMFONY_VERSION=$(cat src/Symfony/Bridge/PhpUnit/composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') @@ -230,8 +230,9 @@ install: - | # For the master branch, when deps=high, the version before master is checked out and tested with the locally patched components if [[ $deps = high && $TRAVIS_BRANCH = master ]]; then + export FLIP='🙃' SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) && - git fetch origin $SYMFONY_VERSION && + git fetch --depth=2 origin $SYMFONY_VERSION && git checkout -m FETCH_HEAD && COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) else @@ -269,7 +270,7 @@ install: set -e export PHP=$1 if [[ $PHP != $TRAVIS_PHP_VERSION && $TRAVIS_PULL_REQUEST != false ]]; then - echo -e "\\n\\e[1;34mIntermediate PHP version $PHP is skipped for pull requests.\\e[0m" + echo -e "\\n\\e[33;1mIntermediate PHP version $PHP is skipped for pull requests.\\e[0m" break fi phpenv global ${PHP/hhvm*/hhvm} @@ -283,12 +284,12 @@ install: tfold 'phpunit install' ./phpunit install fi if [[ $deps = high ]]; then - echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && $COMPOSER_UP --prefer-source && $PHPUNIT_X$LEGACY'" + echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" elif [[ $deps = low ]]; then [[ -e ~/php-ext/composer-lowest.lock.tar ]] && tar -xf ~/php-ext/composer-lowest.lock.tar tar -cf ~/php-ext/composer-lowest.lock.tar --files-from /dev/null php .github/rm-invalid-lowest-lock-files.php $COMPONENTS - echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && ([ -e composer.lock ] && ${COMPOSER_UP/update/install} || $COMPOSER_UP --prefer-lowest --prefer-stable --prefer-source) && $PHPUNIT_X'" + echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && ([ -e composer.lock ] && ${COMPOSER_UP/update/install} || $COMPOSER_UP --prefer-lowest --prefer-stable) && $PHPUNIT_X'" echo "$COMPONENTS" | xargs -n1 -I{} tar --append -f ~/php-ext/composer-lowest.lock.tar {}/composer.lock elif [[ $PHP = hhvm* ]]; then rm src/Symfony/Bridge/PhpUnit -Rf @@ -304,4 +305,8 @@ install: } script: - - for PHP in $TRAVIS_PHP_VERSION $php_extra; do (run_tests $PHP); done + - for PHP in $TRAVIS_PHP_VERSION $php_extra; do + (run_tests $PHP) || X=1; + done + + [[ ! $X ]] || (exit 1) From 276f190d22c1c38688ad1cfdb0c3a11bdd392ce8 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 20 Sep 2019 23:40:23 +0200 Subject: [PATCH 42/83] fix typo --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dfa3300974ddd..67d68a0867317 100644 --- a/.travis.yml +++ b/.travis.yml @@ -196,7 +196,7 @@ install: - | # Install the phpunit-bridge from a PR if required # - # To run a PR with a patched phpunit-bridge, first submit the path for the + # To run a PR with a patched phpunit-bridge, first submit the patch for the # phpunit-bridge as a separate PR against the next feature-branch then # uncomment and update the following line with that PR number #SYMFONY_PHPUNIT_BRIDGE_PR=32886 From d7fbb0a4a4cdbc4d7303e7a5486c1e2e7c01ddba Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 21 Sep 2019 09:26:15 +0200 Subject: [PATCH 43/83] [travis] honor .gitattributes when building local packages --- .github/build-packages.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/build-packages.php b/.github/build-packages.php index 5e9bcc141544e..1f59c352762bf 100644 --- a/.github/build-packages.php +++ b/.github/build-packages.php @@ -17,6 +17,7 @@ $packages = array(); $flags = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; +$preferredInstall = json_decode(file_get_contents(__DIR__.'/composer-config.json'), true)['config']['preferred-install']; foreach ($dirs as $k => $dir) { if (!system("git diff --name-only $mergeBase -- $dir", $exitStatus)) { @@ -42,7 +43,12 @@ $json = rtrim(json_encode(array('repositories' => $package->repositories), $flags), "\n}").','.substr($json, 1); file_put_contents($dir.'/composer.json', $json); } - passthru("cd $dir && tar -cf package.tar --exclude='package.tar' *"); + + if (isset($preferredInstall[$package->name]) && 'source' === $preferredInstall[$package->name]) { + passthru("cd $dir && tar -cf package.tar --exclude='package.tar' *"); + } else { + passthru("cd $dir && git init && git add . && git commit -m - && git archive -o package.tar HEAD && rm .git/ -Rf"); + } if (!isset($package->extra->{'branch-alias'}->{'dev-master'})) { echo "Missing \"dev-master\" branch-alias in composer.json extra.\n"; From a0961d3b990f269a0752e7aa5909c8d97da097a5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 23 Sep 2019 09:36:04 +0200 Subject: [PATCH 44/83] [travis] fix CI --- .travis.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 67d68a0867317..00de92f28aa46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -234,7 +234,7 @@ install: SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) && git fetch --depth=2 origin $SYMFONY_VERSION && git checkout -m FETCH_HEAD && - COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) + export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) else SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') fi @@ -242,7 +242,7 @@ install: - | # Skip the phpunit-bridge on not-master branches when $deps is empty if [[ ! $deps && $TRAVIS_BRANCH != master ]]; then - COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort) + export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort) fi - | @@ -256,7 +256,7 @@ install: - | # Legacy tests are skipped when deps=high and when the current branch version has not the same major version number as the next one - [[ $deps = high && ${SYMFONY_VERSION%.*} != $(git show $(git ls-remote --heads | grep -FA1 /$SYMFONY_VERSION | tail -n 1):composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9]*' | head -n 1) ]] && LEGACY=,legacy + [[ $deps = high && ${SYMFONY_VERSION%.*} != $(git show $(git ls-remote --heads | grep -FA1 /$SYMFONY_VERSION | tail -n 1):composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9]*' | head -n 1) ]] && export LEGACY=,legacy export COMPOSER_ROOT_VERSION=$SYMFONY_VERSION.x-dev if [[ $deps ]]; then mv composer.json.phpunit composer.json; fi @@ -271,7 +271,7 @@ install: export PHP=$1 if [[ $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" - break + return fi phpenv global ${PHP/hhvm*/hhvm} if [[ $PHP = 7.* ]]; then @@ -303,10 +303,7 @@ install: fi fi } + export -f run_tests script: - - for PHP in $TRAVIS_PHP_VERSION $php_extra; do - (run_tests $PHP) || X=1; - done - - [[ ! $X ]] || (exit 1) + echo $TRAVIS_PHP_VERSION $php_extra | xargs -n1 bash -c '( Date: Mon, 23 Sep 2019 15:04:01 +0200 Subject: [PATCH 45/83] [travis] more CI fixes --- .travis.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 00de92f28aa46..1995abf080d80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -170,7 +170,6 @@ before_install: if [[ $PHP = hhvm* ]]; then continue fi - export PHP=$PHP phpenv global $PHP INI=~/.phpenv/versions/$PHP/etc/conf.d/travis.ini if [[ $PHP = 5.* ]]; then @@ -205,7 +204,7 @@ install: git fetch --depth=2 origin refs/pull/$SYMFONY_PHPUNIT_BRIDGE_PR/head git rm -rq src/Symfony/Bridge/PhpUnit git checkout -q FETCH_HEAD -- src/Symfony/Bridge/PhpUnit - SYMFONY_VERSION=$(cat src/Symfony/Bridge/PhpUnit/composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') + export SYMFONY_VERSION=$(cat src/Symfony/Bridge/PhpUnit/composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') sed -i 's/"symfony\/phpunit-bridge": ".*"/"symfony\/phpunit-bridge": "'$SYMFONY_VERSION'.x@dev"/' composer.json rm -rf .phpunit fi @@ -218,7 +217,7 @@ install: export SYMFONY_DEPRECATIONS_HELPER=weak && cp composer.json composer.json.orig && echo -e '{\n"require":{'"$(grep phpunit-bridge composer.json)"'"php":"*"},"minimum-stability":"dev"}' > composer.json && - php .github/build-packages.php HEAD^ $(find src/Symfony -mindepth 3 -type f -name composer.json -printf '%h\n') && + php .github/build-packages.php HEAD^ $(find src/Symfony -mindepth 3 -type f -name composer.json -printf '%h\n' | sort) && mv composer.json composer.json.phpunit && mv composer.json.orig composer.json fi @@ -231,12 +230,12 @@ install: # For the master branch, when deps=high, the version before master is checked out and tested with the locally patched components if [[ $deps = high && $TRAVIS_BRANCH = master ]]; then export FLIP='🙃' - SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) && + export SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) && git fetch --depth=2 origin $SYMFONY_VERSION && git checkout -m FETCH_HEAD && export COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n' | sort) else - SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') + export SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*') fi - | @@ -268,7 +267,7 @@ install: - | run_tests () { set -e - export PHP=$1 + PHP=$1 if [[ $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 @@ -298,7 +297,6 @@ install: echo "$COMPONENTS" | parallel --gnu "tfold {} $PHPUNIT_X {}" tfold src/Symfony/Component/Console.tty $PHPUNIT src/Symfony/Component/Console --group tty if [[ $PHP = ${MIN_PHP%.*} ]]; then - export PHP=$MIN_PHP echo -e "1\\n0" | xargs -I{} bash -c "tfold src/Symfony/Component/Process.sigchild{} SYMFONY_DEPRECATIONS_HELPER=weak ENHANCE_SIGCHLD={} php-$MIN_PHP/sapi/cli/php .phpunit/phpunit-4.8-1/phpunit --colors=always src/Symfony/Component/Process/" fi fi From d958312ef1d21d13040465e92e38cbf0d7ad04f5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 23 Sep 2019 15:08:55 +0200 Subject: [PATCH 46/83] [travis] fix typo --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1995abf080d80..682b50b1558da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -170,6 +170,7 @@ before_install: if [[ $PHP = hhvm* ]]; then continue fi + export PHP=$PHP phpenv global $PHP INI=~/.phpenv/versions/$PHP/etc/conf.d/travis.ini if [[ $PHP = 5.* ]]; then @@ -267,7 +268,7 @@ install: - | run_tests () { set -e - PHP=$1 + export PHP=$1 if [[ $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 @@ -297,6 +298,7 @@ install: echo "$COMPONENTS" | parallel --gnu "tfold {} $PHPUNIT_X {}" tfold src/Symfony/Component/Console.tty $PHPUNIT src/Symfony/Component/Console --group tty if [[ $PHP = ${MIN_PHP%.*} ]]; then + export PHP=$MIN_PHP echo -e "1\\n0" | xargs -I{} bash -c "tfold src/Symfony/Component/Process.sigchild{} SYMFONY_DEPRECATIONS_HELPER=weak ENHANCE_SIGCHLD={} php-$MIN_PHP/sapi/cli/php .phpunit/phpunit-4.8-1/phpunit --colors=always src/Symfony/Component/Process/" fi fi From 5c01f0a7e599b136ca68c0ba64e053f50ce7e4da Mon Sep 17 00:00:00 2001 From: Farhad Safarov Date: Mon, 23 Sep 2019 11:24:06 +0300 Subject: [PATCH 47/83] [Lock] use Predis\ClientInterface instead of Predis\Client --- src/Symfony/Component/Lock/Store/RedisStore.php | 12 ++++++------ src/Symfony/Component/Lock/Store/StoreFactory.php | 4 ++-- .../Lock/Tests/Store/AbstractRedisStoreTest.php | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Component/Lock/Store/RedisStore.php b/src/Symfony/Component/Lock/Store/RedisStore.php index 6e532f83cfb7a..4e328340260a2 100644 --- a/src/Symfony/Component/Lock/Store/RedisStore.php +++ b/src/Symfony/Component/Lock/Store/RedisStore.php @@ -31,13 +31,13 @@ class RedisStore implements StoreInterface private $initialTtl; /** - * @param \Redis|\RedisArray|\RedisCluster|\Predis\Client $redisClient - * @param float $initialTtl the expiration delay of locks in seconds + * @param \Redis|\RedisArray|\RedisCluster|\Predis\ClientInterface $redisClient + * @param float $initialTtl the expiration delay of locks in seconds */ public function __construct($redisClient, $initialTtl = 300.0) { - if (!$redisClient instanceof \Redis && !$redisClient instanceof \RedisArray && !$redisClient instanceof \RedisCluster && !$redisClient instanceof \Predis\Client && !$redisClient instanceof RedisProxy) { - throw new InvalidArgumentException(sprintf('%s() expects parameter 1 to be Redis, RedisArray, RedisCluster or Predis\Client, %s given', __METHOD__, \is_object($redisClient) ? \get_class($redisClient) : \gettype($redisClient))); + if (!$redisClient instanceof \Redis && !$redisClient instanceof \RedisArray && !$redisClient instanceof \RedisCluster && !$redisClient instanceof \Predis\ClientInterface && !$redisClient instanceof RedisProxy) { + throw new InvalidArgumentException(sprintf('%s() expects parameter 1 to be Redis, RedisArray, RedisCluster or Predis\ClientInterface, %s given', __METHOD__, \is_object($redisClient) ? \get_class($redisClient) : \gettype($redisClient))); } if ($initialTtl <= 0) { @@ -139,11 +139,11 @@ private function evaluate($script, $resource, array $args) return $this->redis->_instance($this->redis->_target($resource))->eval($script, array_merge([$resource], $args), 1); } - if ($this->redis instanceof \Predis\Client) { + if ($this->redis instanceof \Predis\ClientInterface) { return \call_user_func_array([$this->redis, 'eval'], array_merge([$script, 1, $resource], $args)); } - throw new InvalidArgumentException(sprintf('%s() expects being initialized with a Redis, RedisArray, RedisCluster or Predis\Client, %s given', __METHOD__, \is_object($this->redis) ? \get_class($this->redis) : \gettype($this->redis))); + throw new InvalidArgumentException(sprintf('%s() expects being initialized with a Redis, RedisArray, RedisCluster or Predis\ClientInterface, %s given', __METHOD__, \is_object($this->redis) ? \get_class($this->redis) : \gettype($this->redis))); } /** diff --git a/src/Symfony/Component/Lock/Store/StoreFactory.php b/src/Symfony/Component/Lock/Store/StoreFactory.php index cbbcb685c3626..2edcc1d32704f 100644 --- a/src/Symfony/Component/Lock/Store/StoreFactory.php +++ b/src/Symfony/Component/Lock/Store/StoreFactory.php @@ -22,13 +22,13 @@ class StoreFactory { /** - * @param \Redis|\RedisArray|\RedisCluster|\Predis\Client|\Memcached $connection + * @param \Redis|\RedisArray|\RedisCluster|\Predis\ClientInterface|\Memcached $connection * * @return RedisStore|MemcachedStore */ public static function createStore($connection) { - if ($connection instanceof \Redis || $connection instanceof \RedisArray || $connection instanceof \RedisCluster || $connection instanceof \Predis\Client || $connection instanceof RedisProxy) { + if ($connection instanceof \Redis || $connection instanceof \RedisArray || $connection instanceof \RedisCluster || $connection instanceof \Predis\ClientInterface || $connection instanceof RedisProxy) { return new RedisStore($connection); } if ($connection instanceof \Memcached) { diff --git a/src/Symfony/Component/Lock/Tests/Store/AbstractRedisStoreTest.php b/src/Symfony/Component/Lock/Tests/Store/AbstractRedisStoreTest.php index 4b9c81bd8e8c2..4d9ca48bf5460 100644 --- a/src/Symfony/Component/Lock/Tests/Store/AbstractRedisStoreTest.php +++ b/src/Symfony/Component/Lock/Tests/Store/AbstractRedisStoreTest.php @@ -31,7 +31,7 @@ protected function getClockDelay() /** * Return a RedisConnection. * - * @return \Redis|\RedisArray|\RedisCluster|\Predis\Client + * @return \Redis|\RedisArray|\RedisCluster|\Predis\ClientInterface */ abstract protected function getRedisConnection(); From 8198d93c5beca4f7de71932017b1073eda15bb85 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 23 Sep 2019 21:21:37 +0200 Subject: [PATCH 48/83] [PhpUnit] Fix usleep mock return value --- src/Symfony/Bridge/PhpUnit/ClockMock.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/ClockMock.php b/src/Symfony/Bridge/PhpUnit/ClockMock.php index 07ce9c3a6085b..bfc7566abd5a8 100644 --- a/src/Symfony/Bridge/PhpUnit/ClockMock.php +++ b/src/Symfony/Bridge/PhpUnit/ClockMock.php @@ -52,12 +52,10 @@ public static function sleep($s) public static function usleep($us) { if (null === self::$now) { - return \usleep($us); + \usleep($us); + } else { + self::$now += $us / 1000000; } - - self::$now += $us / 1000000; - - return null; } public static function microtime($asFloat = false) @@ -108,7 +106,7 @@ function sleep(\$s) function usleep(\$us) { - return \\$self::usleep(\$us); + \\$self::usleep(\$us); } EOPHP From 47cb83a6ec353bbe90cfb97049aba6891ab09d56 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 23 Sep 2019 21:33:12 +0200 Subject: [PATCH 49/83] Various tweaks 3.4 --- .../Component/Console/Tests/Helper/QuestionHelperTest.php | 2 +- .../Component/Console/Tests/Input/InputDefinitionTest.php | 1 + .../Component/Console/Tests/Tester/CommandTesterTest.php | 2 +- .../Component/Ldap/Tests/Adapter/ExtLdap/AdapterTest.php | 3 ++- .../Component/Ldap/Tests/Adapter/ExtLdap/LdapManagerTest.php | 3 ++- src/Symfony/Component/Routing/Loader/PhpFileLoader.php | 2 +- .../Component/Security/Csrf/Tests/CsrfTokenManagerTest.php | 2 +- .../UsernamePasswordFormAuthenticationListenerTest.php | 2 +- .../UsernamePasswordJsonAuthenticationListenerTest.php | 2 +- src/Symfony/Component/Templating/Tests/Loader/LoaderTest.php | 5 ----- src/Symfony/Component/Templating/Tests/PhpEngineTest.php | 2 +- 11 files changed, 12 insertions(+), 14 deletions(-) diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index fc2589097c301..02cc6ce7e0249 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -960,7 +960,7 @@ public function testAskThrowsExceptionOnMissingInputWithValidator() $dialog = new QuestionHelper(); $question = new Question('What\'s your name?'); - $question->setValidator(function () { + $question->setValidator(function ($value) { if (!$value) { throw new \Exception('A value is required.'); } diff --git a/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php b/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php index 086d28a41fcaf..4a881f5955952 100644 --- a/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php +++ b/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php @@ -20,6 +20,7 @@ class InputDefinitionTest extends TestCase { protected static $fixtures; + protected $multi; protected $foo; protected $bar; protected $foo1; diff --git a/src/Symfony/Component/Console/Tests/Tester/CommandTesterTest.php b/src/Symfony/Component/Console/Tests/Tester/CommandTesterTest.php index e13dc1582900e..1fa8292365b49 100644 --- a/src/Symfony/Component/Console/Tests/Tester/CommandTesterTest.php +++ b/src/Symfony/Component/Console/Tests/Tester/CommandTesterTest.php @@ -196,7 +196,7 @@ public function testSymfonyStyleCommandWithInputs() ]; $command = new Command('foo'); - $command->setCode(function ($input, $output) use ($questions, $command) { + $command->setCode(function ($input, $output) use ($questions) { $io = new SymfonyStyle($input, $output); $io->ask($questions[0]); $io->ask($questions[1]); diff --git a/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/AdapterTest.php b/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/AdapterTest.php index f5c856f9d520a..4a4fcfb0ad6c2 100644 --- a/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/AdapterTest.php +++ b/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/AdapterTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Ldap\Tests; +namespace Symfony\Component\Ldap\Tests\Adapter\ExtLdap; use Symfony\Component\Ldap\Adapter\ExtLdap\Adapter; use Symfony\Component\Ldap\Adapter\ExtLdap\Collection; @@ -17,6 +17,7 @@ use Symfony\Component\Ldap\Entry; use Symfony\Component\Ldap\Exception\NotBoundException; use Symfony\Component\Ldap\LdapInterface; +use Symfony\Component\Ldap\Tests\LdapTestCase; /** * @requires extension ldap diff --git a/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/LdapManagerTest.php b/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/LdapManagerTest.php index 9605932ee0353..48719a46b4672 100644 --- a/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/LdapManagerTest.php +++ b/src/Symfony/Component/Ldap/Tests/Adapter/ExtLdap/LdapManagerTest.php @@ -9,13 +9,14 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Ldap\Tests; +namespace Symfony\Component\Ldap\Tests\Adapter\ExtLdap; use Symfony\Component\Ldap\Adapter\ExtLdap\Adapter; use Symfony\Component\Ldap\Adapter\ExtLdap\Collection; use Symfony\Component\Ldap\Entry; use Symfony\Component\Ldap\Exception\LdapException; use Symfony\Component\Ldap\Exception\NotBoundException; +use Symfony\Component\Ldap\Tests\LdapTestCase; /** * @requires extension ldap diff --git a/src/Symfony/Component/Routing/Loader/PhpFileLoader.php b/src/Symfony/Component/Routing/Loader/PhpFileLoader.php index d9ba59d51e03b..dee8022f55048 100644 --- a/src/Symfony/Component/Routing/Loader/PhpFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/PhpFileLoader.php @@ -40,7 +40,7 @@ public function load($file, $type = null) // the closure forbids access to the private scope in the included file $loader = $this; - $load = \Closure::bind(static function ($file) use ($loader) { + $load = \Closure::bind(static function ($file) { return include $file; }, null, ProtectedPhpFileLoader::class); diff --git a/src/Symfony/Component/Security/Csrf/Tests/CsrfTokenManagerTest.php b/src/Symfony/Component/Security/Csrf/Tests/CsrfTokenManagerTest.php index 631c36a0db0ac..fbd8207661735 100644 --- a/src/Symfony/Component/Security/Csrf/Tests/CsrfTokenManagerTest.php +++ b/src/Symfony/Component/Security/Csrf/Tests/CsrfTokenManagerTest.php @@ -165,7 +165,7 @@ public function testNamespaced() $requestStack = new RequestStack(); $requestStack->push(new Request([], [], [], [], [], ['HTTPS' => 'on'])); - $manager = new CsrfTokenManager($generator, $storage, null, $requestStack); + $manager = new CsrfTokenManager($generator, $storage); $token = $manager->getToken('foo'); $this->assertSame('foo', $token->getId()); diff --git a/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordFormAuthenticationListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordFormAuthenticationListenerTest.php index c5a23be27cb7e..60685ae263db3 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordFormAuthenticationListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordFormAuthenticationListenerTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Http\Firewall; +namespace Symfony\Component\Security\Http\Tests\Firewall; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\RedirectResponse; diff --git a/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php index 58948ce53b04d..2a5ffb30e6779 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Http\Firewall; +namespace Symfony\Component\Security\Http\Tests\Firewall; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\Request; diff --git a/src/Symfony/Component/Templating/Tests/Loader/LoaderTest.php b/src/Symfony/Component/Templating/Tests/Loader/LoaderTest.php index da8c04caa4c97..b8d6d15cd4152 100644 --- a/src/Symfony/Component/Templating/Tests/Loader/LoaderTest.php +++ b/src/Symfony/Component/Templating/Tests/Loader/LoaderTest.php @@ -37,11 +37,6 @@ public function getLogger() return $this->logger; } - public function getDebugger() - { - return $this->debugger; - } - public function isFresh(TemplateReferenceInterface $template, $time) { return false; diff --git a/src/Symfony/Component/Templating/Tests/PhpEngineTest.php b/src/Symfony/Component/Templating/Tests/PhpEngineTest.php index 4bce834150fb4..5f43cb5f2416b 100644 --- a/src/Symfony/Component/Templating/Tests/PhpEngineTest.php +++ b/src/Symfony/Component/Templating/Tests/PhpEngineTest.php @@ -93,7 +93,7 @@ public function testUnsetHelper() public function testExtendRender() { - $engine = new ProjectTemplateEngine(new TemplateNameParser(), $this->loader, [], [new SlotsHelper()]); + $engine = new ProjectTemplateEngine(new TemplateNameParser(), $this->loader, []); try { $engine->render('name'); $this->fail('->render() throws an InvalidArgumentException if the template does not exist'); From 04fe347df977a0ad099432ed7138a050ba74d695 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 24 Sep 2019 18:21:53 +0200 Subject: [PATCH 50/83] [Routing] fix bad fix --- src/Symfony/Component/Routing/Loader/PhpFileLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Routing/Loader/PhpFileLoader.php b/src/Symfony/Component/Routing/Loader/PhpFileLoader.php index dee8022f55048..d9ba59d51e03b 100644 --- a/src/Symfony/Component/Routing/Loader/PhpFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/PhpFileLoader.php @@ -40,7 +40,7 @@ public function load($file, $type = null) // the closure forbids access to the private scope in the included file $loader = $this; - $load = \Closure::bind(static function ($file) { + $load = \Closure::bind(static function ($file) use ($loader) { return include $file; }, null, ProtectedPhpFileLoader::class); From 7d7380d9e791bd9d4a41237308096b1be092b0ec Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Wed, 25 Sep 2019 16:09:38 +0200 Subject: [PATCH 51/83] Fix return type of Process::restart(). --- src/Symfony/Component/Process/Process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index 3b45bd8c5e5e4..c0c1fdaf69c1a 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -363,7 +363,7 @@ public function start(callable $callback = null/*, array $env = [*/) * @param callable|null $callback A PHP callback to run whenever there is some * output available on STDOUT or STDERR * - * @return $this + * @return static * * @throws RuntimeException When process can't be launched * @throws RuntimeException When process is already running From 894a78e81284d98ce0283325395591aa656aa7aa Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 26 Sep 2019 12:56:22 +0200 Subject: [PATCH 52/83] [Cache] dont override native Memcached options --- src/Symfony/Component/Cache/Traits/MemcachedTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php index 9b7a84ab59991..999687de99fd4 100644 --- a/src/Symfony/Component/Cache/Traits/MemcachedTrait.php +++ b/src/Symfony/Component/Cache/Traits/MemcachedTrait.php @@ -26,7 +26,7 @@ trait MemcachedTrait 'persistent_id' => null, 'username' => null, 'password' => null, - 'serializer' => 'php', + \Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_PHP, ]; private $client; From dde0256e63d16887368d9436196c9f2132f8687c Mon Sep 17 00:00:00 2001 From: Farhad Safarov Date: Thu, 26 Sep 2019 23:00:18 +0300 Subject: [PATCH 53/83] [Validator] Add the missing translations for the Azerbaijani locale --- .../Resources/translations/validators.az.xlf | 144 ++++++++++++++++++ 1 file changed, 144 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.az.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.az.xlf index add868cd42b40..c3420f3db2a94 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.az.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.az.xlf @@ -222,6 +222,150 @@ Unsupported card type or invalid card number. Dəstəklənməyən kart tipi və ya yanlış kart nömrəsi. + + This is not a valid International Bank Account Number (IBAN). + Bu dəyər doğru bir Beynəlxalq Bank Hesap Nömrəsi (IBAN) deyil. + + + This value is not a valid ISBN-10. + Bu dəyər doğru bir ISBN-10 deyil. + + + This value is not a valid ISBN-13. + Bu dəyər doğru bir ISBN-13 deyil. + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Bu dəyər doğru bir ISBN-10 və ya ISBN-13 deyil. + + + This value is not a valid ISSN. + Bu dəyər doğru bir ISSN deyil. + + + This value is not a valid currency. + Bu dəyər doğru bir valyuta deyil. + + + This value should be equal to {{ compared_value }}. + Bu dəyər {{ compared_value }} ilə bərabər olmalıdır. + + + This value should be greater than {{ compared_value }}. + Bu dəyər {{ compared_value }} dəyərindən büyük olmalıdır. + + + This value should be greater than or equal to {{ compared_value }}. + Bu dəyər {{ compared_value }} ilə bərabər və ya daha böyük olmaldır. + + + This value should be identical to {{ compared_value_type }} {{ compared_value }}. + Bu dəyər {{ compared_value_type }} {{ compared_value }} ilə eyni olmalıdır. + + + This value should be less than {{ compared_value }}. + Bu dəyər {{ compared_value }} dəyərindən kiçik olmalıdır. + + + This value should be less than or equal to {{ compared_value }}. + Bu dəyər {{ compared_value }} dəyərindən kiçik və ya bərabər olmalıdır. + + + This value should not be equal to {{ compared_value }}. + Bu değer {{ compared_value }} ile eşit olmamalıdır. + + + This value should not be identical to {{ compared_value_type }} {{ compared_value }}. + Bu dəyər {{ compared_value_type }} {{ compared_value }} ilə eyni olmamalıdır. + + + The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. + Şəkil nisbəti çox büyükdür ({{ ratio }}). İcazə verilən maksimum nisbət: {{ max_ratio }}. + + + The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. + Şəkil nisbəti çox balacadır ({{ ratio }}). İcazə verilən minimum nisbət: {{ min_ratio }}. + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + Şəkil kvadratdır ({{ width }}x{{ height }}px). Kvadrat şəkillərə icazə verilmir. + + + The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. + Şəkil albom rejimindədir ({{ width }}x{{ height }}px). Albom rejimli şəkillərə icazə verilmir. + + + The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. + Şəkil portret rejimindədir ({{ width }}x{{ height }}px). Portret rejimli şəkillərə icazə verilmir. + + + An empty file is not allowed. + Boş fayla icazə verilmir. + + + The host could not be resolved. + Ünvan tapılmadı. + + + This value does not match the expected {{ charset }} charset. + Bu dəyər gözlənilən {{ charset }} simvol cədvəli ilə uyğun gəlmir. + + + This is not a valid Business Identifier Code (BIC). + Bu dəyər doğru bir Biznes Təyinedici Kodu (BIC) deyil. + + + Error + Xəta + + + This is not a valid UUID. + Bu dəyər doğru bir UUID deyil. + + + This value should be a multiple of {{ compared_value }}. + Bu dəyər {{ compare_value }} dəyərinin bölənlərindən biri olmalıdır. + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Bu Biznes Təyinedici Kodu (BIC) {{ iban }} IBAN kodu ilə əlaqəli deyil. + + + This value should be valid JSON. + Bu dəyər doğru bir JSON olmalıdır. + + + This collection should contain only unique elements. + Bu kolleksiyada sadəcə unikal elementlər olmalıdır. + + + This value should be positive. + Bu dəyər müsbət olmalıdır. + + + This value should be either positive or zero. + Bu dəyər müsbət və ya sıfır olmalıdır. + + + This value should be negative. + Bu dəyər mənfi olmaldır. + + + This value should be either negative or zero. + Bu dəyər mənfi və ya sıfır olmaldır. + + + This value is not a valid timezone. + Bu dəyər doğru bir zaman zolağı deyil. + + + This password has been leaked in a data breach, it must not be used. Please use another password. + Bu parol data oğurluğunda tapıldığı üçün işlədilməməlidir. Zəhmət olmasa, başqa parol seçin. + + + This value should be between {{ min }} and {{ max }}. + Bu dəyər {{ min }} və {{ max }} arasında olmaldır. + From c7af2df340a659c713a87cb160b88bcda4a6a75c Mon Sep 17 00:00:00 2001 From: HypeMC Date: Mon, 22 Apr 2019 00:18:46 +0200 Subject: [PATCH 54/83] [FrameworkBundle] Fix framework bundle lock configuration not working as expected --- .../DependencyInjection/Configuration.php | 20 +++++- .../DependencyInjection/ConfigurationTest.php | 63 +++++++++++++++++++ 2 files changed, 81 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php index 52c7706456c9f..fea9263fc7f9b 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php @@ -929,7 +929,11 @@ private function addLockSection(ArrayNodeDefinition $rootNode) ->ifString()->then(function ($v) { return ['enabled' => true, 'resources' => $v]; }) ->end() ->beforeNormalization() - ->ifTrue(function ($v) { return \is_array($v) && !isset($v['resources']); }) + ->ifTrue(function ($v) { return \is_array($v) && !isset($v['enabled']); }) + ->then(function ($v) { return $v + ['enabled' => true]; }) + ->end() + ->beforeNormalization() + ->ifTrue(function ($v) { return \is_array($v) && !isset($v['resources']) && !isset($v['resource']); }) ->then(function ($v) { $e = $v['enabled']; unset($v['enabled']); @@ -948,7 +952,19 @@ private function addLockSection(ArrayNodeDefinition $rootNode) ->end() ->beforeNormalization() ->ifTrue(function ($v) { return \is_array($v) && array_keys($v) === range(0, \count($v) - 1); }) - ->then(function ($v) { return ['default' => $v]; }) + ->then(function ($v) { + $resources = []; + foreach ($v as $resource) { + $resources = array_merge_recursive( + $resources, + \is_array($resource) && isset($resource['name']) + ? [$resource['name'] => $resource['value']] + : ['default' => $resource] + ); + } + + return $resources; + }) ->end() ->prototype('array') ->beforeNormalization()->ifString()->then(function ($v) { return [$v]; })->end() diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php index 91764a642e8de..08529592b5209 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php @@ -296,6 +296,69 @@ public function provideInvalidAssetConfigurationTests() yield [$createPackageConfig($config), 'You cannot use both "version" and "json_manifest_path" at the same time under "assets" packages.']; } + /** + * @dataProvider provideValidLockConfigurationTests + */ + public function testValidLockConfiguration($lockConfig, $processedConfig) + { + $processor = new Processor(); + $configuration = new Configuration(true); + $config = $processor->processConfiguration($configuration, [ + [ + 'lock' => $lockConfig, + ], + ]); + + $this->assertArrayHasKey('lock', $config); + + $this->assertEquals($processedConfig, $config['lock']); + } + + public function provideValidLockConfigurationTests() + { + yield [null, ['enabled' => true, 'resources' => ['default' => [class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphore' : 'flock']]]]; + + yield ['flock', ['enabled' => true, 'resources' => ['default' => ['flock']]]]; + yield [['flock', 'semaphore'], ['enabled' => true, 'resources' => ['default' => ['flock', 'semaphore']]]]; + yield [['foo' => 'flock', 'bar' => 'semaphore'], ['enabled' => true, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['foo' => ['flock', 'semaphore'], 'bar' => 'semaphore'], ['enabled' => true, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => ['semaphore']]]]; + yield [['default' => 'flock'], ['enabled' => true, 'resources' => ['default' => ['flock']]]]; + + yield [['enabled' => false, 'flock'], ['enabled' => false, 'resources' => ['default' => ['flock']]]]; + yield [['enabled' => false, ['flock', 'semaphore']], ['enabled' => false, 'resources' => ['default' => ['flock', 'semaphore']]]]; + yield [['enabled' => false, 'foo' => 'flock', 'bar' => 'semaphore'], ['enabled' => false, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['enabled' => false, 'foo' => ['flock', 'semaphore']], ['enabled' => false, 'resources' => ['foo' => ['flock', 'semaphore']]]]; + yield [['enabled' => false, 'default' => 'flock'], ['enabled' => false, 'resources' => ['default' => ['flock']]]]; + + yield [['resources' => 'flock'], ['enabled' => true, 'resources' => ['default' => ['flock']]]]; + yield [['resources' => ['flock', 'semaphore']], ['enabled' => true, 'resources' => ['default' => ['flock', 'semaphore']]]]; + yield [['resources' => ['foo' => 'flock', 'bar' => 'semaphore']], ['enabled' => true, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['resources' => ['foo' => ['flock', 'semaphore'], 'bar' => 'semaphore']], ['enabled' => true, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => ['semaphore']]]]; + yield [['resources' => ['default' => 'flock']], ['enabled' => true, 'resources' => ['default' => ['flock']]]]; + + yield [['enabled' => false, 'resources' => 'flock'], ['enabled' => false, 'resources' => ['default' => ['flock']]]]; + yield [['enabled' => false, 'resources' => ['flock', 'semaphore']], ['enabled' => false, 'resources' => ['default' => ['flock', 'semaphore']]]]; + yield [['enabled' => false, 'resources' => ['foo' => 'flock', 'bar' => 'semaphore']], ['enabled' => false, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['enabled' => false, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => 'semaphore']], ['enabled' => false, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => ['semaphore']]]]; + yield [['enabled' => false, 'resources' => ['default' => 'flock']], ['enabled' => false, 'resources' => ['default' => ['flock']]]]; + + // xml + + yield [['resource' => ['flock']], ['enabled' => true, 'resources' => ['default' => ['flock']]]]; + yield [['resource' => ['flock', ['name' => 'foo', 'value' => 'semaphore']]], ['enabled' => true, 'resources' => ['default' => ['flock'], 'foo' => ['semaphore']]]]; + yield [['resource' => [['name' => 'foo', 'value' => 'flock']]], ['enabled' => true, 'resources' => ['foo' => ['flock']]]]; + yield [['resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'foo', 'value' => 'semaphore']]], ['enabled' => true, 'resources' => ['foo' => ['flock', 'semaphore']]]]; + yield [['resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'bar', 'value' => 'semaphore']]], ['enabled' => true, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'foo', 'value' => 'semaphore'], ['name' => 'bar', 'value' => 'semaphore']]], ['enabled' => true, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => ['semaphore']]]]; + + yield [['enabled' => false, 'resource' => ['flock']], ['enabled' => false, 'resources' => ['default' => ['flock']]]]; + yield [['enabled' => false, 'resource' => ['flock', ['name' => 'foo', 'value' => 'semaphore']]], ['enabled' => false, 'resources' => ['default' => ['flock'], 'foo' => ['semaphore']]]]; + yield [['enabled' => false, 'resource' => [['name' => 'foo', 'value' => 'flock']]], ['enabled' => false, 'resources' => ['foo' => ['flock']]]]; + yield [['enabled' => false, 'resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'foo', 'value' => 'semaphore']]], ['enabled' => false, 'resources' => ['foo' => ['flock', 'semaphore']]]]; + yield [['enabled' => false, 'resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'bar', 'value' => 'semaphore']]], ['enabled' => false, 'resources' => ['foo' => ['flock'], 'bar' => ['semaphore']]]]; + yield [['enabled' => false, 'resource' => [['name' => 'foo', 'value' => 'flock'], ['name' => 'foo', 'value' => 'semaphore'], ['name' => 'bar', 'value' => 'semaphore']]], ['enabled' => false, 'resources' => ['foo' => ['flock', 'semaphore'], 'bar' => ['semaphore']]]]; + } + protected static function getBundleDefaultConfig() { return [ From 5564e149cb57f549a5a9c5fedb8824a3614d5f36 Mon Sep 17 00:00:00 2001 From: Markus Fasselt Date: Sun, 4 Aug 2019 11:58:04 +0200 Subject: [PATCH 55/83] [Translation] Collect original locale in case of fallback translation --- .../views/Collector/translation.html.twig | 14 ++++++++++---- .../Translation/DataCollectorTranslator.php | 5 +++-- .../Tests/DataCollectorTranslatorTest.php | 11 ++++++++--- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/translation.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/translation.html.twig index cd85ce3bade03..79c6e60ffbc10 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/translation.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/translation.html.twig @@ -13,7 +13,7 @@ {% set text %}
- Locale + Default locale {{ collector.locale|default('-') }} @@ -73,7 +73,7 @@
{{ collector.locale|default('-') }} - Locale + Default locale
{{ collector.fallbackLocales|join(', ')|default('-') }} @@ -152,7 +152,7 @@
{% else %} {% block fallback_messages %} - {{ helper.render_table(messages_fallback) }} + {{ helper.render_table(messages_fallback, true) }} {% endblock %} {% endif %}
@@ -185,11 +185,14 @@ {% endblock %} -{% macro render_table(messages) %} +{% macro render_table(messages, is_fallback) %} + {% if is_fallback %} + + {% endif %} @@ -200,6 +203,9 @@ {% for message in messages %} + {% if is_fallback %} + + {% endif %}
LocaleFallback localeDomain Times used Message ID
{{ message.locale }}{{ message.fallbackLocale|default('-') }}{{ message.domain }} {{ message.count }} diff --git a/src/Symfony/Component/Translation/DataCollectorTranslator.php b/src/Symfony/Component/Translation/DataCollectorTranslator.php index 7eaf928e7ff93..e70e5f5e14e17 100644 --- a/src/Symfony/Component/Translation/DataCollectorTranslator.php +++ b/src/Symfony/Component/Translation/DataCollectorTranslator.php @@ -145,6 +145,7 @@ private function collectMessage($locale, $domain, $id, $translation, $parameters $id = (string) $id; $catalogue = $this->translator->getCatalogue($locale); $locale = $catalogue->getLocale(); + $fallbackLocale = null; if ($catalogue->defines($id, $domain)) { $state = self::MESSAGE_DEFINED; } elseif ($catalogue->has($id, $domain)) { @@ -153,10 +154,9 @@ private function collectMessage($locale, $domain, $id, $translation, $parameters $fallbackCatalogue = $catalogue->getFallbackCatalogue(); while ($fallbackCatalogue) { if ($fallbackCatalogue->defines($id, $domain)) { - $locale = $fallbackCatalogue->getLocale(); + $fallbackLocale = $fallbackCatalogue->getLocale(); break; } - $fallbackCatalogue = $fallbackCatalogue->getFallbackCatalogue(); } } else { @@ -165,6 +165,7 @@ private function collectMessage($locale, $domain, $id, $translation, $parameters $this->messages[] = [ 'locale' => $locale, + 'fallbackLocale' => $fallbackLocale, 'domain' => $domain, 'id' => $id, 'translation' => $translation, diff --git a/src/Symfony/Component/Translation/Tests/DataCollectorTranslatorTest.php b/src/Symfony/Component/Translation/Tests/DataCollectorTranslatorTest.php index 059d074648722..5cb7c31a40183 100644 --- a/src/Symfony/Component/Translation/Tests/DataCollectorTranslatorTest.php +++ b/src/Symfony/Component/Translation/Tests/DataCollectorTranslatorTest.php @@ -34,6 +34,7 @@ public function testCollectMessages() 'id' => 'foo', 'translation' => 'foo (en)', 'locale' => 'en', + 'fallbackLocale' => null, 'domain' => 'messages', 'state' => DataCollectorTranslator::MESSAGE_DEFINED, 'parameters' => [], @@ -42,7 +43,8 @@ public function testCollectMessages() $expectedMessages[] = [ 'id' => 'bar', 'translation' => 'bar (fr)', - 'locale' => 'fr', + 'locale' => 'en', + 'fallbackLocale' => 'fr', 'domain' => 'messages', 'state' => DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK, 'parameters' => [], @@ -52,6 +54,7 @@ public function testCollectMessages() 'id' => 'choice', 'translation' => 'choice', 'locale' => 'en', + 'fallbackLocale' => null, 'domain' => 'messages', 'state' => DataCollectorTranslator::MESSAGE_MISSING, 'parameters' => [], @@ -60,7 +63,8 @@ public function testCollectMessages() $expectedMessages[] = [ 'id' => 'bar_ru', 'translation' => 'bar (ru)', - 'locale' => 'ru', + 'locale' => 'en', + 'fallbackLocale' => 'ru', 'domain' => 'messages', 'state' => DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK, 'parameters' => [], @@ -69,7 +73,8 @@ public function testCollectMessages() $expectedMessages[] = [ 'id' => 'bar_ru', 'translation' => 'bar (ru)', - 'locale' => 'ru', + 'locale' => 'en', + 'fallbackLocale' => 'ru', 'domain' => 'messages', 'state' => DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK, 'parameters' => ['foo' => 'bar'], From c9c7a1118c2ccce9e0afe414344fbfdb4bdd1de0 Mon Sep 17 00:00:00 2001 From: battye Date: Fri, 12 Jul 2019 15:57:23 +0000 Subject: [PATCH 56/83] [Validator] Accept underscores in the URL validator as the URL will resolve correctly --- src/Symfony/Component/Validator/Constraints/UrlValidator.php | 2 +- .../Component/Validator/Tests/Constraints/UrlValidatorTest.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Validator/Constraints/UrlValidator.php b/src/Symfony/Component/Validator/Constraints/UrlValidator.php index bdaef756bcc54..b77701dd7ecec 100644 --- a/src/Symfony/Component/Validator/Constraints/UrlValidator.php +++ b/src/Symfony/Component/Validator/Constraints/UrlValidator.php @@ -25,7 +25,7 @@ class UrlValidator extends ConstraintValidator (%s):// # protocol (([\.\pL\pN-]+:)?([\.\pL\pN-]+)@)? # basic auth ( - ([\pL\pN\pS\-\.])+(\.?([\pL\pN]|xn\-\-[\pL\pN-]+)+\.?) # a domain name + ([\pL\pN\pS\-\_\.])+(\.?([\pL\pN]|xn\-\-[\pL\pN-]+)+\.?) # a domain name | # or \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} # an IP address | # or diff --git a/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php index ab845d45db47c..f04dd44bc961d 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/UrlValidatorTest.php @@ -72,6 +72,8 @@ public function getValidUrls() ['http://www.example.museum'], ['https://example.com/'], ['https://example.com:80/'], + ['http://examp_le.com'], + ['http://www.sub_domain.examp_le.com'], ['http://www.example.coop/'], ['http://www.test-example.com/'], ['http://www.symfony.com/'], @@ -152,7 +154,6 @@ public function getInvalidUrls() ['://example.com'], ['http ://example.com'], ['http:/example.com'], - ['http://examp_le.com'], ['http://example.com::aa'], ['http://example.com:aa'], ['ftp://example.fr'], From e648a91259ffe9d29f74db8b8552452cf5d8ee94 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Fri, 27 Sep 2019 15:17:00 +0200 Subject: [PATCH 57/83] [Form][Validator][Intl] Fix tests --- .../Form/Tests/Extension/Core/Type/LanguageTypeTest.php | 2 -- .../Validator/Tests/Constraints/LanguageValidatorTest.php | 1 - 2 files changed, 3 deletions(-) diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/LanguageTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/LanguageTypeTest.php index 3495f443cc5bf..afb652586fec1 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/LanguageTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/LanguageTypeTest.php @@ -32,8 +32,6 @@ public function testCountriesAreSelectable() ->createView()->vars['choices']; $this->assertContainsEquals(new ChoiceView('en', 'en', 'English'), $choices); - $this->assertContainsEquals(new ChoiceView('en_GB', 'en_GB', 'British English'), $choices); - $this->assertContainsEquals(new ChoiceView('en_US', 'en_US', 'American English'), $choices); $this->assertContainsEquals(new ChoiceView('fr', 'fr', 'French'), $choices); $this->assertContainsEquals(new ChoiceView('my', 'my', 'Burmese'), $choices); } diff --git a/src/Symfony/Component/Validator/Tests/Constraints/LanguageValidatorTest.php b/src/Symfony/Component/Validator/Tests/Constraints/LanguageValidatorTest.php index 31a987bdd3e58..4991f9850ee52 100644 --- a/src/Symfony/Component/Validator/Tests/Constraints/LanguageValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Constraints/LanguageValidatorTest.php @@ -73,7 +73,6 @@ public function getValidLanguages() { return [ ['en'], - ['en_US'], ['my'], ]; } From 152dec95bcef93962cd2e7adea76893d221c8681 Mon Sep 17 00:00:00 2001 From: k0d3r1s Date: Wed, 18 Sep 2019 16:21:11 +0300 Subject: [PATCH 58/83] [DependencyInjection] Fix wrong exception when service is synthetic --- .../Compiler/AbstractRecursivePass.php | 4 +++ .../Tests/Compiler/AutowirePassTest.php | 4 +-- .../Compiler/ResolveBindingsPassTest.php | 27 ++++++++++++++++--- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php index a89bf1647aebc..5ca2b2246b76b 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AbstractRecursivePass.php @@ -89,6 +89,10 @@ protected function processValue($value, $isRoot = false) */ protected function getConstructor(Definition $definition, $required) { + if ($definition->isSynthetic()) { + return null; + } + if (\is_string($factory = $definition->getFactory())) { if (!\function_exists($factory)) { throw new RuntimeException(sprintf('Invalid service "%s": function "%s" does not exist.', $this->currentId, $factory)); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php index f729f72ba0dba..7eb7f6024696f 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php @@ -589,12 +589,10 @@ public function testSetterInjection() ); } - /** - * @exceptedExceptionMessage Invalid service "Symfony\Component\DependencyInjection\Tests\Fixtures\NamedArgumentsDummy": method "setLogger()" does not exist. - */ public function testWithNonExistingSetterAndAutowiring() { $this->expectException('Symfony\Component\DependencyInjection\Exception\RuntimeException'); + $this->expectExceptionMessage('Invalid service "Symfony\Component\DependencyInjection\Tests\Fixtures\CaseSensitiveClass": method "setLogger()" does not exist.'); $container = new ContainerBuilder(); $definition = $container->register(CaseSensitiveClass::class, CaseSensitiveClass::class)->setAutowired(true); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php index a44fea4d60e08..fd526caa94264 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveBindingsPassTest.php @@ -14,9 +14,11 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\DependencyInjection\Argument\BoundArgument; use Symfony\Component\DependencyInjection\Compiler\AutowireRequiredMethodsPass; +use Symfony\Component\DependencyInjection\Compiler\DefinitionErrorExceptionPass; use Symfony\Component\DependencyInjection\Compiler\ResolveBindingsPass; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Definition; +use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Tests\Fixtures\CaseSensitiveClass; use Symfony\Component\DependencyInjection\Tests\Fixtures\NamedArgumentsDummy; @@ -110,12 +112,10 @@ public function testScalarSetter() $this->assertEquals([['setDefaultLocale', ['fr']]], $definition->getMethodCalls()); } - /** - * @exceptedExceptionMessage Invalid service "Symfony\Component\DependencyInjection\Tests\Fixtures\NamedArgumentsDummy": method "setLogger()" does not exist. - */ public function testWithNonExistingSetterAndBinding() { $this->expectException('Symfony\Component\DependencyInjection\Exception\RuntimeException'); + $this->expectExceptionMessage('Invalid service "Symfony\Component\DependencyInjection\Tests\Fixtures\NamedArgumentsDummy": method "setLogger()" does not exist.'); $container = new ContainerBuilder(); $bindings = [ @@ -129,4 +129,25 @@ public function testWithNonExistingSetterAndBinding() $pass = new ResolveBindingsPass(); $pass->process($container); } + + public function testSyntheticServiceWithBind() + { + $container = new ContainerBuilder(); + $argument = new BoundArgument('bar'); + + $container->register('foo', 'stdClass') + ->addArgument(new Reference('synthetic.service')); + + $container->register('synthetic.service') + ->setSynthetic(true) + ->setBindings(['$apiKey' => $argument]); + + $container->register(NamedArgumentsDummy::class, NamedArgumentsDummy::class) + ->setBindings(['$apiKey' => $argument]); + + (new ResolveBindingsPass())->process($container); + (new DefinitionErrorExceptionPass())->process($container); + + $this->assertSame([1 => 'bar'], $container->getDefinition(NamedArgumentsDummy::class)->getArguments()); + } } From 8a9d173c36a6f5fd9d379f750f35d81d49e004f7 Mon Sep 17 00:00:00 2001 From: "M. Vondano" Date: Sun, 1 Sep 2019 19:33:46 +0200 Subject: [PATCH 59/83] Do not include hidden commands in suggested alternatives --- src/Symfony/Component/Console/Application.php | 20 +++++++++++++++--- .../Console/Tests/ApplicationTest.php | 2 ++ .../Tests/Fixtures/FooHiddenCommand.php | 21 +++++++++++++++++++ 3 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 src/Symfony/Component/Console/Tests/Fixtures/FooHiddenCommand.php diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index 8a9bdc39bf6e5..d181e41e80c46 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -529,6 +529,10 @@ public function getNamespaces() { $namespaces = []; foreach ($this->all() as $command) { + if ($command->isHidden()) { + continue; + } + $namespaces = array_merge($namespaces, $this->extractAllNamespaces($command->getName())); foreach ($command->getAliases() as $alias) { @@ -622,6 +626,11 @@ public function find($name) $message = sprintf('Command "%s" is not defined.', $name); if ($alternatives = $this->findAlternatives($name, $allCommands)) { + // remove hidden commands + $alternatives = array_filter($alternatives, function ($name) { + return !$this->get($name)->isHidden(); + }); + if (1 == \count($alternatives)) { $message .= "\n\nDid you mean this?\n "; } else { @@ -630,7 +639,7 @@ public function find($name) $message .= implode("\n ", $alternatives); } - throw new CommandNotFoundException($message, $alternatives); + throw new CommandNotFoundException($message, array_values($alternatives)); } // filter out aliases for commands which are already on the list @@ -654,13 +663,18 @@ public function find($name) } $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen) { if (!$commandList[$cmd] instanceof Command) { - return $cmd; + $commandList[$cmd] = $this->commandLoader->get($cmd); + } + + if ($commandList[$cmd]->isHidden()) { + return false; } + $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription(); return Helper::strlen($abbrev) > $usableWidth ? Helper::substr($abbrev, 0, $usableWidth - 3).'...' : $abbrev; }, array_values($commands)); - $suggestions = $this->getAbbreviationSuggestions($abbrevs); + $suggestions = $this->getAbbreviationSuggestions(array_filter($abbrevs)); throw new CommandNotFoundException(sprintf("Command \"%s\" is ambiguous.\nDid you mean one of these?\n%s", $name, $suggestions), array_values($commands)); } diff --git a/src/Symfony/Component/Console/Tests/ApplicationTest.php b/src/Symfony/Component/Console/Tests/ApplicationTest.php index 59ca5d9e153b0..c7e84952653a0 100644 --- a/src/Symfony/Component/Console/Tests/ApplicationTest.php +++ b/src/Symfony/Component/Console/Tests/ApplicationTest.php @@ -74,6 +74,7 @@ public static function setUpBeforeClass() require_once self::$fixturesPath.'/FooSubnamespaced2Command.php'; require_once self::$fixturesPath.'/TestAmbiguousCommandRegistering.php'; require_once self::$fixturesPath.'/TestAmbiguousCommandRegistering2.php'; + require_once self::$fixturesPath.'/FooHiddenCommand.php'; } protected function normalizeLineBreaks($text) @@ -616,6 +617,7 @@ public function testFindAlternativesOutput() $application->add(new \Foo1Command()); $application->add(new \Foo2Command()); $application->add(new \Foo3Command()); + $application->add(new \FooHiddenCommand()); $expectedAlternatives = [ 'afoobar', diff --git a/src/Symfony/Component/Console/Tests/Fixtures/FooHiddenCommand.php b/src/Symfony/Component/Console/Tests/Fixtures/FooHiddenCommand.php new file mode 100644 index 0000000000000..75fbf7804ddc3 --- /dev/null +++ b/src/Symfony/Component/Console/Tests/Fixtures/FooHiddenCommand.php @@ -0,0 +1,21 @@ +setName('foo:hidden') + ->setAliases(['afoohidden']) + ->setHidden(true) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + } +} From 4db140277038f16eb4b6af9477a6b152966de7c2 Mon Sep 17 00:00:00 2001 From: marie <15118505+marie@users.noreply.github.com> Date: Fri, 20 Sep 2019 15:03:12 +0500 Subject: [PATCH 60/83] [HttpFoundation] allow additinal characters in not raw cookies --- .../Component/HttpFoundation/Cookie.php | 21 +++++++++++++---- .../Component/HttpFoundation/Response.php | 2 +- .../HttpFoundation/Tests/CookieTest.php | 23 +++++++++++++++---- .../cookie_urlencode.expected | 3 ++- .../response-functional/cookie_urlencode.php | 9 +++++--- .../invalid_cookie_name.php | 2 +- 6 files changed, 44 insertions(+), 16 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/Cookie.php b/src/Symfony/Component/HttpFoundation/Cookie.php index 83a97087f1d99..98a5ef00a8872 100644 --- a/src/Symfony/Component/HttpFoundation/Cookie.php +++ b/src/Symfony/Component/HttpFoundation/Cookie.php @@ -18,6 +18,10 @@ */ class Cookie { + const SAMESITE_NONE = 'none'; + const SAMESITE_LAX = 'lax'; + const SAMESITE_STRICT = 'strict'; + protected $name; protected $value; protected $domain; @@ -25,12 +29,13 @@ class Cookie protected $path; protected $secure; protected $httpOnly; + private $raw; private $sameSite; - const SAMESITE_NONE = 'none'; - const SAMESITE_LAX = 'lax'; - const SAMESITE_STRICT = 'strict'; + private static $reservedCharsList = "=,; \t\r\n\v\f"; + private static $reservedCharsFrom = ['=', ',', ';', ' ', "\t", "\r", "\n", "\v", "\f"]; + private static $reservedCharsTo = ['%3D', '%2C', '%3B', '%20', '%09', '%0D', '%0A', '%0B', '%0C']; /** * Creates cookie from raw header string. @@ -97,7 +102,7 @@ public static function fromString($cookie, $decode = false) public function __construct($name, $value = null, $expire = 0, $path = '/', $domain = null, $secure = false, $httpOnly = true, $raw = false, $sameSite = null) { // from PHP source code - if (preg_match("/[=,; \t\r\n\013\014]/", $name)) { + if ($raw && false !== strpbrk($name, self::$reservedCharsList)) { throw new \InvalidArgumentException(sprintf('The cookie name "%s" contains invalid characters.', $name)); } @@ -143,7 +148,13 @@ public function __construct($name, $value = null, $expire = 0, $path = '/', $dom */ public function __toString() { - $str = ($this->isRaw() ? $this->getName() : urlencode($this->getName())).'='; + if ($this->isRaw()) { + $str = $this->getName(); + } else { + $str = str_replace(self::$reservedCharsFrom, self::$reservedCharsTo, $this->getName()); + } + + $str .= '='; if ('' === (string) $this->getValue()) { $str .= 'deleted; expires='.gmdate('D, d-M-Y H:i:s T', time() - 31536001).'; Max-Age=0'; diff --git a/src/Symfony/Component/HttpFoundation/Response.php b/src/Symfony/Component/HttpFoundation/Response.php index 8a17acdd5fc79..26e3a3378efa0 100644 --- a/src/Symfony/Component/HttpFoundation/Response.php +++ b/src/Symfony/Component/HttpFoundation/Response.php @@ -342,7 +342,7 @@ public function sendHeaders() // cookies foreach ($this->headers->getCookies() as $cookie) { - header('Set-Cookie: '.$cookie->getName().strstr($cookie, '='), false, $this->statusCode); + header('Set-Cookie: '.$cookie, false, $this->statusCode); } // status diff --git a/src/Symfony/Component/HttpFoundation/Tests/CookieTest.php b/src/Symfony/Component/HttpFoundation/Tests/CookieTest.php index 38c195df36a11..169f9178751d4 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/CookieTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/CookieTest.php @@ -24,10 +24,9 @@ */ class CookieTest extends TestCase { - public function invalidNames() + public function namesWithSpecialCharacters() { return [ - [''], [',MyName'], [';MyName'], [' MyName'], @@ -40,12 +39,26 @@ public function invalidNames() } /** - * @dataProvider invalidNames + * @dataProvider namesWithSpecialCharacters */ - public function testInstantiationThrowsExceptionIfCookieNameContainsInvalidCharacters($name) + public function testInstantiationThrowsExceptionIfRawCookieNameContainsSpecialCharacters($name) { $this->expectException('InvalidArgumentException'); - new Cookie($name); + new Cookie($name, null, 0, null, null, null, false, true); + } + + /** + * @dataProvider namesWithSpecialCharacters + */ + public function testInstantiationSucceedNonRawCookieNameContainsSpecialCharacters($name) + { + $this->assertInstanceOf(Cookie::class, new Cookie($name)); + } + + public function testInstantiationThrowsExceptionIfCookieNameIsEmpty() + { + $this->expectException('InvalidArgumentException'); + new Cookie(''); } public function testInvalidExpiration() diff --git a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.expected b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.expected index 14e44a398af66..17a9efc669043 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.expected +++ b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.expected @@ -4,7 +4,8 @@ Array [0] => Content-Type: text/plain; charset=utf-8 [1] => Cache-Control: no-cache, private [2] => Date: Sat, 12 Nov 1955 20:04:00 GMT - [3] => Set-Cookie: ?*():@&+$/%#[]=%3F%2A%28%29%3A%40%26%2B%24%2F%25%23%5B%5D; path=/ + [3] => Set-Cookie: %3D%2C%3B%20%09%0D%0A%0B%0C=%3D%2C%3B%20%09%0D%0A%0B%0C; path=/ [4] => Set-Cookie: ?*():@&+$/%#[]=%3F%2A%28%29%3A%40%26%2B%24%2F%25%23%5B%5D; path=/ + [5] => Set-Cookie: ?*():@&+$/%#[]=%3F%2A%28%29%3A%40%26%2B%24%2F%25%23%5B%5D; path=/ ) shutdown diff --git a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.php b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.php index 05b9af30d58f2..9ffb0dfec82af 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/cookie_urlencode.php @@ -4,9 +4,12 @@ $r = require __DIR__.'/common.inc'; -$str = '?*():@&+$/%#[]'; +$str1 = "=,; \t\r\n\v\f"; +$r->headers->setCookie(new Cookie($str1, $str1, 0, '', null, false, false, false, null)); -$r->headers->setCookie(new Cookie($str, $str, 0, '', null, false, false)); +$str2 = '?*():@&+$/%#[]'; + +$r->headers->setCookie(new Cookie($str2, $str2, 0, '', null, false, false, false, null)); $r->sendHeaders(); -setcookie($str, $str, 0, '/'); +setcookie($str2, $str2, 0, '/'); diff --git a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/invalid_cookie_name.php b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/invalid_cookie_name.php index 3fe1571845628..3acf86039d93d 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/invalid_cookie_name.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Fixtures/response-functional/invalid_cookie_name.php @@ -5,7 +5,7 @@ $r = require __DIR__.'/common.inc'; try { - $r->headers->setCookie(new Cookie('Hello + world', 'hodor')); + $r->headers->setCookie(new Cookie('Hello + world', 'hodor', 0, null, null, null, false, true)); } catch (\InvalidArgumentException $e) { echo $e->getMessage(); } From fda5b20c3974bb6269d2ff9e29dd61a495af1cf4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 28 Sep 2019 18:12:11 +0200 Subject: [PATCH 61/83] sync phpunit script with master --- phpunit | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpunit b/phpunit index d334dc0720936..b07ca07d06a20 100755 --- a/phpunit +++ b/phpunit @@ -17,5 +17,8 @@ if (!getenv('SYMFONY_PHPUNIT_VERSION')) { putenv('SYMFONY_PHPUNIT_VERSION=6.5'); } } +if (!getenv('SYMFONY_PATCH_TYPE_DECLARATIONS')) { + putenv('SYMFONY_PATCH_TYPE_DECLARATIONS=deprecations=1'); +} putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit'); require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit'; From 205abf343570940a1c406f7e051ff4d1688bc4f0 Mon Sep 17 00:00:00 2001 From: Swen van Zanten Date: Sun, 29 Sep 2019 23:19:44 +0200 Subject: [PATCH 62/83] [Cache] fix known tag versions ttl check --- .../Cache/Adapter/TagAwareAdapter.php | 2 +- .../Tests/Adapter/TagAwareAdapterTest.php | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php b/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php index 8e6024d846075..cac8a0ea18509 100644 --- a/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/TagAwareAdapter.php @@ -350,7 +350,7 @@ private function getTagVersions(array $tagsByKey, array &$invalidatedTags = []) continue; } $version -= $this->knownTagVersions[$tag][1]; - if ((0 !== $version && 1 !== $version) || $this->knownTagVersionsTtl > $now - $this->knownTagVersions[$tag][0]) { + if ((0 !== $version && 1 !== $version) || $now - $this->knownTagVersions[$tag][0] >= $this->knownTagVersionsTtl) { // reuse previously fetched tag versions up to the ttl, unless we are storing items or a potential miss arises $fetchTagVersions = true; } else { diff --git a/src/Symfony/Component/Cache/Tests/Adapter/TagAwareAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/TagAwareAdapterTest.php index 5bd2ffc287651..c8677d5e28319 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/TagAwareAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/TagAwareAdapterTest.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Tests\Adapter; use PHPUnit\Framework\MockObject\MockObject; +use Psr\Cache\CacheItemInterface; use Symfony\Component\Cache\Adapter\AdapterInterface; use Symfony\Component\Cache\Adapter\FilesystemAdapter; use Symfony\Component\Cache\Adapter\TagAwareAdapter; @@ -160,6 +161,39 @@ public function testPrune() $this->assertFalse($cache->prune()); } + public function testKnownTagVersionsTtl() + { + $itemsPool = new FilesystemAdapter('', 10); + $tagsPool = $this + ->getMockBuilder(AdapterInterface::class) + ->getMock(); + + $pool = new TagAwareAdapter($itemsPool, $tagsPool, 10); + + $item = $pool->getItem('foo'); + $item->tag(['baz']); + $item->expiresAfter(100); + + $tag = $this->getMockBuilder(CacheItemInterface::class)->getMock(); + $tag->expects(self::exactly(2))->method('get')->willReturn(10); + + $tagsPool->expects(self::exactly(2))->method('getItems')->willReturn([ + 'baz'.TagAwareAdapter::TAGS_PREFIX => $tag, + ]); + + $pool->save($item); + $this->assertTrue($pool->getItem('foo')->isHit()); + $this->assertTrue($pool->getItem('foo')->isHit()); + + sleep(20); + + $this->assertTrue($pool->getItem('foo')->isHit()); + + sleep(5); + + $this->assertTrue($pool->getItem('foo')->isHit()); + } + /** * @return MockObject|PruneableCacheInterface */ From 8814751b960d5c75b4d6ebb23548c7c938c2d65d Mon Sep 17 00:00:00 2001 From: Matthias Krauser Date: Fri, 27 Sep 2019 11:43:15 +0200 Subject: [PATCH 63/83] [Serializer] fix denormalization of string-arrays with only one element #33731 --- .../Normalizer/AbstractObjectNormalizer.php | 16 +++-- .../AbstractObjectNormalizerTest.php | 64 ++++++++++++++++--- 2 files changed, 63 insertions(+), 17 deletions(-) diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php index f2fb082b4b023..6cb6ec50133ac 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php @@ -244,16 +244,18 @@ private function validateAndDenormalize($currentClass, $attribute, $data, $forma return null; } - if ($type->isCollection() && null !== ($collectionValueType = $type->getCollectionValueType()) && Type::BUILTIN_TYPE_OBJECT === $collectionValueType->getBuiltinType()) { + $collectionValueType = $type->isCollection() ? $type->getCollectionValueType() : null; + + // Fix a collection that contains the only one element + // This is special to xml format only + if ('xml' === $format && null !== $collectionValueType && (!\is_array($data) || !\is_int(key($data)))) { + $data = [$data]; + } + + if (null !== $collectionValueType && Type::BUILTIN_TYPE_OBJECT === $collectionValueType->getBuiltinType()) { $builtinType = Type::BUILTIN_TYPE_OBJECT; $class = $collectionValueType->getClassName().'[]'; - // Fix a collection that contains the only one element - // This is special to xml format only - if ('xml' === $format && !\is_int(key($data))) { - $data = [$data]; - } - if (null !== $collectionKeyType = $type->getCollectionKeyType()) { $context['key_type'] = $collectionKeyType; } diff --git a/src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php b/src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php index f1eafe811f9f3..4895526c45c0a 100644 --- a/src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php +++ b/src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php @@ -121,16 +121,54 @@ private function getDenormalizerForDummyCollection() $extractor = $this->getMockBuilder(PhpDocExtractor::class)->getMock(); $extractor->method('getTypes') ->will($this->onConsecutiveCalls( - [ - new Type( - 'array', - false, - null, - true, - new Type('int'), - new Type('object', false, DummyChild::class) - ), - ], + [new Type('array', false, null, true, new Type('int'), new Type('object', false, DummyChild::class))], + null + )); + + $denormalizer = new AbstractObjectNormalizerCollectionDummy(null, null, $extractor); + $arrayDenormalizer = new ArrayDenormalizerDummy(); + $serializer = new SerializerCollectionDummy([$arrayDenormalizer, $denormalizer]); + $arrayDenormalizer->setSerializer($serializer); + $denormalizer->setSerializer($serializer); + + return $denormalizer; + } + + public function testDenormalizeStringCollectionDecodedFromXmlWithOneChild() + { + $denormalizer = $this->getDenormalizerForStringCollection(); + + // if an xml-node can have children which should be deserialized as string[] + // and only one child exists + $stringCollection = $denormalizer->denormalize(['children' => 'foo'], StringCollection::class, 'xml'); + + $this->assertInstanceOf(StringCollection::class, $stringCollection); + $this->assertIsArray($stringCollection->children); + $this->assertCount(1, $stringCollection->children); + $this->assertEquals('foo', $stringCollection->children[0]); + } + + public function testDenormalizeStringCollectionDecodedFromXmlWithTwoChildren() + { + $denormalizer = $this->getDenormalizerForStringCollection(); + + // if an xml-node can have children which should be deserialized as string[] + // and only one child exists + $stringCollection = $denormalizer->denormalize(['children' => ['foo', 'bar']], StringCollection::class, 'xml'); + + $this->assertInstanceOf(StringCollection::class, $stringCollection); + $this->assertIsArray($stringCollection->children); + $this->assertCount(2, $stringCollection->children); + $this->assertEquals('foo', $stringCollection->children[0]); + $this->assertEquals('bar', $stringCollection->children[1]); + } + + private function getDenormalizerForStringCollection() + { + $extractor = $this->getMockBuilder(PhpDocExtractor::class)->getMock(); + $extractor->method('getTypes') + ->will($this->onConsecutiveCalls( + [new Type('array', false, null, true, new Type('int'), new Type('string'))], null )); @@ -212,6 +250,12 @@ protected function setAttributeValue($object, $attribute, $value, $format = null } } +class StringCollection +{ + /** @var string[] */ + public $children; +} + class DummyCollection { /** @var DummyChild[] */ From fceb86bde6529d948232ce6ab60b924664e45993 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 30 Sep 2019 14:24:32 +0200 Subject: [PATCH 64/83] [Security/Http] fix parsing X509 emailAddress --- .../Security/Http/Firewall/X509AuthenticationListener.php | 2 +- .../Http/Tests/Firewall/X509AuthenticationListenerTest.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/X509AuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/X509AuthenticationListener.php index 76b1cad349bc2..e3cfb9d80e346 100644 --- a/src/Symfony/Component/Security/Http/Firewall/X509AuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/X509AuthenticationListener.php @@ -46,7 +46,7 @@ protected function getPreAuthenticatedData(Request $request) $user = $request->server->get($this->userKey); } elseif ( $request->server->has($this->credentialKey) - && preg_match('#emailAddress=(.+\@.+\.[^,/]+)($|,|/)#', $request->server->get($this->credentialKey), $matches) + && preg_match('#emailAddress=([^,/@]++@[^,/]++)#', $request->server->get($this->credentialKey), $matches) ) { $user = $matches[1]; } diff --git a/src/Symfony/Component/Security/Http/Tests/Firewall/X509AuthenticationListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/X509AuthenticationListenerTest.php index 9ada4b1b499d5..e35e685d5bf88 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/X509AuthenticationListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/X509AuthenticationListenerTest.php @@ -81,6 +81,7 @@ public static function dataProviderGetPreAuthenticatedDataNoUser() yield ['cert+something@example.com', 'CN=Sample certificate DN,emailAddress=cert+something@example.com']; yield ['cert+something@example.com', 'emailAddress=cert+something@example.com,CN=Sample certificate DN']; yield ['cert+something@example.com', 'emailAddress=cert+something@example.com']; + yield ['firstname.lastname@mycompany.co.uk', 'emailAddress=firstname.lastname@mycompany.co.uk,CN=Firstname.Lastname,OU=london,OU=company design and engineering,OU=Issuer London,OU=Roaming,OU=Interactive,OU=Users,OU=Standard,OU=Business,DC=england,DC=core,DC=company,DC=co,DC=uk']; } public function testGetPreAuthenticatedDataNoData() From 233dcb4b75093f14cdd9b8e3f22218c480b13261 Mon Sep 17 00:00:00 2001 From: Julien Falque Date: Mon, 30 Sep 2019 22:33:19 +0200 Subject: [PATCH 65/83] Copy phpunit.xsd to a predictable path --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 02fd4de411802..262fdd9dea603 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -78,6 +78,7 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__ passthru(sprintf('\\' === DIRECTORY_SEPARATOR ? 'rmdir /S /Q %s': 'rm -rf %s', "phpunit-$PHPUNIT_VERSION.old")); } passthru("$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) { passthru("$COMPOSER remove --no-update ".$SYMFONY_PHPUNIT_REMOVE); From 760354d533b01dad96b430b27ccdf03396fa9ed7 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Fri, 14 Jun 2019 18:55:27 +0200 Subject: [PATCH 66/83] [Serializer] Add CsvEncoder tests for PHP 7.4 --- .../Serializer/Encoder/CsvEncoder.php | 6 ++- .../Tests/Encoder/CsvEncoderTest.php | 44 +++++++++++++++++-- 2 files changed, 45 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Serializer/Encoder/CsvEncoder.php b/src/Symfony/Component/Serializer/Encoder/CsvEncoder.php index 79abf30ea5a94..239144d80f540 100644 --- a/src/Symfony/Component/Serializer/Encoder/CsvEncoder.php +++ b/src/Symfony/Component/Serializer/Encoder/CsvEncoder.php @@ -39,8 +39,12 @@ class CsvEncoder implements EncoderInterface, DecoderInterface * @param string $escapeChar * @param string $keySeparator */ - public function __construct($delimiter = ',', $enclosure = '"', $escapeChar = '\\', $keySeparator = '.') + public function __construct($delimiter = ',', $enclosure = '"', $escapeChar = '', $keySeparator = '.') { + if ('' === $escapeChar && \PHP_VERSION_ID < 70400) { + $escapeChar = '\\'; + } + $this->delimiter = $delimiter; $this->enclosure = $enclosure; $this->escapeChar = $escapeChar; diff --git a/src/Symfony/Component/Serializer/Tests/Encoder/CsvEncoderTest.php b/src/Symfony/Component/Serializer/Tests/Encoder/CsvEncoderTest.php index 7b5131cb533a6..4faf42d2ec1fa 100644 --- a/src/Symfony/Component/Serializer/Tests/Encoder/CsvEncoderTest.php +++ b/src/Symfony/Component/Serializer/Tests/Encoder/CsvEncoderTest.php @@ -36,15 +36,51 @@ public function testTrueFalseValues() 'int' => 2, 'false' => false, 'true' => true, + 'int_one' => 1, + 'string_one' => '1', ]; // Check that true and false are appropriately handled - $this->assertEquals(<<<'CSV' -string,int,false,true -foo,2,0,1 + $this->assertSame($csv = <<<'CSV' +string,int,false,true,int_one,string_one +foo,2,0,1,1,1 + +CSV + , $this->encoder->encode($data, 'csv')); + + $this->assertSame([ + 'string' => 'foo', + 'int' => '2', + 'false' => '0', + 'true' => '1', + 'int_one' => '1', + 'string_one' => '1', + ], $this->encoder->decode($csv, 'csv')); + } + + /** + * @requires PHP 7.4 + */ + public function testDoubleQuotesAndSlashes() + { + $this->assertSame($csv = <<<'CSV' +0,1,2,3,4,5 +,"""","foo""","\""",\,foo\ CSV - , $this->encoder->encode($data, 'csv')); + , $this->encoder->encode($data = ['', '"', 'foo"', '\\"', '\\', 'foo\\'], 'csv')); + + $this->assertSame($data, $this->encoder->decode($csv, 'csv')); + } + + /** + * @requires PHP 7.4 + */ + public function testSingleSlash() + { + $this->assertSame($csv = "0\n\\\n", $this->encoder->encode($data = ['\\'], 'csv')); + $this->assertSame($data, $this->encoder->decode($csv, 'csv')); + $this->assertSame($data, $this->encoder->decode(trim($csv), 'csv')); } public function testSupportEncoding() From c2a9bf08f13bbd761c12bacfc4d6e8f1f8634e0b Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Mon, 30 Sep 2019 21:51:42 +0100 Subject: [PATCH 67/83] Fix the :only-of-type pseudo class selector --- .../Tests/XPath/TranslatorTest.php | 33 +++++++++++++++++-- .../XPath/Extension/PseudoClassExtension.php | 6 ++-- 2 files changed, 34 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/CssSelector/Tests/XPath/TranslatorTest.php b/src/Symfony/Component/CssSelector/Tests/XPath/TranslatorTest.php index 625096315dfcf..a718fbd6f2e4c 100644 --- a/src/Symfony/Component/CssSelector/Tests/XPath/TranslatorTest.php +++ b/src/Symfony/Component/CssSelector/Tests/XPath/TranslatorTest.php @@ -98,7 +98,7 @@ public function testXmlLang($css, array $elementsId) $elements = $document->xpath($translator->cssToXPath($css)); $this->assertCount(\count($elementsId), $elements); foreach ($elements as $element) { - $this->assertTrue(\in_array($element->attributes()->id, $elementsId)); + $this->assertContains((string) $element->attributes()->id, $elementsId); } } @@ -116,7 +116,7 @@ public function testHtmlIds($css, array $elementsId) $this->assertCount(\count($elementsId), $elementsId); foreach ($elements as $element) { if (null !== $element->attributes()->id) { - $this->assertTrue(\in_array($element->attributes()->id, $elementsId)); + $this->assertContains((string) $element->attributes()->id, $elementsId); } } libxml_clear_errors(); @@ -137,6 +137,33 @@ public function testHtmlShakespear($css, $count) $this->assertCount($count, $elements); } + public function testOnlyOfTypeFindsSingleChildrenOfGivenType() + { + $translator = new Translator(); + $translator->registerExtension(new HtmlExtension($translator)); + $document = new \DOMDocument(); + $document->loadHTML(<<<'HTML' + + +

+ A +

+

+ B + C +

+ + +HTML +); + + $xpath = new \DOMXPath($document); + $nodeList = $xpath->query($translator->cssToXPath('span:only-of-type')); + + $this->assertSame(1, $nodeList->length); + $this->assertSame('A', $nodeList->item(0)->textContent); + } + public function getXpathLiteralTestData() { return [ @@ -175,7 +202,7 @@ public function getCssToXPathTestData() ['e:first-of-type', '*/e[position() = 1]'], ['e:last-of-type', '*/e[position() = last()]'], ['e:only-child', "*/*[(name() = 'e') and (last() = 1)]"], - ['e:only-of-type', 'e[last() = 1]'], + ['e:only-of-type', 'e[count(preceding-sibling::e)=0 and count(following-sibling::e)=0]'], ['e:empty', 'e[not(*) and not(string-length())]'], ['e:EmPTY', 'e[not(*) and not(string-length())]'], ['e:root', 'e[not(parent::*)]'], diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php index 27fe47f9a56fb..288a9e695e77b 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php @@ -123,11 +123,13 @@ public function translateOnlyChild(XPathExpr $xpath) */ public function translateOnlyOfType(XPathExpr $xpath) { - if ('*' === $xpath->getElement()) { + $element = $xpath->getElement(); + + if ('*' === $element) { throw new ExpressionErrorException('"*:only-of-type" is not implemented.'); } - return $xpath->addCondition('last() = 1'); + return $xpath->addCondition(sprintf('count(preceding-sibling::%s)=0 and count(following-sibling::%s)=0', $element, $element)); } /** From d7682fee6c45c085e529f17d40b56fd788866580 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Tue, 1 Oct 2019 15:11:47 +0200 Subject: [PATCH 68/83] Sync Twig templateExists behaviors --- src/Symfony/Bridge/Twig/TwigEngine.php | 24 ++++++++++++------- .../Controller/ExceptionController.php | 24 ++++++++++++------- .../Controller/ExceptionController.php | 22 ++++++++++------- .../Profiler/TemplateManager.php | 23 +++++++++--------- .../Tests/Profiler/TemplateManagerTest.php | 13 +++++++--- .../Fragment/HIncludeFragmentRenderer.php | 24 ++++++++++--------- 6 files changed, 79 insertions(+), 51 deletions(-) diff --git a/src/Symfony/Bridge/Twig/TwigEngine.php b/src/Symfony/Bridge/Twig/TwigEngine.php index 4789f3f4d60b0..cfbb5d8f4e440 100644 --- a/src/Symfony/Bridge/Twig/TwigEngine.php +++ b/src/Symfony/Bridge/Twig/TwigEngine.php @@ -19,6 +19,7 @@ use Twig\Error\Error; use Twig\Error\LoaderError; use Twig\Loader\ExistsLoaderInterface; +use Twig\Loader\SourceContextLoaderInterface; use Twig\Template; /** @@ -74,19 +75,24 @@ public function exists($name) $loader = $this->environment->getLoader(); - if ($loader instanceof ExistsLoaderInterface || method_exists($loader, 'exists')) { - return $loader->exists((string) $name); - } + if (1 === Environment::MAJOR_VERSION && !$loader instanceof ExistsLoaderInterface) { + try { + // cast possible TemplateReferenceInterface to string because the + // EngineInterface supports them but LoaderInterface does not + if ($loader instanceof SourceContextLoaderInterface) { + $loader->getSourceContext((string) $name); + } else { + $loader->getSource((string) $name); + } + + return true; + } catch (LoaderError $e) { + } - try { - // cast possible TemplateReferenceInterface to string because the - // EngineInterface supports them but LoaderInterface does not - $loader->getSourceContext((string) $name)->getCode(); - } catch (LoaderError $e) { return false; } - return true; + return $loader->exists((string) $name); } /** diff --git a/src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php b/src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php index da7f70a14defd..22753af9647ab 100644 --- a/src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php +++ b/src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php @@ -18,6 +18,7 @@ use Twig\Environment; use Twig\Error\LoaderError; use Twig\Loader\ExistsLoaderInterface; +use Twig\Loader\SourceContextLoaderInterface; /** * ExceptionController renders error or exception pages for a given @@ -120,23 +121,28 @@ protected function findTemplate(Request $request, $format, $code, $showException return sprintf('@Twig/Exception/%s.html.twig', $showException ? 'exception_full' : $name); } - // to be removed when the minimum required version of Twig is >= 3.0 + // to be removed when the minimum required version of Twig is >= 2.0 protected function templateExists($template) { $template = (string) $template; $loader = $this->twig->getLoader(); - if ($loader instanceof ExistsLoaderInterface || method_exists($loader, 'exists')) { - return $loader->exists($template); - } - try { - $loader->getSourceContext($template)->getCode(); + if (1 === Environment::MAJOR_VERSION && !$loader instanceof ExistsLoaderInterface) { + try { + if ($loader instanceof SourceContextLoaderInterface) { + $loader->getSourceContext($template); + } else { + $loader->getSource($template); + } + + return true; + } catch (LoaderError $e) { + } - return true; - } catch (LoaderError $e) { + return false; } - return false; + return $loader->exists($template); } } diff --git a/src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php b/src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php index d5b0f5e66b6c8..e82144b874512 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php @@ -19,6 +19,7 @@ use Twig\Environment; use Twig\Error\LoaderError; use Twig\Loader\ExistsLoaderInterface; +use Twig\Loader\SourceContextLoaderInterface; /** * ExceptionController. @@ -118,17 +119,22 @@ protected function getTemplate() protected function templateExists($template) { $loader = $this->twig->getLoader(); - if ($loader instanceof ExistsLoaderInterface) { - return $loader->exists($template); - } - try { - $loader->getSource($template); + if (1 === Environment::MAJOR_VERSION && !$loader instanceof ExistsLoaderInterface) { + try { + if ($loader instanceof SourceContextLoaderInterface) { + $loader->getSourceContext($template); + } else { + $loader->getSource($template); + } + + return true; + } catch (LoaderError $e) { + } - return true; - } catch (LoaderError $e) { + return false; } - return false; + return $loader->exists($template); } } diff --git a/src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php b/src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php index 5156152aa94b3..4f8da03cb5c97 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php @@ -117,21 +117,22 @@ public function getNames(Profile $profile) protected function templateExists($template) { $loader = $this->twig->getLoader(); - if ($loader instanceof ExistsLoaderInterface) { - return $loader->exists($template); - } - try { - if ($loader instanceof SourceContextLoaderInterface || method_exists($loader, 'getSourceContext')) { - $loader->getSourceContext($template); - } else { - $loader->getSource($template); + if (1 === Environment::MAJOR_VERSION && !$loader instanceof ExistsLoaderInterface) { + try { + if ($loader instanceof SourceContextLoaderInterface) { + $loader->getSourceContext($template); + } else { + $loader->getSource($template); + } + + return true; + } catch (LoaderError $e) { } - return true; - } catch (LoaderError $e) { + return false; } - return false; + return $loader->exists($template); } } diff --git a/src/Symfony/Bundle/WebProfilerBundle/Tests/Profiler/TemplateManagerTest.php b/src/Symfony/Bundle/WebProfilerBundle/Tests/Profiler/TemplateManagerTest.php index 1e5639a0b695b..ab4a42fc0cf9f 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Tests/Profiler/TemplateManagerTest.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Tests/Profiler/TemplateManagerTest.php @@ -15,6 +15,8 @@ use Symfony\Bundle\WebProfilerBundle\Tests\TestCase; use Symfony\Component\HttpKernel\Profiler\Profile; use Twig\Environment; +use Twig\Loader\LoaderInterface; +use Twig\Loader\SourceContextLoaderInterface; /** * Test for TemplateManager class. @@ -124,11 +126,16 @@ protected function mockTwigEnvironment() ->method('loadTemplate') ->willReturn('loadedTemplate'); - if (interface_exists('Twig\Loader\SourceContextLoaderInterface')) { - $loader = $this->getMockBuilder('Twig\Loader\SourceContextLoaderInterface')->getMock(); + if (Environment::MAJOR_VERSION > 1) { + $loader = $this->createMock(LoaderInterface::class); + $loader + ->expects($this->any()) + ->method('exists') + ->willReturn(true); } else { - $loader = $this->getMockBuilder('Twig\Loader\LoaderInterface')->getMock(); + $loader = $this->createMock(SourceContextLoaderInterface::class); } + $this->twigEnvironment->expects($this->any())->method('getLoader')->willReturn($loader); return $this->twigEnvironment; diff --git a/src/Symfony/Component/HttpKernel/Fragment/HIncludeFragmentRenderer.php b/src/Symfony/Component/HttpKernel/Fragment/HIncludeFragmentRenderer.php index a0abc058819af..f94a5c0760368 100644 --- a/src/Symfony/Component/HttpKernel/Fragment/HIncludeFragmentRenderer.php +++ b/src/Symfony/Component/HttpKernel/Fragment/HIncludeFragmentRenderer.php @@ -19,6 +19,7 @@ use Twig\Environment; use Twig\Error\LoaderError; use Twig\Loader\ExistsLoaderInterface; +use Twig\Loader\SourceContextLoaderInterface; /** * Implements the Hinclude rendering strategy. @@ -137,22 +138,23 @@ private function templateExists($template) } $loader = $this->templating->getLoader(); - if ($loader instanceof ExistsLoaderInterface || method_exists($loader, 'exists')) { - return $loader->exists($template); - } - try { - if (method_exists($loader, 'getSourceContext')) { - $loader->getSourceContext($template); - } else { - $loader->getSource($template); + if (1 === Environment::MAJOR_VERSION && !$loader instanceof ExistsLoaderInterface) { + try { + if ($loader instanceof SourceContextLoaderInterface) { + $loader->getSourceContext($template); + } else { + $loader->getSource($template); + } + + return true; + } catch (LoaderError $e) { } - return true; - } catch (LoaderError $e) { + return false; } - return false; + return $loader->exists($template); } /** From 6b6c246c723a12e1f1510c5e01706cbf63b19c2c Mon Sep 17 00:00:00 2001 From: Jens Schulze Date: Tue, 1 Oct 2019 10:34:38 +0200 Subject: [PATCH 69/83] [AnnotationCacheWarmer] add RedirectController to annotation cache This prevents to exclude the RedirectController from the warmed annotation cache which would lead to warnings when trying to use the warmed cache on read only file systems See #29357 --- .../Bundle/FrameworkBundle/Resources/config/annotations.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml index 02104ba26015b..9403917ff584a 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml @@ -37,7 +37,7 @@ %kernel.cache_dir%/annotations.php - #^Symfony\\(?:Component\\HttpKernel\\|Bundle\\FrameworkBundle\\Controller\\(?!AbstractController$|Controller$))# + #^Symfony\\(?:Component\\HttpKernel\\|Bundle\\FrameworkBundle\\Controller\\(?!.*Controller$))# %kernel.debug% From 9b5ced20bbaf45b1d64263c3833d25baa49a32ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4dlich?= Date: Wed, 2 Oct 2019 12:47:49 +0200 Subject: [PATCH 70/83] [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand --- .../Bundle/FrameworkBundle/Command/ConfigDebugCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php index 6aa3fbf9b7183..9919e4657db5e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php @@ -104,7 +104,7 @@ protected function execute(InputInterface $input, OutputInterface $output) } catch (LogicException $e) { $errorIo->error($e->getMessage()); - return; + return 1; } $io->title(sprintf('Current configuration for "%s.%s"', $extensionAlias, $path)); From 64aecab0a73332330197ca40665e586dd135a7a6 Mon Sep 17 00:00:00 2001 From: Justin Reherman Date: Tue, 1 Oct 2019 18:15:09 -0400 Subject: [PATCH 71/83] Don't let falsey usernames slip through --- .../Http/Firewall/SwitchUserListener.php | 11 ++++++-- .../Tests/Firewall/SwitchUserListenerTest.php | 26 +++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php b/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php index f80d2ec2caf47..70492cc79d84e 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php @@ -77,9 +77,16 @@ public function __construct(TokenStorageInterface $tokenStorage, UserProviderInt public function handle(GetResponseEvent $event) { $request = $event->getRequest(); - $username = $request->get($this->usernameParameter) ?: $request->headers->get($this->usernameParameter); - if (!$username) { + // usernames can be falsy + $username = $request->get($this->usernameParameter); + + if (null === $username || '' === $username) { + $username = $request->headers->get($this->usernameParameter); + } + + // if it's still "empty", nothing to do. + if (null === $username || '' === $username) { return; } diff --git a/src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php index a67e8fb8cd1dd..f4060f46b7790 100644 --- a/src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php @@ -191,6 +191,32 @@ public function testSwitchUser() $this->assertInstanceOf('Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken', $this->tokenStorage->getToken()); } + public function testSwitchUserWorksWithFalsyUsernames() + { + $token = new UsernamePasswordToken('username', '', 'key', ['ROLE_FOO']); + $user = new User('username', 'password', []); + + $this->tokenStorage->setToken($token); + $this->request->query->set('_switch_user', '0'); + + $this->accessDecisionManager->expects($this->once()) + ->method('decide')->with($token, ['ROLE_ALLOWED_TO_SWITCH']) + ->willReturn(true); + + $this->userProvider->expects($this->once()) + ->method('loadUserByUsername')->with('0') + ->willReturn($user); + $this->userChecker->expects($this->once()) + ->method('checkPostAuth')->with($user); + + $listener = new SwitchUserListener($this->tokenStorage, $this->userProvider, $this->userChecker, 'provider123', $this->accessDecisionManager); + $listener->handle($this->event); + + $this->assertSame([], $this->request->query->all()); + $this->assertSame('', $this->request->server->get('QUERY_STRING')); + $this->assertInstanceOf('Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken', $this->tokenStorage->getToken()); + } + public function testSwitchUserKeepsOtherQueryStringParameters() { $token = new UsernamePasswordToken('username', '', 'key', ['ROLE_FOO']); From 38782bceff3a063193f9e988205ec919e7819c33 Mon Sep 17 00:00:00 2001 From: bogdan Date: Wed, 2 Oct 2019 18:28:34 +0300 Subject: [PATCH 72/83] [HttpFoundation] Check if data passed to SessionBagProxy::initialize is an array --- .../HttpFoundation/Session/Storage/NativeSessionStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php b/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php index 4f1c30ef523f6..4c5873728a19d 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php @@ -430,7 +430,7 @@ protected function loadSession(array &$session = null) foreach ($bags as $bag) { $key = $bag->getStorageKey(); - $session[$key] = isset($session[$key]) ? $session[$key] : []; + $session[$key] = isset($session[$key]) && \is_array($session[$key]) ? $session[$key] : []; $bag->initialize($session[$key]); } From afefc7104eef8a8c5cb812e455084d1247d1e08d Mon Sep 17 00:00:00 2001 From: Agata Date: Wed, 2 Oct 2019 23:08:22 +0200 Subject: [PATCH 73/83] Fixed invalid VarDumper upgrade doc. --- UPGRADE-4.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 5703b4a5a7408..8d41f32658c58 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -924,7 +924,7 @@ Validator VarDumper --------- - * The `VarDumperTestTrait::assertDumpEquals()` method expects a 3rd `$context = null` + * The `VarDumperTestTrait::assertDumpEquals()` method expects a 3rd `$filter = 0` argument and moves `$message = ''` argument at 4th position. Before: @@ -939,7 +939,7 @@ VarDumper VarDumperTestTrait::assertDumpEquals($dump, $data, $filter = 0, $message = ''); ``` - * The `VarDumperTestTrait::assertDumpMatchesFormat()` method expects a 3rd `$context = null` + * The `VarDumperTestTrait::assertDumpMatchesFormat()` method expects a 3rd `$filter = 0` argument and moves `$message = ''` argument at 4th position. Before: From 72684b001c24317fab602215b676661b4945eb11 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Thu, 3 Oct 2019 17:45:25 +0200 Subject: [PATCH 74/83] [Validator] Fix ValidValidator group cascading usage --- src/Symfony/Component/Validator/Constraints/ValidValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Constraints/ValidValidator.php b/src/Symfony/Component/Validator/Constraints/ValidValidator.php index cc10ec5204efc..695ec822540ed 100644 --- a/src/Symfony/Component/Validator/Constraints/ValidValidator.php +++ b/src/Symfony/Component/Validator/Constraints/ValidValidator.php @@ -33,6 +33,6 @@ public function validate($value, Constraint $constraint) $this->context ->getValidator() ->inContext($this->context) - ->validate($value, null, [$this->context->getGroup()]); + ->validate($value, null, $this->context->getGroup()); } } From 865b9ffb09448de80e2c25b86a1db51e4f0df1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarmo=20Lepp=C3=A4nen?= Date: Fri, 4 Oct 2019 10:06:17 +0300 Subject: [PATCH 75/83] Added missing translations. --- .../Resources/translations/validators.fi.xlf | 140 ++++++++++++++++++ 1 file changed, 140 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.fi.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.fi.xlf index e4390981dfda1..d35bff2c6e8e7 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.fi.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.fi.xlf @@ -222,10 +222,150 @@ Unsupported card type or invalid card number. Tätä korttityyppiä ei tueta tai korttinumero on virheellinen. + + This is not a valid International Bank Account Number (IBAN). + Arvo ei ole kelvollinen kansainvälinen pankkitilinumero (IBAN). + + + This value is not a valid ISBN-10. + Arvo ei ole kelvollinen ISBN-10. + + + This value is not a valid ISBN-13. + Arvo ei ole kelvollinen ISBN-13. + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Arvo ei ole kelvollinen ISBN-10 tai kelvollinen ISBN-13. + + + This value is not a valid ISSN. + Arvo ei ole kelvollinen ISSN. + + + This value is not a valid currency. + Arvo ei ole kelvollinen valuutta. + + + This value should be equal to {{ compared_value }}. + Arvo ei ole sama kuin {{ compared_value }}. + + + This value should be greater than {{ compared_value }}. + Arvon tulee olla suurempi kuin {{ compared_value }}. + + + This value should be greater than or equal to {{ compared_value }}. + Arvon tulee olla suurempi tai yhtä suuri kuin {{ compared_value }}. + + + This value should be identical to {{ compared_value_type }} {{ compared_value }}. + Tämä arvo tulee olla sama kuin {{ compared_value_type }} {{ compared_value }}. + + + This value should be less than {{ compared_value }}. + Arvon tulee olla pienempi kuin {{ compared_value }}. + + + This value should be less than or equal to {{ compared_value }}. + Arvon tulee olla pienempi tai yhtä suuri {{ compared_value }}. + + + This value should not be equal to {{ compared_value }}. + Arvon ei tule olla sama kuin {{ compared_value }}. + + + This value should not be identical to {{ compared_value_type }} {{ compared_value }}. + Tämä arvo ei tule olla sama kuin {{ compared_value_type }} {{ compared_value }}. + + + The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. + Kuvasuhde on liian suuri ({{ ratio }}). Suurin sallittu suhde on {{ max_ratio }}. + + + The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. + Kuvasuhde on liian pieni ({{ ratio }}). Pienin sallittu arvo on {{ min_ratio }}. + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + Kuva on neliä ({{ width }}x{{ height }}px). Neliöt kuvat eivät ole sallittuja. + + + The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. + Kuva on vaakasuuntainen ({{ width }}x{{ height }}px). Vaakasuuntaiset kuvat eivät ole sallittuja. + + + The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. + Kuva on pystysuuntainen ({{ width }}x{{ height }}px). Pystysuuntaiset kuvat eivät ole sallittuja. + + + An empty file is not allowed. + Tyhjä tiedosto ei ole sallittu. + + + The host could not be resolved. + The host could not be resolved. + + + This value does not match the expected {{ charset }} charset. + Arvo ei vastaa odotettua merkistöä {{ charset }}. + + + This is not a valid Business Identifier Code (BIC). + Arvo ei ole kelvollinen yritystunnus (BIC). + Error Virhe + + This is not a valid UUID. + Arvo ei ole kelvollinen UUID. + + + This value should be a multiple of {{ compared_value }}. + Tämän arvon tulisi olla kerrannainen {{ compared_value }}. + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Tämä yritystunnus (BIC) ei ole liitetty IBAN {{ iban }}. + + + This value should be valid JSON. + Arvon tulee olla kelvollinen JSON. + + + This collection should contain only unique elements. + Tämä ryhmä tulisi sisältää vain yksilöllisiä arvoja. + + + This value should be positive. + Arvon tulisi olla positiivinen. + + + This value should be either positive or zero. + Arvon tulisi olla joko positiivinen tai nolla. + + + This value should be negative. + Arvon tulisi olla negatiivinen. + + + This value should be either negative or zero. + Arvon tulisi olla joko negatiivinen tai nolla. + + + This value is not a valid timezone. + Arvo ei ole kelvollinen aikavyöhyke. + + + This password has been leaked in a data breach, it must not be used. Please use another password. + Tämä salasana on vuotanut tietomurrossa, sitä ei saa käyttää. Käytä toista salasanaa. + + + This value should be between {{ min }} and {{ max }}. + Arvon tulisi olla välillä {{ min }} - {{ max }}. + From b0f42333a59ff8e7a443ec8658c182725a2fb9bd Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 4 Oct 2019 09:39:26 +0200 Subject: [PATCH 76/83] [VarDumper] fix dumping uninitialized SplFileInfo --- .../Component/VarDumper/Caster/SplCaster.php | 6 ++++++ .../VarDumper/Tests/Caster/SplCasterTest.php | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/Symfony/Component/VarDumper/Caster/SplCaster.php b/src/Symfony/Component/VarDumper/Caster/SplCaster.php index a223adb7f2cae..283c5613d0c6b 100644 --- a/src/Symfony/Component/VarDumper/Caster/SplCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/SplCaster.php @@ -90,6 +90,12 @@ public static function castFileInfo(\SplFileInfo $c, array $a, Stub $stub, $isNe $prefix = Caster::PREFIX_VIRTUAL; + if (false === $c->getPathname()) { + $a[$prefix.'⚠'] = 'The parent constructor was not called: the object is in an invalid state'; + + return $a; + } + foreach ($map as $key => $accessor) { try { $a[$prefix.$key] = $c->$accessor(); diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php index a146a2f6b96a8..67033df091601 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php @@ -202,6 +202,18 @@ public function testArrayIterator() 0 => 234 ] } +EOTXT; + $this->assertDumpEquals($expected, $var); + } + + public function testBadSplFileInfo() + { + $var = new BadSplFileInfo(); + + $expected = <<assertDumpEquals($expected, $var); } @@ -211,3 +223,10 @@ class MyArrayIterator extends \ArrayIterator { private $foo = 123; } + +class BadSplFileInfo extends \SplFileInfo +{ + public function __construct() + { + } +} From 5cc9811fa92cfbc76dbfc2f4ceec806695e239f7 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Fri, 4 Oct 2019 04:55:12 +0100 Subject: [PATCH 77/83] [Intl] Update the ICU data to 65.1 --- src/Symfony/Component/Intl/Intl.php | 2 +- .../Intl/Resources/data/currencies/af.json | 60 +- .../Intl/Resources/data/currencies/af_NA.json | 2 +- .../Intl/Resources/data/currencies/ak.json | 2 +- .../Intl/Resources/data/currencies/am.json | 2 +- .../Intl/Resources/data/currencies/ar.json | 8 +- .../Intl/Resources/data/currencies/ar_DJ.json | 2 +- .../Intl/Resources/data/currencies/ar_ER.json | 2 +- .../Intl/Resources/data/currencies/ar_KM.json | 2 +- .../Intl/Resources/data/currencies/ar_LB.json | 2 +- .../Intl/Resources/data/currencies/ar_SO.json | 2 +- .../Intl/Resources/data/currencies/ar_SS.json | 2 +- .../Intl/Resources/data/currencies/as.json | 2 +- .../Intl/Resources/data/currencies/az.json | 10 +- .../Resources/data/currencies/az_Cyrl.json | 2 +- .../Intl/Resources/data/currencies/be.json | 32 +- .../Intl/Resources/data/currencies/bg.json | 14 +- .../Intl/Resources/data/currencies/bm.json | 2 +- .../Intl/Resources/data/currencies/bn.json | 2 +- .../Intl/Resources/data/currencies/bo.json | 2 +- .../Intl/Resources/data/currencies/bo_IN.json | 2 +- .../Intl/Resources/data/currencies/br.json | 132 +++- .../Intl/Resources/data/currencies/bs.json | 4 +- .../Resources/data/currencies/bs_Cyrl.json | 136 ++-- .../Intl/Resources/data/currencies/ca.json | 6 +- .../Intl/Resources/data/currencies/ca_FR.json | 2 +- .../Intl/Resources/data/currencies/ce.json | 2 +- .../Intl/Resources/data/currencies/cs.json | 2 +- .../Intl/Resources/data/currencies/cy.json | 4 +- .../Intl/Resources/data/currencies/da.json | 6 +- .../Intl/Resources/data/currencies/de.json | 2 +- .../Intl/Resources/data/currencies/de_CH.json | 14 +- .../Intl/Resources/data/currencies/de_LI.json | 2 +- .../Intl/Resources/data/currencies/de_LU.json | 2 +- .../Intl/Resources/data/currencies/dz.json | 2 +- .../Intl/Resources/data/currencies/ee.json | 2 +- .../Intl/Resources/data/currencies/el.json | 2 +- .../Intl/Resources/data/currencies/en.json | 2 +- .../Resources/data/currencies/en_001.json | 6 +- .../Resources/data/currencies/en_150.json | 2 +- .../Intl/Resources/data/currencies/en_AE.json | 2 +- .../Intl/Resources/data/currencies/en_AG.json | 2 +- .../Intl/Resources/data/currencies/en_AI.json | 2 +- .../Intl/Resources/data/currencies/en_AU.json | 426 +++++++++++- .../Intl/Resources/data/currencies/en_BB.json | 2 +- .../Intl/Resources/data/currencies/en_BI.json | 2 +- .../Intl/Resources/data/currencies/en_BM.json | 2 +- .../Intl/Resources/data/currencies/en_BS.json | 2 +- .../Intl/Resources/data/currencies/en_BW.json | 2 +- .../Intl/Resources/data/currencies/en_BZ.json | 2 +- .../Intl/Resources/data/currencies/en_CA.json | 6 +- .../Intl/Resources/data/currencies/en_CC.json | 2 +- .../Intl/Resources/data/currencies/en_CK.json | 2 +- .../Intl/Resources/data/currencies/en_CX.json | 2 +- .../Intl/Resources/data/currencies/en_DK.json | 2 +- .../Intl/Resources/data/currencies/en_DM.json | 2 +- .../Intl/Resources/data/currencies/en_ER.json | 2 +- .../Intl/Resources/data/currencies/en_FJ.json | 2 +- .../Intl/Resources/data/currencies/en_FK.json | 2 +- .../Intl/Resources/data/currencies/en_GB.json | 9 - .../Intl/Resources/data/currencies/en_GD.json | 2 +- .../Intl/Resources/data/currencies/en_GG.json | 2 +- .../Intl/Resources/data/currencies/en_GH.json | 2 +- .../Intl/Resources/data/currencies/en_GI.json | 2 +- .../Intl/Resources/data/currencies/en_GM.json | 2 +- .../Intl/Resources/data/currencies/en_GY.json | 2 +- .../Intl/Resources/data/currencies/en_IM.json | 2 +- .../Intl/Resources/data/currencies/en_IN.json | 2 +- .../Intl/Resources/data/currencies/en_JE.json | 2 +- .../Intl/Resources/data/currencies/en_JM.json | 2 +- .../Intl/Resources/data/currencies/en_KE.json | 2 +- .../Intl/Resources/data/currencies/en_KI.json | 2 +- .../Intl/Resources/data/currencies/en_KN.json | 2 +- .../Intl/Resources/data/currencies/en_KY.json | 2 +- .../Intl/Resources/data/currencies/en_LC.json | 2 +- .../Intl/Resources/data/currencies/en_LR.json | 2 +- .../Intl/Resources/data/currencies/en_LS.json | 2 +- .../Intl/Resources/data/currencies/en_MG.json | 2 +- .../Intl/Resources/data/currencies/en_MO.json | 2 +- .../Intl/Resources/data/currencies/en_MS.json | 2 +- .../Intl/Resources/data/currencies/en_MT.json | 2 +- .../Intl/Resources/data/currencies/en_MU.json | 2 +- .../Intl/Resources/data/currencies/en_MW.json | 2 +- .../Intl/Resources/data/currencies/en_MY.json | 2 +- .../Intl/Resources/data/currencies/en_NA.json | 2 +- .../Intl/Resources/data/currencies/en_NF.json | 2 +- .../Intl/Resources/data/currencies/en_NG.json | 2 +- .../Intl/Resources/data/currencies/en_NH.json | 2 +- .../Intl/Resources/data/currencies/en_NR.json | 2 +- .../Intl/Resources/data/currencies/en_NU.json | 2 +- .../Intl/Resources/data/currencies/en_NZ.json | 2 +- .../Intl/Resources/data/currencies/en_PG.json | 2 +- .../Intl/Resources/data/currencies/en_PH.json | 2 +- .../Intl/Resources/data/currencies/en_PK.json | 2 +- .../Intl/Resources/data/currencies/en_PN.json | 2 +- .../Intl/Resources/data/currencies/en_RW.json | 2 +- .../Intl/Resources/data/currencies/en_SB.json | 2 +- .../Intl/Resources/data/currencies/en_SC.json | 2 +- .../Intl/Resources/data/currencies/en_SE.json | 2 +- .../Intl/Resources/data/currencies/en_SG.json | 2 +- .../Intl/Resources/data/currencies/en_SH.json | 4 +- .../Intl/Resources/data/currencies/en_SL.json | 2 +- .../Intl/Resources/data/currencies/en_SS.json | 2 +- .../Intl/Resources/data/currencies/en_SX.json | 2 +- .../Intl/Resources/data/currencies/en_SZ.json | 2 +- .../Intl/Resources/data/currencies/en_TK.json | 2 +- .../Intl/Resources/data/currencies/en_TO.json | 2 +- .../Intl/Resources/data/currencies/en_TT.json | 2 +- .../Intl/Resources/data/currencies/en_TV.json | 2 +- .../Intl/Resources/data/currencies/en_TZ.json | 2 +- .../Intl/Resources/data/currencies/en_UG.json | 2 +- .../Intl/Resources/data/currencies/en_VC.json | 2 +- .../Intl/Resources/data/currencies/en_VU.json | 2 +- .../Intl/Resources/data/currencies/en_WS.json | 2 +- .../Intl/Resources/data/currencies/en_ZA.json | 2 +- .../Intl/Resources/data/currencies/en_ZM.json | 2 +- .../Intl/Resources/data/currencies/es.json | 6 +- .../Resources/data/currencies/es_419.json | 502 +------------- .../Intl/Resources/data/currencies/es_AR.json | 2 +- .../Intl/Resources/data/currencies/es_BO.json | 2 +- .../Intl/Resources/data/currencies/es_BR.json | 2 +- .../Intl/Resources/data/currencies/es_BZ.json | 2 +- .../Intl/Resources/data/currencies/es_CL.json | 2 +- .../Intl/Resources/data/currencies/es_CO.json | 2 +- .../Intl/Resources/data/currencies/es_CR.json | 2 +- .../Intl/Resources/data/currencies/es_CU.json | 2 +- .../Intl/Resources/data/currencies/es_DO.json | 2 +- .../Intl/Resources/data/currencies/es_EC.json | 2 +- .../Intl/Resources/data/currencies/es_GQ.json | 2 +- .../Intl/Resources/data/currencies/es_GT.json | 2 +- .../Intl/Resources/data/currencies/es_HN.json | 2 +- .../Intl/Resources/data/currencies/es_MX.json | 26 +- .../Intl/Resources/data/currencies/es_NI.json | 2 +- .../Intl/Resources/data/currencies/es_PA.json | 2 +- .../Intl/Resources/data/currencies/es_PE.json | 2 +- .../Intl/Resources/data/currencies/es_PH.json | 2 +- .../Intl/Resources/data/currencies/es_PR.json | 2 +- .../Intl/Resources/data/currencies/es_PY.json | 2 +- .../Intl/Resources/data/currencies/es_SV.json | 2 +- .../Intl/Resources/data/currencies/es_US.json | 32 +- .../Intl/Resources/data/currencies/es_UY.json | 2 +- .../Intl/Resources/data/currencies/es_VE.json | 4 +- .../Intl/Resources/data/currencies/et.json | 2 +- .../Intl/Resources/data/currencies/eu.json | 288 ++++---- .../Intl/Resources/data/currencies/fa.json | 56 +- .../Intl/Resources/data/currencies/fa_AF.json | 2 +- .../Intl/Resources/data/currencies/ff.json | 2 +- .../Intl/Resources/data/currencies/ff_GN.json | 2 +- .../Resources/data/currencies/ff_Latn_GH.json | 2 +- .../Resources/data/currencies/ff_Latn_GM.json | 2 +- .../Resources/data/currencies/ff_Latn_GN.json | 2 +- .../Resources/data/currencies/ff_Latn_LR.json | 2 +- .../Resources/data/currencies/ff_Latn_MR.json | 2 +- .../Resources/data/currencies/ff_Latn_NG.json | 2 +- .../Resources/data/currencies/ff_Latn_SL.json | 2 +- .../Intl/Resources/data/currencies/ff_MR.json | 2 +- .../Intl/Resources/data/currencies/fi.json | 6 +- .../Intl/Resources/data/currencies/fo.json | 2 +- .../Intl/Resources/data/currencies/fo_DK.json | 2 +- .../Intl/Resources/data/currencies/fr.json | 4 +- .../Intl/Resources/data/currencies/fr_BI.json | 2 +- .../Intl/Resources/data/currencies/fr_CA.json | 170 +---- .../Intl/Resources/data/currencies/fr_CD.json | 2 +- .../Intl/Resources/data/currencies/fr_DJ.json | 2 +- .../Intl/Resources/data/currencies/fr_DZ.json | 2 +- .../Intl/Resources/data/currencies/fr_GN.json | 2 +- .../Intl/Resources/data/currencies/fr_HT.json | 2 +- .../Intl/Resources/data/currencies/fr_KM.json | 2 +- .../Intl/Resources/data/currencies/fr_LU.json | 2 +- .../Intl/Resources/data/currencies/fr_MG.json | 2 +- .../Intl/Resources/data/currencies/fr_MR.json | 2 +- .../Intl/Resources/data/currencies/fr_MU.json | 2 +- .../Intl/Resources/data/currencies/fr_RW.json | 2 +- .../Intl/Resources/data/currencies/fr_SC.json | 2 +- .../Intl/Resources/data/currencies/fr_SY.json | 2 +- .../Intl/Resources/data/currencies/fr_TN.json | 2 +- .../Intl/Resources/data/currencies/fr_VU.json | 2 +- .../Intl/Resources/data/currencies/fy.json | 2 +- .../Intl/Resources/data/currencies/ga.json | 46 +- .../Intl/Resources/data/currencies/gd.json | 6 +- .../Intl/Resources/data/currencies/gl.json | 312 ++++----- .../Intl/Resources/data/currencies/gu.json | 4 +- .../Intl/Resources/data/currencies/ha.json | 4 +- .../Intl/Resources/data/currencies/ha_GH.json | 2 +- .../Intl/Resources/data/currencies/ha_NE.json | 241 ------- .../Intl/Resources/data/currencies/he.json | 4 +- .../Intl/Resources/data/currencies/hi.json | 6 +- .../Intl/Resources/data/currencies/hr.json | 22 +- .../Intl/Resources/data/currencies/hr_BA.json | 2 +- .../Intl/Resources/data/currencies/hu.json | 12 +- .../Intl/Resources/data/currencies/hy.json | 2 +- .../Intl/Resources/data/currencies/ia.json | 2 +- .../Intl/Resources/data/currencies/id.json | 2 +- .../Intl/Resources/data/currencies/ig.json | 22 +- .../Intl/Resources/data/currencies/ii.json | 2 +- .../Intl/Resources/data/currencies/in.json | 2 +- .../Intl/Resources/data/currencies/is.json | 6 +- .../Intl/Resources/data/currencies/it.json | 2 +- .../Intl/Resources/data/currencies/iw.json | 4 +- .../Intl/Resources/data/currencies/ja.json | 2 +- .../Intl/Resources/data/currencies/jv.json | 6 +- .../Intl/Resources/data/currencies/ka.json | 2 +- .../Intl/Resources/data/currencies/ki.json | 2 +- .../Intl/Resources/data/currencies/kk.json | 2 +- .../Intl/Resources/data/currencies/kl.json | 2 +- .../Intl/Resources/data/currencies/km.json | 2 +- .../Intl/Resources/data/currencies/kn.json | 16 +- .../Intl/Resources/data/currencies/ko.json | 2 +- .../Intl/Resources/data/currencies/ks.json | 2 +- .../Intl/Resources/data/currencies/ku.json | 2 +- .../Intl/Resources/data/currencies/ky.json | 2 +- .../Intl/Resources/data/currencies/lb.json | 2 +- .../Intl/Resources/data/currencies/lg.json | 2 +- .../Intl/Resources/data/currencies/ln.json | 2 +- .../Intl/Resources/data/currencies/ln_AO.json | 2 +- .../Intl/Resources/data/currencies/lo.json | 16 +- .../Intl/Resources/data/currencies/lt.json | 2 +- .../Intl/Resources/data/currencies/lu.json | 2 +- .../Intl/Resources/data/currencies/lv.json | 2 +- .../Intl/Resources/data/currencies/meta.json | 2 +- .../Intl/Resources/data/currencies/mg.json | 2 +- .../Intl/Resources/data/currencies/mi.json | 4 +- .../Intl/Resources/data/currencies/mk.json | 22 +- .../Intl/Resources/data/currencies/ml.json | 2 +- .../Intl/Resources/data/currencies/mn.json | 302 ++++----- .../Intl/Resources/data/currencies/mo.json | 2 +- .../Intl/Resources/data/currencies/mr.json | 2 +- .../Intl/Resources/data/currencies/ms.json | 2 +- .../Intl/Resources/data/currencies/ms_BN.json | 2 +- .../Intl/Resources/data/currencies/ms_SG.json | 2 +- .../Intl/Resources/data/currencies/mt.json | 2 +- .../Intl/Resources/data/currencies/my.json | 2 +- .../Intl/Resources/data/currencies/nb.json | 6 +- .../Intl/Resources/data/currencies/nd.json | 2 +- .../Intl/Resources/data/currencies/ne.json | 2 +- .../Intl/Resources/data/currencies/nl.json | 4 +- .../Intl/Resources/data/currencies/nl_AW.json | 2 +- .../Intl/Resources/data/currencies/nl_BQ.json | 2 +- .../Intl/Resources/data/currencies/nl_CW.json | 2 +- .../Intl/Resources/data/currencies/nl_SR.json | 2 +- .../Intl/Resources/data/currencies/nl_SX.json | 2 +- .../Intl/Resources/data/currencies/nn.json | 2 +- .../Intl/Resources/data/currencies/no.json | 6 +- .../Intl/Resources/data/currencies/om.json | 2 +- .../Intl/Resources/data/currencies/om_KE.json | 2 +- .../Intl/Resources/data/currencies/or.json | 2 +- .../Intl/Resources/data/currencies/os.json | 2 +- .../Intl/Resources/data/currencies/os_RU.json | 2 +- .../Intl/Resources/data/currencies/pa.json | 8 +- .../Resources/data/currencies/pa_Arab.json | 2 +- .../Intl/Resources/data/currencies/pl.json | 20 +- .../Intl/Resources/data/currencies/ps.json | 586 ++++++++++++++++- .../Intl/Resources/data/currencies/ps_PK.json | 2 +- .../Intl/Resources/data/currencies/pt.json | 6 +- .../Intl/Resources/data/currencies/pt_AO.json | 2 +- .../Intl/Resources/data/currencies/pt_CV.json | 4 +- .../Intl/Resources/data/currencies/pt_LU.json | 2 +- .../Intl/Resources/data/currencies/pt_MO.json | 4 +- .../Intl/Resources/data/currencies/pt_MZ.json | 2 +- .../Intl/Resources/data/currencies/pt_PT.json | 158 +++-- .../Intl/Resources/data/currencies/pt_ST.json | 2 +- .../Intl/Resources/data/currencies/qu.json | 620 +++++++++++++++++- .../Intl/Resources/data/currencies/qu_BO.json | 6 +- .../Intl/Resources/data/currencies/qu_EC.json | 6 +- .../Intl/Resources/data/currencies/rm.json | 2 +- .../Intl/Resources/data/currencies/rn.json | 2 +- .../Intl/Resources/data/currencies/ro.json | 2 +- .../Intl/Resources/data/currencies/ro_MD.json | 2 +- .../Intl/Resources/data/currencies/root.json | 2 +- .../Intl/Resources/data/currencies/ru.json | 2 +- .../Intl/Resources/data/currencies/ru_BY.json | 2 +- .../Intl/Resources/data/currencies/ru_KG.json | 2 +- .../Intl/Resources/data/currencies/ru_KZ.json | 2 +- .../Intl/Resources/data/currencies/ru_MD.json | 2 +- .../Intl/Resources/data/currencies/rw.json | 2 +- .../Intl/Resources/data/currencies/sd.json | 2 +- .../Intl/Resources/data/currencies/se.json | 2 +- .../Intl/Resources/data/currencies/se_SE.json | 2 +- .../Intl/Resources/data/currencies/sg.json | 2 +- .../Intl/Resources/data/currencies/sh.json | 8 +- .../Intl/Resources/data/currencies/si.json | 2 +- .../Intl/Resources/data/currencies/sk.json | 2 +- .../Intl/Resources/data/currencies/sl.json | 2 +- .../Intl/Resources/data/currencies/sn.json | 2 +- .../Intl/Resources/data/currencies/so.json | 2 +- .../Intl/Resources/data/currencies/so_DJ.json | 2 +- .../Intl/Resources/data/currencies/so_ET.json | 2 +- .../Intl/Resources/data/currencies/so_KE.json | 2 +- .../Intl/Resources/data/currencies/sq.json | 4 +- .../Intl/Resources/data/currencies/sq_MK.json | 2 +- .../Intl/Resources/data/currencies/sr.json | 8 +- .../Resources/data/currencies/sr_Latn.json | 8 +- .../Intl/Resources/data/currencies/sv.json | 6 +- .../Intl/Resources/data/currencies/sw.json | 2 +- .../Intl/Resources/data/currencies/sw_CD.json | 2 +- .../Intl/Resources/data/currencies/sw_KE.json | 345 ++++++++++ .../Intl/Resources/data/currencies/sw_UG.json | 2 +- .../Intl/Resources/data/currencies/ta.json | 4 +- .../Intl/Resources/data/currencies/ta_LK.json | 2 +- .../Intl/Resources/data/currencies/ta_MY.json | 2 +- .../Intl/Resources/data/currencies/ta_SG.json | 2 +- .../Intl/Resources/data/currencies/te.json | 6 +- .../Intl/Resources/data/currencies/tg.json | 2 +- .../Intl/Resources/data/currencies/th.json | 2 +- .../Intl/Resources/data/currencies/ti.json | 2 +- .../Intl/Resources/data/currencies/ti_ER.json | 2 +- .../Intl/Resources/data/currencies/tk.json | 2 +- .../Intl/Resources/data/currencies/tl.json | 6 +- .../Intl/Resources/data/currencies/to.json | 26 +- .../Intl/Resources/data/currencies/tr.json | 14 +- .../Intl/Resources/data/currencies/tt.json | 2 +- .../Intl/Resources/data/currencies/ug.json | 2 +- .../Intl/Resources/data/currencies/uk.json | 2 +- .../Intl/Resources/data/currencies/ur.json | 12 +- .../Intl/Resources/data/currencies/ur_IN.json | 2 +- .../Intl/Resources/data/currencies/uz.json | 2 +- .../Resources/data/currencies/uz_Arab.json | 2 +- .../Resources/data/currencies/uz_Cyrl.json | 2 +- .../Intl/Resources/data/currencies/vi.json | 34 +- .../Intl/Resources/data/currencies/wo.json | 2 +- .../Intl/Resources/data/currencies/xh.json | 2 +- .../Intl/Resources/data/currencies/yi.json | 2 +- .../Intl/Resources/data/currencies/yo.json | 2 +- .../Intl/Resources/data/currencies/yo_BJ.json | 14 +- .../Intl/Resources/data/currencies/zh.json | 8 +- .../Intl/Resources/data/currencies/zh_HK.json | 2 +- .../Resources/data/currencies/zh_Hans_HK.json | 2 +- .../Resources/data/currencies/zh_Hans_MO.json | 2 +- .../Resources/data/currencies/zh_Hans_SG.json | 2 +- .../Resources/data/currencies/zh_Hant.json | 6 +- .../Resources/data/currencies/zh_Hant_HK.json | 2 +- .../Resources/data/currencies/zh_Hant_MO.json | 2 +- .../Intl/Resources/data/currencies/zh_MO.json | 2 +- .../Intl/Resources/data/currencies/zh_SG.json | 2 +- .../Intl/Resources/data/currencies/zu.json | 4 +- .../Intl/Resources/data/git-info.txt | 4 +- .../Intl/Resources/data/languages/af.json | 12 +- .../Intl/Resources/data/languages/ak.json | 2 +- .../Intl/Resources/data/languages/am.json | 3 +- .../Intl/Resources/data/languages/ar.json | 5 +- .../Intl/Resources/data/languages/ar_EG.json | 2 +- .../Intl/Resources/data/languages/ar_LY.json | 2 +- .../Intl/Resources/data/languages/ar_SA.json | 22 +- .../Intl/Resources/data/languages/as.json | 4 +- .../Intl/Resources/data/languages/az.json | 3 +- .../Resources/data/languages/az_Cyrl.json | 2 +- .../Intl/Resources/data/languages/be.json | 18 +- .../Intl/Resources/data/languages/bg.json | 17 +- .../Intl/Resources/data/languages/bm.json | 2 +- .../Intl/Resources/data/languages/bn.json | 7 +- .../Intl/Resources/data/languages/bn_IN.json | 2 +- .../Intl/Resources/data/languages/bo.json | 2 +- .../Intl/Resources/data/languages/br.json | 3 +- .../Intl/Resources/data/languages/bs.json | 8 +- .../Resources/data/languages/bs_Cyrl.json | 93 ++- .../Intl/Resources/data/languages/ca.json | 2 +- .../Intl/Resources/data/languages/ce.json | 2 +- .../Intl/Resources/data/languages/cs.json | 2 +- .../Intl/Resources/data/languages/cy.json | 14 +- .../Intl/Resources/data/languages/da.json | 3 +- .../Intl/Resources/data/languages/de.json | 3 +- .../Intl/Resources/data/languages/de_AT.json | 2 +- .../Intl/Resources/data/languages/de_CH.json | 9 +- .../Intl/Resources/data/languages/de_LU.json | 2 +- .../Intl/Resources/data/languages/dz.json | 2 +- .../Intl/Resources/data/languages/ee.json | 2 +- .../Intl/Resources/data/languages/el.json | 2 +- .../Intl/Resources/data/languages/en.json | 5 +- .../Intl/Resources/data/languages/en_001.json | 7 + .../Intl/Resources/data/languages/en_AU.json | 20 +- .../Intl/Resources/data/languages/en_CA.json | 24 +- .../Intl/Resources/data/languages/en_GB.json | 24 +- .../Intl/Resources/data/languages/en_IN.json | 5 +- .../Intl/Resources/data/languages/en_NZ.json | 2 +- .../Intl/Resources/data/languages/eo.json | 2 +- .../Intl/Resources/data/languages/es.json | 5 +- .../Intl/Resources/data/languages/es_419.json | 25 +- .../Intl/Resources/data/languages/es_AR.json | 2 +- .../Intl/Resources/data/languages/es_BO.json | 2 +- .../Intl/Resources/data/languages/es_CL.json | 2 +- .../Intl/Resources/data/languages/es_CO.json | 2 +- .../Intl/Resources/data/languages/es_CR.json | 2 +- .../Intl/Resources/data/languages/es_DO.json | 2 +- .../Intl/Resources/data/languages/es_EC.json | 2 +- .../Intl/Resources/data/languages/es_GT.json | 2 +- .../Intl/Resources/data/languages/es_HN.json | 2 +- .../Intl/Resources/data/languages/es_MX.json | 11 +- .../Intl/Resources/data/languages/es_NI.json | 2 +- .../Intl/Resources/data/languages/es_PA.json | 2 +- .../Intl/Resources/data/languages/es_PE.json | 2 +- .../Intl/Resources/data/languages/es_PR.json | 2 +- .../Intl/Resources/data/languages/es_PY.json | 2 +- .../Intl/Resources/data/languages/es_SV.json | 2 +- .../Intl/Resources/data/languages/es_US.json | 10 +- .../Intl/Resources/data/languages/es_VE.json | 2 +- .../Intl/Resources/data/languages/et.json | 12 +- .../Intl/Resources/data/languages/eu.json | 34 +- .../Intl/Resources/data/languages/fa.json | 4 +- .../Intl/Resources/data/languages/fa_AF.json | 2 +- .../Intl/Resources/data/languages/ff.json | 2 +- .../Intl/Resources/data/languages/fi.json | 2 +- .../Intl/Resources/data/languages/fo.json | 3 +- .../Intl/Resources/data/languages/fr.json | 2 +- .../Intl/Resources/data/languages/fr_BE.json | 2 +- .../Intl/Resources/data/languages/fr_CA.json | 25 +- .../Intl/Resources/data/languages/fr_CH.json | 2 +- .../Intl/Resources/data/languages/fy.json | 2 +- .../Intl/Resources/data/languages/ga.json | 55 +- .../Intl/Resources/data/languages/gd.json | 5 +- .../Intl/Resources/data/languages/gl.json | 14 +- .../Intl/Resources/data/languages/gu.json | 3 +- .../Intl/Resources/data/languages/gv.json | 2 +- .../Intl/Resources/data/languages/ha.json | 180 ++++- .../Intl/Resources/data/languages/ha_NE.json | 53 +- .../Intl/Resources/data/languages/he.json | 10 +- .../Intl/Resources/data/languages/hi.json | 3 +- .../Intl/Resources/data/languages/hr.json | 2 +- .../Intl/Resources/data/languages/hu.json | 4 +- .../Intl/Resources/data/languages/hy.json | 7 +- .../Intl/Resources/data/languages/ia.json | 2 +- .../Intl/Resources/data/languages/id.json | 2 +- .../Intl/Resources/data/languages/ig.json | 4 +- .../Intl/Resources/data/languages/ii.json | 2 +- .../Intl/Resources/data/languages/in.json | 2 +- .../Intl/Resources/data/languages/is.json | 5 +- .../Intl/Resources/data/languages/it.json | 2 +- .../Intl/Resources/data/languages/iw.json | 10 +- .../Intl/Resources/data/languages/ja.json | 2 +- .../Intl/Resources/data/languages/jv.json | 3 +- .../Intl/Resources/data/languages/ka.json | 3 +- .../Intl/Resources/data/languages/ki.json | 2 +- .../Intl/Resources/data/languages/kk.json | 4 +- .../Intl/Resources/data/languages/kl.json | 2 +- .../Intl/Resources/data/languages/km.json | 5 +- .../Intl/Resources/data/languages/kn.json | 5 +- .../Intl/Resources/data/languages/ko.json | 2 +- .../Intl/Resources/data/languages/ks.json | 2 +- .../Intl/Resources/data/languages/ku.json | 2 +- .../Intl/Resources/data/languages/kw.json | 2 +- .../Intl/Resources/data/languages/ky.json | 4 +- .../Intl/Resources/data/languages/lb.json | 3 +- .../Intl/Resources/data/languages/lg.json | 2 +- .../Intl/Resources/data/languages/ln.json | 2 +- .../Intl/Resources/data/languages/lo.json | 2 +- .../Intl/Resources/data/languages/lt.json | 2 +- .../Intl/Resources/data/languages/lu.json | 2 +- .../Intl/Resources/data/languages/lv.json | 4 +- .../Intl/Resources/data/languages/meta.json | 3 +- .../Intl/Resources/data/languages/mg.json | 2 +- .../Intl/Resources/data/languages/mi.json | 2 +- .../Intl/Resources/data/languages/mk.json | 2 +- .../Intl/Resources/data/languages/ml.json | 5 +- .../Intl/Resources/data/languages/mn.json | 8 +- .../Intl/Resources/data/languages/mo.json | 2 +- .../Intl/Resources/data/languages/mr.json | 3 +- .../Intl/Resources/data/languages/ms.json | 2 +- .../Intl/Resources/data/languages/mt.json | 2 +- .../Intl/Resources/data/languages/my.json | 5 +- .../Intl/Resources/data/languages/nb.json | 3 +- .../Intl/Resources/data/languages/nd.json | 2 +- .../Intl/Resources/data/languages/ne.json | 3 +- .../Intl/Resources/data/languages/nl.json | 2 +- .../Intl/Resources/data/languages/nn.json | 2 +- .../Intl/Resources/data/languages/no.json | 3 +- .../Intl/Resources/data/languages/om.json | 2 +- .../Intl/Resources/data/languages/or.json | 2 +- .../Intl/Resources/data/languages/os.json | 2 +- .../Intl/Resources/data/languages/pa.json | 5 +- .../Resources/data/languages/pa_Arab.json | 2 +- .../Intl/Resources/data/languages/pl.json | 2 +- .../Intl/Resources/data/languages/ps.json | 68 +- .../Intl/Resources/data/languages/ps_PK.json | 2 +- .../Intl/Resources/data/languages/pt.json | 4 +- .../Intl/Resources/data/languages/pt_PT.json | 9 +- .../Intl/Resources/data/languages/qu.json | 113 +++- .../Intl/Resources/data/languages/rm.json | 2 +- .../Intl/Resources/data/languages/rn.json | 2 +- .../Intl/Resources/data/languages/ro.json | 2 +- .../Intl/Resources/data/languages/ro_MD.json | 2 +- .../Intl/Resources/data/languages/ru.json | 8 +- .../Intl/Resources/data/languages/rw.json | 2 +- .../Intl/Resources/data/languages/sd.json | 4 +- .../Intl/Resources/data/languages/se.json | 2 +- .../Intl/Resources/data/languages/se_FI.json | 5 +- .../Intl/Resources/data/languages/sg.json | 2 +- .../Intl/Resources/data/languages/sh.json | 7 +- .../Intl/Resources/data/languages/sh_BA.json | 5 +- .../Intl/Resources/data/languages/si.json | 3 +- .../Intl/Resources/data/languages/sk.json | 5 +- .../Intl/Resources/data/languages/sl.json | 2 +- .../Intl/Resources/data/languages/sn.json | 2 +- .../Intl/Resources/data/languages/so.json | 2 +- .../Intl/Resources/data/languages/sq.json | 2 +- .../Intl/Resources/data/languages/sr.json | 7 +- .../Intl/Resources/data/languages/sr_BA.json | 5 +- .../Resources/data/languages/sr_Cyrl_BA.json | 5 +- .../Resources/data/languages/sr_Cyrl_ME.json | 2 +- .../Resources/data/languages/sr_Cyrl_XK.json | 2 +- .../Resources/data/languages/sr_Latn.json | 7 +- .../Resources/data/languages/sr_Latn_BA.json | 5 +- .../Resources/data/languages/sr_Latn_ME.json | 2 +- .../Resources/data/languages/sr_Latn_XK.json | 2 +- .../Intl/Resources/data/languages/sr_ME.json | 2 +- .../Intl/Resources/data/languages/sr_XK.json | 2 +- .../Intl/Resources/data/languages/sv.json | 8 +- .../Intl/Resources/data/languages/sv_FI.json | 6 - .../Intl/Resources/data/languages/sw.json | 4 +- .../Intl/Resources/data/languages/sw_CD.json | 2 +- .../Intl/Resources/data/languages/sw_KE.json | 4 +- .../Intl/Resources/data/languages/ta.json | 5 +- .../Intl/Resources/data/languages/te.json | 3 +- .../Intl/Resources/data/languages/tg.json | 16 +- .../Intl/Resources/data/languages/th.json | 5 +- .../Intl/Resources/data/languages/ti.json | 2 +- .../Intl/Resources/data/languages/tk.json | 14 +- .../Intl/Resources/data/languages/tl.json | 2 +- .../Intl/Resources/data/languages/to.json | 3 +- .../Intl/Resources/data/languages/tr.json | 18 +- .../Intl/Resources/data/languages/tt.json | 7 +- .../Intl/Resources/data/languages/ug.json | 2 +- .../Intl/Resources/data/languages/uk.json | 4 +- .../Intl/Resources/data/languages/ur.json | 4 +- .../Intl/Resources/data/languages/ur_IN.json | 2 +- .../Intl/Resources/data/languages/uz.json | 3 +- .../Resources/data/languages/uz_Arab.json | 2 +- .../Resources/data/languages/uz_Cyrl.json | 2 +- .../Intl/Resources/data/languages/vi.json | 4 +- .../Intl/Resources/data/languages/wo.json | 2 +- .../Intl/Resources/data/languages/xh.json | 2 +- .../Intl/Resources/data/languages/yi.json | 2 +- .../Intl/Resources/data/languages/yo.json | 31 +- .../Intl/Resources/data/languages/yo_BJ.json | 102 +-- .../Intl/Resources/data/languages/zh.json | 2 +- .../Intl/Resources/data/languages/zh_HK.json | 3 +- .../Resources/data/languages/zh_Hant.json | 2 +- .../Resources/data/languages/zh_Hant_HK.json | 3 +- .../Intl/Resources/data/languages/zu.json | 2 +- .../Intl/Resources/data/locales/af.json | 37 +- .../Intl/Resources/data/locales/am.json | 7 +- .../Intl/Resources/data/locales/ar.json | 13 +- .../Intl/Resources/data/locales/ar_SA.json | 1 - .../Intl/Resources/data/locales/as.json | 19 +- .../Intl/Resources/data/locales/az.json | 19 +- .../Intl/Resources/data/locales/az_Cyrl.json | 1 + .../Intl/Resources/data/locales/be.json | 9 +- .../Intl/Resources/data/locales/bg.json | 25 +- .../Intl/Resources/data/locales/bn.json | 5 +- .../Intl/Resources/data/locales/br.json | 7 +- .../Intl/Resources/data/locales/bs.json | 19 +- .../Intl/Resources/data/locales/bs_Cyrl.json | 129 ++-- .../Intl/Resources/data/locales/ca.json | 11 +- .../Intl/Resources/data/locales/ce.json | 3 +- .../Intl/Resources/data/locales/cs.json | 1 + .../Intl/Resources/data/locales/cy.json | 51 +- .../Intl/Resources/data/locales/da.json | 3 +- .../Intl/Resources/data/locales/de.json | 3 +- .../Intl/Resources/data/locales/de_CH.json | 1 + .../Intl/Resources/data/locales/dz.json | 3 +- .../Intl/Resources/data/locales/ee.json | 3 +- .../Intl/Resources/data/locales/el.json | 1 + .../Intl/Resources/data/locales/en.json | 1 + .../data/locales/{en_GB.json => en_001.json} | 0 .../Intl/Resources/data/locales/eo.json | 3 +- .../Intl/Resources/data/locales/es.json | 15 +- .../Intl/Resources/data/locales/es_419.json | 10 +- .../Intl/Resources/data/locales/es_AR.json | 7 - .../Intl/Resources/data/locales/es_BO.json | 7 - .../Intl/Resources/data/locales/es_CL.json | 7 - .../Intl/Resources/data/locales/es_CO.json | 7 - .../Intl/Resources/data/locales/es_CR.json | 7 - .../Intl/Resources/data/locales/es_DO.json | 7 - .../Intl/Resources/data/locales/es_EC.json | 7 - .../Intl/Resources/data/locales/es_GT.json | 7 - .../Intl/Resources/data/locales/es_HN.json | 7 - .../Intl/Resources/data/locales/es_MX.json | 12 +- .../Intl/Resources/data/locales/es_NI.json | 7 - .../Intl/Resources/data/locales/es_PA.json | 7 - .../Intl/Resources/data/locales/es_PE.json | 7 - .../Intl/Resources/data/locales/es_PY.json | 7 - .../Intl/Resources/data/locales/es_VE.json | 7 - .../Intl/Resources/data/locales/et.json | 9 +- .../Intl/Resources/data/locales/eu.json | 9 +- .../Intl/Resources/data/locales/fa.json | 23 +- .../Intl/Resources/data/locales/fa_AF.json | 4 +- .../Intl/Resources/data/locales/fi.json | 1 + .../Intl/Resources/data/locales/fo.json | 5 +- .../Intl/Resources/data/locales/fr.json | 1 + .../Intl/Resources/data/locales/fy.json | 3 +- .../Intl/Resources/data/locales/ga.json | 3 +- .../Intl/Resources/data/locales/gd.json | 3 +- .../Intl/Resources/data/locales/gl.json | 37 +- .../Intl/Resources/data/locales/gu.json | 3 +- .../Intl/Resources/data/locales/ha.json | 293 ++++++++- .../Intl/Resources/data/locales/ha_NE.json | 7 + .../Intl/Resources/data/locales/he.json | 5 +- .../Intl/Resources/data/locales/hi.json | 5 +- .../Intl/Resources/data/locales/hr.json | 5 +- .../Intl/Resources/data/locales/hu.json | 7 +- .../Intl/Resources/data/locales/hy.json | 3 +- .../Intl/Resources/data/locales/ia.json | 1 + .../Intl/Resources/data/locales/id.json | 37 +- .../Intl/Resources/data/locales/ig.json | 226 ++++++- .../Intl/Resources/data/locales/is.json | 3 +- .../Intl/Resources/data/locales/it.json | 1 + .../Intl/Resources/data/locales/ja.json | 1 + .../Intl/Resources/data/locales/jv.json | 14 + .../Intl/Resources/data/locales/ka.json | 5 +- .../Intl/Resources/data/locales/kk.json | 1 + .../Intl/Resources/data/locales/km.json | 3 +- .../Intl/Resources/data/locales/kn.json | 15 +- .../Intl/Resources/data/locales/ko.json | 1 + .../Intl/Resources/data/locales/ks.json | 3 +- .../Intl/Resources/data/locales/ku.json | 1 + .../Intl/Resources/data/locales/ky.json | 1 + .../Intl/Resources/data/locales/lb.json | 1 + .../Intl/Resources/data/locales/lo.json | 7 +- .../Intl/Resources/data/locales/lt.json | 1 + .../Intl/Resources/data/locales/lv.json | 13 +- .../Intl/Resources/data/locales/meta.json | 1 + .../Intl/Resources/data/locales/mk.json | 1 + .../Intl/Resources/data/locales/ml.json | 7 +- .../Intl/Resources/data/locales/mn.json | 11 +- .../Intl/Resources/data/locales/mr.json | 3 +- .../Intl/Resources/data/locales/ms.json | 1 + .../Intl/Resources/data/locales/mt.json | 1 + .../Intl/Resources/data/locales/my.json | 1 + .../Intl/Resources/data/locales/nb.json | 1 + .../Intl/Resources/data/locales/ne.json | 17 +- .../Intl/Resources/data/locales/nl.json | 1 + .../Intl/Resources/data/locales/nn.json | 1 + .../Intl/Resources/data/locales/om.json | 1 + .../Intl/Resources/data/locales/or.json | 9 +- .../Intl/Resources/data/locales/os.json | 1 + .../Intl/Resources/data/locales/pa.json | 9 +- .../Intl/Resources/data/locales/pl.json | 1 + .../Intl/Resources/data/locales/ps.json | 331 +++++----- .../Intl/Resources/data/locales/ps_PK.json | 2 +- .../Intl/Resources/data/locales/pt.json | 3 +- .../Intl/Resources/data/locales/pt_PT.json | 1 - .../Intl/Resources/data/locales/qu.json | 137 ++++ .../Intl/Resources/data/locales/rm.json | 3 +- .../Intl/Resources/data/locales/ro.json | 3 +- .../Intl/Resources/data/locales/ru.json | 1 + .../Intl/Resources/data/locales/rw.json | 4 +- .../Intl/Resources/data/locales/sd.json | 33 +- .../Intl/Resources/data/locales/se.json | 3 +- .../Intl/Resources/data/locales/si.json | 25 +- .../Intl/Resources/data/locales/sk.json | 3 +- .../Intl/Resources/data/locales/sl.json | 3 +- .../Intl/Resources/data/locales/so.json | 5 +- .../Intl/Resources/data/locales/sq.json | 1 + .../Intl/Resources/data/locales/sr.json | 1 + .../Intl/Resources/data/locales/sr_Latn.json | 1 + .../Intl/Resources/data/locales/sv.json | 7 +- .../Intl/Resources/data/locales/sv_FI.json | 6 - .../Intl/Resources/data/locales/sw.json | 15 +- .../Intl/Resources/data/locales/sw_CD.json | 2 +- .../Intl/Resources/data/locales/sw_KE.json | 6 +- .../Intl/Resources/data/locales/ta.json | 25 +- .../Intl/Resources/data/locales/te.json | 17 +- .../Intl/Resources/data/locales/tg.json | 7 +- .../Intl/Resources/data/locales/th.json | 5 +- .../Intl/Resources/data/locales/ti.json | 1 + .../Intl/Resources/data/locales/tk.json | 7 +- .../Intl/Resources/data/locales/to.json | 9 +- .../Intl/Resources/data/locales/tr.json | 29 +- .../Intl/Resources/data/locales/tt.json | 7 +- .../Intl/Resources/data/locales/ug.json | 1 + .../Intl/Resources/data/locales/uk.json | 1 + .../Intl/Resources/data/locales/ur.json | 15 +- .../Intl/Resources/data/locales/uz.json | 1 + .../Intl/Resources/data/locales/uz_Cyrl.json | 1 + .../Intl/Resources/data/locales/vi.json | 9 +- .../Intl/Resources/data/locales/wo.json | 3 +- .../Intl/Resources/data/locales/yi.json | 3 +- .../Intl/Resources/data/locales/yo.json | 172 ++--- .../Intl/Resources/data/locales/yo_BJ.json | 149 +++-- .../Intl/Resources/data/locales/zh.json | 1 + .../Intl/Resources/data/locales/zh_Hant.json | 3 +- .../Resources/data/locales/zh_Hant_HK.json | 2 - .../Intl/Resources/data/locales/zu.json | 7 +- .../Intl/Resources/data/regions/af.json | 8 +- .../Intl/Resources/data/regions/ak.json | 3 +- .../Intl/Resources/data/regions/am.json | 6 +- .../Intl/Resources/data/regions/ar.json | 7 +- .../Intl/Resources/data/regions/ar_LY.json | 2 +- .../Intl/Resources/data/regions/ar_SA.json | 3 +- .../Intl/Resources/data/regions/as.json | 6 +- .../Intl/Resources/data/regions/az.json | 6 +- .../Intl/Resources/data/regions/az_Cyrl.json | 2 +- .../Intl/Resources/data/regions/be.json | 12 +- .../Intl/Resources/data/regions/bg.json | 6 +- .../Intl/Resources/data/regions/bm.json | 3 +- .../Intl/Resources/data/regions/bn.json | 6 +- .../Intl/Resources/data/regions/bn_IN.json | 2 +- .../Intl/Resources/data/regions/bo.json | 2 +- .../Intl/Resources/data/regions/bo_IN.json | 2 +- .../Intl/Resources/data/regions/br.json | 8 +- .../Intl/Resources/data/regions/bs.json | 8 +- .../Intl/Resources/data/regions/bs_Cyrl.json | 33 +- .../Intl/Resources/data/regions/ca.json | 16 +- .../Intl/Resources/data/regions/ce.json | 3 +- .../Intl/Resources/data/regions/cs.json | 2 +- .../Intl/Resources/data/regions/cy.json | 4 +- .../Intl/Resources/data/regions/da.json | 8 +- .../Intl/Resources/data/regions/de.json | 6 +- .../Intl/Resources/data/regions/de_AT.json | 2 +- .../Intl/Resources/data/regions/de_CH.json | 2 +- .../Intl/Resources/data/regions/dz.json | 3 +- .../Intl/Resources/data/regions/ee.json | 3 +- .../Intl/Resources/data/regions/el.json | 2 +- .../Intl/Resources/data/regions/en.json | 2 +- .../data/regions/{en_GB.json => en_001.json} | 2 +- .../Intl/Resources/data/regions/en_AU.json | 10 + .../Intl/Resources/data/regions/eo.json | 3 +- .../Intl/Resources/data/regions/es.json | 4 +- .../Intl/Resources/data/regions/es_419.json | 7 +- .../Intl/Resources/data/regions/es_AR.json | 6 +- .../Intl/Resources/data/regions/es_BO.json | 3 +- .../Intl/Resources/data/regions/es_CL.json | 3 +- .../Intl/Resources/data/regions/es_CO.json | 6 +- .../Intl/Resources/data/regions/es_CR.json | 3 +- .../Intl/Resources/data/regions/es_DO.json | 3 +- .../Intl/Resources/data/regions/es_EC.json | 3 +- .../Intl/Resources/data/regions/es_GT.json | 3 +- .../Intl/Resources/data/regions/es_HN.json | 3 +- .../Intl/Resources/data/regions/es_MX.json | 7 +- .../Intl/Resources/data/regions/es_NI.json | 3 +- .../Intl/Resources/data/regions/es_PA.json | 3 +- .../Intl/Resources/data/regions/es_PE.json | 3 +- .../Intl/Resources/data/regions/es_PR.json | 2 +- .../Intl/Resources/data/regions/es_PY.json | 3 +- .../Intl/Resources/data/regions/es_SV.json | 2 +- .../Intl/Resources/data/regions/es_US.json | 7 +- .../Intl/Resources/data/regions/es_VE.json | 3 +- .../Intl/Resources/data/regions/et.json | 2 +- .../Intl/Resources/data/regions/eu.json | 3 +- .../Intl/Resources/data/regions/fa.json | 13 +- .../Intl/Resources/data/regions/fa_AF.json | 3 +- .../Intl/Resources/data/regions/ff.json | 3 +- .../Intl/Resources/data/regions/fi.json | 2 +- .../Intl/Resources/data/regions/fo.json | 7 +- .../Intl/Resources/data/regions/fr.json | 2 +- .../Intl/Resources/data/regions/fr_BE.json | 2 +- .../Intl/Resources/data/regions/fr_CA.json | 2 +- .../Intl/Resources/data/regions/fy.json | 3 +- .../Intl/Resources/data/regions/ga.json | 8 +- .../Intl/Resources/data/regions/gd.json | 6 +- .../Intl/Resources/data/regions/gl.json | 12 +- .../Intl/Resources/data/regions/gu.json | 6 +- .../Intl/Resources/data/regions/gv.json | 2 +- .../Intl/Resources/data/regions/ha.json | 45 +- .../Intl/Resources/data/regions/ha_NE.json | 229 ------- .../Intl/Resources/data/regions/he.json | 4 +- .../Intl/Resources/data/regions/hi.json | 6 +- .../Intl/Resources/data/regions/hr.json | 6 +- .../Intl/Resources/data/regions/hu.json | 4 +- .../Intl/Resources/data/regions/hy.json | 6 +- .../Intl/Resources/data/regions/ia.json | 2 +- .../Intl/Resources/data/regions/id.json | 24 +- .../Intl/Resources/data/regions/ig.json | 200 +++++- .../Intl/Resources/data/regions/ii.json | 2 +- .../Intl/Resources/data/regions/in.json | 24 +- .../Intl/Resources/data/regions/is.json | 6 +- .../Intl/Resources/data/regions/it.json | 6 +- .../Intl/Resources/data/regions/iw.json | 4 +- .../Intl/Resources/data/regions/ja.json | 4 +- .../Intl/Resources/data/regions/jv.json | 13 +- .../Intl/Resources/data/regions/ka.json | 6 +- .../Intl/Resources/data/regions/ki.json | 3 +- .../Intl/Resources/data/regions/kk.json | 2 +- .../Intl/Resources/data/regions/kl.json | 2 +- .../Intl/Resources/data/regions/km.json | 6 +- .../Intl/Resources/data/regions/kn.json | 10 +- .../Intl/Resources/data/regions/ko.json | 2 +- .../Intl/Resources/data/regions/ko_KP.json | 2 +- .../Intl/Resources/data/regions/ks.json | 3 +- .../Intl/Resources/data/regions/ku.json | 2 +- .../Intl/Resources/data/regions/kw.json | 2 +- .../Intl/Resources/data/regions/ky.json | 4 +- .../Intl/Resources/data/regions/lb.json | 2 +- .../Intl/Resources/data/regions/lg.json | 3 +- .../Intl/Resources/data/regions/ln.json | 3 +- .../Intl/Resources/data/regions/lo.json | 6 +- .../Intl/Resources/data/regions/lt.json | 4 +- .../Intl/Resources/data/regions/lu.json | 3 +- .../Intl/Resources/data/regions/lv.json | 8 +- .../Intl/Resources/data/regions/meta.json | 2 +- .../Intl/Resources/data/regions/mg.json | 3 +- .../Intl/Resources/data/regions/mi.json | 2 +- .../Intl/Resources/data/regions/mk.json | 2 +- .../Intl/Resources/data/regions/ml.json | 7 +- .../Intl/Resources/data/regions/mn.json | 10 +- .../Intl/Resources/data/regions/mo.json | 4 +- .../Intl/Resources/data/regions/mr.json | 6 +- .../Intl/Resources/data/regions/ms.json | 4 +- .../Intl/Resources/data/regions/mt.json | 2 +- .../Intl/Resources/data/regions/my.json | 2 +- .../Intl/Resources/data/regions/nb.json | 4 +- .../Intl/Resources/data/regions/nd.json | 3 +- .../Intl/Resources/data/regions/ne.json | 13 +- .../Intl/Resources/data/regions/nl.json | 2 +- .../Intl/Resources/data/regions/nn.json | 2 +- .../Intl/Resources/data/regions/no.json | 4 +- .../Intl/Resources/data/regions/om.json | 2 +- .../Intl/Resources/data/regions/or.json | 4 +- .../Intl/Resources/data/regions/os.json | 2 +- .../Intl/Resources/data/regions/pa.json | 6 +- .../Intl/Resources/data/regions/pa_Arab.json | 2 +- .../Intl/Resources/data/regions/pl.json | 2 +- .../Intl/Resources/data/regions/ps.json | 14 +- .../Intl/Resources/data/regions/ps_PK.json | 2 +- .../Intl/Resources/data/regions/pt.json | 6 +- .../Intl/Resources/data/regions/pt_PT.json | 6 +- .../Intl/Resources/data/regions/qu.json | 66 +- .../Intl/Resources/data/regions/rm.json | 3 +- .../Intl/Resources/data/regions/rn.json | 3 +- .../Intl/Resources/data/regions/ro.json | 4 +- .../Intl/Resources/data/regions/ro_MD.json | 2 +- .../Intl/Resources/data/regions/ru.json | 2 +- .../Intl/Resources/data/regions/ru_UA.json | 2 +- .../Intl/Resources/data/regions/rw.json | 4 +- .../Intl/Resources/data/regions/sd.json | 6 +- .../Intl/Resources/data/regions/se.json | 3 +- .../Intl/Resources/data/regions/se_FI.json | 2 +- .../Intl/Resources/data/regions/sg.json | 3 +- .../Intl/Resources/data/regions/sh.json | 4 +- .../Intl/Resources/data/regions/sh_BA.json | 2 +- .../Intl/Resources/data/regions/si.json | 12 +- .../Intl/Resources/data/regions/sk.json | 6 +- .../Intl/Resources/data/regions/sl.json | 4 +- .../Intl/Resources/data/regions/sn.json | 3 +- .../Intl/Resources/data/regions/so.json | 6 +- .../Intl/Resources/data/regions/sq.json | 2 +- .../Intl/Resources/data/regions/sr.json | 4 +- .../Intl/Resources/data/regions/sr_BA.json | 2 +- .../Resources/data/regions/sr_Cyrl_BA.json | 2 +- .../Resources/data/regions/sr_Cyrl_ME.json | 2 +- .../Resources/data/regions/sr_Cyrl_XK.json | 2 +- .../Intl/Resources/data/regions/sr_Latn.json | 4 +- .../Resources/data/regions/sr_Latn_BA.json | 2 +- .../Resources/data/regions/sr_Latn_ME.json | 2 +- .../Resources/data/regions/sr_Latn_XK.json | 2 +- .../Intl/Resources/data/regions/sr_ME.json | 2 +- .../Intl/Resources/data/regions/sr_XK.json | 2 +- .../Intl/Resources/data/regions/sv.json | 4 +- .../Intl/Resources/data/regions/sw.json | 8 +- .../Intl/Resources/data/regions/sw_CD.json | 2 +- .../Intl/Resources/data/regions/sw_KE.json | 6 +- .../Intl/Resources/data/regions/ta.json | 14 +- .../Intl/Resources/data/regions/te.json | 12 +- .../Intl/Resources/data/regions/tg.json | 4 +- .../Intl/Resources/data/regions/th.json | 4 +- .../Intl/Resources/data/regions/ti.json | 2 +- .../Intl/Resources/data/regions/tk.json | 4 +- .../Intl/Resources/data/regions/tl.json | 2 +- .../Intl/Resources/data/regions/to.json | 10 +- .../Intl/Resources/data/regions/tr.json | 10 +- .../Intl/Resources/data/regions/tt.json | 4 +- .../Intl/Resources/data/regions/ug.json | 2 +- .../Intl/Resources/data/regions/uk.json | 2 +- .../Intl/Resources/data/regions/ur.json | 8 +- .../Intl/Resources/data/regions/ur_IN.json | 2 +- .../Intl/Resources/data/regions/uz.json | 4 +- .../Intl/Resources/data/regions/uz_Arab.json | 2 +- .../Intl/Resources/data/regions/uz_Cyrl.json | 2 +- .../Intl/Resources/data/regions/vi.json | 8 +- .../Intl/Resources/data/regions/wo.json | 4 +- .../Intl/Resources/data/regions/xh.json | 2 +- .../Intl/Resources/data/regions/yi.json | 3 +- .../Intl/Resources/data/regions/yo.json | 16 +- .../Intl/Resources/data/regions/yo_BJ.json | 14 +- .../Intl/Resources/data/regions/zh.json | 2 +- .../Intl/Resources/data/regions/zh_HK.json | 2 +- .../Intl/Resources/data/regions/zh_Hant.json | 4 +- .../Resources/data/regions/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/regions/zu.json | 6 +- .../Intl/Resources/data/scripts/af.json | 6 +- .../Intl/Resources/data/scripts/am.json | 5 +- .../Intl/Resources/data/scripts/ar.json | 2 +- .../Intl/Resources/data/scripts/as.json | 2 +- .../Intl/Resources/data/scripts/az.json | 2 +- .../Intl/Resources/data/scripts/az_Cyrl.json | 2 +- .../Intl/Resources/data/scripts/be.json | 6 +- .../Intl/Resources/data/scripts/bg.json | 12 +- .../Intl/Resources/data/scripts/bn.json | 2 +- .../Intl/Resources/data/scripts/bo.json | 2 +- .../Intl/Resources/data/scripts/br.json | 13 +- .../Intl/Resources/data/scripts/bs.json | 2 +- .../Intl/Resources/data/scripts/bs_Cyrl.json | 30 +- .../Intl/Resources/data/scripts/ca.json | 2 +- .../Intl/Resources/data/scripts/ce.json | 2 +- .../Intl/Resources/data/scripts/cs.json | 2 +- .../Intl/Resources/data/scripts/cy.json | 3 +- .../Intl/Resources/data/scripts/da.json | 2 +- .../Intl/Resources/data/scripts/de.json | 4 +- .../Intl/Resources/data/scripts/dz.json | 2 +- .../Intl/Resources/data/scripts/ee.json | 2 +- .../Intl/Resources/data/scripts/el.json | 2 +- .../Intl/Resources/data/scripts/en.json | 3 +- .../Intl/Resources/data/scripts/en_AU.json | 5 +- .../Intl/Resources/data/scripts/en_GB.json | 6 - .../Intl/Resources/data/scripts/en_IN.json | 2 +- .../Intl/Resources/data/scripts/es.json | 2 +- .../Intl/Resources/data/scripts/es_419.json | 2 +- .../Intl/Resources/data/scripts/es_MX.json | 5 +- .../Intl/Resources/data/scripts/es_US.json | 5 +- .../Intl/Resources/data/scripts/et.json | 2 +- .../Intl/Resources/data/scripts/eu.json | 2 +- .../Intl/Resources/data/scripts/fa.json | 4 +- .../Intl/Resources/data/scripts/fa_AF.json | 2 +- .../Intl/Resources/data/scripts/fi.json | 12 +- .../Intl/Resources/data/scripts/fo.json | 2 +- .../Intl/Resources/data/scripts/fr.json | 2 +- .../Intl/Resources/data/scripts/fr_CA.json | 2 +- .../Intl/Resources/data/scripts/fy.json | 2 +- .../Intl/Resources/data/scripts/ga.json | 2 +- .../Intl/Resources/data/scripts/gd.json | 7 +- .../Intl/Resources/data/scripts/gl.json | 12 +- .../Intl/Resources/data/scripts/gu.json | 2 +- .../Intl/Resources/data/scripts/ha.json | 16 +- .../Intl/Resources/data/scripts/ha_NE.json | 12 - .../Intl/Resources/data/scripts/he.json | 8 +- .../Intl/Resources/data/scripts/hi.json | 2 +- .../Intl/Resources/data/scripts/hr.json | 2 +- .../Intl/Resources/data/scripts/hu.json | 5 +- .../Intl/Resources/data/scripts/hy.json | 2 +- .../Intl/Resources/data/scripts/ia.json | 2 +- .../Intl/Resources/data/scripts/id.json | 5 +- .../Intl/Resources/data/scripts/ig.json | 4 +- .../Intl/Resources/data/scripts/ii.json | 2 +- .../Intl/Resources/data/scripts/in.json | 5 +- .../Intl/Resources/data/scripts/is.json | 2 +- .../Intl/Resources/data/scripts/it.json | 2 +- .../Intl/Resources/data/scripts/iw.json | 8 +- .../Intl/Resources/data/scripts/ja.json | 8 +- .../Intl/Resources/data/scripts/jv.json | 3 +- .../Intl/Resources/data/scripts/ka.json | 2 +- .../Intl/Resources/data/scripts/kk.json | 2 +- .../Intl/Resources/data/scripts/km.json | 2 +- .../Intl/Resources/data/scripts/kn.json | 6 +- .../Intl/Resources/data/scripts/ko.json | 2 +- .../Intl/Resources/data/scripts/ks.json | 2 +- .../Intl/Resources/data/scripts/ku.json | 2 +- .../Intl/Resources/data/scripts/ky.json | 2 +- .../Intl/Resources/data/scripts/lb.json | 2 +- .../Intl/Resources/data/scripts/lo.json | 2 +- .../Intl/Resources/data/scripts/lt.json | 3 +- .../Intl/Resources/data/scripts/lv.json | 4 +- .../Intl/Resources/data/scripts/meta.json | 2 +- .../Intl/Resources/data/scripts/mi.json | 2 +- .../Intl/Resources/data/scripts/mk.json | 2 +- .../Intl/Resources/data/scripts/ml.json | 2 +- .../Intl/Resources/data/scripts/mn.json | 2 +- .../Intl/Resources/data/scripts/mo.json | 2 +- .../Intl/Resources/data/scripts/mr.json | 2 +- .../Intl/Resources/data/scripts/ms.json | 122 +++- .../Intl/Resources/data/scripts/mt.json | 2 +- .../Intl/Resources/data/scripts/my.json | 2 +- .../Intl/Resources/data/scripts/nb.json | 2 +- .../Intl/Resources/data/scripts/ne.json | 2 +- .../Intl/Resources/data/scripts/nl.json | 6 +- .../Intl/Resources/data/scripts/nn.json | 2 +- .../Intl/Resources/data/scripts/no.json | 2 +- .../Intl/Resources/data/scripts/om.json | 2 +- .../Intl/Resources/data/scripts/or.json | 2 +- .../Intl/Resources/data/scripts/os.json | 2 +- .../Intl/Resources/data/scripts/pa.json | 2 +- .../Intl/Resources/data/scripts/pa_Arab.json | 2 +- .../Intl/Resources/data/scripts/pl.json | 16 +- .../Intl/Resources/data/scripts/ps.json | 6 +- .../Intl/Resources/data/scripts/pt.json | 4 +- .../Intl/Resources/data/scripts/pt_PT.json | 2 +- .../Intl/Resources/data/scripts/rm.json | 2 +- .../Intl/Resources/data/scripts/ro.json | 2 +- .../Intl/Resources/data/scripts/ru.json | 4 +- .../Intl/Resources/data/scripts/sd.json | 7 +- .../Intl/Resources/data/scripts/se.json | 2 +- .../Intl/Resources/data/scripts/se_FI.json | 2 +- .../Intl/Resources/data/scripts/sh.json | 2 +- .../Intl/Resources/data/scripts/si.json | 2 +- .../Intl/Resources/data/scripts/sk.json | 2 +- .../Intl/Resources/data/scripts/sl.json | 2 +- .../Intl/Resources/data/scripts/so.json | 7 +- .../Intl/Resources/data/scripts/sq.json | 2 +- .../Intl/Resources/data/scripts/sr.json | 2 +- .../Intl/Resources/data/scripts/sr_Latn.json | 2 +- .../Intl/Resources/data/scripts/sv.json | 5 +- .../Intl/Resources/data/scripts/sw.json | 2 +- .../Intl/Resources/data/scripts/sw_KE.json | 13 + .../Intl/Resources/data/scripts/ta.json | 2 +- .../Intl/Resources/data/scripts/te.json | 2 +- .../Intl/Resources/data/scripts/tg.json | 2 +- .../Intl/Resources/data/scripts/th.json | 4 +- .../Intl/Resources/data/scripts/ti.json | 2 +- .../Intl/Resources/data/scripts/tk.json | 2 +- .../Intl/Resources/data/scripts/tl.json | 2 +- .../Intl/Resources/data/scripts/to.json | 2 +- .../Intl/Resources/data/scripts/tr.json | 9 +- .../Intl/Resources/data/scripts/tt.json | 2 +- .../Intl/Resources/data/scripts/ug.json | 2 +- .../Intl/Resources/data/scripts/uk.json | 2 +- .../Intl/Resources/data/scripts/ur.json | 2 +- .../Intl/Resources/data/scripts/uz.json | 2 +- .../Intl/Resources/data/scripts/uz_Arab.json | 2 +- .../Intl/Resources/data/scripts/uz_Cyrl.json | 2 +- .../Intl/Resources/data/scripts/vi.json | 39 +- .../Intl/Resources/data/scripts/wo.json | 2 +- .../Intl/Resources/data/scripts/yi.json | 2 +- .../Intl/Resources/data/scripts/yo.json | 6 +- .../Intl/Resources/data/scripts/yo_BJ.json | 6 +- .../Intl/Resources/data/scripts/zh.json | 3 +- .../Intl/Resources/data/scripts/zh_HK.json | 2 +- .../Intl/Resources/data/scripts/zh_Hant.json | 2 +- .../Resources/data/scripts/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/scripts/zu.json | 2 +- .../Component/Intl/Resources/data/version.txt | 2 +- .../Provider/AbstractDataProviderTest.php | 1 + .../AbstractLanguageDataProviderTest.php | 1 + 1019 files changed, 7100 insertions(+), 4509 deletions(-) delete mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/ha_NE.json create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json create mode 100644 src/Symfony/Component/Intl/Resources/data/languages/en_001.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json rename src/Symfony/Component/Intl/Resources/data/locales/{en_GB.json => en_001.json} (100%) create mode 100644 src/Symfony/Component/Intl/Resources/data/locales/ha_NE.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json rename src/Symfony/Component/Intl/Resources/data/regions/{en_GB.json => en_001.json} (91%) create mode 100644 src/Symfony/Component/Intl/Resources/data/regions/en_AU.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/regions/ha_NE.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json delete mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/ha_NE.json create mode 100644 src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index 960a18d7cf231..5722138ace148 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 '64.2'; + return '65.1'; } /** diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af.json b/src/Symfony/Component/Intl/Resources/data/currencies/af.json index 2986a2e289d8e..ca1681554fb6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af.json @@ -1,9 +1,9 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", - "Verenigde Arabiese Emirate dirham" + "Verenigde Arabiese Emirate-dirham" ], "AFN": [ "AFN", @@ -91,11 +91,11 @@ ], "BWP": [ "BWP", - "Botswana pula" + "Botswana-pula" ], "BYN": [ "BYN", - "Belo-Russiese roebel" + "Belarusiese roebel" ], "BYR": [ "BYR", @@ -106,7 +106,7 @@ "Beliziese dollar" ], "CAD": [ - "CA$", + "CAD", "Kanadese dollar" ], "CDF": [ @@ -123,11 +123,11 @@ ], "CNH": [ "CNH", - "Chinese joean" + "Chinese joean (buiteland)" ], "CNY": [ "CN¥", - "Sjinese joean renminbi" + "Chinese joean" ], "COP": [ "COP", @@ -155,7 +155,7 @@ ], "DJF": [ "DJF", - "Djiboeti frank" + "Djiboeti-frank" ], "DKK": [ "DKK", @@ -191,7 +191,7 @@ ], "FKP": [ "FKP", - "Falkland-eilande pond" + "Falkland-eilandse pond" ], "GBP": [ "£", @@ -235,7 +235,7 @@ ], "HKD": [ "HK$", - "Hong Kong dollar" + "Hongkongse dollar" ], "HNL": [ "HNL", @@ -323,7 +323,7 @@ ], "KYD": [ "KYD", - "Cayman-eilande dollar" + "Cayman-eilandse dollar" ], "KZT": [ "KZT", @@ -335,7 +335,7 @@ ], "LBP": [ "LBP", - "Lebanese pond" + "Libanese pond" ], "LKR": [ "LKR", @@ -399,7 +399,7 @@ ], "MUR": [ "MUR", - "Mauritiaanse rupee" + "Mauritiaanse roepee" ], "MVR": [ "MVR", @@ -447,7 +447,7 @@ ], "NZD": [ "NZ$", - "Nieu-Seeland dollar" + "Nieu-Seelandse dollar" ], "OMR": [ "OMR", @@ -491,7 +491,7 @@ ], "RSD": [ "RSD", - "Serbiese dinar" + "Serwiese dinar" ], "RUB": [ "RUB", @@ -499,7 +499,7 @@ ], "RWF": [ "RWF", - "Rwandiese frank" + "Rwandese frank" ], "SAR": [ "SAR", @@ -507,11 +507,11 @@ ], "SBD": [ "SBD", - "Salomonseilande dollar" + "Salomonseilandse dollar" ], "SCR": [ "SCR", - "Seychellese rupee" + "Seychellese roepee" ], "SDG": [ "SDG", @@ -527,11 +527,11 @@ ], "SGD": [ "SGD", - "Singapoer dollar" + "Singapoer-dollar" ], "SHP": [ "SHP", - "Sint Helena pond" + "Sint Helena-pond" ], "SLL": [ "SLL", @@ -555,7 +555,7 @@ ], "STN": [ "STN", - "São Tomé en Príncipe dobra" + "São Tomé en Príncipe-dobra" ], "SYP": [ "SYP", @@ -571,7 +571,7 @@ ], "TJS": [ "TJS", - "Tadjikse roebel" + "Tadjikse somoni" ], "TMT": [ "TMT", @@ -591,11 +591,11 @@ ], "TRY": [ "TRY", - "Turkse lier" + "Turkse lira" ], "TTD": [ "TTD", - "Trinidad en Tobago dollar" + "Trinidad en Tobago-dollar" ], "TWD": [ "NT$", @@ -614,8 +614,8 @@ "Ugandese sjieling" ], "USD": [ - "US$", - "Amerikaanse dollar" + "USD", + "VSA-dollar" ], "UYU": [ "UYU", @@ -631,7 +631,7 @@ ], "VES": [ "VES", - "Venezolaanse Bolívar" + "Venezolaanse bolívar" ], "VND": [ "₫", @@ -647,15 +647,15 @@ ], "XAF": [ "FCFA", - "CFA frank BEAC" + "Sentraal Afrikaanse CFA-frank" ], "XCD": [ "EC$", - "Oos-Karibbiese dollar" + "Oos-Karibiese dollar" ], "XOF": [ "CFA", - "CFA frank BCEAO" + "Wes-Afrikaanse CFA-frank" ], "XPF": [ "CFPF", 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 40180bb9e2efe..cf82f91f4b1ca 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,5 @@ { - "Version": "2.1.48.22", + "Version": "36", "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 b6175e8d3abc3..15ac347813f82 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 8c94a7c159d09..5cb0ba415736d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/am.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index 7a6758b0ff269..e12bb0a8a0b84 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -105,10 +105,6 @@ "BEL", "فرنك بلجيكي مالي" ], - "BGL": [ - "BGL", - "BGL" - ], "BGN": [ "BGN", "ليف بلغاري" @@ -314,7 +310,7 @@ "فرنك فرنسي" ], "GBP": [ - "£", + "UK£", "جنيه إسترليني" ], "GEL": [ 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 d9a4196603f7c..1997e2ec15730 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 ee5d740b68059..29b41dbfe95f2 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 42c5350093367..d96c2debe8bbf 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 fd0706113afe1..409e952d1f296 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 44136cd119565..dfcbfcded30c4 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 5456234513b7e..64ceab00eb815 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 d5799bbcdc6f4..6e3bd46461d98 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/as.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 125b34f0a9a64..1fec8dfca9ccb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/az.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -171,7 +171,7 @@ ], "BSD": [ "BSD", - "Bahama Dolları" + "Baham Dolları" ], "BTN": [ "BTN", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Britaniya Funt" + "Britaniya Funtu" ], "GEK": [ "GEK", @@ -367,7 +367,7 @@ ], "GIP": [ "GIP", - "Gibraltar Funtu" + "Cəbəli-Tariq Funtu" ], "GMD": [ "GMD", @@ -491,7 +491,7 @@ ], "KGS": [ "KGS", - "Kırğızıstan Somu" + "Qırğızıstan Somu" ], "KHR": [ "KHR", 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 9b9cca7e1705d..e78fe4d9d2462 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 a91e4016cfd65..ccd8e78df7424 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/be.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/be.json @@ -1,9 +1,9 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", - "дырхем ААЭ" + "дырхам ААЭ" ], "AFN": [ "AFN", @@ -47,7 +47,7 @@ ], "BBD": [ "BBD", - "барбадоскі долар" + "барбадаскі долар" ], "BDT": [ "BDT", @@ -263,7 +263,7 @@ ], "IRR": [ "IRR", - "іранскі рыал" + "іранскі рыял" ], "ISK": [ "ISK", @@ -291,7 +291,7 @@ ], "KHR": [ "KHR", - "камбаджыйскі рыэль" + "камбаджыйскі рыель" ], "KMF": [ "KMF", @@ -315,7 +315,7 @@ ], "KZT": [ "KZT", - "казахстанскі тэнгэ" + "казахстанскі тэнге" ], "LAK": [ "LAK", @@ -371,7 +371,7 @@ ], "MRU": [ "MRU", - "маўрытанская ўгія" + "маўрытанская угія" ], "MUR": [ "MUR", @@ -403,7 +403,7 @@ ], "NGN": [ "NGN", - "нігерыйская найра" + "нігерыйская наіра" ], "NIO": [ "NIO", @@ -423,7 +423,7 @@ ], "OMR": [ "OMR", - "аманскі рыал" + "аманскі рыял" ], "PAB": [ "PAB", @@ -435,7 +435,7 @@ ], "PGK": [ "PGK", - "кіна" + "кіна Папуа-Новай Гвінеі" ], "PHP": [ "PHP", @@ -455,7 +455,7 @@ ], "QAR": [ "QAR", - "катарскі рыал" + "катарскі рыял" ], "RON": [ "RON", @@ -499,11 +499,11 @@ ], "SHP": [ "SHP", - "фунт Святой Алены" + "фунт в-ва Святой Алены" ], "SLL": [ "SLL", - "леонэ" + "сьера-леонскі леонэ" ], "SOS": [ "SOS", @@ -595,7 +595,7 @@ ], "VES": [ "VES", - "венесуальскі балівар" + "венесуэльскі балівар" ], "VND": [ "₫", @@ -603,7 +603,7 @@ ], "VUV": [ "VUV", - "вату" + "вануацкі вату" ], "WST": [ "WST", @@ -631,7 +631,7 @@ ], "ZAR": [ "ZAR", - "паўднёваафрыканскі ранд" + "паўднёваафрыканскі рэнд" ], "ZMW": [ "ZMW", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 6b3972c00c559..8b80de92ed684 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -763,7 +763,7 @@ ], "SAR": [ "SAR", - "Саудитскоарабски риал" + "саудитски риал" ], "SBD": [ "SBD", @@ -917,6 +917,14 @@ "щ.д.", "Щатски долар" ], + "USN": [ + "USN", + "USN" + ], + "USS": [ + "USS", + "USS" + ], "UYI": [ "UYI", "Уругвайско песо (индекс на инфлацията)" @@ -979,7 +987,7 @@ ], "XPF": [ "CFPF", - "Френскополинезийски франк" + "CFP франк" ], "YDD": [ "YDD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index 0d529b6a9b05c..6de0991f2396b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 e44014a08db0a..2b5513c77725d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 b8a700e7cc2c4..f6d5eacd6ff5b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 1027e24d2308b..144a0f55850b5 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 780f42baac857..d2b01d1a14af5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/br.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.86", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -45,6 +45,18 @@ "AON", "kwanza nevez Angola (1990–2000)" ], + "AOR": [ + "AOR", + "AOR" + ], + "ARA": [ + "ARA", + "ARA" + ], + "ARL": [ + "ARL", + "ARL" + ], "ARM": [ "ARM", "peso Arcʼhantina (1881–1970)" @@ -105,9 +117,9 @@ "BEF", "lur Belgia" ], - "BEL": [ - "BEL", - "BEL" + "BGL": [ + "BGL", + "BGL" ], "BGM": [ "BGM", @@ -149,10 +161,38 @@ "BOP", "peso Bolivia" ], + "BOV": [ + "BOV", + "BOV" + ], + "BRB": [ + "BRB", + "BRB" + ], + "BRC": [ + "BRC", + "BRC" + ], + "BRE": [ + "BRE", + "BRE" + ], "BRL": [ "BRL", "real Brazil" ], + "BRN": [ + "BRN", + "BRN" + ], + "BRR": [ + "BRR", + "BRR" + ], + "BRZ": [ + "BRZ", + "BRZ" + ], "BSD": [ "BSD", "dollar Bahamas" @@ -229,6 +269,10 @@ "COP", "peso Kolombia" ], + "COU": [ + "COU", + "COU" + ], "CRC": [ "CRC", "colón Costa Rica" @@ -237,6 +281,10 @@ "CSD", "dinar Serbia (2002–2006)" ], + "CSK": [ + "CSK", + "CSK" + ], "CUC": [ "CUC", "peso kemmadus Kuba" @@ -281,6 +329,14 @@ "DZD", "dinar Aljeria" ], + "ECS": [ + "ECS", + "ECS" + ], + "ECV": [ + "ECV", + "ECV" + ], "EEK": [ "EEK", "kurunenn Estonia" @@ -293,6 +349,10 @@ "ERN", "nakfa Eritrea" ], + "ESA": [ + "ESA", + "ESA" + ], "ESB": [ "ESB", "peseta gemmadus Spagn" @@ -329,10 +389,18 @@ "£ RU", "lur Breizh-Veur" ], + "GEK": [ + "GEK", + "GEK" + ], "GEL": [ "GEL", "lari Jorjia" ], + "GHC": [ + "GHC", + "GHC" + ], "GHS": [ "GHS", "cedi Ghana" @@ -365,6 +433,10 @@ "GTQ", "quetzal Guatemala" ], + "GWE": [ + "GWE", + "GWE" + ], "GWP": [ "GWP", "peso Ginea-Bissau" @@ -533,6 +605,10 @@ "LUF", "lur Luksembourg" ], + "LUL": [ + "LUL", + "LUL" + ], "LVL": [ "LVL", "lats Latvia" @@ -557,6 +633,10 @@ "MCF", "lur Monaco" ], + "MDC": [ + "MDC", + "MDC" + ], "MDL": [ "MDL", "leu Moldova" @@ -633,6 +713,10 @@ "MXP", "peso arcʼhant Mecʼhiko (1861–1992)" ], + "MXV": [ + "MXV", + "MXV" + ], "MYR": [ "MYR", "ringgit Malaysia" @@ -689,6 +773,10 @@ "PAB", "balboa Panamá" ], + "PEI": [ + "PEI", + "PEI" + ], "PEN": [ "PEN", "sol Perou" @@ -901,6 +989,10 @@ "UAH", "hryvnia Ukraina" ], + "UAK": [ + "UAK", + "UAK" + ], "UGS": [ "UGS", "shilling Ouganda (1966–1987)" @@ -913,6 +1005,18 @@ "$ SU", "dollar SU" ], + "USN": [ + "USN", + "USN" + ], + "USS": [ + "USS", + "USS" + ], + "UYI": [ + "UYI", + "UYI" + ], "UYP": [ "UYP", "peso Uruguay (1975–1993)" @@ -981,6 +1085,10 @@ "CFPF", "lur CFP" ], + "XRE": [ + "XRE", + "XRE" + ], "YDD": [ "YDD", "dinar Yemen" @@ -989,6 +1097,10 @@ "YER", "rial Yemen" ], + "YUD": [ + "YUD", + "YUD" + ], "YUM": [ "YUM", "dinar nevez Yougoslavia (1994–2002)" @@ -1001,6 +1113,10 @@ "YUR", "dinar adreizhet Yougoslavia (1992–1993)" ], + "ZAL": [ + "ZAL", + "ZAL" + ], "ZAR": [ "ZAR", "rand Suafrika" @@ -1013,6 +1129,14 @@ "ZMW", "kwacha Zambia" ], + "ZRN": [ + "ZRN", + "ZRN" + ], + "ZRZ": [ + "ZRZ", + "ZRZ" + ], "ZWD": [ "ZWD", "dollar Zimbabwe (1980–2008)" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index f39221d85b543..93d6fee8c48b2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -1007,7 +1007,7 @@ ], "VES": [ "VES", - "venecuelanski bolivar" + "Venecuelanski bolivar" ], "VND": [ "₫", 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 cc7731e61b141..80f4fc10d33d7 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -15,7 +15,7 @@ ], "AFN": [ "AFN", - "Авганистански авган" + "Афганистански афгани" ], "ALL": [ "ALL", @@ -23,7 +23,7 @@ ], "AMD": [ "AMD", - "Јерменски драм" + "Арменски драм" ], "ANG": [ "ANG", @@ -31,7 +31,7 @@ ], "AOA": [ "AOA", - "анголска кванза" + "Анголска кванза" ], "AOK": [ "AOK", @@ -55,7 +55,7 @@ ], "ARS": [ "ARS", - "аргентински пезо" + "Аргентински пезос" ], "ATS": [ "ATS", @@ -87,7 +87,7 @@ ], "BBD": [ "BBD", - "Барбадошки долар" + "Барбадоски долар" ], "BDT": [ "BDT", @@ -131,7 +131,7 @@ ], "BOB": [ "BOB", - "Боливијски Боливиано" + "Боливијски боливиано" ], "BOP": [ "BOP", @@ -155,7 +155,7 @@ ], "BRL": [ "R$", - "Бразилски Реал" + "Бразилски реал" ], "BRN": [ "BRN", @@ -195,7 +195,7 @@ ], "BZD": [ "BZD", - "Белизе долар" + "Белизеански долар" ], "CAD": [ "CA$", @@ -203,7 +203,7 @@ ], "CDF": [ "CDF", - "Конголски франак" + "Конгоански франак" ], "CHE": [ "CHE", @@ -223,15 +223,19 @@ ], "CLP": [ "CLP", - "Чилеански пезо" + "Чилеански пезос" + ], + "CNH": [ + "CNH", + "Кинески јуан (острвски)" ], "CNY": [ "CN¥", - "Кинески јуан ренминби" + "Кинески јуан" ], "COP": [ "COP", - "Колумбијски пезо" + "Колумбијски пезос" ], "COU": [ "COU", @@ -251,11 +255,11 @@ ], "CUC": [ "CUC", - "кубански конвертибилни песо" + "кубански конвертибилни пезос" ], "CUP": [ "CUP", - "Кубански пезо" + "Кубански пезос" ], "CVE": [ "CVE", @@ -279,7 +283,7 @@ ], "DJF": [ "DJF", - "Џибутански франак" + "Џибутски франак" ], "DKK": [ "DKK", @@ -287,7 +291,7 @@ ], "DOP": [ "DOP", - "Доминикански пезо" + "Доминикански пезос" ], "DZD": [ "DZD", @@ -311,7 +315,7 @@ ], "ERN": [ "ERN", - "Еритреанска накфа" + "Еритрејска накфа" ], "ESA": [ "ESA", @@ -327,7 +331,7 @@ ], "ETB": [ "ETB", - "етиопијски бир" + "Етиопијски бир" ], "EUR": [ "€", @@ -343,7 +347,7 @@ ], "FKP": [ "FKP", - "Фокландска острва фунта" + "Фолкландска фунта" ], "FRF": [ "FRF", @@ -371,7 +375,7 @@ ], "GIP": [ "GIP", - "Гибралташка фунта" + "Гибралтаска фунта" ], "GMD": [ "GMD", @@ -407,7 +411,7 @@ ], "GYD": [ "GYD", - "Гујански долар" + "Гвајански долар" ], "HKD": [ "HK$", @@ -435,7 +439,7 @@ ], "IDR": [ "IDR", - "Индонезијска рупиа" + "Индонежанска рупија" ], "IEP": [ "IEP", @@ -455,7 +459,7 @@ ], "INR": [ "₹", - "Индијски Рупи" + "Индијска рупија" ], "IQD": [ "IQD", @@ -463,7 +467,7 @@ ], "IRR": [ "IRR", - "Ирански риал" + "Ирански ријал" ], "ISJ": [ "ISJ", @@ -499,7 +503,7 @@ ], "KHR": [ "KHR", - "Камбоџијски риел" + "Камбоџански ријел" ], "KMF": [ "KMF", @@ -511,7 +515,7 @@ ], "KRW": [ "₩", - "Јужнокорејски Вон" + "Јужнокорејски вон" ], "KWD": [ "KWD", @@ -519,23 +523,23 @@ ], "KYD": [ "KYD", - "Кајманска острва долар" + "Кајмански долар" ], "KZT": [ "KZT", - "Казахстански тенџ" + "Казахстански тенге" ], "LAK": [ "LAK", - "Лаошки кип" + "Лаоски кип" ], "LBP": [ "LBP", - "Лебанска фунта" + "Либанска фунта" ], "LKR": [ "LKR", - "Шриланкански рупи" + "Шриланканска рупија" ], "LRD": [ "LRD", @@ -587,11 +591,11 @@ ], "MDL": [ "MDL", - "Молдовски љу" + "Молдавски леј" ], "MGA": [ "MGA", - "Малагасијски ариари" + "Мадагаскарски аријари" ], "MGF": [ "MGF", @@ -607,7 +611,7 @@ ], "MMK": [ "MMK", - "Мјанмашки кјат" + "Мијанмарски кјат" ], "MNT": [ "MNT", @@ -615,7 +619,7 @@ ], "MOP": [ "MOP", - "Маканишка патака" + "Макаоска патака" ], "MRO": [ "MRO", @@ -623,7 +627,7 @@ ], "MRU": [ "MRU", - "Мауританијска угвија" + "Мауританска огија" ], "MTL": [ "MTL", @@ -635,11 +639,11 @@ ], "MUR": [ "MUR", - "Маурицијски рупи" + "Маурицијска рупија" ], "MVR": [ "MVR", - "Малдивијска руфија" + "Малдивска руфија" ], "MWK": [ "MWK", @@ -647,7 +651,7 @@ ], "MXN": [ "MX$", - "Мексички пезо" + "Мексички пезос" ], "MXP": [ "MXP", @@ -659,7 +663,7 @@ ], "MYR": [ "MYR", - "Малезијски ринггит" + "Малезијски рингит" ], "MZE": [ "MZE", @@ -675,7 +679,7 @@ ], "NAD": [ "NAD", - "намбијски долар" + "Намибијски долар" ], "NGN": [ "NGN", @@ -699,7 +703,7 @@ ], "NPR": [ "NPR", - "Непалски рупи" + "Непалска рупија" ], "NZD": [ "NZ$", @@ -727,15 +731,15 @@ ], "PGK": [ "PGK", - "Папуа ново-гвинејшка кина" + "Папуанска кина" ], "PHP": [ "PHP", - "Филипински пезо" + "Филипински пезос" ], "PKR": [ "PKR", - "Пакистански рупи" + "Пакистанска рупија" ], "PLN": [ "зл", @@ -751,11 +755,11 @@ ], "PYG": [ "PYG", - "Парагвајски гуарни" + "Парагвајски гварани" ], "QAR": [ "QAR", - "Катаршки ријал" + "Катарски ријал" ], "RHD": [ "RHD", @@ -767,7 +771,7 @@ ], "RON": [ "RON", - "Румунски леу" + "Румунски леј" ], "RSD": [ "дин.", @@ -783,7 +787,7 @@ ], "RWF": [ "RWF", - "Руандански франак" + "Руандски франак" ], "SAR": [ "SAR", @@ -791,7 +795,7 @@ ], "SBD": [ "SBD", - "Соломонско-острвски долар" + "Соломонски долар" ], "SCR": [ "SCR", @@ -819,7 +823,7 @@ ], "SHP": [ "SHP", - "Св. јеленска фунта" + "Света Јелена фунта" ], "SIT": [ "SIT", @@ -831,20 +835,24 @@ ], "SLL": [ "SLL", - "Сијера-леоншки леоне" + "Сијералеонски леоне" ], "SOS": [ "SOS", - "СОмалијски шилинг" + "Сомалијски шилинг" ], "SRD": [ "SRD", - "СУринамски долар" + "Суринамски долар" ], "SRG": [ "SRG", "Суринамски гилдер" ], + "SSP": [ + "SSP", + "Јужносуданска фунта" + ], "STD": [ "STD", "Сао Томе и Принципе добра (1977–2017)" @@ -867,11 +875,11 @@ ], "SZL": [ "SZL", - "Свази лилангени" + "Свазилендски лилангени" ], "THB": [ "THB", - "Таи бахт" + "Тајски бахт" ], "TJR": [ "TJR", @@ -879,7 +887,7 @@ ], "TJS": [ "TJS", - "Таљихистански сомони" + "Таџикистански сомони" ], "TMM": [ "TMM", @@ -891,11 +899,11 @@ ], "TND": [ "TND", - "Тунизијски долар" + "Туниски динар" ], "TOP": [ "TOP", - "Тонгоншка Панга" + "Тонгоанска панга" ], "TPE": [ "TPE", @@ -911,7 +919,7 @@ ], "TTD": [ "TTD", - "Тринидад тобагошки долар" + "Тринидад-тобагошки долар" ], "TWD": [ "NT$", @@ -959,7 +967,7 @@ ], "UYU": [ "UYU", - "Уругвајски пезо" + "Уругвајски пезос" ], "UZS": [ "UZS", @@ -1027,7 +1035,7 @@ ], "YER": [ "YER", - "Јеменски риал" + "Јеменски ријал" ], "YUD": [ "YUD", @@ -1047,7 +1055,7 @@ ], "ZAR": [ "ZAR", - "Јужно-афрички ранд" + "Јужноафрички ранд" ], "ZMK": [ "ZMK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 82153854756e1..ec7b34bbb4ba4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -527,7 +527,7 @@ "dinar jordà" ], "JPY": [ - "JP¥", + "¥", "ien japonès" ], "KES": [ @@ -928,7 +928,7 @@ ], "SYP": [ "SYP", - "lliura síria" + "lliura siriana" ], "SZL": [ "SZL", 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 3468e7b707355..e6120982c4ce5 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 4b4add71e7931..83f3abff2bb8a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 9325931f1dbb6..c393b3fd46d18 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "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 c031933ee3c7f..3a85facb9d80a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", @@ -759,7 +759,7 @@ ], "PHP": [ "PHP", - "Peso’r Philipinau" + "Peso Philipinas" ], "PKR": [ "PKR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index 8ff3d8fed1f02..87231da4ce6b0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/da.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -403,7 +403,7 @@ ], "HKD": [ "HK$", - "Hongkong dollar" + "hongkongsk dollar" ], "HNL": [ "HNL", @@ -918,7 +918,7 @@ "ugandisk shilling" ], "USD": [ - "$", + "US$", "amerikansk dollar" ], "USN": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index 9bd28156b706a..2830ced8a49eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 610c569d222f3..29398682b8a4b 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "BYN": [ "BYN", @@ -9,10 +9,6 @@ "BYR", "Weissrussischer Rubel (2000–2016)" ], - "CHF": [ - "CHF", - "Schweizer Franken" - ], "EUR": [ "EUR", "Euro" @@ -20,14 +16,6 @@ "STN": [ "STN", "São-toméischer Dobra (2018)" - ], - "VEF": [ - "VEF", - "Venezolanischer Bolívar" - ], - "VES": [ - "VES", - "VES" ] } } 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 5dc704ad5a780..bd82eb972b726 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 352898b8ae43d..a7a3dd162f9f1 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 8919d87b60d2d..7c6cb78893586 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 842bf6adcb767..ba3929597e5bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 0f5cb07b8cf7e..65b56fc3fb767 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/el.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 3c9d4c1f593bc..19fd10236275e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.65", + "Version": "36", "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 3c615b8ea4c0e..7451dc1108d62 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "Names": { "BYB": [ "BYB", @@ -29,6 +29,10 @@ "RUR", "Russian Rouble (1991–1998)" ], + "SHP": [ + "SHP", + "St Helena Pound" + ], "TJR": [ "TJR", "Tajikistani Rouble" 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 770311d7b3d3e..851ef1ac7a788 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 aa47b391871ac..f0a010b16cf1f 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,5 @@ { - "Version": "2.1.48.67", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 f16a2012b2d50..9760a58d2e742 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json @@ -1,10 +1,38 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { + "AED": [ + "AED", + "United Arab Emirates Dirham" + ], + "AFN": [ + "AFN", + "Afghan Afghani" + ], + "ALL": [ + "ALL", + "Albanian Lek" + ], + "AMD": [ + "AMD", + "Armenian Dram" + ], + "AOA": [ + "AOA", + "Angolan Kwanza" + ], + "ARS": [ + "ARS", + "Argentine Peso" + ], "AUD": [ "$", "Australian Dollar" ], + "AZN": [ + "AZN", + "Azerbaijani Manat" + ], "BAM": [ "BAM", "Bosnia-Herzegovina Convertible Marka" @@ -13,10 +41,30 @@ "BBD", "Barbados Dollar" ], + "BDT": [ + "BDT", + "Bangladeshi Taka" + ], + "BGN": [ + "BGN", + "Bulgarian Lev" + ], + "BHD": [ + "BHD", + "Bahraini Dinar" + ], + "BIF": [ + "BIF", + "Burundian Franc" + ], "BMD": [ "BMD", "Bermuda Dollar" ], + "BND": [ + "BND", + "Brunei Dollar" + ], "BOB": [ "BOB", "Boliviano" @@ -25,10 +73,30 @@ "BRL", "Brazilian Real" ], + "BTN": [ + "BTN", + "Bhutanese Ngultrum" + ], + "BWP": [ + "BWP", + "Botswanan Pula" + ], "CAD": [ "CAD", "Canadian Dollar" ], + "CDF": [ + "CDF", + "Congolese Franc" + ], + "CHF": [ + "CHF", + "Swiss Franc" + ], + "CLP": [ + "CLP", + "Chilean Peso" + ], "CNH": [ "CNH", "CNH" @@ -37,18 +105,94 @@ "CNY", "Chinese Yuan" ], + "COP": [ + "COP", + "Colombian Peso" + ], + "CVE": [ + "CVE", + "Cape Verdean Escudo" + ], + "CZK": [ + "CZK", + "Czech Koruna" + ], + "DJF": [ + "DJF", + "Djiboutian Franc" + ], + "DZD": [ + "DZD", + "Algerian Dinar" + ], + "EGP": [ + "EGP", + "Egyptian Pound" + ], + "ERN": [ + "ERN", + "Eritrean Nakfa" + ], + "ETB": [ + "ETB", + "Ethiopian Birr" + ], "EUR": [ "EUR", "Euro" ], + "FJD": [ + "FJD", + "Fijian Dollar" + ], + "FKP": [ + "FKP", + "Falkland Islands Pound" + ], "GBP": [ "GBP", "British Pound" ], + "GEL": [ + "GEL", + "Georgian Lari" + ], + "GHS": [ + "GHS", + "Ghanaian Cedi" + ], + "GIP": [ + "GIP", + "Gibraltar Pound" + ], + "GMD": [ + "GMD", + "Gambian Dalasi" + ], + "GNF": [ + "GNF", + "Guinean Franc" + ], + "GYD": [ + "GYD", + "Guyanaese Dollar" + ], "HKD": [ "HKD", "Hong Kong Dollar" ], + "HRK": [ + "HRK", + "Croatian Kuna" + ], + "HUF": [ + "HUF", + "Hungarian Forint" + ], + "IDR": [ + "IDR", + "Indonesian Rupiah" + ], "ILS": [ "ILS", "Israeli Shekel" @@ -57,38 +201,290 @@ "INR", "Indian Rupee" ], + "IQD": [ + "IQD", + "Iraqi Dinar" + ], + "IRR": [ + "IRR", + "Iranian Rial" + ], + "ISK": [ + "ISK", + "Icelandic Króna" + ], + "JOD": [ + "JOD", + "Jordanian Dinar" + ], "JPY": [ "JPY", "Japanese Yen" ], + "KES": [ + "KES", + "Kenyan Shilling" + ], + "KGS": [ + "KGS", + "Kyrgystani Som" + ], + "KHR": [ + "KHR", + "Cambodian Riel" + ], + "KMF": [ + "KMF", + "Comorian Franc" + ], + "KPW": [ + "KPW", + "North Korean Won" + ], "KRW": [ "KRW", "South Korean Won" ], + "KWD": [ + "KWD", + "Kuwaiti Dinar" + ], + "KZT": [ + "KZT", + "Kazakhstani Tenge" + ], + "LAK": [ + "LAK", + "Laotian Kip" + ], + "LBP": [ + "LBP", + "Lebanese Pound" + ], + "LKR": [ + "LKR", + "Sri Lankan Rupee" + ], + "LRD": [ + "LRD", + "Liberian Dollar" + ], + "LSL": [ + "LSL", + "Lesotho Loti" + ], + "LYD": [ + "LYD", + "Libyan Dinar" + ], + "MAD": [ + "MAD", + "Moroccan Dirham" + ], + "MDL": [ + "MDL", + "Moldovan Leu" + ], + "MGA": [ + "MGA", + "Malagasy Ariary" + ], + "MKD": [ + "MKD", + "Macedonian Denar" + ], + "MMK": [ + "MMK", + "Myanmar Kyat" + ], + "MNT": [ + "MNT", + "Mongolian Tugrik" + ], + "MOP": [ + "MOP", + "Macanese Pataca" + ], + "MRO": [ + "MRO", + "Mauritanian Ouguiya (1973–2017)" + ], + "MUR": [ + "MUR", + "Mauritian Rupee" + ], + "MVR": [ + "MVR", + "Maldivian Rufiyaa" + ], + "MWK": [ + "MWK", + "Malawian Kwacha" + ], "MXN": [ "MXN", "Mexican Peso" ], + "MYR": [ + "MYR", + "Malaysian Ringgit" + ], + "MZN": [ + "MZN", + "Mozambican Metical" + ], + "NAD": [ + "NAD", + "Namibian Dollar" + ], + "NGN": [ + "NGN", + "Nigerian Naira" + ], + "NOK": [ + "NOK", + "Norwegian Krone" + ], + "NPR": [ + "NPR", + "Nepalese Rupee" + ], "NZD": [ "NZD", "New Zealand Dollar" ], + "OMR": [ + "OMR", + "Omani Rial" + ], + "PEN": [ + "PEN", + "Peruvian Sol" + ], + "PGK": [ + "PGK", + "Papua New Guinean Kina" + ], + "PHP": [ + "PHP", + "Philippine Piso" + ], + "PLN": [ + "PLN", + "Polish Zloty" + ], + "PYG": [ + "PYG", + "Paraguayan Guarani" + ], "QAR": [ "QAR", "Qatari Riyal" ], + "RON": [ + "RON", + "Romanian Leu" + ], + "RSD": [ + "RSD", + "Serbian Dinar" + ], + "RUB": [ + "RUB", + "Russian Rouble" + ], + "RWF": [ + "RWF", + "Rwandan Franc" + ], + "SAR": [ + "SAR", + "Saudi Riyal" + ], + "SBD": [ + "SBD", + "Solomon Islands Dollar" + ], "SCR": [ "Rs", "Seychellois Rupee" ], + "SDG": [ + "SDG", + "Sudanese Pound" + ], + "SEK": [ + "SEK", + "Swedish Krona" + ], + "SGD": [ + "SGD", + "Singapore Dollar" + ], + "SHP": [ + "SHP", + "St Helena Pound" + ], + "SLL": [ + "SLL", + "Sierra Leonean Leone" + ], + "SOS": [ + "SOS", + "Somali Shilling" + ], "SRD": [ "SRD", "Suriname Dollar" ], + "SSP": [ + "SSP", + "South Sudanese Pound" + ], + "SYP": [ + "SYP", + "Syrian Pound" + ], + "SZL": [ + "SZL", + "Swazi Lilangeni" + ], + "TJS": [ + "TJS", + "Tajikistani Somoni" + ], + "TMT": [ + "TMT", + "Turkmenistani Manat" + ], + "TND": [ + "TND", + "Tunisian Dinar" + ], + "TOP": [ + "TOP", + "Tongan Paʻanga" + ], + "TRY": [ + "TRY", + "Turkish Lira" + ], "TWD": [ "TWD", "New Taiwan Dollar" ], + "TZS": [ + "TZS", + "Tanzanian Shilling" + ], + "UAH": [ + "UAH", + "Ukrainian Hryvnia" + ], + "UGX": [ + "UGX", + "Ugandan Shilling" + ], "USD": [ "USD", "US Dollar" @@ -97,6 +493,14 @@ "UYU", "Peso Uruguayo" ], + "UZS": [ + "UZS", + "Uzbekistani Som" + ], + "VEF": [ + "VEF", + "Venezuelan Bolívar (2008–2018)" + ], "VES": [ "VES", "VES" @@ -105,6 +509,14 @@ "VND", "Vietnamese Dong" ], + "VUV": [ + "VUV", + "Vanuatu Vatu" + ], + "WST": [ + "WST", + "Samoan Tala" + ], "XAF": [ "XAF", "Central African CFA Franc" @@ -120,6 +532,18 @@ "XPF": [ "CFP", "CFP Franc" + ], + "YER": [ + "YER", + "Yemeni Rial" + ], + "ZAR": [ + "ZAR", + "South African Rand" + ], + "ZMW": [ + "ZMW", + "Zambian Kwacha" ] } } 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 aeab6ce5555e2..a0bc40121a3b0 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 3cd4f47183299..4a96139c7d38f 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,5 @@ { - "Version": "2.1.48.22", + "Version": "36", "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 513a81645310f..abf1b2c6feb21 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 d72c296bb26c5..aec811ab38bdc 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 0d47b5da63473..f2e2d3384b824 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 1af4331442c59..567a7e9f612e1 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 3acc063ceac13..1dfd79828d154 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json @@ -1,9 +1,13 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "CAD": [ "$", "Canadian Dollar" + ], + "VES": [ + "VES", + "Venezuelan Bolívar" ] } } 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 2009c1a9e1d25..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 e634d1b4a8a7a..9593a04ee699b 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2009c1a9e1d25..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 3f548937b0ab6..f8de5f607c488 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 cdbe321a45fa2..3f8f576a6f193 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 92d341d95b23d..ec4d41fc80fb0 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 3f693a10f018b..3cabc4f7d2e1b 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "Names": { "FKP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json deleted file mode 100644 index 1d21d1563ec0f..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.47.86", - "Names": { - "SHP": [ - "SHP", - "St Helena Pound" - ] - } -} 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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 c4cb145fe1d1c..c2dd9dbd104c1 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 be50e77b687cd..298ca6c14b3f8 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 35b6619551fca..df990f8df2a2d 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 a279ccb75fa40..3857bbe02abd2 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 b5ae85679778f..846901026d094 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 c4cb145fe1d1c..c2dd9dbd104c1 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 c13ff50d67543..5fd20deee67ff 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,5 @@ { - "Version": "2.1.49.14", + "Version": "36", "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 c4cb145fe1d1c..c2dd9dbd104c1 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 1789bcf95a023..b5b1ecdfbdc76 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 663a1b7bf281c..c24257b97e63b 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2009c1a9e1d25..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 15e99b3e65b84..7693660cf7d54 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 5a166300a47dd..95c1d80703c50 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 f79cd019af006..286306aff8177 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2f0864f2b3ce6..a277e5e6a1e2a 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 6a6be5daa035f..514da628c9207 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2756770a1fde4..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 28217825da866..a5d7ee2fcd671 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 ede1914d6f223..e40ac109a677e 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 e6bc37278fb24..3d02557995172 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 ebe677684daf0..c7748df6ed816 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 dbdd274b23c53..36d726d9ed858 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 36bd957f630ed..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 a2ed0a1b19f3a..eaa9515f1798a 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,5 @@ { - "Version": "2.1.48.22", + "Version": "36", "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 665594a38cdef..43e0b04c8688e 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 36bd957f630ed..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 05dc60cd8df0b..9593a04ee699b 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 4ffe241af61be..9593a04ee699b 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 ed7976d773c1b..936b3d8500090 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 325111f14ad6d..f4cb9636fd2c6 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 9f4f4f2a28da8..1f8b7663353e2 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 05dc60cd8df0b..9593a04ee699b 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 5694ed7692504..5d0836ffd7609 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 18537e903995c..7091119ef1a38 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 177d4402001af..b4a80e4a21b1e 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 b7d2cae6c2237..b976e2252f556 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 be8ecee51e858..decbaedde3bf5 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 b388d675cbbd9..6bb522946652d 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "GBP": [ "GB£", @@ -7,7 +7,7 @@ ], "SHP": [ "£", - "St. Helena Pound" + "St Helena Pound" ] } } 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 a6dfe76c92256..7e7b54f702aa3 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 27f00cc541689..4db4d22095551 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 ea843ae57ad82..d89618cc129bb 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 da94c5a96fd9f..e630cd7f53ae9 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 05dc60cd8df0b..9593a04ee699b 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 8f7202311c67d..7923b9e08eb09 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 c3d7036b67c62..831c897437171 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 36bd957f630ed..e06ba740bc917 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 4f91676424773..331cf2f4a4c74 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 58829694b5379..fe7fa9222ab5c 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 5acadd9e8ac53..75da27b3c7fe6 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 665594a38cdef..43e0b04c8688e 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 5b6cde5ddb0e1..7a7881e0b43e6 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 51396c656f985..286306aff8177 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 789846f24e041..9008b3bc0fb63 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 ec2b5c413e81a..f7c19a6219fe0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -639,7 +639,7 @@ ], "MWK": [ "MWK", - "kwacha malauí" + "kuacha malauí" ], "MXN": [ "MXN", @@ -1059,7 +1059,7 @@ ], "ZMW": [ "ZMW", - "kwacha zambiano" + "kuacha zambiano" ], "ZRN": [ "ZRN", 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 e29ed77477b7f..bf2d68794cfc1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json @@ -1,533 +1,33 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { - "AED": [ - "AED", - "dírham de los Emiratos Árabes Unidos" - ], - "AFN": [ - "AFN", - "afgani" - ], - "ALL": [ - "ALL", - "lek" - ], - "AMD": [ - "AMD", - "dram armenio" - ], - "AOA": [ - "AOA", - "kuanza" - ], - "ARS": [ - "ARS", - "peso argentino" - ], - "AWG": [ - "AWG", - "florín arubeño" - ], - "AZN": [ - "AZN", - "manat azerbaiyano" - ], - "BAM": [ - "BAM", - "marco convertible de Bosnia y Herzegovina" - ], - "BBD": [ - "BBD", - "dólar barbadense" - ], - "BDT": [ - "BDT", - "taka" - ], - "BGN": [ - "BGN", - "lev búlgaro" - ], - "BHD": [ - "BHD", - "dinar bahreiní" - ], - "BIF": [ - "BIF", - "franco burundés" - ], - "BMD": [ - "BMD", - "dólar de Bermudas" - ], - "BND": [ - "BND", - "dólar bruneano" - ], - "BOB": [ - "BOB", - "boliviano" - ], - "BSD": [ - "BSD", - "dólar bahameño" - ], - "BTN": [ - "BTN", - "gultrum" - ], - "BWP": [ - "BWP", - "pula" - ], - "BYR": [ - "BYR", - "rublo bielorruso (2000–2016)" - ], - "BZD": [ - "BZD", - "dólar beliceño" - ], "CAD": [ "CAD", "dólar canadiense" ], - "CDF": [ - "CDF", - "franco congoleño" - ], - "CLP": [ - "CLP", - "peso chileno" - ], - "COP": [ - "COP", - "peso colombiano" - ], - "CRC": [ - "CRC", - "colón costarricense" - ], - "CUC": [ - "CUC", - "peso cubano convertible" - ], - "CUP": [ - "CUP", - "peso cubano" - ], - "CVE": [ - "CVE", - "escudo de Cabo Verde" - ], - "CZK": [ - "CZK", - "corona checa" - ], - "DJF": [ - "DJF", - "franco yibutiano" - ], - "DKK": [ - "DKK", - "corona danesa" - ], - "DOP": [ - "DOP", - "peso dominicano" - ], - "DZD": [ - "DZD", - "dinar argelino" - ], - "EGP": [ - "EGP", - "libra egipcia" - ], - "ERN": [ - "ERN", - "nafka" - ], - "ETB": [ - "ETB", - "bir" - ], "EUR": [ "EUR", "euro" ], - "FJD": [ - "FJD", - "dólar fiyiano" - ], - "FKP": [ - "FKP", - "libra malvinense" - ], - "GEL": [ - "GEL", - "lari" - ], - "GHS": [ - "GHS", - "cedi" - ], - "GIP": [ - "GIP", - "libra gibraltareña" - ], - "GMD": [ - "GMD", - "dalasi" - ], - "GNF": [ - "GNF", - "franco guineano" - ], - "GTQ": [ - "GTQ", - "quetzal guatemalteco" - ], - "HNL": [ - "HNL", - "lempira hondureño" - ], - "HRK": [ - "HRK", - "kuna" - ], - "HTG": [ - "HTG", - "gourde haitiano" - ], - "IDR": [ - "IDR", - "rupia indonesia" - ], - "IQD": [ - "IQD", - "dinar iraquí" - ], - "IRR": [ - "IRR", - "rial iraní" - ], - "ISK": [ - "ISK", - "corona islandesa" - ], - "JMD": [ - "JMD", - "dólar jamaicano" - ], - "JOD": [ - "JOD", - "dinar jordano" - ], - "KES": [ - "KES", - "chelín keniano" - ], - "KGS": [ - "KGS", - "som" - ], - "KHR": [ - "KHR", - "riel" - ], - "KMF": [ - "KMF", - "franco comorense" - ], - "KPW": [ - "KPW", - "won norcoreano" - ], - "KWD": [ - "KWD", - "dinar kuwaití" - ], - "KYD": [ - "KYD", - "dólar de las Islas Caimán" - ], - "KZT": [ - "KZT", - "tenge kazako" - ], - "LAK": [ - "LAK", - "kip" - ], - "LBP": [ - "LBP", - "libra libanesa" - ], - "LKR": [ - "LKR", - "rupia esrilanquesa" - ], - "LRD": [ - "LRD", - "dólar liberiano" - ], - "MGA": [ - "MGA", - "ariari" - ], - "MKD": [ - "MKD", - "dinar macedonio" - ], - "MMK": [ - "MMK", - "kiat" - ], - "MNT": [ - "MNT", - "tugrik" - ], - "MOP": [ - "MOP", - "pataca de Macao" - ], - "MRO": [ - "MRO", - "uguiya (1973–2017)" - ], - "MUR": [ - "MUR", - "rupia mauriciana" - ], - "MVR": [ - "MVR", - "rufiya" - ], "MWK": [ "MWK", "kwacha malauí" ], - "MYR": [ - "MYR", - "ringgit malayo" - ], - "MZN": [ - "MZN", - "metical" - ], - "NAD": [ - "NAD", - "dólar namibio" - ], - "NGN": [ - "NGN", - "naira" - ], - "NIO": [ - "NIO", - "córdoba nicaragüense" - ], - "NOK": [ - "NOK", - "corona noruega" - ], - "NPR": [ - "NPR", - "rupia nepalí" - ], - "OMR": [ - "OMR", - "rial omaní" - ], - "PAB": [ - "PAB", - "balboa panameño" - ], - "PGK": [ - "PGK", - "kina" - ], - "PHP": [ - "PHP", - "peso filipino" - ], - "PKR": [ - "PKR", - "rupia pakistaní" - ], - "PYG": [ - "PYG", - "guaraní paraguayo" - ], - "QAR": [ - "QAR", - "rial catarí" - ], - "RON": [ - "RON", - "leu rumano" - ], - "RSD": [ - "RSD", - "dinar serbio" - ], - "RUB": [ - "RUB", - "rublo ruso" - ], - "RWF": [ - "RWF", - "franco ruandés" - ], - "SAR": [ - "SAR", - "rial saudí" - ], - "SBD": [ - "SBD", - "dólar salomonense" - ], - "SCR": [ - "SCR", - "rupia seychellense" - ], - "SEK": [ - "SEK", - "corona sueca" - ], - "SGD": [ - "SGD", - "dólar singapurense" - ], - "SHP": [ - "SHP", - "libra de Santa Elena" - ], - "SLL": [ - "SLL", - "leona" - ], - "SOS": [ - "SOS", - "chelín somalí" - ], - "SRD": [ - "SRD", - "dólar surinamés" - ], - "SSP": [ - "SSP", - "libra sursudanesa" - ], - "STD": [ - "STD", - "dobra (1977–2017)" - ], - "SYP": [ - "SYP", - "libra siria" - ], - "SZL": [ - "SZL", - "lilangeni" - ], "THB": [ "THB", "baht tailandes" ], - "TJS": [ - "TJS", - "somoni tayiko" - ], - "TMT": [ - "TMT", - "manat turcomano" - ], - "TND": [ - "TND", - "dinar tunecino" - ], - "TOP": [ - "TOP", - "paanga" - ], - "TRY": [ - "TRY", - "lira turca" - ], - "TTD": [ - "TTD", - "dólar de Trinidad y Tobago" - ], - "TZS": [ - "TZS", - "chelín tanzano" - ], - "UAH": [ - "UAH", - "grivna" - ], - "UGX": [ - "UGX", - "chelín ugandés" - ], "USD": [ "USD", "dólar estadounidense" ], - "UYU": [ - "UYU", - "peso uruguayo" - ], "UZS": [ "UZS", "som uzbeko" ], - "VEF": [ - "VEF", - "bolívar venezolano" - ], - "VES": [ - "VES", - "VES" - ], "VND": [ "VND", "dong" - ], - "VUV": [ - "VUV", - "vatu" - ], - "WST": [ - "WST", - "tala" - ], - "XAF": [ - "XAF", - "franco CFA BEAC" - ], - "XOF": [ - "XOF", - "franco CFA BCEAO" - ], - "XPF": [ - "CFPF", - "franco CFP" - ], - "YER": [ - "YER", - "rial yemení" - ], - "ZAR": [ - "ZAR", - "rand" - ], - "ZMW": [ - "ZMW", - "kuacha zambiano" ] } } 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 d729cf4c39145..9a4f37c36b619 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 1b931c84d9850..0bc297d1c12f0 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 51e59f0d82908..4c044b8dfd570 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 67b9db8ae9100..49879bc818ca4 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 c89d5084e2ee1..77c9468d3fbe5 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 a478cbb932b93..78eb949bad5e2 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 218ef5271c1ff..3f467551d266d 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 6f015c485bb7c..d2b332758d133 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76b0dc893d6c0..bd835b50240b0 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 973cd5667e511..c8a948296c4cc 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 e3527f0067155..9ed6cb76c199d 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 887278ddbc22e..4e0aacef3fb37 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 335bf9d3f3c28..2b2e08624ccc7 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 5fdabb9b91032..bf92abbde712f 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,5 @@ { - "Version": "2.1.47.96", + "Version": "36", "Names": { "BDT": [ "BDT", @@ -9,14 +9,6 @@ "BTN", "ngultrum butanés" ], - "CNH": [ - "CNH", - "CNH" - ], - "ERN": [ - "ERN", - "nakfa" - ], "KGS": [ "KGS", "som kirguís" @@ -45,10 +37,6 @@ "$", "peso mexicano" ], - "MYR": [ - "MYR", - "ringit" - ], "STN": [ "STN", "dobra santotomense" @@ -57,18 +45,6 @@ "THB", "baht tailandés" ], - "UZS": [ - "UZS", - "sum" - ], - "VEF": [ - "VEF", - "bolívar venezolano (2008–2018)" - ], - "VES": [ - "VES", - "bolívar venezolano" - ], "VND": [ "VND", "dong vietnamita" 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 ebb64a5b921c6..ea51767071482 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 278fc23b96c7e..fe7cfe2b5d0b7 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 7617027bc744e..82a13a02e0099 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,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 b5a73ecb6aead..7321c452bfc70 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 973cd5667e511..c8a948296c4cc 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 572b06eda35a4..43799041eef52 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 973cd5667e511..c8a948296c4cc 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 3ac4febf2b1ca..296845a37988e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json @@ -1,17 +1,25 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { - "AMD": [ - "AMD", - "dram" + "BDT": [ + "BDT", + "taka bangladesí" + ], + "BTN": [ + "BTN", + "ngultrum butanés" ], "JPY": [ "¥", "yen" ], - "MYR": [ - "MYR", - "ringit" + "KGS": [ + "KGS", + "som kirguís" + ], + "LAK": [ + "LAK", + "kip laosiano" ], "STN": [ "STN", @@ -29,13 +37,17 @@ "UZS", "sum" ], + "VND": [ + "VND", + "dong vietnamita" + ], "XAF": [ "XAF", "franco CFA de África central" ], - "XOF": [ - "XOF", - "franco CFA de África Occidental" + "ZMW": [ + "ZMW", + "kwacha zambiano" ] } } 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 ddf413c97eaca..90a7d4e75f6b2 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 e364b944fef1b..44c32df34c373 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json @@ -1,9 +1,9 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "VEF": [ "Bs.", - "bolívar venezolano" + "bolívar venezolano (2008–2018)" ], "VES": [ "Bs.S", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/et.json b/src/Symfony/Component/Intl/Resources/data/currencies/et.json index ec43ab26d594c..2daf4ef9dfd04 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/et.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 fbe84a4ede6c9..9e688293cd4b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", @@ -7,95 +7,95 @@ ], "AFN": [ "AFN", - "Afganistango afghania" + "afgani afganiarra" ], "ALL": [ "ALL", - "Albaniako leka" + "lek albaniarra" ], "AMD": [ "AMD", - "Armeniako drama" + "dram armeniarra" ], "ANG": [ "ANG", - "Holandarren Antilletako guilderra" + "Holandarren Antilletako florina" ], "AOA": [ "AOA", - "Angolako kwanza" + "kwanza angolarra" ], "ARS": [ "ARS", - "Argentinako pesoa" + "peso argentinarra" ], "AUD": [ "A$", - "Australiako dolarra" + "dolar australiarra" ], "AWG": [ "AWG", - "Arubako florina" + "florin arubarra" ], "AZN": [ "AZN", - "Azerbaijango manata" + "manat azerbaijandarra" ], "BAM": [ "BAM", - "Bosnia-Herzegovinako marko trukakorra" + "marko bihurgarri bosniarra" ], "BBD": [ "BBD", - "Barbadosetako dolarra" + "dolar barbadostarra" ], "BDT": [ "BDT", - "Bangladesheko taka" + "taka bangladeshtarra" ], "BGN": [ "BGN", - "Bulgariako leva" + "lev bulgariarra" ], "BHD": [ "BHD", - "Bahraingo dinarra" + "dinar bahraindarra" ], "BIF": [ "BIF", - "Burundiko frankoa" + "franko burundiarra" ], "BMD": [ "BMD", - "Bermudetako dolarra" + "dolar bermudarra" ], "BND": [ "BND", - "Bruneiko dolarra" + "dolar bruneitarra" ], "BOB": [ "BOB", - "Boliviako bolivianoa" + "boliviano boliviarra" ], "BRL": [ "R$", - "Brasilgo erreala" + "erreal brasildarra" ], "BSD": [ "BSD", - "Bahametako dolarra" + "dolar bahamarra" ], "BTN": [ "BTN", - "Bhutango ngultruma" + "ngultrum bhutandarra" ], "BWP": [ "BWP", - "Bosniako pula" + "pula botswanarra" ], "BYN": [ "BYN", - "Bielorrusiako errubloa" + "errublo bielorrusiarra" ], "BYR": [ "BYR", @@ -103,35 +103,35 @@ ], "BZD": [ "BZD", - "Belizeko dolarra" + "dolar belizetarra" ], "CAD": [ "CA$", - "Kanadako dolarra" + "dolar kanadarra" ], "CDF": [ "CDF", - "Kongoko frankoa" + "franko kongoarra" ], "CHF": [ "CHF", - "Suitzako frankoa" + "franko suitzarra" ], "CLP": [ "CLP", - "Txileko pesoa" + "peso txiletarra" ], "CNH": [ "CNH", - "yuan txinatar (itsasoz haraindikoa)" + "yuan txinatarra (itsasoz haraindikoa)" ], "CNY": [ "CN¥", - "Txinako yuana" + "yuan txinatarra" ], "COP": [ "COP", - "Kolonbiako pesoa" + "peso kolonbiarra" ], "CRC": [ "CRC", @@ -139,43 +139,43 @@ ], "CUC": [ "CUC", - "Kubako peso trukakorra" + "peso bihurgarri kubatarra" ], "CUP": [ "CUP", - "Kubako pesoa" + "peso kubatarra" ], "CVE": [ "CVE", - "Cabo Verdeko ezkutua" + "ezkutu caboverdetarra" ], "CZK": [ "CZK", - "Txekiar Errepublikako koroa" + "koroa txekiarra" ], "DJF": [ "DJF", - "Djibutiko frankoa" + "franko djibutiarra" ], "DKK": [ "DKK", - "Danimarkako koroa" + "koroa danimarkarra" ], "DOP": [ "DOP", - "Dominikar Errepublikako pesoa" + "peso dominikarra" ], "DZD": [ "DZD", - "Aljeriako dinarra" + "dinar aljeriarra" ], "EGP": [ "EGP", - "Egiptoko libera" + "libera egiptoarra" ], "ERN": [ "ERN", - "Eritreako nakfa" + "nakfa eritrearra" ], "ESP": [ "₧", @@ -184,7 +184,7 @@ ], "ETB": [ "ETB", - "Etiopiako birra" + "birr etiopiarra" ], "EUR": [ "€", @@ -192,87 +192,87 @@ ], "FJD": [ "FJD", - "Fijiko dolarra" + "dolar fijiarra" ], "FKP": [ "FKP", - "Falkland uharteetako libera" + "libera falklandarra" ], "GBP": [ "£", - "Libera esterlina" + "libera esterlina" ], "GEL": [ "GEL", - "Georgiako laria" + "lari georgiarra" ], "GHS": [ "GHS", - "Ghanako cedia" + "cedi ghanatarra" ], "GIP": [ "GIP", - "Gibraltarreko libera" + "libera gibraltartarra" ], "GMD": [ "GMD", - "Ganbiako dalasia" + "dalasi ganbiarra" ], "GNF": [ "GNF", - "Gineako frankoa" + "franko ginearra" ], "GTQ": [ "GTQ", - "Guatemalako quetzala" + "ketzal guatemalarra" ], "GYD": [ "GYD", - "Guyanako dolarra" + "dolar guyanarra" ], "HKD": [ "HK$", - "Hong Kongeko dolarra" + "dolar hongkongtarra" ], "HNL": [ "HNL", - "Hondurasko lempira" + "lempira hodurastarra" ], "HRK": [ "HRK", - "Kroaziako kuna" + "kuna kroaziarra" ], "HTG": [ "HTG", - "Haitiko gourdea" + "gourde haitiarra" ], "HUF": [ "HUF", - "Hungariako florina" + "florin hungariarra" ], "IDR": [ "IDR", - "Indonesiako errupia" + "errupia indonesiarra" ], "ILS": [ "₪", - "Israelgo shekel berria" + "shekel israeldar berria" ], "INR": [ "₹", - "Indiako errupia" + "errupia indiarra" ], "IQD": [ "IQD", - "Irakeko dinarra" + "dinar irakiarra" ], "IRR": [ "IRR", - "Irango riala" + "rial irandarra" ], "ISK": [ "ISK", - "Islandiako koroa" + "koroa islandiarra" ], "JMD": [ "JMD", @@ -280,63 +280,63 @@ ], "JOD": [ "JOD", - "Jordaniako dinarra" + "dinar jordaniarra" ], "JPY": [ "JP¥", - "Japoniako yena" + "yen japoniarra" ], "KES": [ "KES", - "Kenyako txelina" + "txelin kenyarra" ], "KGS": [ "KGS", - "Kirgizistango soma" + "som kirgizistandarra" ], "KHR": [ "KHR", - "Kanbodiako riela" + "riel kanbodiarra" ], "KMF": [ "KMF", - "Komoreetako frankoa" + "franko komoretarra" ], "KPW": [ "KPW", - "Ipar Koreako wona" + "won iparkorearra" ], "KRW": [ "₩", - "Hego Koreako wona" + "won hegokorearra" ], "KWD": [ "KWD", - "Kuwaiteko dinarra" + "dinar kuwaitarra" ], "KYD": [ "KYD", - "Kaiman uharteetako dolarra" + "dolar kaimandarra" ], "KZT": [ "KZT", - "Kazakhstango tengea" + "tenge kazakhstandarra" ], "LAK": [ "LAK", - "Laoseko kipa" + "kip laostarra" ], "LBP": [ "LBP", - "Libanoko libera" + "libera libanoarra" ], "LKR": [ "LKR", - "Sri Lankako errupia" + "errupia srilankarra" ], "LRD": [ "LRD", - "Liberiako dolarra" + "dolar liberiarra" ], "LSL": [ "LSL", @@ -352,35 +352,35 @@ ], "LYD": [ "LYD", - "Libiako dinarra" + "dinar libiarra" ], "MAD": [ "MAD", - "Marokoko dirhama" + "dirham marokoarra" ], "MDL": [ "MDL", - "Moldaviako leua" + "leu moldaviarra" ], "MGA": [ "MGA", - "Madagaskarreko ariarya" + "ariary madagaskartarra" ], "MKD": [ "MKD", - "Mazedoniako dinarra" + "dinar mazedoniarra" ], "MMK": [ "MMK", - "Myanmarreko kyata" + "kyat myanmartarra" ], "MNT": [ "MNT", - "Mongoliako tugrika" + "tugrik mongoliarra" ], "MOP": [ "MOP", - "Macanako pataca" + "pataca macauarra" ], "MRO": [ "MRO", @@ -388,131 +388,131 @@ ], "MRU": [ "MRU", - "Mauritaniako ouguiya" + "uguiya mauritaniarra" ], "MUR": [ "MUR", - "Maurizio uharteetako errupia" + "errupia mauriziarra" ], "MVR": [ "MVR", - "Maldivetako rufiyaa" + "errupia maldivarra" ], "MWK": [ "MWK", - "Malawiko kwacha" + "kwacha malawiarra" ], "MXN": [ "MX$", - "Mexikoko pesoa" + "peso mexikarra" ], "MYR": [ "MYR", - "Malaysiako ringgita" + "ringgit malaysiarra" ], "MZN": [ "MZN", - "Mozambikeko metikala" + "metical mozambiketarra" ], "NAD": [ "NAD", - "Namibiako dolarra" + "dolar namibiarra" ], "NGN": [ "NGN", - "Nigeriako naira" + "naira nigeriarra" ], "NIO": [ "NIO", - "Nikaraguako cordoba" + "córdoba nikaraguarra" ], "NOK": [ "NOK", - "Norvegiako koroa" + "koroa norvegiarra" ], "NPR": [ "NPR", - "Nepalgo errupia" + "errupia nepaldarra" ], "NZD": [ "NZ$", - "Zeelanda Berriko dolarra" + "dolar zeelandaberritarra" ], "OMR": [ "OMR", - "Omango riala" + "rial omandarra" ], "PAB": [ "PAB", - "Panamako balboa" + "balboa panamarra" ], "PEN": [ "PEN", - "Peruko sol" + "sol perutarra" ], "PGK": [ "PGK", - "Papua Ginea Berriko kina" + "kina gineaberriarra" ], "PHP": [ "PHP", - "Filipinetako pesoa" + "peso filipinarra" ], "PKR": [ "PKR", - "Pakistango errupia" + "errupia pakistandarra" ], "PLN": [ "PLN", - "Poloniako zlotya" + "zloty poloniarra" ], "PYG": [ "PYG", - "Paraguaiko guarania" + "guarani paraguaitarra" ], "QAR": [ "QAR", - "Qatarreko riala" + "riyal qatartarra" ], "RON": [ "RON", - "Errumaniako leua" + "leu errumaniarra" ], "RSD": [ "RSD", - "Serbiako dinarra" + "dinar serbiarra" ], "RUB": [ "RUB", - "Errusiako errubloa" + "errublo errusiarra" ], "RWF": [ "RWF", - "Ruandako frankoa" + "franko ruandarra" ], "SAR": [ "SAR", - "Arabia Saudiko riala" + "riyal saudiarabiarra" ], "SBD": [ "SBD", - "Salomon uharteetako dolarra" + "dolar salomondarra" ], "SCR": [ "SCR", - "Seychelleetako errupia" + "errupia seychelletarra" ], "SDG": [ "SDG", - "Sudango libera" + "libera sudandarra" ], "SEK": [ "SEK", - "Suediako koroa" + "koroa suediarra" ], "SGD": [ "SGD", - "Singapurreko dolarra" + "dolar singapurtarra" ], "SHP": [ "SHP", @@ -520,19 +520,19 @@ ], "SLL": [ "SLL", - "Sierra Leonako leona" + "leone sierraleonarra" ], "SOS": [ "SOS", - "Somaliako txelina" + "txelin somaliarra" ], "SRD": [ "SRD", - "Surinameko dolarra" + "dolar surinamdarra" ], "SSP": [ "SSP", - "Hego Sudango libera" + "libera hegosudandarra" ], "STD": [ "STD", @@ -540,31 +540,31 @@ ], "STN": [ "STN", - "Sao Tome eta Principeko dobra" + "dobra saotometarra" ], "SYP": [ "SYP", - "Siriako libera" + "libera siriarra" ], "SZL": [ "SZL", - "Swazilandiako lilangenia" + "lilangeni swazilandiarra" ], "THB": [ "฿", - "Thailandiako bahta" + "baht thailandiarra" ], "TJS": [ "TJS", - "Tajikistango somonia" + "somoni tajikistandarra" ], "TMT": [ "TMT", - "Turkmenistango manata" + "manat turkmenistandarra" ], "TND": [ "TND", - "Tunisiako dinarra" + "dinar tunisiarra" ], "TOP": [ "TOP", @@ -572,7 +572,7 @@ ], "TRY": [ "TRY", - "Turkiako lira" + "lira turkiarra" ], "TTD": [ "TTD", @@ -580,11 +580,11 @@ ], "TWD": [ "NT$", - "Taiwango dolar berria" + "dolar taiwandar berria" ], "TZS": [ "TZS", - "Tanzaniako txelina" + "txelin tanzaniarra" ], "UAH": [ "UAH", @@ -592,19 +592,19 @@ ], "UGX": [ "UGX", - "Ugandako txelina" + "txelin ugandarra" ], "USD": [ "US$", - "AEBko dolarra" + "dolar estatubatuarra" ], "UYU": [ "UYU", - "Uruguaiko pesoa" + "peso uruguaitarra" ], "UZS": [ "UZS", - "Uzbekistango soma" + "sum uzbekistandarra" ], "VEF": [ "VEF", @@ -612,19 +612,19 @@ ], "VES": [ "VES", - "Venezuelako bolivarra" + "bolivar venezuelarra" ], "VND": [ "₫", - "Vietnameko donga" + "dong vietnamdarra" ], "VUV": [ "VUV", - "Vanuatuko vatua" + "vatu vanuatuarra" ], "WST": [ "WST", - "Samoko tala" + "tala samoarra" ], "XAF": [ "FCFA", @@ -644,11 +644,11 @@ ], "YER": [ "YER", - "Yemengo riala" + "rial yemendarra" ], "ZAR": [ "ZAR", - "Hegoafrikako randa" + "rand hegoafrikarra" ], "ZMK": [ "ZMK", @@ -656,7 +656,7 @@ ], "ZMW": [ "ZMW", - "Zambiako kwacha" + "kwacha zambiarra" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index 333d1a64c49d3..b597c08fcc8d7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -17,6 +17,10 @@ "؋", "افغانی افغانستان" ], + "ALK": [ + "ALK", + "لک آلبانی (۱۹۴۶ تا ۱۹۶۵)" + ], "ALL": [ "ALL", "لک آلبانی" @@ -33,6 +37,10 @@ "AOA", "کوانزای آنگولا" ], + "ARM": [ + "ARM", + "پزوی آرژانتین (۱۸۸۱ تا ۱۹۷۰)" + ], "ARP": [ "ARP", "پزوی آرژانتین (۱۹۸۳ تا ۱۹۸۵)‏" @@ -225,6 +233,10 @@ "DZD", "دینار الجزایر" ], + "EEK": [ + "EEK", + "کرون استونی" + ], "EGP": [ "EGP", "پوند مصر" @@ -233,6 +245,10 @@ "ERN", "ناکفای اریتره" ], + "ESP": [ + "ESP", + "پزتای اسپانیا" + ], "ETB": [ "ETB", "بیر اتیوپی" @@ -325,6 +341,14 @@ "IEP", "پوند ایرلند" ], + "ILP": [ + "ILP", + "پوند اسرائیل" + ], + "ILR": [ + "ILR", + "شقل اسرائیل (۱۹۸۰ تا ۱۹۸۵)" + ], "ILS": [ "₪", "شقل جدید اسرائیل" @@ -341,6 +365,10 @@ "ریال", "ریال ایران" ], + "ISJ": [ + "ISJ", + "کرونای ایسلند (۱۹۱۸ تا ۱۹۸۱)" + ], "ISK": [ "ISK", "کرونای ایسلند" @@ -381,6 +409,10 @@ "KPW", "وون کرهٔ شمالی" ], + "KRO": [ + "KRO", + "وون کرهٔ جنوبی (۱۹۴۵ تا ۱۹۵۳)" + ], "KRW": [ "₩", "وون کرهٔ جنوبی" @@ -449,6 +481,10 @@ "MAF", "فرانک مراکش" ], + "MCF": [ + "MCF", + "فرانک موناکو" + ], "MDL": [ "MDL", "لئوی مولداوی" @@ -465,6 +501,10 @@ "MKD", "دینار مقدونیه" ], + "MKN": [ + "MKN", + "دینار مقدونیه (۱۹۹۲ تا ۱۹۹۳)" + ], "MLF": [ "MLF", "فرانک مالی" @@ -501,6 +541,10 @@ "MUR", "روپیهٔ موریس" ], + "MVP": [ + "MVP", + "روپیهٔ مالدیو (۱۹۴۷ تا ۱۹۸۱)" + ], "MVR": [ "MVR", "روپیهٔ مالدیو" @@ -565,9 +609,17 @@ "PAB", "بالبوای پاناما" ], + "PEI": [ + "PEI", + "اینتی پرو" + ], "PEN": [ "PEN", - "نوئووسول پرو" + "سول پرو" + ], + "PES": [ + "PES", + "سول پرو (۱۸۶۳ تا ۱۹۶۵)" ], "PGK": [ "PGK", 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 712fb418e1d42..beedaee84ebc9 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 41d333d37f490..88aa6f1541afd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AED": [ "AED", 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 2d5102480f57f..edfa7c4143764 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ef4a24b4b2748..1942ca156f860 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 002b1ab1a4074..c80cfd0c5c90a 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 2d5102480f57f..edfa7c4143764 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 5271aac55ceea..cf9fd44cd7c39 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 0aff40d47cf46..94c4f3fa782b3 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 f013dbd1c338e..4c7dac14375dc 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 de8e572a3fdeb..fbb480572cf20 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 0aff40d47cf46..94c4f3fa782b3 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ac3a9c48afe94..7b19f385304b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -1033,6 +1033,10 @@ "UYU", "Uruguayn peso" ], + "UYW": [ + "UYW", + "Uruguayn nimellinen palkkaindeksiyksikkö" + ], "UZS": [ "UZS", "Uzbekistanin som" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index 7ff809bd4fbe0..f38cabf7ecae6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.9", + "Version": "36", "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 aa104718515fe..efdb0760f9662 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 66ff99851e244..3f15b3e4c8017 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -990,7 +990,7 @@ "vatu vanuatuan" ], "WST": [ - "WS$", + "$WS", "tala samoan" ], "XAF": [ 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 1900ede0fec50..8b4df7d6a8937 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 2d72ca1a0c366..77dc3324359dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json @@ -1,10 +1,6 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { - "AFN": [ - "AFN", - "afghani afghan" - ], "ARS": [ "ARS", "peso argentin" @@ -17,18 +13,6 @@ "AZN", "manat azerbaïdjanais" ], - "BBD": [ - "BBD", - "dollar barbadien" - ], - "BDT": [ - "BDT", - "taka bangladeshi" - ], - "BHD": [ - "BHD", - "dinar bahreïni" - ], "BMD": [ "BMD", "dollar bermudien" @@ -37,10 +21,6 @@ "BND", "dollar brunéien" ], - "BYR": [ - "BYR", - "rouble biélorusse (2000–2016)" - ], "BZD": [ "BZD", "dollar bélizéen" @@ -49,10 +29,6 @@ "$", "dollar canadien" ], - "CHF": [ - "CHF", - "franc suisse" - ], "CLP": [ "CLP", "peso chilien" @@ -65,30 +41,10 @@ "COP", "peso colombien" ], - "CUP": [ - "CUP", - "peso cubain" - ], "CVE": [ "CVE", "escudo cap-verdien" ], - "DKK": [ - "DKK", - "couronne danoise" - ], - "DZD": [ - "DZD", - "dinar algérien" - ], - "EGP": [ - "EGP", - "livre égyptienne" - ], - "EUR": [ - "€", - "euro" - ], "FJD": [ "FJD", "dollar fidjien" @@ -101,30 +57,14 @@ "£", "livre sterling" ], - "GHS": [ - "GHS", - "cédi ghanéen" - ], "GIP": [ "GIP", "livre de Gibraltar" ], - "GMD": [ - "GMD", - "dalasi gambien" - ], - "GNF": [ - "GNF", - "franc guinéen" - ], "HKD": [ "$ HK", "dollar de Hong Kong" ], - "IDR": [ - "IDR", - "roupie indonésienne" - ], "ILS": [ "ILS", "nouveau shekel israélien" @@ -137,18 +77,10 @@ "IRR", "rial iranien" ], - "ISK": [ - "ISK", - "couronne islandaise" - ], "JPY": [ "¥", "yen japonais" ], - "KPW": [ - "KPW", - "won nord-coréen" - ], "KRW": [ "KRW", "won sud-coréen" @@ -161,74 +93,14 @@ "LBP", "livre libanaise" ], - "LKR": [ - "LKR", - "roupie srilankaise" - ], - "LRD": [ - "LRD", - "dollar libérien" - ], - "LTL": [ - "LTL", - "litas lituanien" - ], - "LVL": [ - "LVL", - "lats letton" - ], - "LYD": [ - "LYD", - "dinar libyen" - ], - "MAD": [ - "MAD", - "dirham marocain" - ], - "MMK": [ - "MMK", - "kyat myanmarais" - ], - "MNT": [ - "MNT", - "tugrik mongol" - ], - "MOP": [ - "MOP", - "pataca macanaise" - ], - "MRO": [ - "MRO", - "ouguiya mauritanien (1973–2017)" - ], - "MVR": [ - "MVR", - "rufiyaa maldivien" - ], "MXN": [ "MXN", "peso mexicain" ], - "MYR": [ - "MYR", - "ringgit malais" - ], "NAD": [ "NAD", "dollar namibien" ], - "NGN": [ - "NGN", - "naira nigérian" - ], - "NOK": [ - "NOK", - "couronne norvégienne" - ], - "NPR": [ - "NPR", - "roupie népalaise" - ], "NZD": [ "$ NZ", "dollar néo-zélandais" @@ -245,10 +117,6 @@ "PGK", "kina papou-néo-guinéen" ], - "PKR": [ - "PKR", - "roupie pakistanaise" - ], "QAR": [ "QAR", "riyal du Qatar" @@ -261,50 +129,14 @@ "SBD", "dollar des îles Salomon" ], - "SDG": [ - "SDG", - "livre soudanaise" - ], - "SEK": [ - "SEK", - "couronne suédoise" - ], "SGD": [ "$ SG", "dollar de Singapour" ], - "SHP": [ - "SHP", - "livre de Sainte-Hélène" - ], - "SLL": [ - "SLL", - "leone sierra-léonais" - ], "SRD": [ "SRD", "dollar du Suriname" ], - "SSP": [ - "SSP", - "livre sud-soudanaise" - ], - "STD": [ - "STD", - "dobra santoméen (1977–2017)" - ], - "THB": [ - "THB", - "baht thaïlandais" - ], - "TJS": [ - "TJS", - "somoni tadjik" - ], - "TND": [ - "TND", - "dinar tunisien" - ], "TOP": [ "TOP", "pa’anga" 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 975e8f845f5d9..913db11eee8ca 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 040f4c5466df8..8554b632c7c65 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 afc7cbb89ee7b..491b3f6c1b014 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 98625e064f06c..1527693db5a69 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 1f6e32d090502..4c8e140c5e684 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 dd02025c6c00c..1ea4d0a759445 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 5eeca4a1db98c..ecc4d77d48596 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 bacfe70515960..c0694b24a617f 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 a0beea0f49940..98ca2d20c22fc 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 4398c33315c8a..f2ae54be1a681 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 ec3b831c0ab99..b935a5b482595 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 182f53f401474..5c57822659fe7 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 8b492e9334429..27211b979e259 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 c75de0dd7de1b..a4ed2fe3129a9 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 7f6022b90fb81..688d934cee635 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 c408d9ce0225e..40ab6c94d0b55 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 516710191f817..79adbb5942170 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -53,6 +53,10 @@ "ARA", "Austral Airgintíneach" ], + "ARL": [ + "ARL", + "ARL" + ], "ARM": [ "ARM", "Peso na hAirgintíne (1881–1970)" @@ -93,6 +97,10 @@ "BAM", "Marg Inmhalartaithe na Boisnia-Heirseagaivéine" ], + "BAN": [ + "BAN", + "BAN" + ], "BBD": [ "BBD", "Dollar Bharbadós" @@ -145,6 +153,10 @@ "BOB", "Boliviano" ], + "BOL": [ + "BOL", + "BOL" + ], "BOP": [ "BOP", "Peso na Bolaive" @@ -249,6 +261,10 @@ "COP", "Peso na Colóime" ], + "COU": [ + "COU", + "COU" + ], "CRC": [ "CRC", "Colón Chósta Ríce" @@ -325,6 +341,14 @@ "ERN", "Nakfa na hEiritré" ], + "ESA": [ + "ESA", + "ESA" + ], + "ESB": [ + "ESB", + "ESB" + ], "ESP": [ "ESP", "Peseta na Spáinne" @@ -505,6 +529,14 @@ "KPW", "Won na Cóiré Thuaidh" ], + "KRH": [ + "KRH", + "KRH" + ], + "KRO": [ + "KRO", + "KRO" + ], "KRW": [ "₩", "Won na Cóiré Theas" @@ -593,6 +625,10 @@ "MKD", "Denar na Macadóine" ], + "MKN": [ + "MKN", + "MKN" + ], "MLF": [ "MLF", "Franc Mhailí" @@ -1013,6 +1049,10 @@ "CFPF", "Franc CFP" ], + "XRE": [ + "XRE", + "XRE" + ], "YDD": [ "YDD", "Dínear Éimin" @@ -1033,6 +1073,10 @@ "YUN", "YUN" ], + "YUR": [ + "YUR", + "YUR" + ], "ZAL": [ "ZAL", "Rand na hAfraice Theas (airgeadúil)" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index a642fd8ffc0ae..6bee4feaded20 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -1033,6 +1033,10 @@ "UYU", "Peso Uruguaidheach" ], + "UYW": [ + "UYW", + "aonad inneacs tuarastail ainmeach Uruguaidh" + ], "UZS": [ "UZS", "Som Usbagach" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index 5799c84aa4ede..9f1cf184a281a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -7,27 +7,27 @@ ], "AED": [ "AED", - "Dirham dos Emiratos Árabes Unidos" + "dirham dos Emiratos Árabes Unidos" ], "AFN": [ "AFN", - "Afgani afgano" + "afgani afgán" ], "ALL": [ "ALL", - "Lek albanés" + "lek albanés" ], "AMD": [ "AMD", - "Dram armenio" + "dram armenio" ], "ANG": [ "ANG", - "Florín das Antillas Neerlandesas" + "florín das Antillas Neerlandesas" ], "AOA": [ "AOA", - "Kwanza angolano" + "kwanza angolano" ], "ARP": [ "ARP", @@ -35,31 +35,31 @@ ], "ARS": [ "ARS", - "Peso arxentino" + "peso arxentino" ], "AUD": [ "A$", - "Dólar australiano" + "dólar australiano" ], "AWG": [ "AWG", - "Florín de Aruba" + "florín de Aruba" ], "AZN": [ "AZN", - "Manat acerbaixano" + "manat acerbaixano" ], "BAM": [ "BAM", - "Marco convertible de Bosnia e Hercegovina" + "marco convertible de Bosnia e Hercegovina" ], "BBD": [ "BBD", - "Dólar de Barbados" + "dólar de Barbados" ], "BDT": [ "BDT", - "Taka de Bangladés" + "taka de Bangladesh" ], "BEC": [ "BEC", @@ -75,27 +75,27 @@ ], "BGN": [ "BGN", - "Lev búlgaro" + "lev búlgaro" ], "BHD": [ "BHD", - "Dinar de Bahrain" + "dinar de Bahrain" ], "BIF": [ "BIF", - "Franco burundiano" + "franco burundiano" ], "BMD": [ "BMD", - "Dólar das Bemudas" + "dólar bermudano" ], "BND": [ "BND", - "Dólar de Brunei" + "dólar de Brunei" ], "BOB": [ "BOB", - "Boliviano" + "boliviano" ], "BOP": [ "BOP", @@ -119,7 +119,7 @@ ], "BRL": [ "R$", - "Real brasileiro" + "real brasileiro" ], "BRN": [ "BRN", @@ -131,19 +131,19 @@ ], "BSD": [ "BSD", - "Dólar das Bahamas" + "dólar bahamés" ], "BTN": [ "BTN", - "Ngultrum butanés" + "ngultrum butanés" ], "BWP": [ "BWP", - "Pula botsuaniano" + "pula botswaniano" ], "BYN": [ "BYN", - "Rublo bielorruso" + "rublo belaruso" ], "BYR": [ "BYR", @@ -151,19 +151,19 @@ ], "BZD": [ "BZD", - "Dólar belizense" + "dólar belizense" ], "CAD": [ "CA$", - "Dólar canadense" + "dólar canadense" ], "CDF": [ "CDF", - "Franco congolés" + "franco congolés" ], "CHF": [ "CHF", - "Franco suízo" + "franco suízo" ], "CLF": [ "CLF", @@ -171,39 +171,39 @@ ], "CLP": [ "CLP", - "Peso chileno" + "peso chileno" ], "CNH": [ "CNH", - "Iuán chinés (extracontinental)" + "iuán chinés (extracontinental)" ], "CNY": [ "CN¥", - "Iuán chinés" + "iuán chinés" ], "COP": [ "COP", - "Peso colombiano" + "peso colombiano" ], "CRC": [ "CRC", - "Colón costarriqueño" + "colón costarriqueño" ], "CUC": [ "CUC", - "Peso cubano convertible" + "peso cubano convertible" ], "CUP": [ "CUP", - "Peso cubano" + "peso cubano" ], "CVE": [ "CVE", - "Escudo caboverdiano" + "escudo caboverdiano" ], "CZK": [ "CZK", - "Coroa checa" + "coroa checa" ], "DEM": [ "DEM", @@ -211,19 +211,19 @@ ], "DJF": [ "DJF", - "Franco xibutiano" + "franco djibutiano" ], "DKK": [ "DKK", - "Coroa dinamarquesa" + "coroa dinamarquesa" ], "DOP": [ "DOP", - "Peso dominicano" + "peso dominicano" ], "DZD": [ "DZD", - "Dinar alxeriano" + "dinar alxeriano" ], "ECS": [ "ECS", @@ -235,11 +235,11 @@ ], "EGP": [ "EGP", - "Libra exipcia" + "libra exipcia" ], "ERN": [ "ERN", - "Nakfa eritreo" + "nakfa eritreo" ], "ESA": [ "ESA", @@ -256,19 +256,19 @@ ], "ETB": [ "ETB", - "Birr etíope" + "birr etíope" ], "EUR": [ "€", - "Euro" + "euro" ], "FJD": [ "FJD", - "Dólar fidxiano" + "dólar fixiano" ], "FKP": [ "FKP", - "Libra das Malvinas" + "libra das Illas Malvinas" ], "FRF": [ "FRF", @@ -276,27 +276,27 @@ ], "GBP": [ "£", - "Libra esterlina" + "libra esterlina" ], "GEL": [ "GEL", - "Lari xeorxiano" + "lari xeorxiano" ], "GHS": [ "GHS", - "Cedi de Ghana" + "cedi ghanés" ], "GIP": [ "GIP", - "Libra xibraltareña" + "libra xibraltareña" ], "GMD": [ "GMD", - "Dalasi gambiano" + "dalasi gambiano" ], "GNF": [ "GNF", - "Franco guineano" + "franco guineano" ], "GNS": [ "GNS", @@ -312,35 +312,35 @@ ], "GTQ": [ "GTQ", - "Quetzal guatemalteco" + "quetzal guatemalteco" ], "GYD": [ "GYD", - "Dólar güianés" + "dólar güianés" ], "HKD": [ "HK$", - "Dólar de Hong Kong" + "dólar de Hong Kong" ], "HNL": [ "HNL", - "Lempira hondureño" + "lempira hondureño" ], "HRK": [ "HRK", - "Kuna croata" + "kuna croata" ], "HTG": [ "HTG", - "Gourde haitiano" + "gourde haitiana" ], "HUF": [ "HUF", - "Florín húngaro" + "florín húngaro" ], "IDR": [ "IDR", - "Rupia indonesia" + "rupia indonesia" ], "IEP": [ "IEP", @@ -348,23 +348,23 @@ ], "ILS": [ "₪", - "Novo shequel israelí" + "novo shequel israelí" ], "INR": [ "₹", - "Rupia india" + "rupia india" ], "IQD": [ "IQD", - "Dinar iraquí" + "dinar iraquí" ], "IRR": [ "IRR", - "Rial iraniano" + "rial iraniano" ], "ISK": [ "ISK", - "Coroa islandesa" + "coroa islandesa" ], "ITL": [ "ITL", @@ -372,67 +372,67 @@ ], "JMD": [ "JMD", - "Dólar xamaicano" + "dólar xamaicano" ], "JOD": [ "JOD", - "Dinar xordano" + "dinar xordano" ], "JPY": [ "JP¥", - "Ien xaponés" + "ien xaponés" ], "KES": [ "KES", - "Xilin kenyano" + "xilin kenyano" ], "KGS": [ "KGS", - "Som quirguicistano" + "som kirguiz" ], "KHR": [ "KHR", - "Riel camboxano" + "riel camboxano" ], "KMF": [ "KMF", - "Franco comoriano" + "franco comoriano" ], "KPW": [ "KPW", - "Won norcoreano" + "won norcoreano" ], "KRW": [ "₩", - "Won surcoreano" + "won surcoreano" ], "KWD": [ "KWD", - "Dinar kuwaití" + "dinar kuwaití" ], "KYD": [ "KYD", - "Dólar das Illas Caimán" + "dólar das Illas Caimán" ], "KZT": [ "KZT", - "Tenge casaco" + "tenge kazako" ], "LAK": [ "LAK", - "Kip laosiano" + "kip laosiano" ], "LBP": [ "LBP", - "Libra libanesa" + "libra libanesa" ], "LKR": [ "LKR", - "Rupia de Sri Lanka" + "rupia srilankesa" ], "LRD": [ "LRD", - "Dólar liberiano" + "dólar liberiano" ], "LSL": [ "LSL", @@ -460,11 +460,11 @@ ], "LYD": [ "LYD", - "Dinar libio" + "dinar libio" ], "MAD": [ "MAD", - "Dirham marroquí" + "dirham marroquí" ], "MAF": [ "MAF", @@ -476,23 +476,23 @@ ], "MGA": [ "MGA", - "Ariary malgaxe" + "ariary malgaxe" ], "MKD": [ "MKD", - "Dinar macedonio" + "dinar macedonio" ], "MMK": [ "MMK", - "Kyat birmano" + "kyat birmano" ], "MNT": [ "MNT", - "Tugrik mongol" + "tugrik mongol" ], "MOP": [ "MOP", - "Pataca de Macau" + "pataca macaense" ], "MRO": [ "MRO", @@ -500,23 +500,23 @@ ], "MRU": [ "MRU", - "Ouguiya mauritano" + "ouguiya mauritano" ], "MUR": [ "MUR", - "Rupia mauriciana" + "rupia mauriciana" ], "MVR": [ "MVR", - "Rupia maldivana" + "rupia maldivana" ], "MWK": [ "MWK", - "Kwacha de Malaui" + "kwacha de Malawi" ], "MXN": [ "$MX", - "Peso mexicano" + "peso mexicano" ], "MXP": [ "MXP", @@ -528,19 +528,19 @@ ], "MYR": [ "MYR", - "Ringgit malaio" + "ringgit malaio" ], "MZN": [ "MZN", - "Metical de Mozambique" + "metical mozambicano" ], "NAD": [ "NAD", - "Dólar namibio" + "dólar namibio" ], "NGN": [ "NGN", - "Naira nixeriano" + "naira nixeriano" ], "NIC": [ "NIC", @@ -548,7 +548,7 @@ ], "NIO": [ "NIO", - "Córdoba de ouro nicaraguano" + "córdoba nicaraguano" ], "NLG": [ "NLG", @@ -556,23 +556,23 @@ ], "NOK": [ "NOK", - "Coroa norueguesa" + "coroa norueguesa" ], "NPR": [ "NPR", - "Rupia nepalesa" + "rupia nepalesa" ], "NZD": [ "NZ$", - "Dólar neozelandés" + "dólar neozelandés" ], "OMR": [ "OMR", - "Rial omaní" + "rial omaní" ], "PAB": [ "PAB", - "Balboa panameño" + "balboa panameño" ], "PEI": [ "PEI", @@ -580,7 +580,7 @@ ], "PEN": [ "PEN", - "Sol peruano" + "sol peruano" ], "PES": [ "PES", @@ -588,19 +588,19 @@ ], "PGK": [ "PGK", - "Kina de Papúa-Nova Guinea" + "kina de Papúa-Nova Guinea" ], "PHP": [ "PHP", - "Peso filipino" + "peso filipino" ], "PKR": [ "PKR", - "Rupia paquistaní" + "rupia paquistaní" ], "PLN": [ "PLN", - "Zloty polaco" + "zloty polaco" ], "PTE": [ "PTE", @@ -608,23 +608,23 @@ ], "PYG": [ "PYG", - "Guaraní paraguaio" + "guaraní paraguaio" ], "QAR": [ "QAR", - "Rial qatarí" + "rial qatarí" ], "RON": [ "RON", - "Leu romanés" + "leu romanés" ], "RSD": [ "RSD", - "Dinar serbio" + "dinar serbio" ], "RUB": [ "RUB", - "Rublo ruso" + "rublo ruso" ], "RUR": [ "RUR", @@ -632,51 +632,51 @@ ], "RWF": [ "RWF", - "Franco ruandés" + "franco ruandés" ], "SAR": [ "SAR", - "Rial saudita" + "rial saudita" ], "SBD": [ "SBD", - "Dólar das Illas Salomón" + "dólar das Illas Salomón" ], "SCR": [ "SCR", - "Rupia de Seixeles" + "rupia de Seychelles" ], "SDG": [ "SDG", - "Libra sudanesa" + "libra sudanesa" ], "SEK": [ "SEK", - "Coroa sueca" + "coroa sueca" ], "SGD": [ "SGD", - "Dólar de Singapur" + "dólar de Singapur" ], "SHP": [ "SHP", - "Libra de Santa Helena" + "libra de Santa Helena" ], "SLL": [ "SLL", - "Leone de Serra Leoa" + "leone de Serra Leoa" ], "SOS": [ "SOS", - "Xilin somalí" + "xilin somalí" ], "SRD": [ "SRD", - "Dólar surinamés" + "dólar surinamés" ], "SSP": [ "SSP", - "Libra sursudanesa" + "libra sursudanesa" ], "STD": [ "STD", @@ -684,7 +684,7 @@ ], "STN": [ "STN", - "Dobra de São Tomé e Príncipe" + "dobra de San Tomé e Príncipe" ], "SUR": [ "SUR", @@ -696,59 +696,59 @@ ], "SYP": [ "SYP", - "Libra siria" + "libra siria" ], "SZL": [ "SZL", - "Lilangeni de Suacilandia" + "lilangeni de Eswatini" ], "THB": [ "฿", - "Baht tailandés" + "baht tailandés" ], "TJS": [ "TJS", - "Somoni taxiquistano" + "somoni taxiquistano" ], "TMT": [ "TMT", - "Manat turcomán" + "manat turkmeno" ], "TND": [ "TND", - "Dinar tunisiano" + "dinar tunisiano" ], "TOP": [ "TOP", - "Paʻanga de Tonga" + "paʻanga tongano" ], "TRY": [ "TRY", - "Lira turca" + "lira turca" ], "TTD": [ "TTD", - "Dólar de Trinidad e Tobago" + "dólar trinitense" ], "TWD": [ "NT$", - "Novo dólar taiwanés" + "novo dólar taiwanés" ], "TZS": [ "TZS", - "Xilin tanzano" + "xilin tanzano" ], "UAH": [ "UAH", - "Hrivna ucraína" + "hrivna ucraína" ], "UGX": [ "UGX", - "Xilin ugandés" + "xilin ugandés" ], "USD": [ "$", - "Dólar estadounidense" + "dólar estadounidense" ], "UYI": [ "UYI", @@ -760,11 +760,11 @@ ], "UYU": [ "UYU", - "Peso uruguaio" + "peso uruguaio" ], "UZS": [ "UZS", - "Som usbeco" + "som uzbeko" ], "VEB": [ "VEB", @@ -776,43 +776,43 @@ ], "VES": [ "VES", - "Bolívar venezolano" + "bolívar venezolano" ], "VND": [ "₫", - "Dong vietnamita" + "dong vietnamita" ], "VUV": [ "VUV", - "Vatu vanuatiano" + "vatu vanuatiano" ], "WST": [ "WST", - "Tala samoano" + "tala samoano" ], "XAF": [ "FCFA", - "Franco CFA (BEAC)" + "franco CFA (BEAC)" ], "XCD": [ - "EC$", - "Dólar do Caribe Oriental" + "XCD", + "dólar do Caribe Oriental" ], "XOF": [ "CFA", - "Franco CFA (BCEAO)" + "franco CFA (BCEAO)" ], "XPF": [ "CFPF", - "Franco CFP" + "franco CFP" ], "YER": [ "YER", - "Rial iemení" + "rial iemení" ], "ZAR": [ "ZAR", - "Rand surafricano" + "rand surafricano" ], "ZMK": [ "ZMK", @@ -820,7 +820,7 @@ ], "ZMW": [ "ZMW", - "Kwacha zambiano" + "kwacha zambiano" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index d330fde0d60c7..047bcf36f7b7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AED": [ "AED", @@ -51,7 +51,7 @@ ], "BDT": [ "BDT", - "બાંગલાદેશી ટાકા" + "બાંગ્લાદેશી ટાકા" ], "BGN": [ "BGN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json index 82c4c8069f9a8..c8614b7918776 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { "AED": [ "AED", @@ -151,7 +151,7 @@ ], "NGN": [ "₦", - "Naira" + "Nairar Najeriya" ], "RUB": [ "RUB", 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 24cb07cf0d794..1942ca156f860 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.22", + "Version": "36", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha_NE.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha_NE.json deleted file mode 100644 index ff8742fe76418..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha_NE.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "Version": "2.1.48.77", - "Names": { - "AED": [ - "AED", - "Kuɗin Haɗaɗɗiyar Daular Larabawa" - ], - "AOA": [ - "AOA", - "Kuɗin Angola" - ], - "AUD": [ - "A$", - "Dalar Ostareliya" - ], - "BHD": [ - "BHD", - "Kuɗin Baharan" - ], - "BIF": [ - "BIF", - "Kuɗin Burundi" - ], - "BRL": [ - "R$", - "Ril Kudin Birazil" - ], - "BWP": [ - "BWP", - "Kuɗin Baswana" - ], - "CAD": [ - "CA$", - "Dalar Kanada" - ], - "CDF": [ - "CDF", - "Kuɗin Kongo" - ], - "CHF": [ - "CHF", - "Kuɗin Suwizalan" - ], - "CNY": [ - "CN¥", - "Yuwan kasar Sin" - ], - "CVE": [ - "CVE", - "Kuɗin Tsibiran Kap Barde" - ], - "DJF": [ - "DJF", - "Kuɗin Jibuti" - ], - "DZD": [ - "DZD", - "Kuɗin Aljeriya" - ], - "EGP": [ - "EGP", - "Fam kin Masar" - ], - "ERN": [ - "ERN", - "Kuɗin Eritireya" - ], - "ETB": [ - "ETB", - "Kuɗin Habasha" - ], - "EUR": [ - "€", - "Yuro" - ], - "GBP": [ - "£", - "Fam na Ingila" - ], - "GHC": [ - "GHC", - "Cedi" - ], - "GMD": [ - "GMD", - "Kuɗin Gambiya" - ], - "GNS": [ - "GNS", - "Kuɗin Gini" - ], - "INR": [ - "₹", - "Kuɗin Indiya" - ], - "JPY": [ - "¥", - "Yen kasar Japan" - ], - "KES": [ - "KES", - "Sulen Kenya" - ], - "KMF": [ - "KMF", - "Kuɗin Kwamoras" - ], - "LRD": [ - "LRD", - "Dalar Laberiya" - ], - "LSL": [ - "LSL", - "Kuɗin Lesoto" - ], - "LYD": [ - "LYD", - "Kuɗin Libiya" - ], - "MAD": [ - "MAD", - "Kuɗin Maroko" - ], - "MGA": [ - "MGA", - "Kuɗin Madagaskar" - ], - "MRO": [ - "MRO", - "Kuɗin Moritaniya (1973–2017)" - ], - "MRU": [ - "MRU", - "Kuɗin Moritaniya" - ], - "MUR": [ - "MUR", - "Kuɗin Moritus" - ], - "MWK": [ - "MWK", - "Kuɗin Malawi" - ], - "MZM": [ - "MZM", - "Kuɗin Mozambik" - ], - "NAD": [ - "NAD", - "Dalar Namibiya" - ], - "NGN": [ - "₦", - "Naira" - ], - "RUB": [ - "RUB", - "Ruble kasar Rasha" - ], - "RWF": [ - "RWF", - "Kuɗin Ruwanda" - ], - "SAR": [ - "SAR", - "Riyal" - ], - "SCR": [ - "SCR", - "Kuɗin Saishal" - ], - "SDG": [ - "SDG", - "Fam kin Sudan" - ], - "SHP": [ - "SHP", - "Fam kin San Helena" - ], - "SLL": [ - "SLL", - "Kuɗin Salewo" - ], - "SOS": [ - "SOS", - "Sulen Somaliya" - ], - "STD": [ - "STD", - "Kuɗin Sawo Tome da Paransip (1977–2017)" - ], - "STN": [ - "STN", - "Kuɗin Sawo Tome da Paransip" - ], - "SZL": [ - "SZL", - "Kuɗin Lilangeni" - ], - "TND": [ - "TND", - "Kuɗin Tunisiya" - ], - "TZS": [ - "TZS", - "Sulen Tanzaniya" - ], - "UGX": [ - "UGX", - "Sule Yuganda" - ], - "USD": [ - "$", - "Dalar Amirka" - ], - "XAF": [ - "FCFA", - "Kuɗin Sefa na Afirka Ta Tsakiya" - ], - "XOF": [ - "CFA", - "Kuɗin Sefa na Afirka Ta Yamma" - ], - "ZAR": [ - "ZAR", - "Kuɗin Afirka Ta Kudu" - ], - "ZMK": [ - "ZMK", - "Kuɗin Zambiya (1968–2012)" - ], - "ZMW": [ - "ZMW", - "Kuɗin Zambiya" - ], - "ZWD": [ - "ZWD", - "Dalar zimbabuwe" - ] - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/he.json b/src/Symfony/Component/Intl/Resources/data/currencies/he.json index 384c3a21cc5a5..29f03346d8105 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/he.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -707,7 +707,7 @@ ], "STN": [ "STN", - "דוברה של סן טומה ופרינסיפה" + "דוברה של סאו טומה ופרינסיפה" ], "SUR": [ "SUR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index 102f9d19bac30..3f3c5e5bb9079 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", @@ -127,7 +127,7 @@ ], "CNH": [ "CNH", - "चीनी यूआन" + "चीनी युआन (ऑफ़शोर)" ], "CNY": [ "CN¥", @@ -679,7 +679,7 @@ ], "UZS": [ "UZS", - "उज़्बेकिस्तान सोम" + "उज़्बेकिस्तानी सोम" ], "VEB": [ "VEB", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index 0471816a996a6..d226960555c27 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -193,6 +193,10 @@ "BRR", "brazilski cruzeiro" ], + "BRZ": [ + "BRZ", + "BRZ" + ], "BSD": [ "BSD", "bahamski dolar" @@ -215,7 +219,7 @@ ], "BYN": [ "BYN", - "bjeloruska rublja" + "bjeloruski rubalj" ], "BYR": [ "BYR", @@ -539,7 +543,7 @@ ], "KHR": [ "KHR", - "kambođanski rijal" + "kambodžanski rijal" ], "KMF": [ "KMF", @@ -633,6 +637,10 @@ "MAF", "marokanski franak" ], + "MCF": [ + "MCF", + "MCF" + ], "MDC": [ "MDC", "moldavski kupon" @@ -643,7 +651,7 @@ ], "MGA": [ "MGA", - "madagaskarski ariary" + "malgaški arijari" ], "MGF": [ "MGF", @@ -835,7 +843,7 @@ ], "RUB": [ "RUB", - "ruska rublja" + "ruski rubalj" ], "RUR": [ "RUR", @@ -847,7 +855,7 @@ ], "SAR": [ "SAR", - "saudijski rial" + "saudijski rijal" ], "SBD": [ "SBD", @@ -1095,7 +1103,7 @@ ], "YER": [ "YER", - "jemenski rial" + "jemenski rijal" ], "YUD": [ "YUD", 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 e99e8db9f6be1..8ce6f5f732895 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 2c3733b5ca004..dd34737dd2cf1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -187,7 +187,7 @@ ], "BYN": [ "BYN", - "fehérorosz rubel" + "belarusz rubel" ], "BYR": [ "BYR", @@ -867,7 +867,7 @@ ], "SZL": [ "SZL", - "szváziföldi lilangeni" + "szvázi lilangeni" ], "THB": [ "THB", @@ -979,7 +979,11 @@ ], "VND": [ "VND", - "vietnami dong" + "vietnámi dong" + ], + "VNN": [ + "VNN", + "vietnámi dong (1978–1985)" ], "VUV": [ "VUV", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index 4163abbe3136f..fe85bc22d5bbd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ia.json b/src/Symfony/Component/Intl/Resources/data/currencies/ia.json index 4097977efad93..779776dc0f692 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ia.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 0932166249a6d..202fb9660c571 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/id.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 1f57ca4d1a0ef..13c237cef5e76 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json @@ -1,10 +1,22 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { + "BMD": [ + "BMD", + "Dollar Bermuda" + ], "BRL": [ "R$", "Real Brazil" ], + "BZD": [ + "BZD", + "Dollar Belize" + ], + "CAD": [ + "CA$", + "Dollar Canada" + ], "CNY": [ "CN¥", "Yuan China" @@ -37,6 +49,14 @@ "RUB", "Ruble Russia" ], + "SRD": [ + "SRD", + "Dollar Surinamese" + ], + "TTD": [ + "TTD", + "Dollar Trinidad & Tobago" + ], "USD": [ "$", "Dollar US" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json index 4ecf7582265c6..0841520efbd36 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 0932166249a6d..202fb9660c571 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/in.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 1b57b6759f2e4..120a51962f1e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/is.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -557,6 +557,10 @@ "NGN", "nígerísk næra" ], + "NIC": [ + "NIC", + "Níkarögsk kordóva (1988–1991)" + ], "NIO": [ "NIO", "níkaraögsk kordóva" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index 57b15ff72f73a..f3d2259909e6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/it.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index 384c3a21cc5a5..29f03346d8105 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -707,7 +707,7 @@ ], "STN": [ "STN", - "דוברה של סן טומה ופרינסיפה" + "דוברה של סאו טומה ופרינסיפה" ], "SUR": [ "SUR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index 7230c5fe32824..a09af6446fb10 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 20e9b589a18c1..55a69fb983743 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/jv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "AED": [ "AED", @@ -119,11 +119,11 @@ ], "CNH": [ "CNH", - "Yuan Cina (Jaban Rangkah)" + "Yuan Tyongkok (Jaban Rangkah)" ], "CNY": [ "CN¥", - "Yuan Cina" + "Yuan Tyongkok" ], "COP": [ "COP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index 0f3d35b5e7bb3..97938794cdfb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 23e09d320ba66..1d24c041287da 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 b7b4344296e41..58b4f96b978a7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 1b524d6de4bda..81621d74c029d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 4365e6cca0805..ea16d82e06599 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/km.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 9374e711095db..496b138519d00 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", @@ -123,7 +123,7 @@ ], "CNH": [ "CNH", - "CNH" + "ಚೈನೀಸ್ ಯುವಾನ್ (ಆಫ್‌ಶೋರ್)" ], "CNY": [ "CN¥", @@ -167,7 +167,7 @@ ], "DZD": [ "DZD", - "ಅಲ್ಗೇರಿಯನ್ ದಿನಾರ್" + "ಅಲ್ಜೀರಿಯನ್ ದಿನಾರ್" ], "EGP": [ "EGP", @@ -259,7 +259,7 @@ ], "IQD": [ "IQD", - "ಇರಾಕಿಯನ್ ದಿನಾರ್‌" + "ಇರಾಕಿ ದಿನಾರ್" ], "IRR": [ "IRR", @@ -375,7 +375,7 @@ ], "MOP": [ "MOP", - "ಮಕ್ಯೂದ ಪಟಕಾ" + "ಮಕಾನಿಸ್ ಪಟಾಕಾ" ], "MRO": [ "MRO", @@ -403,7 +403,7 @@ ], "MYR": [ "MYR", - "ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್ಟ್" + "ಮಲೇಶಿಯನ್ ರಿಂಗಿಟ್" ], "MZN": [ "MZN", @@ -451,7 +451,7 @@ ], "PHP": [ "PHP", - "ಫಿಲಿಪ್ಪೈನ್ ಪೆಸೊ" + "ಫಿಲಿಪ್ಪೈನ್ ಪಿಸೊ" ], "PKR": [ "PKR", @@ -631,7 +631,7 @@ ], "XOF": [ "CFA", - "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾದ [CFA] ಫ್ರಾಂಕ್" + "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾದ CFA ಫ್ರಾಂಕ್" ], "XPF": [ "CFPF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index f34790506f6b3..64746b6ea0430 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 52ebeafb69a20..8c1101badd29c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 8614312a3f28d..99bccabcff83a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ku.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 3623d41848d94..babc33eada314 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index aa4960499ef81..655f02d458f4b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 a6f3d846e9ea5..30b779466ff81 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 600af4403ba31..8617b1ac9241e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 b4bc40767fb8c..2e51c9aeca340 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 aedf42ef61d68..5c0c28bc3295f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -223,11 +223,11 @@ ], "BZD": [ "BZD", - "ໂດ​ລ່າ​ເບ​ລິ​ຊ" + "ໂດ​ລ່າ​ເບ​ລີຊ" ], "CAD": [ "CA$", - "ໂດລ່າຄານາດາ" + "ໂດລ່າແຄນາດາ" ], "CDF": [ "CDF", @@ -303,7 +303,7 @@ ], "CZK": [ "CZK", - "ໂຄ​ຣູ​ນາ ເຊກ" + "ເຊກ ໂຄ​ຣູ​ນາ" ], "DDM": [ "DDM", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "ປອນ ສະ​ເຕີ​ຣິງ (ອັງ​ກິດ)" + "ອັງກິດ ປອນ" ], "GEK": [ "GEK", @@ -403,7 +403,7 @@ ], "GHS": [ "GHS", - "ເຊ​ດິ ກາ​ນາ​ອຽນ" + "ກາ​ນາ​ອຽນ ເຊ​ດິ" ], "GIP": [ "GIP", @@ -743,7 +743,7 @@ ], "NOK": [ "NOK", - "ນໍ​ເວ​ກຽນ ​ໂຄຣນ" + "ນໍ​ເວ​ຈຽນ ​ໂຄຣນ" ], "NPR": [ "NPR", @@ -963,7 +963,7 @@ ], "TTD": [ "TTD", - "ທ​ຣິ​ນິ​ແດດ ແອນ ໂທ​ບາ​ໂກ ໂດ​ລ່າ" + "ທ​ຣິ​ນິ​ແດດ & ໂທ​ບາ​ໂກ ໂດ​ລ່າ" ], "TWD": [ "NT$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index bb1118578fdd7..65afdd843e1e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 b4369e0c4c39d..970eb82f2a5c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 354a48169412b..dd5586b6c1b92 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "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 30ef740551a97..664a651edaea9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 6782a0623822d..71aec58ca3dc2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 e01eb18191b32..74179d5052c6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ANG": [ "ANG", @@ -79,7 +79,7 @@ ], "INR": [ "₹", - "Rupee Iniana" + "Rupī Iniana" ], "JMD": [ "JMD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index ec7786b746084..787203a04fc66 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.27", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -31,7 +31,7 @@ ], "AOA": [ "AOA", - "Анголска Кванза" + "Анголска кванза" ], "AOK": [ "AOK", @@ -71,7 +71,7 @@ ], "BAM": [ "BAM", - "Босанско-Херцеговска конвертибилна марка" + "Босанско-херцеговска конвертибилна марка" ], "BBD": [ "BBD", @@ -151,7 +151,7 @@ ], "BZD": [ "BZD", - "Белизиски Долар" + "Белизиски долар" ], "CAD": [ "CA$", @@ -207,7 +207,7 @@ ], "CZK": [ "CZK", - "Чешка корона" + "Чешка круна" ], "DEM": [ "DEM", @@ -223,7 +223,7 @@ ], "DOP": [ "DOP", - "Доминикански Пезос" + "Доминикански пезос" ], "DZD": [ "DZD", @@ -351,7 +351,7 @@ ], "INR": [ "INR", - "Индијска рупија" + "Индиска рупија" ], "IQD": [ "IQD", @@ -478,7 +478,7 @@ "Малагасиски ариари" ], "MKD": [ - "ден", + "ден.", "Македонски денар" ], "MLF": [ @@ -635,7 +635,7 @@ ], "RON": [ "RON", - "Романска леи" + "Романски леу" ], "RSD": [ "RSD", @@ -723,7 +723,7 @@ ], "STN": [ "STN", - "Добра на Саун Томе и Принсип" + "Добра на Сао Томе и Принсипе" ], "SUR": [ "SUR", @@ -859,7 +859,7 @@ ], "XCD": [ "EC$", - "Источно карибиски долар" + "Источно карипски долар" ], "XOF": [ "CFA", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index f927dcda07c4f..c65462c152118 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 afbbf1727f298..91beb45e5b394 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", @@ -7,43 +7,43 @@ ], "AFN": [ "AFN", - "афганистан афгани" + "Афганистаны афгани" ], "ALL": [ "ALL", - "албанийн лек" + "Албанийн лек" ], "AMD": [ "AMD", - "арменийн драм" + "Арменийн драм" ], "ANG": [ "ANG", - "нидерландын антиллъя гулдер" + "Нидерландын Антиллийн гулдер" ], "AOA": [ "AOA", - "ангол кванза" + "Анголын кванза" ], "ARS": [ "ARS", - "аргентин песо" + "Аргентины песо" ], "AUD": [ "A$", - "австрали доллар" + "Австралийн доллар" ], "AWG": [ "AWG", - "арубын флорин" + "Арубын флорин" ], "AZN": [ "AZN", - "азербайжаны манат" + "Азербайжаны манат" ], "BAM": [ "BAM", - "босни-герцеговин хөрвөгч марк" + "Босни-Герцеговины хөрвөгч марк" ], "BBD": [ "BBD", @@ -51,51 +51,51 @@ ], "BDT": [ "BDT", - "бангладеш така" + "Бангладешийн така" ], "BGN": [ "BGN", - "болгарын лев" + "Болгарын лев" ], "BHD": [ "BHD", - "бахрейн динар" + "Бахрейн динар" ], "BIF": [ "BIF", - "бурунд франк" + "Бурундийн франк" ], "BMD": [ "BMD", - "бермуд доллар" + "Бермудын доллар" ], "BND": [ "BND", - "бруней доллар" + "Брунейн доллар" ], "BOB": [ "BOB", - "боливи боливиано" + "Боливийн боливиано" ], "BRL": [ "R$", - "бразилийн рил" + "Бразилийн реал" ], "BSD": [ "BSD", - "багам доллар" + "Багамын доллар" ], "BTN": [ "BTN", - "бутаны нгултрум" + "Бутаны нгултрум" ], "BWP": [ "BWP", - "ботсвани пула" + "Ботсванийн пула" ], "BYN": [ "BYN", - "беларусь рубль" + "Беларусийн рубль" ], "BYR": [ "BYR", @@ -103,7 +103,7 @@ ], "BZD": [ "BZD", - "белиз доллар" + "Белизийн доллар" ], "CAD": [ "CA$", @@ -111,75 +111,75 @@ ], "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": [ "€", @@ -187,151 +187,151 @@ ], "FJD": [ "FJD", - "фижи доллар" + "Фижигийн доллар" ], "FKP": [ "FKP", - "фолклэнд арлын паунд" + "Фолклендийн арлуудын паунд" ], "GBP": [ "£", - "британийн фунт" + "Британийн фунт" ], "GEL": [ "GEL", - "гүржийн лари" + "Гүржийн лари" ], "GHS": [ "GHS", - "гана седи" + "Ганагийн седи" ], "GIP": [ "GIP", - "гибралтар паунд" + "Гибралтарын фунт" ], "GMD": [ "GMD", - "гамби даласи" + "Гамбийн даласи" ], "GNF": [ "GNF", - "гвиней франк" + "Гвинейн франк" ], "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", - "либери доллар" + "Либерийн доллар" ], "LTL": [ "LTL", @@ -343,35 +343,35 @@ ], "LYD": [ "LYD", - "ливи доллар" + "Ливийн доллар" ], "MAD": [ "MAD", - "мароккогийн дирхам" + "Мороккогийн дирхэм" ], "MDL": [ "MDL", - "молдавын леу" + "Молдовын лей" ], "MGA": [ "MGA", - "малайн ариари" + "Малагасийн ариари" ], "MKD": [ "MKD", - "македони динар" + "Македонийн динар" ], "MMK": [ "MMK", - "мьянмарын киат" + "Мьянмарын киат" ], "MNT": [ "₮", - "төгрөг" + "Монгол төгрөг" ], "MOP": [ "MOP", - "макаогийн патака" + "Макаогийн патака" ], "MRO": [ "MRO", @@ -379,151 +379,151 @@ ], "MRU": [ "MRU", - "мавритан угия" + "Мавританийн угия" ], "MUR": [ "MUR", - "мавритын рупи" + "Маврикийн рупи" ], "MVR": [ "MVR", - "мальдив руфия" + "Мальдивийн руфия" ], "MWK": [ "MWK", - "малави квача" + "Малавийн квача" ], "MXN": [ "MX$", - "мексикийн песо" + "Мексикийн песо" ], "MYR": [ "MYR", - "малайзын рингит" + "Малайзын рингит" ], "MZN": [ "MZN", - "мозамбик метикал" + "Мозамбикийн метикал" ], "NAD": [ "NAD", - "намиби доллар" + "Намибийн доллар" ], "NGN": [ "NGN", - "нигери найра" + "Нигерийн найра" ], "NIO": [ "NIO", - "никарагуагийн кордоба" + "Никарагуагийн кордоба" ], "NOK": [ "NOK", - "норвегийн крон" + "Норвегийн крон" ], "NPR": [ "NPR", - "балба рупи" + "Балбын рупи" ], "NZD": [ "NZ$", - "шинэ зеланд доллар" + "Шинэ Зеландын доллар" ], "OMR": [ "OMR", - "омани риал" + "Оманийн риал" ], "PAB": [ "PAB", - "панамын бальбоа" + "Панамын бальбоа" ], "PEN": [ "PEN", - "перугийн соль" + "Перугийн соль" ], "PGK": [ "PGK", - "папуа-шинэ гвинейн кина" + "Папуа-Шинэ Гвинейн кина" ], "PHP": [ "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", - "өмнөд судан паунд" + "Өмнөд Суданы фунт" ], "STD": [ "STD", @@ -531,59 +531,59 @@ ], "STN": [ "STN", - "сан-томе ба принсипи добра" + "Сан-Томе ба Принсипигийн добра" ], "SYP": [ "SYP", - "сири паунд" + "Сирийн фунт" ], "SZL": [ "SZL", - "свазиланд лилангени" + "Свазиландын лилангени" ], "THB": [ "฿", - "тайландын бат" + "Тайландын бат" ], "TJS": [ "TJS", - "тажикийн сомон" + "Тажикийн сомон" ], "TMT": [ "TMT", - "туркмен манат" + "Туркмены манат" ], "TND": [ "TND", - "тунис доллар" + "Тунисын доллар" ], "TOP": [ "TOP", - "тонгагийн панга" + "Тонгагийн панга" ], "TRY": [ "TRY", - "туркийн лира" + "Туркийн лира" ], "TTD": [ "TTD", - "тринидад ба тобаго доллар" + "Тринидад ба Тобагогийн доллар" ], "TWD": [ "NT$", - "шинэ тайвань доллар" + "Шинэ Тайванийн доллар" ], "TZS": [ "TZS", - "танзани шиллинг" + "Танзанийн шиллинг" ], "UAH": [ "UAH", - "украины гривня" + "Украины гривна" ], "UGX": [ "UGX", - "уганд шиллинг" + "Угандагийн шиллинг" ], "USD": [ "$", @@ -591,11 +591,11 @@ ], "UYU": [ "UYU", - "уругвайн песо" + "Уругвайн песо" ], "UZS": [ "UZS", - "узбекийн сом" + "Узбекийн сом" ], "VEF": [ "VEF", @@ -603,43 +603,43 @@ ], "VES": [ "VES", - "венесуэлийн боливар" + "Венесуэлийн боливар" ], "VND": [ "₫", - "вьетнамын донг" + "Вьетнамын донг" ], "VUV": [ "VUV", - "вануатугийн вату" + "Вануатугийн вату" ], "WST": [ "WST", - "самоагийн тала" + "Самоагийн тала" ], "XAF": [ "FCFA", - "төв африкийн франк" + "Төв Африкийн франк" ], "XCD": [ "EC$", - "зүүн карибийн доллар" + "Зүүн Карибийн доллар" ], "XOF": [ "CFA", - "баруун африкийн франк" + "Баруун Африкийн франк" ], "XPF": [ "CFPF", - "францын колоний франк" + "Францын колонийн франк" ], "YER": [ "YER", - "йемен риал" + "Йемений риял" ], "ZAR": [ "ZAR", - "өмнөд африкийн ранд" + "Өмнөд Африкийн ранд" ], "ZMK": [ "ZMK", @@ -647,7 +647,7 @@ ], "ZMW": [ "ZMW", - "замби квача" + "Замбийн квача" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json index 038864be3058a..062050f722e20 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 59e5cefb0c617..de58880091d3c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 2a05bf6c1e450..fe919b7c0c065 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.2", + "Version": "36", "Names": { "AED": [ "AED", 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 fff3981e1f9f8..0571439f671e2 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "BND": [ "$", 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 82e9390a85e68..7675efe6a8773 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 7ce6159e3a402..d0959e37329f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/my.json b/src/Symfony/Component/Intl/Resources/data/currencies/my.json index 8792b39066e04..a11d16518f4e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/my.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 49316408fc184..5b6dc1d0b895b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -637,6 +637,10 @@ "MAF", "marokkanske franc" ], + "MCF": [ + "MCF", + "MCF" + ], "MDC": [ "MDC", "moldovske cupon" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json index 8f1c73a76b5d9..525b738a71fcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ce3587e3aa84f..1b3225b18eee8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 4d75999ba9476..b18cc3f28fcb4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -263,7 +263,7 @@ ], "CNH": [ "CNH", - "Chinese renminbi (offshore)" + "Chinese yuan (offshore)" ], "CNX": [ "CNX", 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 f1a36c099f402..fc7a0b2e0fe5c 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 3332aa7299f8e..f0b5e3e11dada 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 919ad6e1a6a4f..1d5cf435941c7 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 e8e343d1764f2..3f6063631b024 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 919ad6e1a6a4f..1d5cf435941c7 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 c27d8917e359a..a0f7ca3f1d9fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 49316408fc184..5b6dc1d0b895b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/no.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -637,6 +637,10 @@ "MAF", "marokkanske franc" ], + "MCF": [ + "MCF", + "MCF" + ], "MDC": [ "MDC", "moldovske cupon" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index ee3debf4f5e21..9ff103a0cf169 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/om.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 60692f1f4b2cc..6f249a7070d3f 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 7f9d14cf1370d..0905c2d901a97 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/or.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 a01d32fe08b06..075e5cb905913 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/os.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 7b8a15351c643..d10c7bfdb4cf2 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 84cc2d1e3d5dc..06145963c23ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.20", + "Version": "36", "Names": { "AED": [ "AED", @@ -15,7 +15,7 @@ ], "AMD": [ "AMD", - "ਅਰਮੀਨੀਆਈ ਦਰਮ" + "ਅਰਮੀਨੀਆਈ ਦਰਾਮ" ], "ANG": [ "ANG", @@ -331,7 +331,7 @@ ], "ISK": [ "ISK", - "ਆਈਸਲੈਂਡਿਕ ਕਰੌਨ" + "ਆਈਸਲੈਂਡੀ ਕਰੋਨਾ" ], "JMD": [ "JMD", @@ -407,7 +407,7 @@ ], "LYD": [ "LYD", - "ਲੀਬੀਅਨ ਦਿਨਾਰ" + "ਲੀਬੀਆਈ ਦਿਨਾਰ" ], "MAD": [ "MAD", 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 8fb97faac28b9..71117b1922aa5 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 6cc844c3f7900..10d793c3b1c79 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -7,7 +7,7 @@ ], "AED": [ "AED", - "dirham arabski" + "dirham ZEA" ], "AFA": [ "AFA", @@ -15,7 +15,7 @@ ], "AFN": [ "AFN", - "afgani" + "afgani afgańskie" ], "ALL": [ "ALL", @@ -31,7 +31,7 @@ ], "AOA": [ "AOA", - "kwanza angolańska" + "kwanza angolska" ], "AOK": [ "AOK", @@ -139,7 +139,7 @@ ], "BOB": [ "BOB", - "boliviano" + "boliviano boliwijskie" ], "BOP": [ "BOP", @@ -359,7 +359,7 @@ ], "GHS": [ "GHS", - "cedi ghański" + "cedi ghańskie" ], "GIP": [ "GIP", @@ -419,7 +419,7 @@ ], "HTG": [ "HTG", - "gourde haitańskie" + "gourde haitański" ], "HUF": [ "HUF", @@ -599,7 +599,7 @@ ], "MRU": [ "MRU", - "ouguiya mauretańska" + "ugija mauretańska" ], "MTL": [ "MTL", @@ -699,7 +699,7 @@ ], "PGK": [ "PGK", - "kina Papua Nowa Gwinea" + "kina papuańska" ], "PHP": [ "PHP", @@ -791,7 +791,7 @@ ], "SHP": [ "SHP", - "funt Wyspy Świętej Heleny" + "funt Świętej Heleny" ], "SIT": [ "SIT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json index 8ee38d901aa10..4e54ea3cf907a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json @@ -1,6 +1,10 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { + "AED": [ + "AED", + "متحده عرب امارات درهم" + ], "AFA": [ "AFA", "افغانۍ (1927–2002)" @@ -9,9 +13,589 @@ "؋", "افغانۍ" ], + "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", + "پاکلېنډ ټاپوګانو پونډ" + ], + "GHS": [ + "GHS", + "ګانين سيډي" + ], + "GIP": [ + "GIP", + "جبل الطارقي پونډ" + ], + "GMD": [ + "GMD", + "ګيمبين دلاسې" + ], + "GNF": [ + "GNF", + "ګنې فرانک" + ], + "GTQ": [ + "GTQ", + "ګويټيمالن کوټزل" + ], + "GYD": [ + "GYD", + "ګايانيز ډالر" + ], + "HKD": [ + "HK$", + "هانګ کانګ ډالر" + ], + "HNL": [ + "HNL", + "هونډوران ليمپيرا" + ], + "HRK": [ + "HRK", + "کروشيايي کونا" + ], + "HTG": [ + "HTG", + "هيټي ګورډ" + ], + "HUF": [ + "HUF", + "هنګري فورنټ" + ], + "IDR": [ + "IDR", + "انډونيشي روپيا" + ], + "ILS": [ + "₪", + "اسرايلي نيو شيکل" + ], + "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", + "قازقستاني ټينج" + ], + "LBP": [ + "LBP", + "لبناني پونډ" + ], + "LKR": [ + "LKR", + "سري لنکن روپۍ" + ], + "LRD": [ + "LRD", + "لايبيرين ډالر" + ], + "LYD": [ + "LYD", + "ليبياېي دينار" + ], + "MAD": [ + "MAD", + "مراکشي درهم" + ], + "MDL": [ + "MDL", + "مالډوي ليو" + ], + "MGA": [ + "MGA", + "ملاګاسي ارياري" + ], + "MKD": [ + "MKD", + "مسيډونايي دينار" + ], + "MMK": [ + "MMK", + "ميانماري کيات" + ], + "MNT": [ + "MNT", + "منګوليايي توګريک" + ], + "MRU": [ + "MRU", + "موريشيسي ډالر" + ], + "MUR": [ + "MUR", + "موريشيسي روپۍ" + ], + "MVR": [ + "MVR", + "مالديپي روپيا" + ], + "MWK": [ + "MWK", + "ملاوي کواچا" + ], + "MXN": [ + "MX$", + "ميکسيکن پيسو" + ], + "MYR": [ + "MYR", + "ملايشي رنګټ" + ], + "MZN": [ + "MZN", + "موزمبيقي ميټيکل" + ], + "NAD": [ + "NAD", + "نيميبيايي ډالر" + ], + "NGN": [ + "NGN", + "نايجيري نايرا" + ], + "NIO": [ + "NIO", + "نيکاراګون کورډوبا" + ], + "NOK": [ + "NOK", + "نارويجين کرون" + ], + "NPR": [ + "NPR", + "نيپالي روپۍ" + ], + "NZD": [ + "NZ$", + "نيوزي لينډي ډالر" + ], + "OMR": [ + "OMR", + "عماني ريال" + ], + "PAB": [ + "PAB", + "پانامۍ بالبوا" + ], + "PEN": [ + "PEN", + "پيروين سول" + ], + "PGK": [ + "PGK", + "پاپوا نيوګاني کينا" + ], + "PHP": [ + "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", + "سورينيمي ډالر" + ], + "STN": [ + "STN", + "ساو ټوم او پرينسپي ډوبرا" + ], + "SYP": [ + "SYP", + "سوريايي پونډ" + ], + "SZL": [ + "SZL", + "سوازي ليلانګيني" + ], + "THB": [ + "THB", + "تهايي بات" + ], + "TJS": [ + "TJS", + "تاجکستاني سوموني" + ], + "TMT": [ + "TMT", + "ترکمانستاني منت" + ], + "TOP": [ + "TOP", + "ټونګن پانګا" + ], + "TRY": [ + "TRY", + "ترکي ليرا" + ], + "TTD": [ + "TTD", + "ټرينيډاډ او ټوباګو ډالر" + ], + "TWD": [ + "NT$", + "نيو تائيواني ډالر" + ], + "TZS": [ + "TZS", + "تنزاني شيلنګ" + ], + "UAH": [ + "UAH", + "اوکرايني هريونيا" + ], + "UGX": [ + "UGX", + "يوګانډي شيلنګ" + ], + "USD": [ + "$", + "امريکايي ډالر" + ], + "UYU": [ + "UYU", + "يوراګوي پسو" + ], + "UZS": [ + "UZS", + "ازبکستاني سوم" + ], + "VES": [ + "VES", + "وينزويلي بوليوار" + ], + "VND": [ + "₫", + "ويتنامي ډونګ" + ], + "VUV": [ + "VUV", + "ونواتو واتو" + ], + "WST": [ + "WST", + "سموون تالا" + ], + "XAF": [ + "FCFA", + "مرکزي افريقايي CFA فرانک" + ], + "XCD": [ + "EC$", + "ختيځ کربين ډالر" + ], + "XOF": [ + "CFA", + "ختيځ افريقايي CFA فرانک" + ], + "XPF": [ + "CFPF", + "CFP فرانک" + ], + "YER": [ + "YER", + "يمني ريال" + ], + "ZAR": [ + "ZAR", + "جنوبي افريقاېي رنډ" + ], + "ZMW": [ + "ZMW", + "زيمبي کواچا" ] } } 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 a069430684c99..0f234ee6fdf6e 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 045be009313df..77a9fe4d1a55c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -263,7 +263,7 @@ ], "CNH": [ "CNH", - "Renminbi chinês (offshore)" + "Yuan chinês (offshore)" ], "CNX": [ "CNX", @@ -271,7 +271,7 @@ ], "CNY": [ "CN¥", - "Renminbi chinês" + "Yuan chinês" ], "COP": [ "COP", 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 b23e362a40f43..5b89811e6cce7 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 a4a2cce11701a..72625b8614cd1 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "CVE": [ "​", @@ -8,7 +8,7 @@ ], "PTE": [ "​PTE", - "Escudo português" + "escudo português" ] } } 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 dc11cc03f025e..90dc7661a474b 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 fb7388256fcaf..816baa526a1ff 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json @@ -1,9 +1,9 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "MOP": [ "MOP$", - "Pataca de Macau" + "pataca macaense" ] } } 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 db3d63f8928bd..a121304d832bc 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 06d15e22632e2..c5d74219c8ff6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json @@ -1,9 +1,9 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", - "Dirham dos Emirados Árabes Unidos" + "dirham dos Emirados Árabes Unidos" ], "AFA": [ "AFA", @@ -11,7 +11,7 @@ ], "AFN": [ "AFN", - "Afegani do Afeganistão" + "afegâni afegão" ], "ALL": [ "ALL", @@ -19,11 +19,11 @@ ], "AMD": [ "AMD", - "Dram arménio" + "dram arménio" ], "ANG": [ "ANG", - "Florim das Antilhas Holandesas" + "florim das Antilhas Holandesas" ], "AOA": [ "AOA", @@ -33,13 +33,17 @@ "ARS", "peso argentino" ], + "AUD": [ + "AU$", + "dólar australiano" + ], "AWG": [ "AWG", "florim de Aruba" ], "AZN": [ "AZN", - "Manat do Azerbaijão" + "manat azeri" ], "BAD": [ "BAD", @@ -55,7 +59,7 @@ ], "BDT": [ "BDT", - "Taka de Bangladesh" + "taka bengali" ], "BEC": [ "BEC", @@ -67,7 +71,7 @@ ], "BHD": [ "BHD", - "Dinar baremita" + "dinar baremita" ], "BIF": [ "BIF", @@ -79,7 +83,7 @@ ], "BND": [ "BND", - "Dólar bruneíno" + "dólar bruneano" ], "BOB": [ "BOB", @@ -95,11 +99,11 @@ ], "BTN": [ "BTN", - "Ngultrum do Butão" + "ngultrum butanês" ], "BWP": [ "BWP", - "Pula de Botswana" + "pula de Botswana" ], "BYB": [ "BYB", @@ -109,10 +113,6 @@ "BYN", "rublo bielorrusso" ], - "BYR": [ - "BYR", - "Rublo bielorrusso (2000–2016)" - ], "BZD": [ "BZD", "dólar belizense" @@ -179,7 +179,7 @@ ], "DOP": [ "DOP", - "Peso dominicano" + "peso dominicano" ], "DZD": [ "DZD", @@ -207,7 +207,7 @@ ], "FJD": [ "FJD", - "Dólar de Fiji" + "dólar fijiano" ], "FKP": [ "FKP", @@ -219,7 +219,7 @@ ], "GEL": [ "GEL", - "Lari georgiano" + "lari georgiano" ], "GHS": [ "GHS", @@ -247,7 +247,7 @@ ], "HKD": [ "HK$", - "Dólar de Hong Kong" + "dólar de Hong Kong" ], "HNL": [ "HNL", @@ -259,7 +259,7 @@ ], "HTG": [ "HTG", - "Gourde haitiano" + "gourde haitiano" ], "HUF": [ "HUF", @@ -267,23 +267,23 @@ ], "IDR": [ "IDR", - "Rupia indonésia" + "rupia indonésia" ], "ILS": [ "₪", - "Sheqel novo israelita" + "sheqel novo israelita" ], "INR": [ "₹", - "Rupia indiana" + "rupia indiana" ], "IQD": [ "IQD", - "Dinar iraquiano" + "dinar iraquiano" ], "IRR": [ "IRR", - "Rial iraniano" + "rial iraniano" ], "ISK": [ "ISK", @@ -291,15 +291,15 @@ ], "JMD": [ "JMD", - "Dólar jamaicano" + "dólar jamaicano" ], "JOD": [ "JOD", - "Dinar jordaniano" + "dinar jordaniano" ], "JPY": [ "JP¥", - "Iene japonês" + "iene japonês" ], "KES": [ "KES", @@ -307,11 +307,11 @@ ], "KGS": [ "KGS", - "Som do Quirguistão" + "som quirguiz" ], "KHR": [ "KHR", - "Riel cambojano" + "riel cambojano" ], "KMF": [ "KMF", @@ -319,35 +319,35 @@ ], "KPW": [ "KPW", - "Won norte-coreano" + "won norte-coreano" ], "KRW": [ "₩", - "Won sul-coreano" + "won sul-coreano" ], "KWD": [ "KWD", - "Dinar kuwaitiano" + "dinar kuwaitiano" ], "KYD": [ "KYD", - "Dólar das Ilhas Caimão" + "dólar das Ilhas Caimão" ], "KZT": [ "KZT", - "Tenge do Cazaquistão" + "tenge cazaque" ], "LAK": [ "LAK", - "Kip de Laos" + "kip laosiano" ], "LBP": [ "LBP", - "Libra libanesa" + "libra libanesa" ], "LKR": [ "LKR", - "Rupia do Sri Lanka" + "rupia do Sri Lanka" ], "LRD": [ "LRD", @@ -383,15 +383,15 @@ ], "MMK": [ "MMK", - "Kyat de Mianmar" + "kyat de Mianmar" ], "MNT": [ "MNT", - "Tugrik da Mongólia" + "tugrik mongol" ], "MOP": [ "MOP", - "Pataca de Macau" + "pataca macaense" ], "MRO": [ "MRO", @@ -407,7 +407,7 @@ ], "MVR": [ "MVR", - "Rupia das Ilhas Maldivas" + "rupia maldivana" ], "MWK": [ "MWK", @@ -427,7 +427,7 @@ ], "MYR": [ "MYR", - "Ringgit malaio" + "ringgit malaio" ], "MZN": [ "MZN", @@ -435,11 +435,11 @@ ], "NAD": [ "NAD", - "Dólar da Namíbia" + "dólar namibiano" ], "NGN": [ "NGN", - "Naira nigeriana" + "naira nigeriana" ], "NIC": [ "NIC", @@ -455,15 +455,15 @@ ], "NPR": [ "NPR", - "Rupia nepalesa" + "rupia nepalesa" ], "NZD": [ "NZ$", - "Dólar neozelandês" + "dólar neozelandês" ], "OMR": [ "OMR", - "Rial de Omã" + "rial omanense" ], "PAB": [ "PAB", @@ -475,15 +475,15 @@ ], "PGK": [ "PGK", - "Kina da Papua-Nova Guiné" + "kina papuásia" ], "PHP": [ "PHP", - "Peso filipino" + "peso filipino" ], "PKR": [ "PKR", - "Rupia paquistanesa" + "rupia paquistanesa" ], "PLN": [ "PLN", @@ -491,7 +491,7 @@ ], "PTE": [ "​", - "Escudo português", + "escudo português", {} ], "PYG": [ @@ -500,7 +500,7 @@ ], "QAR": [ "QAR", - "Rial do Catar" + "rial catarense" ], "RON": [ "RON", @@ -520,11 +520,11 @@ ], "SAR": [ "SAR", - "Rial saudita" + "rial saudita" ], "SBD": [ "SBD", - "Dólar das Ilhas Salomão" + "dólar das Ilhas Salomão" ], "SCR": [ "SCR", @@ -540,7 +540,7 @@ ], "SGD": [ "SGD", - "Dólar de Singapura" + "dólar singapuriano" ], "SHP": [ "SHP", @@ -548,7 +548,7 @@ ], "SLL": [ "SLL", - "Leone de Serra Leoa" + "leone de Serra Leoa" ], "SOS": [ "SOS", @@ -562,33 +562,29 @@ "SSP", "libra sul-sudanesa" ], - "STD": [ - "STD", - "Dobra de São Tomé e Príncipe (1977–2017)" - ], "STN": [ "STN", "dobra de São Tomé e Príncipe" ], "SYP": [ "SYP", - "Libra síria" + "libra síria" ], "SZL": [ "SZL", - "Lilangeni da Suazilândia" + "lilangeni suázi" ], "THB": [ "฿", - "Baht da Tailândia" + "baht tailandês" ], "TJS": [ "TJS", - "Somoni do Tajaquistão" + "somoni tajique" ], "TMT": [ "TMT", - "Manat do Turquemenistão" + "manat turcomeno" ], "TND": [ "TND", @@ -596,23 +592,23 @@ ], "TOP": [ "TOP", - "Paʻanga de Tonga" + "paʻanga tonganesa" ], "TRY": [ "TRY", - "Lira turca" + "lira turca" ], "TTD": [ "TTD", - "Dólar de Trindade e Tobago" + "dólar de Trindade e Tobago" ], "TWD": [ "NT$", - "Novo dólar taiwanês" + "novo dólar taiwanês" ], "TZS": [ "TZS", - "Xelim tanzaniano" + "xelim tanzaniano" ], "UAH": [ "UAH", @@ -620,7 +616,7 @@ ], "UGX": [ "UGX", - "Xelim ugandense" + "xelim ugandense" ], "USD": [ "US$", @@ -632,7 +628,7 @@ ], "UZS": [ "UZS", - "Som do Uzbequistão" + "som uzbeque" ], "VEF": [ "VEF", @@ -644,15 +640,15 @@ ], "VND": [ "₫", - "Dong vietnamita" + "dong vietnamita" ], "VUV": [ "VUV", - "Vatu de Vanuatu" + "vatu de Vanuatu" ], "WST": [ "WST", - "Tala samoano" + "tala samoano" ], "XAF": [ "FCFA", @@ -660,7 +656,7 @@ ], "XCD": [ "EC$", - "Dólar das Caraíbas Orientais" + "dólar das Caraíbas Orientais" ], "XOF": [ "CFA", @@ -668,15 +664,15 @@ ], "XPF": [ "CFPF", - "Franco CFP" + "franco CFP" ], "YER": [ "YER", - "Rial iemenita" + "rial iemenita" ], "ZAR": [ "ZAR", - "Rand sul-africano" + "rand sul-africano" ], "ZMK": [ "ZMK", @@ -684,7 +680,7 @@ ], "ZMW": [ "ZMW", - "Kwacha zambiano" + "kwacha zambiano" ] } } 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 34bd84c8862ed..c87492e243566 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 5360878514661..c69f3682d101b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json @@ -1,9 +1,625 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { + "AED": [ + "AED", + "AED" + ], + "AFN": [ + "AFN", + "Afgani Afgano" + ], + "ALL": [ + "ALL", + "Lek albanés" + ], + "AMD": [ + "AMD", + "AMD" + ], + "ANG": [ + "ANG", + "Florín Antillano Neerlandés" + ], + "AOA": [ + "AOA", + "Kwanza Angoleño" + ], + "ARS": [ + "ARS", + "Peso Argentino" + ], + "AUD": [ + "A$", + "Dólar Australiano" + ], + "AWG": [ + "AWG", + "Florín Arubeño" + ], + "AZN": [ + "AZN", + "AZN" + ], + "BAM": [ + "BAM", + "Marco Bosnioherzegovino" + ], + "BBD": [ + "BBG", + "Dólar de Barbados" + ], + "BDT": [ + "BDT", + "Taka Bangladesí" + ], + "BGN": [ + "BGN", + "Lev" + ], + "BHD": [ + "BHD", + "Dinar Bareiní" + ], + "BIF": [ + "BIF", + "Franco Burundés" + ], + "BMD": [ + "DBM", + "Dólar Bermudeño" + ], + "BND": [ + "BND", + "Dólar de Brunéi" + ], + "BOB": [ + "BOB", + "Boliviano" + ], + "BRL": [ + "R$", + "Real Brasileño" + ], + "BSD": [ + "BSD", + "Dólar Bahameño" + ], + "BTN": [ + "BTN", + "Ngultrum Butanés" + ], + "BWP": [ + "BWP", + "Pula Botswano" + ], + "BYN": [ + "BYN", + "Nuevo Rublo Bielorruso" + ], + "BZD": [ + "DBZ", + "Dólar Beliceño" + ], + "CAD": [ + "$CA", + "Dólar Canadiense" + ], + "CDF": [ + "CDF", + "Franco Congoleño" + ], + "CHF": [ + "CHF", + "Franco Suizo" + ], + "CLP": [ + "CLP", + "Peso Chileno" + ], + "CNH": [ + "CNH", + "Yuan Chino (offshore)" + ], + "CNY": [ + "CN¥", + "Yuan Chino" + ], + "COP": [ + "COP", + "Peso Colombiano" + ], + "CRC": [ + "CRC", + "Colón Costarricense" + ], + "CUC": [ + "CUC", + "Peso Cubano Convertible" + ], + "CUP": [ + "CUP", + "Peso Cubano" + ], + "CVE": [ + "CVE", + "Escudo Caboverdiano" + ], + "CZK": [ + "CZK", + "Corona Checa" + ], + "DJF": [ + "DJF", + "Franco Yibutiano" + ], + "DKK": [ + "DKK", + "Corona Danesa" + ], + "DOP": [ + "DOP", + "Peso Dominicano" + ], + "DZD": [ + "DZD", + "Dinar Argelino" + ], + "EGP": [ + "EGP", + "Libra Egipcia" + ], + "ERN": [ + "ERN", + "Nakfa Eritreano" + ], + "ETB": [ + "ETB", + "Birr Etíope" + ], + "EUR": [ + "€", + "Euro" + ], + "FJD": [ + "FJD", + "Dólar Fiyiano" + ], + "FKP": [ + "FKP", + "Libra Malvinense" + ], + "GBP": [ + "£", + "Libra Esterlina" + ], + "GEL": [ + "GEL", + "Lari Georgiano" + ], + "GHS": [ + "GHS", + "Cedi Ganés" + ], + "GIP": [ + "GIP", + "Libra Gibraltareña" + ], + "GMD": [ + "GMD", + "Dalasi" + ], + "GNF": [ + "GNF", + "Franco Guineano" + ], + "GTQ": [ + "GTQ", + "Quetzal Guatemalteco" + ], + "GYD": [ + "GYD", + "Dólar Guyanés" + ], + "HKD": [ + "HK$", + "Dólar de Hong Kong" + ], + "HNL": [ + "HNL", + "Lempira Hondureño" + ], + "HRK": [ + "HRK", + "Kuna Croata" + ], + "HTG": [ + "HTG", + "Gourde Haitiano" + ], + "HUF": [ + "HUF", + "Florín Húngaro" + ], + "IDR": [ + "IDR", + "Rupia Indonesia" + ], + "ILS": [ + "₪", + "Nuevo Séquel" + ], + "INR": [ + "₹", + "Rupia India" + ], + "IQD": [ + "IQD", + "Dinar Iraquí" + ], + "IRR": [ + "IRR", + "Rial Iraní" + ], + "ISK": [ + "ISK", + "Corona Islandesa" + ], + "JMD": [ + "JMD", + "Dólar Jamaiquino" + ], + "JOD": [ + "JOD", + "Dinar Jordano" + ], + "JPY": [ + "JP¥", + "Yen Japonés" + ], + "KES": [ + "KES", + "Chelín Keniano" + ], + "KGS": [ + "KGS", + "Som Kirguís" + ], + "KHR": [ + "KHR", + "Riel Camboyano" + ], + "KMF": [ + "KMF", + "Franco Comorense" + ], + "KPW": [ + "KPW", + "Won Norcoreano" + ], + "KRW": [ + "₩", + "Won Surcoreano" + ], + "KWD": [ + "KWD", + "Dinar Kuwaití" + ], + "KYD": [ + "KYD", + "Dólar de las Islas Caimán" + ], + "KZT": [ + "KZT", + "Tenge Kazajo" + ], + "LAK": [ + "LAK", + "Kip Laosiano" + ], + "LBP": [ + "LBP", + "Libra Libanesa" + ], + "LKR": [ + "LKR", + "Rupia de Sri Lanka" + ], + "LRD": [ + "LRD", + "Dólar Liberiano" + ], + "LYD": [ + "LYD", + "Dinar Libio" + ], + "MAD": [ + "MAD", + "Dírham Marroquí" + ], + "MDL": [ + "MDL", + "Leu Moldavo" + ], + "MGA": [ + "MGA", + "Ariary Malgache" + ], + "MKD": [ + "MKD", + "Dinar Macedonio" + ], + "MMK": [ + "MMK", + "Kyat Birmano" + ], + "MNT": [ + "MNT", + "Tugrik Mongol" + ], + "MOP": [ + "MOP", + "Pataca Macaense" + ], + "MRU": [ + "MRU", + "Uguiya Mauritano" + ], + "MUR": [ + "MUR", + "Rupia de Mauricio" + ], + "MVR": [ + "MVR", + "Rupia de Maldivas" + ], + "MWK": [ + "MWK", + "Kwacha Malauí" + ], + "MXN": [ + "MX$", + "Peso Mexicano" + ], + "MYR": [ + "MYR", + "Ringgit Malayo" + ], + "MZN": [ + "MZN", + "Metical Mozambiqueño" + ], + "NAD": [ + "NAD", + "Dólar Namibio" + ], + "NGN": [ + "NGN", + "Naira Nigeriano" + ], + "NIO": [ + "NIO", + "Córdova Nicaragüense" + ], + "NOK": [ + "NOK", + "Corona Noruega" + ], + "NPR": [ + "NPR", + "Rupia Nepalí" + ], + "NZD": [ + "NZ$", + "Dólar Neozelandés" + ], + "OMR": [ + "OMR", + "Rial Omaní" + ], + "PAB": [ + "PAB", + "Balboa Panameño" + ], "PEN": [ "S\/", - "PEN" + "Sol Peruano" + ], + "PGK": [ + "PGK", + "Kina Papuano" + ], + "PHP": [ + "PHP", + "Peso Filipino" + ], + "PKR": [ + "PKR", + "Rupia Pakistaní" + ], + "PLN": [ + "PLN", + "Zloty" + ], + "PYG": [ + "PYG", + "Guaraní Paraguayo" + ], + "QAR": [ + "QAR", + "Riyal Catarí" + ], + "RON": [ + "RON", + "Leu Rumano" + ], + "RSD": [ + "RSD", + "Dinar Serbio" + ], + "RUB": [ + "RUB", + "Rublo Ruso" + ], + "RWF": [ + "RWF", + "Franco Ruandés" + ], + "SAR": [ + "SAR", + "Riyal Saudí" + ], + "SBD": [ + "SBD", + "Dólar de las Islas Salomón" + ], + "SCR": [ + "SCR", + "Rupia de Seychelles" + ], + "SDG": [ + "SDG", + "Libra Sudanesa" + ], + "SEK": [ + "SEK", + "Corona Sueca" + ], + "SGD": [ + "SGD", + "Dólar de Singapur" + ], + "SHP": [ + "SHP", + "Libra de Santa Helena" + ], + "SLL": [ + "SLL", + "Leone de Sierra Leona" + ], + "SOS": [ + "SOS", + "Chelín Somalí" + ], + "SRD": [ + "SRD", + "Dólar Surinamés" + ], + "SSP": [ + "SSP", + "Libra Sursudanesa" + ], + "STN": [ + "STN", + "Dobra Santotomense" + ], + "SYP": [ + "SYP", + "Libra Siria" + ], + "SZL": [ + "SZL", + "Lilangeni Swazi" + ], + "THB": [ + "THB", + "Baht Tailandés" + ], + "TJS": [ + "TJS", + "Somoni Tayiko" + ], + "TMT": [ + "TMT", + "Manat Turcomano" + ], + "TND": [ + "TND", + "Dinar Tunecino" + ], + "TOP": [ + "TOP", + "Paʻanga Tongano" + ], + "TRY": [ + "TRY", + "Lira Turca" + ], + "TTD": [ + "TTD", + "Dólar de Trinidad y Tobago" + ], + "TWD": [ + "NT$", + "Nuevo Dólar Taiwanés" + ], + "TZS": [ + "TZS", + "Chelín Tanzano" + ], + "UAH": [ + "UAH", + "Grivna" + ], + "UGX": [ + "UGX", + "Chelín Ugandés" + ], + "USD": [ + "$US", + "Dólar Americano" + ], + "UYU": [ + "UYU", + "Peso Uruguayo" + ], + "UZS": [ + "UZS", + "Som Ubzeko" + ], + "VES": [ + "VES", + "Bolívar Venezolano" + ], + "VND": [ + "₫", + "Dong Vietnamita" + ], + "VUV": [ + "VUV", + "Vatu Vanuatu" + ], + "WST": [ + "WST", + "Tala Samoano" + ], + "XAF": [ + "FCFA", + "Franco CFA de África Central" + ], + "XCD": [ + "EC$", + "Dólar del Caribe Oriental" + ], + "XOF": [ + "CFA", + "Franco CFA de África Occidental" + ], + "XPF": [ + "CFPF", + "Franco CFP" + ], + "YER": [ + "YER", + "Rial Yemení" + ], + "ZAR": [ + "ZAR", + "Rand Sudafricano" + ], + "ZMW": [ + "ZMW", + "Kwacha Zambiano" ] } } 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 ac1f9a8098572..a36ac057171c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json @@ -1,13 +1,13 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "BOB": [ "Bs", - "BOB" + "Boliviano" ], "PEN": [ "PEN", - "PEN" + "Sol Peruano" ] } } 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 5b628bf25be81..ef56ffae0ff17 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json @@ -1,13 +1,13 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "PEN": [ "PEN", - "PEN" + "Sol Peruano" ], "USD": [ "$", - "USD" + "Dólar Americano" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json index 91427b8285c0c..519dd786404c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 67fe784bf52ff..b6a974c325cca 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 038864be3058a..062050f722e20 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 09761ed8c3100..b4077faae2511 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,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "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 24a42df8326eb..1e89a16491ecc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/root.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/root.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 aef8fe8a032ec..0f84c97a694b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 125fe3f3c00a9..ee89a95483da8 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 ceca001dfdc90..c540c16828f24 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 2db64faae56e7..b7a1f4bf0bef3 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 aa75c4cbf89f9..5bd8b15184eb4 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 7966d513541ac..6e7627015a2bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 e7682f7545309..0b5434ba96159 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se.json b/src/Symfony/Component/Intl/Resources/data/currencies/se.json index ab5ed1af2a59e..1f9260f4d2076 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/se.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 163229fbcaf02..dca505f1049b0 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ee8da9dd80c0e..cb8d319c478cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 e8985a17074a8..58ac2fb505e62 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -283,7 +283,7 @@ ], "DJF": [ "DJF", - "Džibutanski franak" + "Džibutski franak" ], "DKK": [ "DKK", @@ -627,7 +627,7 @@ ], "MRU": [ "MRU", - "Mauritanijska ogija" + "Mauritanska ogija" ], "MTL": [ "MTL", @@ -823,7 +823,7 @@ ], "SHP": [ "SHP", - "Sv. jelenska funta" + "Svete Jelene funta" ], "SIT": [ "SIT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index cbb8ede0b239f..e5ee6b2a997d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/si.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 be00de5327f4e..209152ea222d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 a0bb2bcb95985..1af7c074a17c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 b60fe1041a4a1..6fe9cb943ac29 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 5ccf238e0ad9c..b8f5dfe7a4431 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", 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 a67cc010f4fbb..a3a3fd4181762 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 cfe6c65c3461f..3c4ec498e7da6 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 3c0aac1a07fb8..554e94c95a928 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 8126e87e31684..ee13f4ea25c36 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AED": [ "AED", @@ -78,7 +78,7 @@ "Boliviani i Bolivisë" ], "BRL": [ - "R$", + "BRL", "Reali brazilian" ], "BSD": [ 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 c499abfd6116a..21534be17fcda 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 4cfab3cd8e471..b757622161ef5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -283,7 +283,7 @@ ], "DJF": [ "DJF", - "Џибутански франак" + "Џибутски франак" ], "DKK": [ "DKK", @@ -627,7 +627,7 @@ ], "MRU": [ "MRU", - "Мауританијска oгија" + "Мауританска огија" ], "MTL": [ "MTL", @@ -823,7 +823,7 @@ ], "SHP": [ "SHP", - "Св. јеленска фунта" + "Свете Јелене фунта" ], "SIT": [ "SIT", 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 e8985a17074a8..58ac2fb505e62 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -283,7 +283,7 @@ ], "DJF": [ "DJF", - "Džibutanski franak" + "Džibutski franak" ], "DKK": [ "DKK", @@ -627,7 +627,7 @@ ], "MRU": [ "MRU", - "Mauritanijska ogija" + "Mauritanska ogija" ], "MTL": [ "MTL", @@ -823,7 +823,7 @@ ], "SHP": [ "SHP", - "Sv. jelenska funta" + "Svete Jelene funta" ], "SIT": [ "SIT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index 898078e89189d..36884178d4597 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.90", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -263,7 +263,7 @@ ], "CNH": [ "CNH", - "CNH" + "kinesisk yuan (offshore)" ], "CNX": [ "CNX", @@ -971,7 +971,7 @@ ], "TPE": [ "TPE", - "timoriansk escudo" + "östtimoresisk escudo" ], "TRL": [ "TRL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index db9cc95c456b7..795ba5b9e3094 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", 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 d3934ae4dc034..631dc031546fb 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 new file mode 100644 index 0000000000000..7aa6095c056a7 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_KE.json @@ -0,0 +1,345 @@ +{ + "Version": "36", + "Names": { + "AED": [ + "AED", + "Diramu ya Falme za Kiarabu" + ], + "AFN": [ + "AFN", + "Afghani ya Afghanistani" + ], + "ANG": [ + "ANG", + "Gilda ya Antili ya Uholanzi" + ], + "ARS": [ + "ARS", + "Peso ya Ajentina" + ], + "AZN": [ + "AZN", + "Manati ya Azabajani" + ], + "BAM": [ + "BAM", + "Maki ya Bosnia na Hezegovina Inayoweza Kubadilishwa" + ], + "BBD": [ + "BBD", + "Dola ya Babadosi" + ], + "BDT": [ + "BDT", + "Taka ya Bangladeshi" + ], + "BHD": [ + "BHD", + "Dinari ya Bahareni" + ], + "BMD": [ + "BMD", + "Dola ya Bamuda" + ], + "BRL": [ + "R$", + "Reale ya Brazili" + ], + "BSD": [ + "BSD", + "Dola ya Bahama" + ], + "BTN": [ + "BTN", + "Ngultrumi ya Bhutani" + ], + "BYN": [ + "BYN", + "Ruble ya Belarusi" + ], + "CAD": [ + "CA$", + "Dola ya Kanada" + ], + "CNH": [ + "CNH", + "Yuan ya China (huru)" + ], + "CNY": [ + "CN¥", + "Yuan ya China" + ], + "COP": [ + "COP", + "Peso ya Kolombia" + ], + "CRC": [ + "CRC", + "Colon ya Kostarika" + ], + "CUC": [ + "CUC", + "Peso ya Kuba Inayoweza Kubadilishwa" + ], + "CUP": [ + "CUP", + "Peso ya Kuba" + ], + "CVE": [ + "CVE", + "Eskudo ya Kepuvede" + ], + "CZK": [ + "CZK", + "Koruna ya Cheki" + ], + "DJF": [ + "DJF", + "Faranga ya Jibuti" + ], + "DKK": [ + "DKK", + "Kroni ya Denmaki" + ], + "DOP": [ + "DOP", + "Peso ya Dominika" + ], + "DZD": [ + "DZD", + "Dinari ya Aljeria" + ], + "GEL": [ + "GEL", + "Lari ya Jiojia" + ], + "GHS": [ + "GHS", + "Sidi ya Ghana" + ], + "GIP": [ + "GIP", + "Pauni ya Jibrata" + ], + "HRK": [ + "HRK", + "Kuna ya Kroeshia" + ], + "HTG": [ + "HTG", + "Godi ya Haiti" + ], + "HUF": [ + "HUF", + "Forinti ya Hungaria" + ], + "IDR": [ + "IDR", + "Rupia ya Indonesia" + ], + "IQD": [ + "IQD", + "Dinari ya Iraki" + ], + "IRR": [ + "IRR", + "Riali ya Irani" + ], + "JMD": [ + "JMD", + "Dola ya Jamaika" + ], + "JOD": [ + "JOD", + "Dinari ya Yordani" + ], + "JPY": [ + "JP¥", + "Yeni ya Japani" + ], + "KHR": [ + "KHR", + "Rieli ya Kambodia" + ], + "KMF": [ + "KMF", + "Faranga ya Komoro" + ], + "KWD": [ + "KWD", + "Dinari ya Kuwait" + ], + "KZT": [ + "KZT", + "Tenge ya Kazakistani" + ], + "LBP": [ + "LBP", + "Pauni ya Lebanoni" + ], + "MAD": [ + "MAD", + "Diramu ya Moroko" + ], + "MGA": [ + "MGA", + "Ariari ya Madagaska" + ], + "MKD": [ + "MKD", + "Dinari ya Masedonia" + ], + "MMK": [ + "MMK", + "Kiati ya Myama" + ], + "MOP": [ + "MOP", + "Pataka ya Macau" + ], + "MVR": [ + "MVR", + "Rufiyaa ya Maldivi" + ], + "MXN": [ + "MX$", + "Peso ya Meksiko" + ], + "MYR": [ + "MYR", + "Ringgiti ya Malesia" + ], + "NGN": [ + "NGN", + "Naira ya Naijeria" + ], + "NIO": [ + "NIO", + "Cordoba ya Nikaragwa" + ], + "NOK": [ + "NOK", + "Kroni ya Norwe" + ], + "NPR": [ + "NPR", + "Rupia ya Nepali" + ], + "NZD": [ + "NZ$", + "Dola ya Nyuzilandi" + ], + "OMR": [ + "OMR", + "Riali ya Omani" + ], + "PKR": [ + "PKR", + "Rupia ya Pakistani" + ], + "PLN": [ + "PLN", + "Zloti ya Polandi" + ], + "PYG": [ + "PYG", + "Guarani ya Paragwai" + ], + "QAR": [ + "QAR", + "Riali ya Katari" + ], + "RSD": [ + "RSD", + "Dinari ya Serbia" + ], + "SAR": [ + "SAR", + "Riyali ya Saudia" + ], + "SBD": [ + "SBD", + "Dola ya Visiwa vya Solomoni" + ], + "SDG": [ + "SDG", + "Pauni ya Sudani" + ], + "SGD": [ + "SGD", + "Dola ya Singapoo" + ], + "SLL": [ + "SLL", + "Leoni ya Siera Leoni" + ], + "SSP": [ + "SSP", + "Pauni ya Sudani Kusini" + ], + "SZL": [ + "SZL", + "Lilangeni ya Uswazi" + ], + "THB": [ + "฿", + "Bahti ya Tailandi" + ], + "TJS": [ + "TJS", + "Somoni ya Tajikistani" + ], + "TMT": [ + "TMT", + "Manati ya Turkmenistani" + ], + "TTD": [ + "TTD", + "Dola ya Trinidadi na Tobago" + ], + "TWD": [ + "NT$", + "Dola ya Taiwani" + ], + "UAH": [ + "UAH", + "Hryvnia ya Ukraini" + ], + "USD": [ + "$", + "Dola ya Marekani" + ], + "UYU": [ + "UYU", + "Peso ya Urugwai" + ], + "UZS": [ + "UZS", + "Som ya Uzbekistani" + ], + "VES": [ + "VES", + "Boliva ya Venezuela" + ], + "VND": [ + "₫", + "Dong ya Vietnamu" + ], + "XAF": [ + "FCFA", + "Faranga ya CFA ya Afrika ya Kati" + ], + "XCD": [ + "EC$", + "Dola ya Karibi Mashariki" + ], + "XOF": [ + "CFA", + "Faranga ya CFA ya Afrika Magharibi" + ], + "YER": [ + "YER", + "Riali ya Yemeni" + ] + } +} 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 3b59ce05518f7..fca3c48eb6806 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 10882ea0dd477..0a773073064f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", @@ -123,7 +123,7 @@ ], "CNH": [ "CNH", - "CNH" + "சீன யுவான் (ஆஃப்ஷோர்)" ], "CNY": [ "CN¥", 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 bba90bdfd0500..0b167fae9ca57 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 cae2d8cbf689c..a8526baa3852b 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 1ebdb29387e57..b3d75e8860f2b 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 c2ec1ce7ff265..dab955785a3b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/te.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", @@ -251,7 +251,7 @@ ], "ILS": [ "₪", - "ఐరాయిలి న్యూ షెక్యెల్" + "ఇజ్రాయేలీ న్యూ షెకెల్" ], "INR": [ "₹", @@ -567,7 +567,7 @@ ], "TRY": [ "TRY", - "తుర్కిష్ లిరా" + "టర్కిస్ లీరా" ], "TTD": [ "TTD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json index 1125e09e85cca..246339b9615bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 701d76f5035f4..e8d74c5b9660e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/th.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 dffce35a5a5c2..e71e383270ade 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 d341f8dfb232d..5019f02b63116 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 63c822eb4366b..5f15cf5706fcf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 8ab93c6d94579..59101fe152d87 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", @@ -121,6 +121,10 @@ "CLP", "Piso ng Chile" ], + "CNH": [ + "CNH", + "Chinese Yuan (offshore)" + ], "CNY": [ "CN¥", "Chinese Yuan" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index 0a8a0867e83ec..00166b230bd34 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/to.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/to.json @@ -1,25 +1,45 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AUD": [ "AUD$", - "Australian Dollar" + "Tola fakaʻaositelēlia" ], "BRL": [ "R$", "BRL" ], + "FJD": [ + "FJD", + "Tola fakafisi" + ], "NZD": [ "NZD$", - "NZD" + "Tola fakanuʻusila" + ], + "PGK": [ + "PGK", + "Kina fakapapuaniukini" + ], + "SBD": [ + "SBD", + "Tola fakaʻotusolomone" ], "TOP": [ "T$", "Paʻanga fakatonga" ], + "VUV": [ + "VUV", + "Vatu fakavanuatu" + ], "WST": [ "WST", "Tala fakahaʻamoa" + ], + "XPF": [ + "CFPF", + "Falaniki fakapasifika" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json index 01210bee0fe40..4224f28dab1de 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -203,7 +203,7 @@ ], "BTN": [ "BTN", - "Bhutan Ngultrumu" + "Butan Ngultrumu" ], "BUK": [ "BUK", @@ -311,7 +311,7 @@ ], "CZK": [ "CZK", - "Çek Cumhuriyeti Korunası" + "Çek Korunası" ], "DDM": [ "DDM", @@ -479,7 +479,7 @@ ], "IDR": [ "IDR", - "Endonezya Rupiahı" + "Endonezya Rupisi" ], "IEP": [ "IEP", @@ -923,7 +923,7 @@ ], "STN": [ "STN", - "São Tomé ve Príncipe Dobrası" + "Sao Tome ve Principe Dobrası" ], "SUR": [ "SUR", @@ -1068,7 +1068,7 @@ ], "XAF": [ "FCFA", - "CFA Frangı BEAC" + "Orta Afrika CFA Frangı" ], "XCD": [ "EC$", @@ -1088,7 +1088,7 @@ ], "XOF": [ "CFA", - "CFA Frangı BCEAO" + "Batı Afrika CFA Frangı" ], "XPF": [ "CFPF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json index 781e870afa549..fbc05d9f57179 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 0534af4bdf56a..74911d0bb840c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 efc92b4baf650..b80a5494b8915 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 75035e4d6ecb0..aeb04ae0bcb3e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", @@ -151,7 +151,7 @@ ], "CZK": [ "CZK", - "جمہوریہ چیک کرونا" + "چیک کرونا" ], "DEM": [ "DEM", @@ -203,7 +203,7 @@ ], "GBP": [ "£", - "انگلستانی پاونڈ سٹرلنگ" + "برطانوی پاؤنڈ" ], "GEL": [ "GEL", @@ -451,7 +451,7 @@ ], "PEN": [ "PEN", - "پیرو نیووسول" + "پیروویئن سول" ], "PGK": [ "PGK", @@ -551,7 +551,7 @@ ], "STN": [ "STN", - "ساؤ ٹوم اور پرنسپے ڈوبرا" + "ساؤ ٹومے اور پرنسپے ڈوبرا" ], "SYP": [ "SYP", @@ -615,7 +615,7 @@ ], "UZS": [ "UZS", - "ازبکستان سوم" + "ازبکستانی سوم" ], "VEB": [ "VEB", 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 566cf47c312b0..34c5edf9d0c8e 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 497ef5749f0ec..3f69405df391b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AED": [ "AED", 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 f20f18a2d92d3..5772faf476876 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 12e20a4ee2d36..70799400ace89 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 f0c17d25aa26a..e504695fe6a53 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -17,10 +17,6 @@ "AFN", "Afghani Afghanistan" ], - "ALK": [ - "ALK", - "ALK" - ], "ALL": [ "ALL", "Lek Albania" @@ -265,10 +261,6 @@ "CNH", "Nhân dân tệ (hải ngoại)" ], - "CNX": [ - "CNX", - "CNX" - ], "CNY": [ "CN¥", "Nhân dân tệ" @@ -403,7 +395,7 @@ ], "GEL": [ "GEL", - "Lari Gruzia" + "Lari Georgia" ], "GHC": [ "GHC", @@ -489,10 +481,6 @@ "ILP", "Pao Ixraen" ], - "ILR": [ - "ILR", - "ILR" - ], "ILS": [ "₪", "Sheqel Israel mới" @@ -503,16 +491,12 @@ ], "IQD": [ "IQD", - "Dinar I-rắc" + "Dinar Iraq" ], "IRR": [ "IRR", "Rial Iran" ], - "ISJ": [ - "ISJ", - "ISJ" - ], "ISK": [ "ISK", "Króna Iceland" @@ -701,10 +685,6 @@ "MUR", "Rupee Mauritius" ], - "MVP": [ - "MVP", - "MVP" - ], "MVR": [ "MVR", "Rufiyaa Maldives" @@ -795,7 +775,7 @@ ], "PGK": [ "PGK", - "Kina Papua New Guinean" + "Kina Papua New Guinea" ], "PHP": [ "PHP", @@ -995,7 +975,7 @@ ], "UAH": [ "UAH", - "Hryvnia Ucraina" + "Hryvnia Ukraina" ], "UAK": [ "UAK", @@ -1033,10 +1013,6 @@ "UYU", "Peso Uruguay" ], - "UYW": [ - "UYW", - "UYW" - ], "UZS": [ "UZS", "Som Uzbekistan" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json index 315d6d2c123e4..d993629c27e5e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 bb1767c34ef62..89db0354a9b53 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/xh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 500f6168a02e8..568926166f7ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 169716ea123ef..eac610ebb9d0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", 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 9cb9f3d9cdc77..f6962c1df685d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { "AED": [ "AED", @@ -69,10 +69,6 @@ "ETB", "Biri ti Orílɛ́ède Eutopia" ], - "EUR": [ - "€", - "owó Yúrò" - ], "GBP": [ "£", "Pɔ́n-ùn ti Orilɛ̀-èdè Gɛ̀ɛ́sì" @@ -181,10 +177,6 @@ "SHP", "Pɔɔun ti Orílɛ́ède ̣Elena" ], - "SLL": [ - "SLL", - "Lioni" - ], "SOS": [ "SOS", "Sile ti Orílɛ́ède Somali" @@ -197,10 +189,6 @@ "STN", "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe" ], - "SZL": [ - "SZL", - "Lilangeni" - ], "TND": [ "TND", "Dina ti Orílɛ́ède Tunisia" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index 9fe714ba86b1e..0cdbc4fe1e316 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -265,8 +265,12 @@ "CNH", "人民币(离岸)" ], + "CNX": [ + "CNX", + "中国人民银行元" + ], "CNY": [ - "¥", + "¥", "人民币" ], "COP": [ 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 6120fc5714af0..bac3f60782ca3 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "AED": [ "AED", 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 aca0cba16d64a..b440bb72e521f 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 3980ade9e01b0..981e26c8b90ac 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 ee9456d90bc61..8f48a02670581 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 63b1ef2144a49..1d69e005c895e 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "ADP": [ "ADP", @@ -265,6 +265,10 @@ "CNH", "人民幣(離岸)" ], + "CNX": [ + "CNX", + "CNX" + ], "CNY": [ "CN¥", "人民幣" 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 6120fc5714af0..bac3f60782ca3 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "AED": [ "AED", 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 155437cf2c47d..2477be64b3ac8 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 155437cf2c47d..2477be64b3ac8 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 ee9456d90bc61..8f48a02670581 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 bb27cc2e9510d..ebab2f1441906 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AED": [ "AED", @@ -590,7 +590,7 @@ "i-Ugandan Shilling" ], "USD": [ - "US$", + "$", "i-US Dollar" ], "UYU": [ diff --git a/src/Symfony/Component/Intl/Resources/data/git-info.txt b/src/Symfony/Component/Intl/Resources/data/git-info.txt index 98b38eb10afee..30257ca635ebd 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: e2d85306162d3a0691b070b4f0a73e4012433444 +Revision: fd123bf023882f07bfacf51c39111be2f946d8f8 Author: Steven R. Loomis -Date: 2019-04-17T08:58:08-07:00 +Date: 2019-10-02T10:25:22-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 ed018b74e879f..ceb600dde44a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/af.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkasies", @@ -49,6 +49,7 @@ "bug": "Buginees", "byn": "Blin", "ca": "Katalaans", + "ccp": "Tsjaakma", "ce": "Tsjetsjeens", "ceb": "Cebuano", "cgg": "Kiga", @@ -71,7 +72,6 @@ "dar": "Dakota", "dav": "Taita", "de": "Duits", - "de_CH": "Switserse hoog-Duits", "dgr": "Dogrib", "dje": "Zarma", "dsb": "Benedesorbies", @@ -252,7 +252,7 @@ "naq": "Nama", "nb": "Boeknoors", "nd": "Noord-Ndebele", - "nds": "Lae Duits", + "nds": "Nederduits", "nds_NL": "Nedersaksies", "ne": "Nepalees", "new": "Newari", @@ -372,7 +372,7 @@ "ug": "Uighur", "uk": "Oekraïens", "umb": "Umbundu", - "und": "Onbekende of ongeldige taal", + "und": "Onbekende taal", "ur": "Oerdoe", "uz": "Oezbeeks", "vai": "Vai", @@ -396,9 +396,7 @@ "yo": "Yoruba", "yue": "Kantonees", "zgh": "Standaard Marokkaanse Tamazight", - "zh": "Sjinees", - "zh_Hans": "Chinees (Vereenvoudig)", - "zh_Hant": "Chinees (Tradisioneel)", + "zh": "Chinees", "zu": "Zoeloe", "zun": "Zuni", "zxx": "Geen taalinhoud nie", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ak.json b/src/Symfony/Component/Intl/Resources/data/languages/ak.json index 71e6fb3e1f8ac..0f4215effd692 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 852469eda9e90..7bc503fa79f22 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/am.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "አፋርኛ", "ab": "አብሐዚኛ", @@ -78,6 +78,7 @@ "car": "ካሪብ", "cay": "ካዩጋ", "cch": "አትሳም", + "ccp": "ቻክማ", "ce": "ችችን", "ceb": "ካቡዋኖ", "cgg": "ቺጋኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar.json b/src/Symfony/Component/Intl/Resources/data/languages/ar.json index 27fd2b3a26484..ca3b5d08f5db8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "الأفارية", "ab": "الأبخازية", @@ -21,7 +21,7 @@ "ang": "الإنجليزية القديمة", "anp": "الأنجيكا", "ar": "العربية", - "ar_001": "العربية الرسمية الحديثة", + "ar_001": "العربية الفصحى الحديثة", "arc": "الآرامية", "arn": "المابودونغونية", "arp": "الأراباهو", @@ -71,6 +71,7 @@ "car": "الكاريبية", "cay": "الكايوجية", "cch": "الأتسام", + "ccp": "تشاكما", "ce": "الشيشانية", "ceb": "السيبيوانية", "cgg": "تشيغا", 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 bc92a7d7e40a0..e1dbe6c344ae3 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,5 @@ { - "Version": "2.1.49.36", + "Version": "36", "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 7a3ecec2968af..3fe1ee8f99d9a 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 45088361e4ef9..0744b6cd215da 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json @@ -1,15 +1,33 @@ { - "Version": "2.1.49.36", + "Version": "36", "Names": { + "ar_001": "العربية الرسمية الحديثة", "arn": "المابودونجونية", + "de_AT": "الألمانية النمساوية", + "de_CH": "الألمانية العليا السويسرية", + "en_AU": "الإنجليزية الأسترالية", + "en_CA": "الإنجليزية الكندية", + "en_GB": "الإنجليزية البريطانية", + "en_US": "الإنجليزية الأمريكية", + "es_419": "الإسبانية أمريكا اللاتينية", + "es_ES": "الإسبانية الأوروبية", + "es_MX": "الإسبانية المكسيكية", + "fr_CA": "الفرنسية الكندية", + "fr_CH": "الفرنسية السويسرية", "gn": "الغورانية", "hsb": "صوربيا العليا", "lo": "اللاوو", + "nds_NL": "السكسونية السفلى", + "nl_BE": "الفلمنكية", + "pt_BR": "البرتغالية البرازيلية", + "pt_PT": "البرتغالية الأوروبية", "sh": "الكرواتية الصربية", "sma": "سامي الجنوبية", "sw": "السواحيلية", "sw_CD": "السواحيلية الكونغولية", "te": "التيلوجو", - "ti": "التيغرينية" + "ti": "التيغرينية", + "zh_Hans": "الصينية المبسطة", + "zh_Hant": "الصينية التقليدية" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index 0f7e3bb891ad8..8901026a1a914 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/as.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "আফাৰ", "ab": "আবখাজিয়ান", @@ -304,7 +304,7 @@ "sc": "ছাৰ্ডিনিয়ান", "scn": "ছিচিলিয়ান", "sco": "স্কটছ", - "sd": "সিন্ধি", + "sd": "সিন্ধী", "se": "উদীচ্য ছামি", "seh": "ছেনা", "ses": "কোইৰাবোৰো চেন্নি", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index 171c06af0c7cd..3b0d9d900893e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abxaz", @@ -335,7 +335,6 @@ "no": "norveç", "nog": "noqay", "non": "qədim nors", - "nqo": "nqo", "nr": "cənubi ndebele", "nso": "şimal soto", "nus": "nuer", 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 658f89e2de053..18efabd21ddc3 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 584b119eb68f6..4585f5ec45c64 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/be.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарская", "ab": "абхазская", @@ -18,6 +18,7 @@ "ang": "стараанглійская", "anp": "ангіка", "ar": "арабская", + "ar_001": "сучасная стандартная арабская", "arc": "арамейская", "arn": "мапудунгун", "arp": "арапаха", @@ -50,6 +51,7 @@ "bug": "бугіс", "byn": "білен", "ca": "каталанская", + "ccp": "чакма", "ce": "чачэнская", "ceb": "себуана", "cgg": "чыга", @@ -73,6 +75,8 @@ "dar": "даргінская", "dav": "таіта", "de": "нямецкая", + "de_AT": "аўстрыйская нямецкая", + "de_CH": "швейцарская літаратурная нямецкая", "dgr": "догрыб", "dje": "зарма", "dsb": "ніжнялужыцкая", @@ -88,8 +92,15 @@ "eka": "экаджук", "el": "грэчаская", "en": "англійская", + "en_AU": "аўстралійская англійская", + "en_CA": "канадская англійская", + "en_GB": "брытанская англійская", + "en_US": "амерыканская англійская", "eo": "эсперанта", "es": "іспанская", + "es_419": "лацінаамерыканская іспанская", + "es_ES": "еўрапейская іспанская", + "es_MX": "мексіканская іспанская", "et": "эстонская", "eu": "баскская", "ewo": "эвонда", @@ -101,6 +112,8 @@ "fo": "фарэрская", "fon": "фон", "fr": "французская", + "fr_CA": "канадская французская", + "fr_CH": "швейцарская французская", "fro": "старафранцузская", "fur": "фрыульская", "fy": "заходняя фрызская", @@ -255,6 +268,7 @@ "nia": "ніас", "niu": "ніўэ", "nl": "нідэрландская", + "nl_BE": "фламандская", "nmg": "нгумба", "nn": "нарвежская (нюношк)", "nnh": "нг’ембон", @@ -371,7 +385,7 @@ "twq": "тасаўак", "ty": "таіці", "tyv": "тувінская", - "tzm": "цэнтральнаатлаская тамазіхт", + "tzm": "сярэднеатлаская тамазігхт", "udm": "удмурцкая", "ug": "уйгурская", "uk": "украінская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index 9d04b173029f3..8c9dd2bbb48c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "афарски", "ab": "абхазки", @@ -113,6 +113,7 @@ "el": "гръцки", "elx": "еламитски", "en": "английски", + "en_GB": "английски (Обединено кралство)", "en_US": "английски (САЩ)", "enm": "средновековен английски", "eo": "есперанто", @@ -134,14 +135,14 @@ "fro": "старофренски", "frr": "северен фризски", "frs": "източнофризийски", - "fur": "фриулиански", + "fur": "фриулски", "fy": "западнофризийски", "ga": "ирландски", "gaa": "га", "gag": "гагаузки", "gay": "гайо", "gba": "гбая", - "gd": "шотландски галски", + "gd": "шотландски келтски", "gez": "гииз", "gil": "гилбертски", "gl": "галисийски", @@ -180,7 +181,7 @@ "id": "индонезийски", "ie": "оксидентал", "ig": "игбо", - "ii": "съчуански и", + "ii": "съчуански йи", "ik": "инупиак", "ilo": "илоко", "inh": "ингушетски", @@ -299,7 +300,7 @@ "mwr": "марвари", "my": "бирмански", "myv": "ерзиа", - "mzn": "мазандари", + "mzn": "мазандерански", "na": "науру", "nap": "неаполитански", "naq": "нама", @@ -335,7 +336,7 @@ "oj": "оджибва", "om": "оромо", "or": "ория", - "os": "осетски", + "os": "осетински", "osa": "осейджи", "ota": "отомански турски", "pa": "пенджабски", @@ -372,7 +373,7 @@ "rwk": "рва", "sa": "санскрит", "sad": "сандаве", - "sah": "якутски", + "sah": "сакха", "sam": "самаритански арамейски", "saq": "самбуру", "sas": "сасак", @@ -412,7 +413,7 @@ "srr": "серер", "ss": "свати", "ssy": "сахо", - "st": "сесото", + "st": "сото", "su": "сундански", "suk": "сукума", "sus": "сусу", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bm.json b/src/Symfony/Component/Intl/Resources/data/languages/bm.json index 20a2be26a66e8..f38afe0707a36 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 192b25a65dde6..f5ba607a3289c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "Names": { "aa": "আফার", "ab": "আবখাজিয়ান", @@ -62,6 +62,7 @@ "cad": "ক্যাডো", "car": "ক্যারিব", "cch": "আত্সাম", + "ccp": "চাকমা", "ce": "চেচেন", "ceb": "চেবুয়ানো", "cgg": "চিগা", @@ -172,7 +173,6 @@ "gwi": "গওইচ্’ইন", "ha": "হাউসা", "hai": "হাইডা", - "hak": "hak", "haw": "হাওয়াইয়ান", "he": "হিব্রু", "hi": "হিন্দি", @@ -316,7 +316,6 @@ "myv": "এরজিয়া", "mzn": "মাজানদেরানি", "na": "নাউরু", - "nan": "nan", "nap": "নেয়াপোলিটান", "naq": "নামা", "nb": "নরওয়েজিয়ান বোকমাল", @@ -505,7 +504,7 @@ "ybb": "ইয়েম্বা", "yi": "ইয়েদ্দিশ", "yo": "ইওরুবা", - "yue": "ক্যানটোনীজ", + "yue": "ক্যান্টোনিজ", "za": "ঝু্য়াঙ", "zap": "জাপোটেক", "zbl": "চিত্র ভাষা", 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 05f6a708af480..3a691f99cd765 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 4e8fb1528ff6e..d2dec5911cbee 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 c7e6134654971..00afdbed345de 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/br.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.86", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhazeg", @@ -73,6 +73,7 @@ "cad": "caddo", "car": "karibeg", "cch": "atsam", + "ccp": "chakmaeg", "ce": "tchetcheneg", "ceb": "cebuano", "cgg": "chigaeg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index fda461d822118..dcf4ebc739e87 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afarski", "ab": "abhaski", @@ -70,6 +70,7 @@ "car": "karipski", "cay": "kajuga", "cch": "atsam", + "ccp": "čakma", "ce": "čečenski", "ceb": "cebuano", "cgg": "čiga", @@ -81,7 +82,7 @@ "chn": "činukski žargon", "cho": "čoktav", "chp": "čipvijanski", - "chr": "čiroki", + "chr": "čeroki", "chy": "čejenski", "ckb": "centralnokurdski", "co": "korzikanski", @@ -99,7 +100,6 @@ "dar": "dargva", "dav": "taita", "de": "njemački", - "de_CH": "gornjonjemački (Švicarska)", "del": "delaver", "den": "slave", "dgr": "dogrib", @@ -347,7 +347,7 @@ "oc": "oksitanski", "oj": "ojibva", "om": "oromo", - "or": "orijski", + "or": "odija", "os": "osetski", "osa": "osage", "ota": "osmanski turski", 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 ae0ce8d6d3d00..9b680f15fecff 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарски", "ab": "абказијски", @@ -8,8 +8,9 @@ "ada": "адангмејски", "ady": "адигејски", "ae": "авестански", - "af": "африканерски", + "af": "африканс", "afh": "африхили", + "agq": "ахемски", "ain": "аину", "ak": "акан", "akk": "акадијски", @@ -20,11 +21,13 @@ "ang": "староенглески", "anp": "ангика", "ar": "арапски", + "ar_001": "арапски (стандардни)", "arc": "армајски", "arn": "ароканијски", "arp": "арапахо", "arw": "аравак", "as": "асемијски", + "asa": "асу", "ast": "астуријски", "av": "аварски", "awa": "авадхи", @@ -37,6 +40,7 @@ "be": "бјелоруски", "bej": "беја", "bem": "бемба", + "bez": "бена", "bg": "бугарски", "bho": "бојпури", "bi": "бислама", @@ -44,10 +48,11 @@ "bin": "бини", "bla": "сисика", "bm": "бамбара", - "bn": "бенгласки", + "bn": "бенгалски", "bo": "тибетански", "br": "бретонски", "bra": "брај", + "brx": "бодо", "bs": "босански", "bua": "буриат", "bug": "бугинежански", @@ -56,8 +61,10 @@ "cad": "кадо", "car": "карипски", "cch": "атсамски", + "ccp": "чакма", "ce": "чеченски", "ceb": "цебуано", + "cgg": "чига", "ch": "чаморо", "chb": "чибча", "chg": "чагатаи", @@ -68,6 +75,7 @@ "chp": "чипвијански", "chr": "чероки", "chy": "чејенски", + "ckb": "централнокурдски", "co": "корзикански", "cop": "коптски", "cr": "кри", @@ -80,17 +88,20 @@ "da": "дански", "dak": "дакота", "dar": "даргва", + "dav": "таита", "de": "њемачки", - "de_CH": "Швајцарски високи немачки", + "de_CH": "високи њемачки (Швицарска)", "del": "делавер", "den": "славски", "dgr": "догриб", "din": "динка", + "dje": "зарма", "doi": "догри", - "dsb": "ниски сорбијански", + "dsb": "доњолужичкосрпски", "dua": "дуала", "dum": "средњи холандски", "dv": "дивехијски", + "dyo": "јола-фоњи", "dyu": "ђула", "dz": "џонга", "ebu": "ембу", @@ -122,7 +133,7 @@ "frr": "северно-фризијски", "frs": "источни фризијски", "fur": "фриулијски", - "fy": "фризијски", + "fy": "западни фризијски", "ga": "ирски", "gaa": "га", "gay": "гајо", @@ -141,6 +152,7 @@ "grc": "старогрчки", "gsw": "њемачки (Швицарска)", "gu": "гуџарати", + "guz": "гуси", "gv": "манкс", "gwi": "гвич’ин", "ha": "хауса", @@ -153,18 +165,18 @@ "hmn": "хмонг", "ho": "хири моту", "hr": "хрватски", - "hsb": "горњи сорбијски", - "ht": "хаитски", + "hsb": "горњолужичкосрпски", + "ht": "хаићански креолски", "hu": "мађарски", "hup": "хупа", - "hy": "ерменски", + "hy": "јерменски", "hz": "хереро", "ia": "интерлингва", "iba": "ибан", "id": "индонежански", "ie": "међујезички", "ig": "игбо", - "ii": "сичуан ји", + "ii": "сечуан ји", "ik": "унупиак", "ilo": "илоко", "inh": "ингвишки", @@ -174,6 +186,8 @@ "iu": "инуктитут", "ja": "јапански", "jbo": "лојбан", + "jgo": "нгомба", + "jmc": "мачаме", "jpr": "јудео-персијски", "jrb": "јудео-арапски", "jv": "јавански", @@ -186,14 +200,19 @@ "kaw": "кави", "kbd": "кабардијски", "kcg": "тјап", + "kde": "маконде", + "kea": "кабовердијански креолски", "kfo": "коро", "kg": "конго", "kha": "каси", "kho": "котанешки", + "khq": "којра чини", "ki": "кикују", "kj": "куањама", - "kk": "козачки", + "kk": "казашки", + "kkj": "како", "kl": "калалисут", + "kln": "калењин", "km": "кмерски", "kmb": "кимбунду", "kn": "канада", @@ -207,6 +226,8 @@ "kru": "курукх", "ks": "кашмирски", "ksb": "шамбала", + "ksf": "бафија", + "ksh": "келнски", "ku": "курдски", "kum": "кумик", "kut": "кутенаи", @@ -215,16 +236,19 @@ "ky": "киргиски", "la": "латински", "lad": "ладино", + "lag": "ланги", "lah": "ланда", "lam": "ламба", "lb": "луксембуршки", "lez": "лезгиан", "lg": "ганда", "li": "лимбургиш", + "lkt": "лакота", "ln": "лингала", "lo": "лаоски", "lol": "монго", "loz": "лози", + "lrc": "сјеверни лури", "lt": "литвански", "lu": "луба-катанга", "lua": "луба-лулуа", @@ -232,6 +256,7 @@ "lun": "лунда", "luo": "луо", "lus": "лушаи", + "luy": "луја", "lv": "латвијски", "mad": "мадурешки", "mag": "магахи", @@ -242,8 +267,12 @@ "mdf": "мокша", "mdr": "мандар", "men": "менде", + "mer": "меру", + "mfe": "мауритански", "mg": "малагасијски", "mga": "средњи ирски", + "mgh": "макуа-мето", + "mgo": "мета", "mh": "маршалски", "mi": "маорски", "mic": "микмак", @@ -257,18 +286,21 @@ "mos": "моси", "mr": "марати", "ms": "малајски", - "mt": "мелтешки", + "mt": "малтешки", + "mua": "мунданг", "mul": "више језика", "mus": "кришки", "mwl": "мирандешки", "mwr": "марвари", "my": "бурмански", "myv": "ерзија", + "mzn": "мазандерани", "na": "науру", "nap": "неаполитански", + "naq": "нама", "nb": "норвешки бокмал", "nd": "сјеверни ндебеле", - "nds": "ниски немачки", + "nds": "ниски њемачки", "ne": "непалски", "new": "невари", "ng": "ндонга", @@ -276,13 +308,16 @@ "niu": "ниуеан", "nl": "холандски", "nl_BE": "фламански", - "nn": "норвешки њорск", + "nmg": "квасио", + "nn": "норвешки нинорск", + "nnh": "нгиембун", "no": "норвешки", "nog": "ногаи", "non": "стари норски", "nqo": "н’ко", "nr": "јужни ндебеле", "nso": "сјеверни сото", + "nus": "нуер", "nv": "навахо", "nwc": "класични невари", "ny": "њања", @@ -293,11 +328,11 @@ "oc": "провансалски", "oj": "ојибва", "om": "оромо", - "or": "оријски", + "or": "одија", "os": "осетски", "osa": "осаге", "ota": "отомански турски", - "pa": "панџабски", + "pa": "пенџапски", "pag": "пангасински", "pal": "пахлави", "pam": "пампанга", @@ -308,6 +343,7 @@ "pi": "пали", "pl": "пољски", "pon": "понпејски", + "prg": "пруски", "pro": "старопровансалски", "ps": "паштунски", "pt": "португалски", @@ -319,28 +355,35 @@ "rn": "рунди", "ro": "румунски", "ro_MD": "молдавски", + "rof": "ромбо", "rom": "романи", "root": "рут", "ru": "руски", "rup": "ароманијски", "rw": "кинјаруанда", + "rwk": "рва", "sa": "санскрит", "sad": "сандаве", - "sah": "јакут", + "sah": "јакутски", "sam": "самаритански арамејски", + "saq": "самбуру", "sas": "сасак", "sat": "сантали", + "sbp": "сангу", "sc": "сардињаски", "scn": "сицилијански", "sco": "шкотски", "sd": "синди", "se": "сјеверни сами", + "seh": "сена", "sel": "селкап", + "ses": "којраборо сени", "sg": "санго", "sga": "староирски", "sh": "српскохрватски", + "shi": "ташелхит", "shn": "шан", - "si": "сингалески", + "si": "синхалски", "sid": "сидамо", "sk": "словачки", "sl": "словенски", @@ -371,9 +414,10 @@ "ta": "тамилски", "te": "телугу", "tem": "тимне", + "teo": "тесо", "ter": "терено", "tet": "тетум", - "tg": "тађик", + "tg": "таџички", "th": "тајландски", "ti": "тигриња", "tig": "тигре", @@ -395,8 +439,10 @@ "tum": "тумбука", "tvl": "тувалу", "tw": "тви", + "twq": "тасавак", "ty": "тахићански", "tyv": "тувинијски", + "tzm": "централноатласки тамазихт", "udm": "удмурт", "ug": "ујгурски", "uga": "угаритски", @@ -410,15 +456,19 @@ "vi": "вијетнамски", "vo": "волапук", "vot": "вотски", + "vun": "вунјо", "wa": "валун", + "wae": "валсерски", "wal": "валамо", "war": "варај", "was": "вашо", "wo": "волоф", "xal": "калмик", - "xh": "ксхоса", + "xh": "коса", + "xog": "сога", "yao": "јао", "yap": "јапешки", + "yav": "јангбен", "yi": "јидиш", "yo": "јоруба", "yue": "кантонски", @@ -426,10 +476,9 @@ "zap": "запотечки", "zbl": "блисимболи", "zen": "зенага", - "zgh": "стандардни марокански тамазигт", + "zgh": "стандардни марокански тамазихт", "zh": "кинески", "zh_Hans": "кинески (поједностављен)", - "zh_Hant": "кинески (традиционални)", "zu": "зулу", "zun": "зуни", "zxx": "без лингвистичког садржаја", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ca.json b/src/Symfony/Component/Intl/Resources/data/languages/ca.json index 8a38da73ca6f7..1f022d7b19472 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "àfar", "ab": "abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ce.json b/src/Symfony/Component/Intl/Resources/data/languages/ce.json index 489ef662a9c2c..b002351d216c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 3780645d53afa..4321bcbfb6b02 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "aa": "afarština", "ab": "abcházština", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index 5a4cb7797fdd4..1629e65b7d509 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Affareg", "ab": "Abchaseg", @@ -432,7 +432,7 @@ "sm": "Samöeg", "sma": "Sami Deheuol", "smj": "Sami Lwle", - "smn": "Sami Inari", + "smn": "Inari Sami", "sms": "Sami Scolt", "sn": "Shona", "snk": "Soninceg", @@ -469,7 +469,7 @@ "ti": "Tigrinya", "tig": "Tigreg", "tiv": "Tifeg", - "tk": "Twrcmeneg", + "tk": "Tyrcmeneg", "tkl": "Tocelaweg", "tkr": "Tsakhureg", "tl": "Tagalog", @@ -491,7 +491,7 @@ "twq": "Tasawaq", "ty": "Tahitïeg", "tyv": "Twfwnieg", - "tzm": "Tamaseit Canolbarth Moroco", + "tzm": "Tamazight Canol yr Atlas", "udm": "Fotiaceg", "ug": "Uighur", "uga": "Wgariteg", @@ -528,9 +528,9 @@ "zbl": "Blisssymbols", "zea": "Zêlandeg", "zgh": "Tamaseit Safonol", - "zh": "Tsieineeg", - "zh_Hans": "Tsieineeg Symledig", - "zh_Hant": "Tsieineeg Traddodiadol", + "zh": "Tsieinëeg", + "zh_Hans": "Tsieinëeg Symledig", + "zh_Hant": "Tsieinëeg Traddodiadol", "zu": "Swlw", "zun": "Swni", "zxx": "Dim cynnwys ieithyddol", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/da.json b/src/Symfony/Component/Intl/Resources/data/languages/da.json index ed7ee6a7c8454..96d529819f416 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/da.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -71,6 +71,7 @@ "car": "caribisk", "cay": "cayuga", "cch": "atsam", + "ccp": "chakma", "ce": "tjetjensk", "ceb": "cebuano", "cgg": "chiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index 5f10f56ad815b..c44b16a07b291 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abchasisch", @@ -88,6 +88,7 @@ "car": "Karibisch", "cay": "Cayuga", "cch": "Atsam", + "ccp": "Chakma", "ce": "Tschetschenisch", "ceb": "Cebuano", "cgg": "Rukiga", 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 5925fe2cf9e8a..2549cf699a9b4 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 8151f0e98535b..e9e158c3646f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json @@ -1,19 +1,24 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "ace": "Aceh-Sprache", "ach": "Acholi-Sprache", + "ar_001": "Modernes Hocharabisch", "ars": "Nadschd-Arabisch", "bas": "Basaa-Sprache", "be": "Weissrussisch", "bik": "Bikol-Sprache", "bin": "Bini-Sprache", "chb": "Chibcha-Sprache", + "de_CH": "Schweizer Hochdeutsch", "din": "Dinka-Sprache", "fan": "Pangwe-Sprache", "gba": "Gbaya-Sprache", "kmb": "Kimbundu-Sprache", "mus": "Muskogee-Sprache", - "prg": "Altpreussisch" + "nl_BE": "Flämisch", + "prg": "Altpreussisch", + "zh_Hans": "Chinesisch (vereinfacht)", + "zh_Hant": "Chinesisch (traditionell)" } } 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 e7c4d0260bf5a..99ca098e73ac0 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 2813eb1974cde..cbffc7b128012 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 79d1db8f8a6e3..07cab652a4fc4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 bd775ad90bd42..bbd0bcf16f999 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/el.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Αφάρ", "ab": "Αμπχαζικά", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en.json b/src/Symfony/Component/Intl/Resources/data/languages/en.json index 1dd409aad0f6e..4aa3a4af01458 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.65", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkhazian", @@ -102,6 +102,7 @@ "chp": "Chipewyan", "chr": "Cherokee", "chy": "Cheyenne", + "cic": "Chickasaw", "ckb": "Central Kurdish", "co": "Corsican", "cop": "Coptic", @@ -370,7 +371,7 @@ "mt": "Maltese", "mua": "Mundang", "mul": "Multiple languages", - "mus": "Creek", + "mus": "Muscogee", "mwl": "Mirandese", "mwr": "Marwari", "mwv": "Mentawai", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_001.json b/src/Symfony/Component/Intl/Resources/data/languages/en_001.json new file mode 100644 index 0000000000000..963d0413b6894 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_001.json @@ -0,0 +1,7 @@ +{ + "Version": "36", + "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 20416196b0f60..cf2497879a543 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json @@ -1,10 +1,26 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { + "ar_001": "Modern Standard Arabic", "bn": "Bengali", + "de_AT": "Austrian German", + "de_CH": "Swiss High German", + "en_AU": "Australian English", + "en_CA": "Canadian English", + "en_GB": "British English", "en_US": "United States English", + "es_419": "Latin American Spanish", + "es_ES": "European Spanish", + "es_MX": "Mexican Spanish", + "fr_CA": "Canadian French", + "fr_CH": "Swiss French", "frc": "frc", "lou": "lou", - "ro_MD": "Moldovan" + "pt_BR": "Brazilian Portuguese", + "pt_PT": "European Portuguese", + "ro_MD": "Moldovan", + "sr_ME": "Montenegrin", + "zh_Hans": "Simplified Chinese", + "zh_Hant": "Traditional Chinese" } } 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 3850e7b4e8bf0..657b3d27caeb2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json @@ -1,9 +1,29 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { + "ar_001": "Modern Standard Arabic", "bn": "Bengali", + "de_AT": "Austrian German", + "de_CH": "Swiss High German", + "en_AU": "Australian English", + "en_CA": "Canadian English", + "en_GB": "British English", + "en_US": "American English", + "es_419": "Latin American Spanish", + "es_ES": "European Spanish", + "es_MX": "Mexican Spanish", + "fa_AF": "Dari", + "fr_CA": "Canadian French", + "fr_CH": "Swiss French", "mfe": "Mauritian", + "nl_BE": "Flemish", + "pt_BR": "Brazilian Portuguese", + "pt_PT": "European Portuguese", "ro_MD": "Moldovan", - "tvl": "Tuvaluan" + "sr_ME": "Montenegrin", + "sw_CD": "Congo Swahili", + "tvl": "Tuvaluan", + "zh_Hans": "Simplified Chinese", + "zh_Hant": "Traditional Chinese" } } 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 b4bf860e6d6cb..f5b3ec1fcd611 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json @@ -1,6 +1,26 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { - "nds_NL": "West Low German" + "ar_001": "Modern Standard Arabic", + "de_AT": "Austrian German", + "de_CH": "Swiss High German", + "en_AU": "Australian English", + "en_CA": "Canadian English", + "en_GB": "British English", + "en_US": "American English", + "es_419": "Latin American Spanish", + "es_ES": "European Spanish", + "es_MX": "Mexican Spanish", + "fa_AF": "Dari", + "fr_CA": "Canadian French", + "fr_CH": "Swiss French", + "nds_NL": "West Low German", + "nl_BE": "Flemish", + "pt_BR": "Brazilian Portuguese", + "pt_PT": "European Portuguese", + "ro_MD": "Moldavian", + "sw_CD": "Congo Swahili", + "zh_Hans": "Simplified Chinese", + "zh_Hant": "Traditional Chinese" } } 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 292d29e63cd1d..6ccb775188e15 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json @@ -1,6 +1,7 @@ { - "Version": "2.1.49.14", + "Version": "36", "Names": { - "bn": "Bengali" + "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 1d45bcf7b1075..7b7fc2c26b873 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 96362523e2df8..832bb82ce038a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.33", + "Version": "36", "Names": { "aa": "afara", "ab": "abĥaza", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es.json b/src/Symfony/Component/Intl/Resources/data/languages/es.json index 7b3d9fb757767..b183ceaa5e09d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abjasio", @@ -71,6 +71,7 @@ "car": "caribe", "cay": "cayuga", "cch": "atsam", + "ccp": "chakma", "ce": "checheno", "ceb": "cebuano", "cgg": "chiga", @@ -367,7 +368,7 @@ "os": "osético", "osa": "osage", "ota": "turco otomano", - "pa": "panyabí", + "pa": "punyabí", "pag": "pangasinán", "pal": "pahlavi", "pam": "pampanga", 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 57dd2888e9dbc..ba342e6a8316c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -1,14 +1,25 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "ace": "achenés", "ady": "adigeo", "alt": "altái del sur", + "ar_001": "árabe estándar moderno", "arp": "arapajó", "ars": "árabe de Néyed", "bla": "siksiká", - "ccp": "chakma", + "de_AT": "alemán austríaco", + "de_CH": "alto alemán suizo", + "en_AU": "inglés australiano", + "en_CA": "inglés canadiense", + "en_GB": "inglés británico", + "en_US": "inglés estadounidense", + "es_419": "español latinoamericano", + "es_ES": "español de España", + "es_MX": "español de México", "eu": "vasco", + "fr_CA": "francés canadiense", + "fr_CH": "francés suizo", "goh": "alemán de la alta edad antigua", "grc": "griego clásico", "gu": "gujarati", @@ -16,11 +27,15 @@ "kbd": "cabardiano", "krc": "karachái-bálkaro", "lo": "laosiano", - "luo": "luo", + "nl_BE": "flamenco", "nr": "ndebele del sur", "nso": "sesotho del norte", + "pa": "panyabí", "prg": "prusiano antiguo", + "pt_BR": "portugués de Brasil", + "pt_PT": "portugués de Portugal", "rm": "retorrománico", + "ro_MD": "moldavo", "shu": "árabe (Chad)", "sma": "sami del sur", "st": "sesotho del sur", @@ -29,11 +44,11 @@ "syr": "siríaco", "tet": "tetun", "tyv": "tuvano", - "tzm": "tamazight del Marruecos Central", - "vai": "vai", "wal": "walamo", "wuu": "wu", "xal": "calmuco", + "zh_Hans": "chino simplificado", + "zh_Hant": "chino tradicional", "zun": "zuni" } } 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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 645ab1b732e92..d8bfa4f493455 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json @@ -1,7 +1,8 @@ { - "Version": "2.1.47.96", + "Version": "36", "Names": { "ace": "acehnés", + "ar_001": "árabe estándar moderno", "arp": "arapaho", "bas": "basa", "bax": "bamun", @@ -27,23 +28,23 @@ "lus": "lushai", "mga": "irlandés medieval", "nan": "min nan (Chino)", + "nl_BE": "flamenco", "nr": "ndebele meridional", "nso": "sotho septentrional", "pa": "punyabí", "pcm": "pcm", - "rn": "kiroundi", "shu": "árabe chadiano", "ss": "siswati", - "st": "sesotho meridional", "sw": "suajili", "sw_CD": "suajili del Congo", "syr": "siriaco", "tet": "tetún", "tn": "setswana", "tyv": "tuviniano", - "wo": "wolof", "wuu": "wuu", "xal": "kalmyk", - "zgh": "tamazight marroquí estándar" + "zgh": "tamazight marroquí estándar", + "zh_Hans": "chino simplificado", + "zh_Hant": "chino tradicional" } } 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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 0ff2840bb2912..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 4cc858205c7ff..338a32b2d60c3 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 4cc858205c7ff..338a32b2d60c3 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 4b89a55b11e7d..f2919e40dc806 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "ace": "acehnés", "alt": "altái meridional", @@ -18,14 +18,17 @@ "grc": "griego antiguo", "gu": "gurayatí", "hak": "hak", + "hil": "hiligainón", "hsn": "xiang (China)", "ht": "criollo haitiano", + "inh": "ingusetio", "kbd": "kabardiano", "krc": "karachay-balkar", "lo": "lao", "lus": "lushai", "mga": "irlandés medieval", "nan": "nan", + "nl_BE": "flamenco", "nr": "ndebele meridional", "nso": "sotho septentrional", "pcm": "pcm", @@ -40,9 +43,10 @@ "tet": "tetún", "tn": "setchwana", "tyv": "tuviniano", - "tzm": "tamazight del Atlas Central", "wo": "wolof", "wuu": "wuu", - "xal": "kalmyk" + "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 76ddec4abdf5e..7186cddfdc253 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 1c68c0f81af36..16f30156d8d6f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/et.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afari", "ab": "abhaasi", @@ -86,7 +86,7 @@ "car": "kariibi", "cay": "kajuka", "cch": "aitšami", - "ccp": "Chakma", + "ccp": "tšaakma", "ce": "tšetšeeni", "ceb": "sebu", "cgg": "tšiga", @@ -230,7 +230,7 @@ "id": "indoneesia", "ie": "interlingue", "ig": "ibo", - "ii": "Sichuani jii", + "ii": "nuosu", "ik": "injupiaki", "ilo": "iloko", "inh": "inguši", @@ -319,7 +319,7 @@ "lrc": "põhjaluri", "lt": "leedu", "ltg": "latgali", - "lu": "luba", + "lu": "Katanga luba", "lua": "lulua", "lui": "luisenjo", "lun": "lunda", @@ -402,7 +402,7 @@ "nwc": "vananevari", "ny": "njandža", "nym": "njamvesi", - "nyn": "nkole", + "nyn": "njankole", "nyo": "njoro", "nzi": "nzima", "oc": "oksitaani", @@ -578,7 +578,7 @@ "vro": "võru", "vun": "vundžo", "wa": "vallooni", - "wae": "walseri", + "wae": "valsi", "wal": "volaita", "war": "varai", "was": "vašo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index 855d92c5f42a0..62a0d448cea0b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afarera", "ab": "abkhaziera", @@ -21,7 +21,7 @@ "arn": "maputxe", "arp": "arapaho", "as": "assamera", - "asa": "asua", + "asa": "asu", "ast": "asturiera", "av": "avarera", "awa": "awadhiera", @@ -47,6 +47,7 @@ "bug": "buginera", "byn": "bilena", "ca": "katalan", + "ccp": "chakmera", "ce": "txetxenera", "ceb": "cebuera", "cgg": "chigera", @@ -56,7 +57,7 @@ "cho": "choctaw", "chr": "txerokiera", "chy": "cheyennera", - "ckb": "sorania", + "ckb": "erdialdeko kurduera", "co": "korsikera", "crs": "Seychelleetako kreolera", "cs": "txekiera", @@ -108,7 +109,7 @@ "fr_CH": "Suitzako frantses", "fur": "friuliera", "fy": "frisiera", - "ga": "gaeliko", + "ga": "irlandera", "gaa": "ga", "gag": "gagauzera", "gd": "Eskoziako gaeliko", @@ -151,7 +152,7 @@ "ja": "japoniera", "jbo": "lojbanera", "jgo": "ngomba", - "jmc": "machamera", + "jmc": "machame", "jv": "javera", "ka": "georgiera", "kab": "kabilera", @@ -160,16 +161,16 @@ "kam": "kambera", "kbd": "kabardiera", "kcg": "kataba", - "kde": "makondera", + "kde": "makondeera", "kea": "Cabo Verdeko kreolera", "kfo": "koroa", "kg": "kikongoa", "kha": "kashia", - "khq": "koyra chiiniera", + "khq": "koyra chiini", "ki": "kikuyuera", "kj": "kuanyama", "kk": "kazakhera", - "kkj": "kakoa", + "kkj": "kako", "kl": "groenlandiera", "kln": "kalenjinera", "km": "khemerera", @@ -205,7 +206,7 @@ "loz": "loziera", "lrc": "iparraldeko lurera", "lt": "lituaniera", - "lu": "luba-katangera", + "lu": "Katangako lubera", "lua": "txilubera", "lun": "lundera", "luo": "luoera", @@ -223,7 +224,7 @@ "mfe": "Mauritaniako kreolera", "mg": "malgaxe", "mgh": "makhuwa-meettoera", - "mgo": "metera", + "mgo": "metaʼera", "mh": "marshallera", "mi": "maoriera", "mic": "mikmakera", @@ -249,6 +250,7 @@ "naq": "namera", "nb": "bokmål (norvegiera)", "nd": "iparraldeko ndebeleera", + "nds": "behe-aleman", "nds_NL": "behe-saxoiera", "ne": "nepalera", "new": "newarera", @@ -293,12 +295,12 @@ "rn": "rundiera", "ro": "errumaniera", "ro_MD": "moldaviera", - "rof": "romboera", + "rof": "rombo", "root": "erroa", "ru": "errusiera", "rup": "aromaniera", "rw": "kinyaruanda", - "rwk": "rwaera", + "rwk": "rwera", "sa": "sanskrito", "sad": "sandaweera", "sah": "sakhera", @@ -312,10 +314,10 @@ "sd": "sindhi", "se": "iparraldeko samiera", "seh": "senera", - "ses": "koyraboro sennia", + "ses": "koyraboro senni", "sg": "sango", "sh": "serbokroaziera", - "shi": "tachelhita", + "shi": "tachelhit", "shn": "shanera", "si": "sinhala", "sk": "eslovakiera", @@ -340,7 +342,7 @@ "sw": "swahilia", "sw_CD": "Kongoko swahilia", "swb": "komoreera", - "syr": "siriera", + "syr": "asiriera", "ta": "tamilera", "te": "telugu", "tem": "temnea", @@ -387,7 +389,7 @@ "xal": "kalmykera", "xh": "xhosera", "xog": "sogera", - "yav": "jangbenera", + "yav": "yangbenera", "ybb": "yemba", "yi": "yiddish", "yo": "jorubera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index 6e4bd77c2500b..52f4c3bdb9963 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "آفاری", "ab": "آبخازی", @@ -342,7 +342,7 @@ "nl_BE": "فلمنگی", "nmg": "کوازیو", "nn": "نروژی نی‌نُشک", - "nnh": "انگیمبونی", + "nnh": "نیامبون", "no": "نروژی", "nog": "نغایی", "non": "نرس باستان", 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 610e5095f949e..82025f0741294 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 494f0867715ac..8957c1003e0d7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "ak": "Akaan", "am": "Amarik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fi.json b/src/Symfony/Component/Intl/Resources/data/languages/fi.json index 7b74396d70006..b2b31bfb0ed47 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abhaasi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fo.json b/src/Symfony/Component/Intl/Resources/data/languages/fo.json index bd6daf1248f29..80e588ed909fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.9", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhasiskt", @@ -48,6 +48,7 @@ "bug": "buginesiskt", "byn": "blin", "ca": "katalani", + "ccp": "khakma", "ce": "tjetjenskt", "ceb": "cebuano", "cgg": "chiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 3cf5c48f48c6e..e32dfabb6d86b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhaze", 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 fbbbf9d444ec1..4cf5b4e0f6c92 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 8798c30dde616..27c7eaeb50f76 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json @@ -1,8 +1,9 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "ady": "adygué", "ang": "vieil anglais", + "ar_001": "arabe standard moderne", "asa": "assou", "az": "azerbaïdjanais", "bbj": "ghomala", @@ -14,11 +15,21 @@ "chn": "chinook", "ckb": "kurde central", "cr": "cri", + "de_AT": "allemand autrichien", + "de_CH": "allemand suisse", "den": "slave", "dgr": "tlicho", + "en_AU": "anglais australien", + "en_CA": "anglais canadien", + "en_GB": "anglais britannique", + "en_US": "anglais américain", "esu": "yupik central", "ewo": "ewondo", + "fr_CA": "français canadien", + "fr_CH": "français suisse", "frc": "cajun", + "frp": "franco-provençal", + "gbz": "dari", "goh": "vieux haut-allemand", "gu": "gujarati", "ii": "yi de Sichuan", @@ -30,16 +41,15 @@ "ksh": "kölsch", "liv": "live", "lu": "luba-katanga", - "luo": "luo", "lzh": "chinois classique", "mgh": "makhuwa-meetto", "mgo": "meta’", "mr": "marathe", "mwr": "marwari", "mwv": "mentawai", - "nds": "bas allemand", "nds_NL": "bas saxon", "njo": "ao naga", + "nl_BE": "flamand", "nmg": "kwasio", "nwc": "newari classique", "nyn": "nkole", @@ -49,16 +59,23 @@ "peo": "vieux perse", "pfl": "palatin", "pro": "ancien occitan", + "pt_BR": "portugais brésilien", + "pt_PT": "portugais européen", "quc": "k’iche’", "rar": "rarotonga", + "ro_MD": "moldave", "sbp": "sangu", "sdh": "kurde méridional", "sei": "seri", "sga": "vieil irlandais", "sly": "selayar", "smn": "sami d’Inari", + "stq": "frison de Saterland", + "sus": "sosso", "sw_CD": "swahili congolais", "tru": "turoyo", - "tzm": "tamazight" + "tzm": "tamazight", + "zh_Hans": "chinois simplifié", + "zh_Hant": "chinois traditionnel" } } 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 79f2d8d35ad01..c6b77ba76362a 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,5 @@ { - "Version": "2.1.48.88", + "Version": "36", "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 748f4fed62d18..60c6349012918 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 34a7ac55611db..de985c18bc50e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Afáiris", "ab": "Abcáisis", @@ -52,7 +52,6 @@ "bug": "Buiginis", "byn": "byn", "ca": "Catalóinis", - "ccp": "ccp", "ce": "Seisnis", "ceb": "Seabúáinis", "cgg": "cgg", @@ -175,30 +174,30 @@ "iu": "Ionúitis", "ja": "Seapáinis", "jbo": "Lojban", - "jgo": "jgo", - "jmc": "jmc", + "jgo": "Ngomba", + "jmc": "Machame", "jut": "Iútlainnis", "jv": "Iáivis", "ka": "Seoirsis", "kaa": "Cara-Chalpáis", - "kab": "kab", + "kab": "Caibílis", "kac": "kac", "kaj": "kaj", - "kam": "kam", + "kam": "Cambais", "kbd": "kbd", "kcg": "kcg", - "kde": "kde", + "kde": "Makonde", "kea": "Kabuverdianu", "kfo": "kfo", "kg": "Congóis", "kha": "kha", - "khq": "khq", + "khq": "Koyra Chiini", "ki": "Ciocúis", "kj": "Cuainiáimis", "kk": "Casaicis", - "kkj": "kkj", + "kkj": "Kako", "kl": "Kalaallisut", - "kln": "kln", + "kln": "Kalenjin", "km": "Ciméiris", "kmb": "kmb", "kn": "Cannadais", @@ -220,7 +219,7 @@ "ky": "Cirgisis", "la": "Laidin", "lad": "Laidínis", - "lag": "lag", + "lag": "Langi", "lah": "Puinseáibis Iartharach", "lb": "Lucsambuirgis", "lez": "lez", @@ -228,33 +227,33 @@ "li": "Liombuirgis", "lij": "Liogúiris", "liv": "Liovóinis", - "lkt": "lkt", + "lkt": "Lakota", "lmo": "Lombairdis", "ln": "Liongáilis", "lo": "Laoisis", "loz": "loz", - "lrc": "lrc", + "lrc": "Luri Thuaidh", "lt": "Liotuáinis", "lu": "Lúba-Cataingis", "lua": "lua", "lun": "lun", - "luo": "luo", + "luo": "Lúóis", "lus": "lus", - "luy": "luy", + "luy": "Luyia", "lv": "Laitvis", "mad": "mad", "mag": "mag", "mai": "mai", "mak": "mak", - "mas": "mas", + "mas": "Másais", "mdf": "mdf", "men": "Meindis", - "mer": "mer", - "mfe": "mfe", + "mer": "Meru", + "mfe": "Morisyen", "mg": "Malagáisis", "mga": "Meán-Ghaeilge", - "mgh": "mgh", - "mgo": "mgo", + "mgh": "Makhuwa-Meetto", + "mgo": "Metaʼ", "mh": "Mairsillis", "mi": "Maorais", "mic": "mic", @@ -269,18 +268,18 @@ "mrj": "Mairis Iartharach", "ms": "Malaeis", "mt": "Máltais", - "mua": "mua", + "mua": "Mundang", "mul": "Ilteangacha", "mus": "mus", "mwl": "Mioraindéis", "mwr": "Marmhairis", "my": "Burmais", "myv": "myv", - "mzn": "mzn", + "mzn": "Mazanderani", "na": "Nárúis", "nan": "Sínis Min Nan", "nap": "Napóilis", - "naq": "naq", + "naq": "Nama", "nb": "Ioruais Bokmål", "nd": "Ndeibéilis an Tuaiscirt", "nds": "Gearmáinis Íochtarach", @@ -292,19 +291,19 @@ "niu": "Níobhais", "nl": "Ollainnis", "nl_BE": "Pléimeannais", - "nmg": "nmg", + "nmg": "Kwasio", "nn": "Nua-Ioruais", - "nnh": "nnh", + "nnh": "Ngiemboon", "no": "Ioruais", "nog": "nog", "non": "Sean-Lochlainnis", "nqo": "nqo", "nr": "Ndeibéilis an Deiscirt", "nso": "Sútúis an Tuaiscirt", - "nus": "nus", + "nus": "Nuer", "nv": "Navachóis", "ny": "Siséivis", - "nyn": "nyn", + "nyn": "Niancóilis", "oc": "Ocsatáinis", "oj": "Óisibis", "om": "Oraimis", @@ -353,7 +352,7 @@ "sd": "Sindis", "se": "Sáimis Thuaidh", "seh": "seh", - "ses": "ses", + "ses": "Koyraboro Senni", "sg": "Sangóis", "sga": "Sean-Ghaeilge", "sh": "Seirbea-Chróitis", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index dd4949846eea7..0769fdf22fd3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abchasais", @@ -61,7 +61,7 @@ "bho": "Bhojpuri", "bi": "Bislama", "bik": "Bikol", - "bin": "Bini", + "bin": "Edo", "bjn": "Banjar", "bkm": "Kom", "bla": "Siksika", @@ -86,6 +86,7 @@ "car": "Carib", "cay": "Cayuga", "cch": "Atsam", + "ccp": "Chakma", "ce": "Deideanais", "ceb": "Cebuano", "cgg": "Chiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gl.json b/src/Symfony/Component/Intl/Resources/data/languages/gl.json index c97d7bafe5707..77f22c0e2f8bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhazo", @@ -31,7 +31,7 @@ "ba": "baxkir", "ban": "balinés", "bas": "basaa", - "be": "bielorruso", + "be": "belaruso", "bem": "bemba", "bez": "bena", "bg": "búlgaro", @@ -58,7 +58,7 @@ "cho": "choctaw", "chr": "cherokee", "chy": "cheyenne", - "ckb": "kurdo soraní", + "ckb": "kurdo central", "co": "corso", "crs": "seselwa (crioulo das Seychelles)", "cs": "checo", @@ -171,7 +171,7 @@ "khq": "koyra chiini", "ki": "kikuyu", "kj": "kuanyama", - "kk": "casaco", + "kk": "kazako", "kkj": "kako", "kl": "groenlandés", "kln": "kalenjin", @@ -271,7 +271,7 @@ "nso": "sesotho do norte", "nus": "nuer", "nv": "navajo", - "ny": "nyanja", + "ny": "chewa", "nyn": "nyankole", "oc": "occitano", "om": "oromo", @@ -355,7 +355,7 @@ "th": "tailandés", "ti": "tigriña", "tig": "tigré", - "tk": "turcomán", + "tk": "turkmeno", "tl": "tagalo", "tlh": "klingon", "tn": "tswana", @@ -378,7 +378,7 @@ "umb": "umbundu", "und": "lingua descoñecida", "ur": "urdú", - "uz": "uzbeco", + "uz": "uzbeko", "vai": "vai", "ve": "venda", "vi": "vietnamita", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index 90514968b2e33..62c571662b305 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "અફાર", "ab": "અબખાજિયન", @@ -68,6 +68,7 @@ "cad": "કડ્ડો", "car": "કરિબ", "cch": "અત્સમ", + "ccp": "ચકમા", "ce": "ચેચન", "ceb": "સિબુઆનો", "cgg": "ચિગા", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gv.json b/src/Symfony/Component/Intl/Resources/data/languages/gv.json index 8cbd7f3153c7a..204b4ae075f4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 44ebb7da8481d..8cd89ff9e0d15 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha.json @@ -1,62 +1,234 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { + "af": "Afirkanci", + "agq": "Aghem", "ak": "Akan", "am": "Amharik", "ar": "Larabci", + "ar_001": "Larabci Asali Na Zamani", + "as": "Asamisanci", + "asa": "Asu", + "ast": "Asturian", + "az": "Azerbaijanci", + "bas": "Basaa", "be": "Belarusanci", + "bem": "Bemba", + "bez": "Bena", "bg": "Bulgaranci", + "bm": "Bambara", "bn": "Bengali", + "bo": "Tibetan", + "br": "Buretananci", + "brx": "Bodo", + "bs": "Bosniyanci", + "ca": "Kataloniyanci", + "ccp": "Chakma", + "ce": "Chechen", + "ceb": "Cebuano", + "cgg": "Chiga", + "chr": "Cherokee", + "ckb": "Kurdish na Tsaka", + "co": "Corsican", "cs": "Harshen Cak", + "cu": "Church Slavic", + "cy": "Kabilar Welsh", + "da": "Danish", + "dav": "Taita", "de": "Jamusanci", "de_AT": "Jamusanci Ostiriya", "de_CH": "Jamusanci Suwizalan", + "dje": "Zarma", + "dsb": "Lower Sorbian", + "dua": "Duala", + "dyo": "Jola-Fonyi", + "dz": "Dzongkha", + "ebu": "Embu", + "ee": "Ewe", "el": "Girkanci", "en": "Turanci", "en_AU": "Turanci Ostareliya", "en_CA": "Turanci Kanada", "en_GB": "Turanci Biritaniya", "en_US": "Turanci Amirka", + "eo": "Dʼan\/ʼYar Kabilar Andalus", "es": "Sifaniyanci", "es_419": "Sifaniyancin Latin Amirka", "es_ES": "Sifaniyanci Turai", "es_MX": "Sifaniyanci Mesiko", + "et": "Istoniyanci", + "eu": "Basque", + "ewo": "Ewondo", "fa": "Parisanci", + "ff": "Fulah", + "fi": "Yaren mutanen Finland", + "fil": "Dan Filifin", + "fo": "Faroese", "fr": "Faransanci", "fr_CA": "Farasanci Kanada", "fr_CH": "Farasanci Suwizalan", + "fur": "Friulian", + "fy": "Kʼabilan Firsi", + "ga": "Dan Ailan", + "gd": "Kʼabilan Scots Gaelic", + "gl": "Bagalike", + "gsw": "Jamusanci Swiss", + "gu": "Gujarati", + "guz": "Gusii", + "gv": "Manx", "ha": "Hausa", + "haw": "Hawaiian", + "he": "Ibrananci", "hi": "Harshen Hindi", + "hmn": "Hmong", + "hr": "Kuroshiyan", + "hsb": "Sorbianci ta Sama", + "ht": "Haitian Creole", "hu": "Harshen Hungari", + "hy": "Armeniyanci", + "ia": "Yare Tsakanin Kasashe", "id": "Harshen Indunusiya", "ig": "Inyamuranci", + "ii": "Sichuan Yi", + "is": "Yaren mutanen Iceland", "it": "Italiyanci", "ja": "Japananci", + "jgo": "Ngomba", + "jmc": "Machame", "jv": "Jabananci", + "ka": "Jojiyanci", + "kab": "Kabyle", + "kam": "Kamba", + "kde": "Makonde", + "kea": "Kabuverdianu", + "khq": "Koyra Chiini", + "ki": "Kikuyu", + "kk": "Kazakh", + "kkj": "Kako", + "kl": "Kalaallisut", + "kln": "Kalenjin", "km": "Harshen Kimar", + "kn": "Kannada", "ko": "Harshen Koreya", + "kok": "Konkani", + "ks": "Kashmiri", + "ksb": "Shambala", + "ksf": "Bafia", + "ksh": "Colognian", + "ku": "Kurdanci", + "kw": "Cornish", + "ky": "Kirgizanci", + "la": "Dan Kabilar Latin", + "lag": "Langi", + "lb": "Luxembourgish", + "lg": "Ganda", + "lkt": "Lakota", + "ln": "Lingala", + "lo": "Laothian", + "lrc": "Northern Luri", + "lt": "Lituweniyanci", + "lu": "Luba-Katanga", + "luo": "Luo", + "luy": "Luyia", + "lv": "Latbiyanci", + "mas": "Harshen Masai", + "mer": "Meru", + "mfe": "Morisyen", + "mg": "Malagasy", + "mgh": "Makhuwa-Meetto", + "mgo": "Metaʼ", + "mi": "Maori", + "mk": "Dan Masedoniya", + "ml": "Kabilar Maleyalam", + "mn": "Mongolian", + "mr": "Kʼabilan Marathi", "ms": "Harshen Malai", + "mt": "Harshen Maltis", + "mua": "Mundang", + "mul": "Harsuna masu yawa", "my": "Burmanci", + "mzn": "Mazanderani", + "naq": "Nama", + "nb": "Norwegian Bokmål", + "nd": "North Ndebele", + "nds": "Low German", "ne": "Nepali", "nl": "Holanci", + "nmg": "Kwasio", + "nn": "Norwegian Nynorsk", + "nnh": "Ngiemboon", + "nus": "Nuer", + "ny": "Nyanja", + "nyn": "Nyankole", + "om": "Oromo", + "or": "Oriyanci", + "os": "Ossetic", "pa": "Punjabi", "pl": "Harshen Polan", + "prg": "Ferusawa", + "ps": "Pashtanci", "pt": "Harshen Fotugis", - "pt_BR": "Fotugis Kasashen Birazil", "pt_PT": "Fotugis kasashen Turai", + "qu": "Quechua", + "rm": "Romansh", + "rn": "Rundi", "ro": "Romaniyanci", + "rof": "Rombo", "ru": "Rashanci", "rw": "Kiniyaruwanda", - "so": "Somali", + "sa": "Sanskrit", + "sah": "Sakha", + "saq": "Samburu", + "sbp": "Sangu", + "sd": "Sindiyanci", + "se": "Northern Sami", + "seh": "Sena", + "ses": "Koyraboro Senni", + "sg": "Sango", + "shi": "Tachelhit", + "si": "Sinhalanci", + "sk": "Basulke", + "sl": "Basulabe", + "sm": "Samoan", + "smn": "Inari Sami", + "sn": "Shona", + "so": "Somalianci", + "sq": "Albanian", + "sr": "Sabiyan", + "st": "Sesotanci", + "su": "Sudananci", "sv": "Harshen Suwedan", + "sw": "Harshen Suwahili", "ta": "Tamil", + "te": "Dʼan\/ʼYar Kabilar Telug", + "teo": "Teso", + "tg": "Tajik", "th": "Thai", + "ti": "Tigriyanci", + "tk": "Tukmenistanci", + "to": "Tongan", "tr": "Harshen Turkiyya", + "tt": "Tatar", + "twq": "Tasawaq", + "tzm": "Tamazight na Atlas Tsaka", + "ug": "Ugiranci", "uk": "Harshen Yukuren", "und": "Harshen da ba a sani ba", - "ur": "Harshen Urdu", + "ur": "Urdawa", + "uz": "Uzbek", + "vai": "Vai", "vi": "Harshen Biyetinam", + "vo": "Volapük", + "vun": "Vunjo", + "wae": "Walser", + "wo": "Wolof", + "xh": "Bazosa", + "xog": "Soga", + "yav": "Yangben", + "yi": "Yiddish", "yo": "Yarbanci", + "yue": "Cantonese", + "zgh": "Standard Moroccan Tamazight", "zh": "Harshen Sinanci", "zh_Hans": "Sauƙaƙaƙƙen Sinanci", "zh_Hant": "Sinanci na gargajiya", 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 a4a782a0575eb..9567cd1ae8a9b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha_NE.json @@ -1,65 +1,22 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { - "ak": "Akan", - "am": "Amharik", - "ar": "Larabci", - "be": "Belarusanci", - "bg": "Bulgaranci", - "bn": "Bengali", - "cs": "Harshen Cak", - "de": "Jamusanci", + "ar_001": "Larabci Asali Na Zamani", "de_AT": "Jamusanci Ostiriya", "de_CH": "Jamusanci Suwizalan", - "el": "Girkanci", - "en": "Turanci", "en_AU": "Turanci Ostareliya", "en_CA": "Turanci Kanada", "en_GB": "Turanci Biritaniya", "en_US": "Turanci Amirka", - "es": "Sifaniyanci", + "eo": "Dʼan\/Ƴar Kabilar Andalus", "es_419": "Sifaniyancin Latin Amirka", "es_ES": "Sifaniyanci Turai", "es_MX": "Sifaniyanci Mesiko", - "fa": "Parisanci", - "fr": "Faransanci", "fr_CA": "Farasanci Kanada", "fr_CH": "Farasanci Suwizalan", - "ha": "Hausa", - "hi": "Harshen Hindi", - "hu": "Harshen Hungari", - "id": "Harshen Indunusiya", - "ig": "Inyamuranci", - "it": "Italiyanci", - "ja": "Japananci", - "jv": "Jabananci", - "km": "Harshen Kimar", - "ko": "Harshen Koreya", - "ms": "Harshen Malai", - "my": "Burmanci", - "ne": "Nepali", - "nl": "Holanci", - "pa": "Punjabi", - "pl": "Harshen Polan", - "pt": "Harshen Fotugis", - "pt_BR": "Fotugis Kasashen Birazil", "pt_PT": "Fotugis kasashen Turai", - "ro": "Romaniyanci", - "ru": "Rashanci", - "rw": "Kiniyaruwanda", - "so": "Somali", - "sv": "Harshen Suwedan", - "ta": "Tamil", - "th": "Thai", - "tr": "Harshen Turkiyya", - "uk": "Harshen Yukuren", - "und": "Harshen da ba a sani ba", - "ur": "Harshen Urdu", - "vi": "Harshen Biyetinam", - "yo": "Yarbanci", - "zh": "Harshen Sinanci", + "te": "Dʼan\/Ƴar Kabilar Telug", "zh_Hans": "Sauƙaƙaƙƙen Sinanci", - "zh_Hant": "Sinanci na gargajiya", - "zu": "Harshen Zulu" + "zh_Hant": "Sinanci na gargajiya" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 2593a372ea58d..626a045e073dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/he.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -167,7 +167,7 @@ "got": "גותית", "grb": "גרבו", "grc": "יוונית עתיקה", - "gsw": "גרמנית שוויצרית", + "gsw": "גרמנית (בשוויץ)", "gu": "גוג׳ארטי", "guz": "גוסי", "gv": "מאנית", @@ -183,7 +183,7 @@ "hmn": "המונג", "ho": "הירי מוטו", "hr": "קרואטית", - "hsb": "סורבית גבוהה", + "hsb": "סורבית עילית", "hsn": "סינית שיאנג", "ht": "קריאולית (האיטי)", "hu": "הונגרית", @@ -461,7 +461,7 @@ "tk": "טורקמנית", "tkl": "טוקלאו", "tl": "טאגאלוג", - "tlh": "קלינגון", + "tlh": "קלינגונית", "tli": "טלינגיט", "tmh": "טמאשק", "tn": "סוואנה", @@ -490,7 +490,7 @@ "uz": "אוזבקית", "vai": "וואי", "ve": "וונדה", - "vi": "ויאטנמית", + "vi": "וייטנאמית", "vo": "‏וולאפיק", "vot": "ווטיק", "vun": "וונג׳ו", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 6772b17f9808e..3dce24462e9be 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", @@ -63,6 +63,7 @@ "cad": "कैड्डो", "car": "कैरिब", "cch": "अत्सम", + "ccp": "चकमा", "ce": "चेचन", "ceb": "सिबुआनो", "cgg": "शिगा", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index 621294db3ad50..5afd5c9ba6ab7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index 4442185a28635..bc3f811ce92e4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abház", @@ -500,7 +500,7 @@ "uz": "üzbég", "vai": "vai", "ve": "venda", - "vi": "vietnami", + "vi": "vietnámi", "vo": "volapük", "vot": "votják", "vun": "vunjo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index a810ed496df9b..18275dede47a3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "աֆարերեն", "ab": "աբխազերեն", @@ -71,7 +71,7 @@ "crh": "ղրիմյան թուրքերեն", "crs": "սեյշելյան խառնակերտ ֆրանսերեն", "cs": "չեխերեն", - "cu": "եկեղեցական սլավոներեն", + "cu": "սլավոներեն, եկեղեցական", "cv": "չուվաշերեն", "cy": "ուելսերեն", "da": "դանիերեն", @@ -270,6 +270,7 @@ "naq": "նամա", "nb": "գրքային նորվեգերեն", "nd": "հյուսիսային նդեբելե", + "nds": "ստորին գերմաներեն", "nds_NL": "ստորին սաքսոներեն", "ne": "նեպալերեն", "new": "նեվարերեն", @@ -467,7 +468,7 @@ "zgh": "ընդհանուր մարոկյան թամազիղտ", "zh": "չինարեն", "zh_Hans": "պարզեցված չինարեն", - "zh_Hant": "ավանդական չինարեն", + "zh_Hant": "չինարեն, ավանդական", "zu": "զուլուերեն", "zun": "զունիերեն", "zxx": "առանց լեզվային բովանդակության", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ia.json b/src/Symfony/Component/Intl/Resources/data/languages/ia.json index 26868454bd683..d5e4140d08b5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ia.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 d7fa79021927e..b0ae423c5a0c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/id.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ig.json b/src/Symfony/Component/Intl/Resources/data/languages/ig.json index e5ea4c886eab9..b7a36cea60be5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ig.json @@ -1,9 +1,10 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { "ak": "Akan", "am": "Amariikị", "ar": "Arabiikị", + "ar_001": "Ụdị Arabiikị nke oge a", "be": "Belaruusu", "bg": "Bọlụgarịa", "bn": "Bengali", @@ -15,7 +16,6 @@ "en": "Asụsụ Bekee", "en_AU": "Bekee ndị Australia", "en_CA": "Bekee ndị Canada", - "en_GB": "Bekee ndị Britain", "en_US": "Bekee ndị America", "es": "Asụsụ Spanish", "es_419": "Asụsụ Spanish ndị Latin America", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ii.json b/src/Symfony/Component/Intl/Resources/data/languages/ii.json index a60a51a6fd5a8..24c0997ea2cb5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 d7fa79021927e..b0ae423c5a0c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/in.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index 91f17c650f61a..d95cf29b7f8c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/is.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afár", "ab": "abkasíska", @@ -65,6 +65,7 @@ "car": "karíbamál", "cay": "kajúga", "cch": "atsam", + "ccp": "tsjakma", "ce": "tsjetsjenska", "ceb": "kebúanó", "cgg": "kíga", @@ -345,7 +346,7 @@ "nus": "núer", "nv": "navahó", "nwc": "klassísk nevaríska", - "ny": "njanja; sísjeva; sjeva", + "ny": "nýanja", "nym": "njamvesí", "nyn": "nyankole", "nyo": "njóró", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index 65ad1e0303040..a9b4300c041f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/it.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abcaso", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index 2593a372ea58d..626a045e073dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -167,7 +167,7 @@ "got": "גותית", "grb": "גרבו", "grc": "יוונית עתיקה", - "gsw": "גרמנית שוויצרית", + "gsw": "גרמנית (בשוויץ)", "gu": "גוג׳ארטי", "guz": "גוסי", "gv": "מאנית", @@ -183,7 +183,7 @@ "hmn": "המונג", "ho": "הירי מוטו", "hr": "קרואטית", - "hsb": "סורבית גבוהה", + "hsb": "סורבית עילית", "hsn": "סינית שיאנג", "ht": "קריאולית (האיטי)", "hu": "הונגרית", @@ -461,7 +461,7 @@ "tk": "טורקמנית", "tkl": "טוקלאו", "tl": "טאגאלוג", - "tlh": "קלינגון", + "tlh": "קלינגונית", "tli": "טלינגיט", "tmh": "טמאשק", "tn": "סוואנה", @@ -490,7 +490,7 @@ "uz": "אוזבקית", "vai": "וואי", "ve": "וונדה", - "vi": "ויאטנמית", + "vi": "וייטנאמית", "vo": "‏וולאפיק", "vot": "ווטיק", "vun": "וונג׳ו", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index 0644cc8d04abd..967b62a8d282d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "アファル語", "ab": "アブハズ語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/jv.json b/src/Symfony/Component/Intl/Resources/data/languages/jv.json index da6d7abc13904..a4d37315dd6b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/jv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "af": "af", "agq": "Aghem", @@ -24,6 +24,7 @@ "brx": "Bodo", "bs": "bs", "ca": "Katala", + "ccp": "Chakma", "ce": "Chechen", "ceb": "Cebuano", "cgg": "Chiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index d08b4e3d2cbb0..4479ed4e34b19 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "აფარი", "ab": "აფხაზური", @@ -59,6 +59,7 @@ "byn": "ბილინი", "ca": "კატალანური", "cay": "კაიუგა", + "ccp": "ჩაკმა", "ce": "ჩეჩნური", "ceb": "სებუანო", "cgg": "ჩიგა", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ki.json b/src/Symfony/Component/Intl/Resources/data/languages/ki.json index 51cee452bae8c..7b20e374c58b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 012be70c89414..4a0a52bdd5591 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афар тілі", "ab": "абхаз тілі", @@ -302,7 +302,7 @@ "rwk": "руа тілі", "sa": "санскрит тілі", "sad": "сандаве тілі", - "sah": "якут тілі", + "sah": "саха тілі", "saq": "самбуру тілі", "sat": "сантали тілі", "sba": "нгамбай тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kl.json b/src/Symfony/Component/Intl/Resources/data/languages/kl.json index 535229dfe4608..b2411f683650a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 95762d5496a9b..212d25773dd81 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/km.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "អាហ្វារ", "ab": "អាប់ខាហ៊្សាន", @@ -48,6 +48,7 @@ "bug": "ប៊ុកហ្គី", "byn": "ប្ល៊ីន", "ca": "កាតាឡាន", + "ccp": "ចាក់ម៉ា", "ce": "ឈីឆេន", "ceb": "ស៊ីប៊ូអាណូ", "cgg": "ឈីហ្គា", @@ -69,6 +70,7 @@ "dar": "ដាចវ៉ា", "dav": "តៃតា", "de": "អាល្លឺម៉ង់", + "de_CH": "អាល្លឺម៉ង់ (ស្វ៊ីស)", "dgr": "ដូគ្រីប", "dje": "ហ្សាម៉ា", "dsb": "សូប៊ីក្រោម", @@ -97,6 +99,7 @@ "fo": "ហ្វារូស", "fon": "ហ្វ៊ុន", "fr": "បារាំង", + "fr_CH": "បារាំង (ស្វ៊ីស)", "fur": "ហ៊្វ្រូលាន", "fy": "ហ្វ្រីស៊ានខាងលិច", "ga": "អៀរឡង់", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kn.json b/src/Symfony/Component/Intl/Resources/data/languages/kn.json index cd522a9f98d98..7e7da1310926a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "ಅಫಾರ್", "ab": "ಅಬ್ಖಾಜಿಯನ್", @@ -62,6 +62,7 @@ "cad": "ಕ್ಯಾಡ್ಡೋ", "car": "ಕಾರಿಬ್", "cch": "ಅಟ್ಸಮ್", + "ccp": "ಚಕ್ಮಾ", "ce": "ಚೆಚನ್", "ceb": "ಸೆಬುವಾನೊ", "cgg": "ಚಿಗಾ", @@ -99,7 +100,7 @@ "din": "ಡಿಂಕಾ", "dje": "ಜರ್ಮಾ", "doi": "ಡೋಗ್ರಿ", - "dsb": "ಲೋವರ್ ಸೋರ್ಬಿಯನ್", + "dsb": "ಲೋವರ್ ಸರ್ಬಿಯನ್", "dua": "ಡುವಾಲಾ", "dum": "ಮಧ್ಯ ಡಚ್", "dv": "ದಿವೆಹಿ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ko.json b/src/Symfony/Component/Intl/Resources/data/languages/ko.json index 687268652fb13..46501b4e01c5c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "아파르어", "ab": "압카즈어", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ks.json b/src/Symfony/Component/Intl/Resources/data/languages/ks.json index 638983cecfb3c..51da34468db40 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 1926b9e63385c..217e01a1f5257 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ku.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "aa": "afarî", "ab": "abxazî", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kw.json b/src/Symfony/Component/Intl/Resources/data/languages/kw.json index e7c9191789451..9cfa7696c1ed5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.56", + "Version": "36", "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 40a51af99a316..6870a17a33d6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарча", "ab": "абхазча", @@ -47,6 +47,7 @@ "bug": "бугийче", "byn": "блинче", "ca": "каталонча", + "ccp": "Чакма", "ce": "чеченче", "ceb": "себуанча", "cgg": "чигача", @@ -278,6 +279,7 @@ "prg": "пруссча", "ps": "пуштуча", "pt": "португалча", + "pt_BR": "Бразилиялык Португал тили", "pt_PT": "португалча (Европа)", "qu": "кечуача", "quc": "кичече", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index afdfda755ee9c..30f761e0edc64 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abchasesch", @@ -378,6 +378,7 @@ "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 6afb0d024ad15..c76546d4160df 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 5cadd5cb7dca1..db0ff58ac1d82 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ebae76637251b..70b52bd84da94 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "ອະຟາ", "ab": "ແອບຄາຊຽນ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lt.json b/src/Symfony/Component/Intl/Resources/data/languages/lt.json index 2615a19b2ca41..04e1666205269 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 7b77c3aee60a2..83a3e438036eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 b41dccad3981d..2d16603a3271c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { "aa": "afāru", "ab": "abhāzu", @@ -293,7 +293,7 @@ "mg": "malagasu", "mga": "vidusīru", "mgh": "makua", - "mgo": "mgo", + "mgo": "metu", "mh": "māršaliešu", "mi": "maoru", "mic": "mikmaku", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/meta.json b/src/Symfony/Component/Intl/Resources/data/languages/meta.json index 02ecee4bd5815..7bb02de7048dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Languages": [ "aa", "ab", @@ -103,6 +103,7 @@ "chp", "chr", "chy", + "cic", "ckb", "co", "cop", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mg.json b/src/Symfony/Component/Intl/Resources/data/languages/mg.json index d57bc800b8400..9180975a14f03 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 4a1f0ad77ef3f..c31fa9fdbac27 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 6dc90b786d6b1..a005ff57732aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.27", + "Version": "36", "Names": { "aa": "афарски", "ab": "апхаски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ml.json b/src/Symfony/Component/Intl/Resources/data/languages/ml.json index 1b32a8190124c..9ba274f0d6bc3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "അഫാർ", "ab": "അബ്‌ഖാസിയൻ", @@ -70,6 +70,7 @@ "car": "കാരിബ്", "cay": "കയൂഗ", "cch": "അറ്റ്സാം", + "ccp": "ചക്‌മ", "ce": "ചെചൻ", "ceb": "സെബുവാനോ", "cgg": "ചിഗ", @@ -113,7 +114,7 @@ "dv": "ദിവെഹി", "dyo": "യോല-ഫോന്യി", "dyu": "ദ്വൈല", - "dz": "സോങ്ക", + "dz": "ദ്‌സോങ്ക", "dzg": "ഡാസാഗ", "ebu": "എംബു", "ee": "യൂവ്", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mn.json b/src/Symfony/Component/Intl/Resources/data/languages/mn.json index 3c88c1f457f04..bd3cd0ef4e6ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "афар", "ab": "абхаз", @@ -46,6 +46,7 @@ "bug": "буги", "byn": "блин", "ca": "каталан", + "ccp": "чакма", "ce": "чечень", "ceb": "себуано", "cgg": "чига", @@ -247,6 +248,7 @@ "naq": "нама", "nb": "норвегийн букмол", "nd": "хойд ндебеле", + "nds": "доод герман", "nds_NL": "бага саксон", "ne": "балба", "new": "невари", @@ -363,7 +365,7 @@ "twq": "тасавак", "ty": "таити", "tyv": "тува", - "tzm": "Төв Атласын тамазайт", + "tzm": "Төв Атласын тамазигхт", "udm": "удмурт", "ug": "уйгур", "uk": "украин", @@ -389,7 +391,7 @@ "yi": "иддиш", "yo": "ёруба", "yue": "кантон", - "zgh": "Мороккогийн стандарт тамазайт", + "zgh": "стандарт тамазайт (Морокко)", "zh": "хятад", "zh_Hans": "хялбаршуулсан хятад", "zh_Hant": "уламжлалт хятад", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index 2fb89630cb750..a262ef51c04c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abhază", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index b0863e22aada7..7cef4e3d548ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "अफार", "ab": "अबखेजियन", @@ -62,6 +62,7 @@ "cad": "कॅड्डो", "car": "कॅरिब", "cch": "अत्सम", + "ccp": "चाकमा", "ce": "चेचेन", "ceb": "सिबुआनो", "cgg": "किगा", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ms.json b/src/Symfony/Component/Intl/Resources/data/languages/ms.json index 433a98e7ced79..638be569ae0fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.2", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkhazia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mt.json b/src/Symfony/Component/Intl/Resources/data/languages/mt.json index 55f1348250129..ac99857573390 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 e40eff0c2a39b..acc05d8162f4e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/my.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "အာဖာ", "ab": "အဘ်ခါဇီရာ", @@ -17,6 +17,7 @@ "ang": "အင်ဂလို ဆက္ကစွန်", "anp": "အန်ဂီကာ", "ar": "အာရဗီ", + "ar_001": "ခေတ်သစ် ရှေ့ဆောင် အာရဗီ", "arn": "မာပုချီ", "arp": "အာရာပါဟို", "as": "အာသံ", @@ -47,6 +48,7 @@ "bug": "ဘူဂစ်စ်", "byn": "ဘလင်", "ca": "ကတ်တလန်", + "ccp": "ချတ်ခ်မာ", "ce": "ချက်ချန်း", "ceb": "စီဗူအာနို", "cgg": "ချီဂါ", @@ -96,6 +98,7 @@ "eo": "အက်စ်ပရန်တို", "es": "စပိန်", "es_ES": "စပိန် (ဥရောပ)", + "es_MX": "စပိန် (မက္ကဆီကို)", "et": "အက်စ်တိုးနီးယား", "eu": "ဘာစ်ခ်", "ewo": "အီဝန်ဒို", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index b01690a158277..fdc1dcf990e75 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -88,6 +88,7 @@ "car": "karibisk", "cay": "cayuga", "cch": "atsam", + "ccp": "chakma", "ce": "tsjetsjensk", "ceb": "cebuansk", "cgg": "kiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nd.json b/src/Symfony/Component/Intl/Resources/data/languages/nd.json index 811d68944c186..d31d758e7a663 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 c70fc17559a98..057043ac543b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "अफार", "ab": "अब्खाजियाली", @@ -86,6 +86,7 @@ "car": "क्यारिब", "cay": "कायुगा", "cch": "अट्साम", + "ccp": "चाक्मा", "ce": "चेचेन", "ceb": "सेबुआनो", "cgg": "चिगा", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 9bbfc513fae74..aa4e6090a3ace 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abchazisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nn.json b/src/Symfony/Component/Intl/Resources/data/languages/nn.json index e70ec80ab61cb..4e4cc2558181b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 b01690a158277..fdc1dcf990e75 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/no.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -88,6 +88,7 @@ "car": "karibisk", "cay": "cayuga", "cch": "atsam", + "ccp": "chakma", "ce": "tsjetsjensk", "ceb": "cebuansk", "cgg": "kiga", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index 69ca78a7a5acd..466a1391f57cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/om.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 8ad253cd47b53..0cdf1a113885f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/or.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "ଅଫାର୍", "ab": "ଆବ୍ଖାଜିଆନ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/os.json b/src/Symfony/Component/Intl/Resources/data/languages/os.json index 5f8f51712d750..501edc11955e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/os.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 d76de2a782990..47e391365fe18 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.20", + "Version": "36", "Names": { "aa": "ਅਫ਼ਾਰ", "ab": "ਅਬਖਾਜ਼ੀਅਨ", @@ -49,6 +49,7 @@ "bug": "ਬਗਨੀਜ਼", "byn": "ਬਲਿਨ", "ca": "ਕੈਟਾਲਾਨ", + "ccp": "ਚਕਮਾ", "ce": "ਚੇਚਨ", "ceb": "ਸੀਬੂਆਨੋ", "cgg": "ਚੀਗਾ", @@ -226,7 +227,7 @@ "men": "ਮੇਂਡੇ", "mer": "ਮੇਰੂ", "mfe": "ਮੋਰੀਸਿਅਨ", - "mg": "ਮੇਲੇਗਸੀ", + "mg": "ਮਾਲਾਗੈਸੀ", "mgh": "ਮਖੋਵਾ-ਮਿੱਟੋ", "mgo": "ਮੇਟਾ", "mh": "ਮਾਰਸ਼ਲੀਜ਼", 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 563ef06e23103..638161bb0f436 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 81400501ddd01..13f7ab872df64 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abchaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps.json b/src/Symfony/Component/Intl/Resources/data/languages/ps.json index 9077c1989eb8e..18cadf20e7f7d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "افري", "ab": "ابخازي", @@ -31,14 +31,14 @@ "ban": "بالنی", "bas": "باسا", "be": "بېلاروسي", - "bem": "بیبا", + "bem": "بيمبا", "bez": "بينا", "bg": "بلغاري", "bho": "بهوجپوري", "bi": "بسلاما", "bin": "بینی", "bla": "سکسيکا", - "bm": "بامره", + "bm": "بمبارا", "bn": "بنگالي", "bo": "تبتي", "br": "برېتون", @@ -48,7 +48,7 @@ "byn": "بلین", "ca": "کټلاني", "ccp": "چکما", - "ce": "چيچيني", + "ce": "چيچني", "ceb": "سیبوانوي", "cgg": "چيگايي", "ch": "چمورو", @@ -64,7 +64,7 @@ "cu": "د کليسا سلاوي", "cv": "چوواشي", "cy": "ويلشي", - "da": "دانمارکي", + "da": "ډنمارکي", "dak": "داکوتا", "dar": "درگوا", "dav": "ټایټا", @@ -73,32 +73,31 @@ "de_CH": "سوئس لوی جرمن", "dgr": "داگرب", "dje": "زرما", - "dsb": "لوړې سربي", + "dsb": "کښته سربيايي", "dua": "دوالا", "dv": "ديویهی", "dyo": "جولا فوني", "dz": "ژونگکه", "dzg": "ډزاګا", - "ebu": "ایمو", + "ebu": "ايمبو", "ee": "ايو", "efi": "افک", "eka": "اکجک", "el": "یوناني", - "en": "انګریزي", - "en_AU": "انګليسي (AU)", + "en": "انګليسي", + "en_AU": "آسټرالياوي انګليسي", "en_CA": "کاناډايي انګلیسي", "en_GB": "بريتانوی انګلیسي", - "en_US": "انګليسي (US)", "eo": "اسپرانتو", "es": "هسپانوي", "es_419": "لاتيني امريکايي هسپانوي", "es_ES": "اروپايي هسپانوي", - "es_MX": "ميکسيکو هسپانوي", + "es_MX": "ميکسيکي هسپانوي", "et": "حبشي", "eu": "باسکي", "ewo": "اوونڊو", "fa": "فارسي", - "ff": "فلاحہ", + "ff": "فولاح", "fi": "فینلنډي", "fil": "فلیپیني", "fj": "فجیان", @@ -108,7 +107,7 @@ "fr_CA": "کاناډايي فرانسوي", "fr_CH": "سويسي فرانسوي", "fur": "فرائیلیین", - "fy": "فريزي", + "fy": "لوېديځ فريشي", "ga": "ائيرلېنډي", "gaa": "gaa", "gd": "سکاټلېنډي ګېلک", @@ -124,16 +123,16 @@ "gwi": "ګیچین", "ha": "هوسا", "haw": "هوایی", - "he": "عبري", + "he": "عبراني", "hi": "هندي", "hil": "ھلیګینون", "hmn": "همونګ", - "hr": "کروواسي", - "hsb": "پورته صربي", - "ht": "هيٽي کرولي", + "hr": "کروايشيايي", + "hsb": "پورته سربيايي", + "ht": "هيټي کريول", "hu": "هنگري", "hup": "ھوپا", - "hy": "ارمني", + "hy": "آرمينيايي", "hz": "هیرورو", "ia": "انټرلنګوا", "iba": "ابن", @@ -149,7 +148,7 @@ "iu": "انوکتیتوت", "ja": "جاپاني", "jbo": "لوجبان", - "jgo": "نګبا", + "jgo": "نګومبا", "jmc": "ماچمی", "jv": "جاوايي", "ka": "جورجيائي", @@ -159,7 +158,7 @@ "kam": "کامبا", "kbd": "کابیرین", "kcg": "تایپ", - "kde": "ماکډون", + "kde": "ميکونډي", "kea": "کابوورډیانو", "kfo": "کورو", "kha": "خاسې", @@ -172,23 +171,23 @@ "kln": "کلینجن", "km": "خمر", "kmb": "کیمبوندو", - "kn": "کنأډه", + "kn": "کناډا", "ko": "کوریایی", - "kok": "کنکني", + "kok": "کونکاني", "kpe": "کیلي", "kr": "کنوری", "krc": "کراچی بالکر", "krl": "کاریلین", "kru": "کورخ", "ks": "کشمیري", - "ksb": "شمبلا", + "ksb": "شمبالا", "ksf": "بفیا", - "ksh": "کولوگنيسي", + "ksh": "کولوګنيايي", "ku": "کردي", "kum": "کومک", "kv": "کومی", - "kw": "کرونيشي", - "ky": "کرګيز", + "kw": "کورنيشي", + "ky": "کرغيزي", "la": "لاتیني", "lad": "لاډینو", "lag": "لنګی", @@ -196,8 +195,8 @@ "lez": "لیګغیان", "lg": "ګانده", "li": "لمبرگیانی", - "lkt": "لکټو", - "ln": "لنگلا", + "lkt": "لکوټا", + "ln": "لنګالا", "lo": "لاو", "loz": "لوزی", "lrc": "شمالي لوری", @@ -235,7 +234,7 @@ "ms": "ملایا", "mt": "مالټايي", "mua": "مندانګ", - "mul": "څو ژبو", + "mul": "متعدد ژبې", "mus": "کريکي", "mwl": "مرانديز", "my": "برمایی", @@ -268,7 +267,7 @@ "oc": "اوکسيټاني", "om": "اورومو", "or": "اوڊيا", - "os": "اوسیٹک", + "os": "اوسيټک", "pa": "پنجابي", "pag": "پانګاسین", "pam": "پمپانگا", @@ -294,6 +293,7 @@ "ru": "روسي", "rup": "اروماني", "rw": "کینیارونډا", + "rwk": "روا", "sa": "سنسکریټ", "sad": "سنډاوی", "sah": "سخا", @@ -327,7 +327,7 @@ "srn": "سوران ټونګو", "ss": "سواتی", "ssy": "سهو", - "st": "سيسوتو", + "st": "سويلي سوتو", "su": "سوډاني", "suk": "سکوما", "sv": "سویډنی", @@ -335,7 +335,7 @@ "sw_CD": "کانګو سواهلی", "swb": "کومورياني", "syr": "سوریاني", - "ta": "تامیل", + "ta": "تامل", "te": "تېليګو", "tem": "تیمني", "teo": "تیسو", @@ -361,7 +361,7 @@ "tzm": "مرکزی اطلس تمازائيٹ", "udm": "ادمورت", "ug": "اويغوري", - "uk": "اوکرانايي", + "uk": "اوکرايني", "umb": "امبوندو", "und": "نامعلومه ژبه", "ur": "اردو", @@ -384,7 +384,7 @@ "yi": "يديش", "yo": "یوروبا", "yue": "کانټوني", - "zgh": "معياري مراکش تمازټیټ", + "zgh": "معياري مراکشي تمازيټ", "zh": "چیني", "zh_Hans": "ساده چيني", "zh_Hant": "دوديزه چيني", 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 44ef6ad52ed71..096023da9fda0 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 1319b72084960..f88ba6691a711 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afar", "ab": "abcázio", @@ -72,7 +72,7 @@ "car": "caribe", "cay": "cayuga", "cch": "atsam", - "ccp": "Chakma", + "ccp": "chakma", "ce": "checheno", "ceb": "cebuano", "cgg": "chiga", 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 c2f7c28f7ffde..1e96096a0e84d 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "af": "africanês", "alt": "altai do sul", @@ -12,6 +12,7 @@ "bbj": "ghomala", "bn": "bengalês", "bua": "buriat", + "ccp": "changma", "chk": "chuquês", "chn": "jargão chinook", "chr": "cherokee", @@ -54,7 +55,6 @@ "lg": "ganda", "lou": "crioulo de Louisiana", "lrc": "luri do norte", - "luo": "luo", "mak": "makassarês", "mk": "macedónio", "moh": "mohawk", @@ -64,6 +64,7 @@ "nds": "baixo-alemão", "nds_NL": "baixo-saxão", "nl": "neerlandês", + "nl_BE": "flamengo", "nn": "norueguês nynorsk", "non": "nórdico antigo", "oc": "occitano", @@ -79,6 +80,7 @@ "pt_BR": "português do Brasil", "pt_PT": "português europeu", "raj": "rajastanês", + "ro_MD": "moldávio", "root": "root", "se": "sami do norte", "sga": "irlandês antigo", @@ -94,12 +96,13 @@ "tt": "tatar", "tzm": "tamazight do Atlas Central", "uz": "usbeque", - "vai": "vai", "wo": "uólofe", "xh": "xosa", "xog": "soga", "yo": "ioruba", "zgh": "tamazight marroquino padrão", + "zh_Hans": "chinês simplificado", + "zh_Hant": "chinês tradicional", "zun": "zuni", "zza": "zaza" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index b4d5f83d19977..65bd1977db60b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/qu.json @@ -1,49 +1,76 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "af": "Afrikaans Simi", + "agq": "Aghem Simi", + "ak": "Akan Simi", "am": "Amarico Simi", "ar": "Arabe Simi", "arn": "Mapuche Simi", "as": "Asames Simi", + "asa": "Asu Simi", + "ast": "Asturiano Simi", "ay": "Aymara Simi", "az": "Azerbaiyano Simi", "ba": "Baskir Simi", + "bas": "Basaa Simi", "be": "Bielorruso Simi", + "bem": "Bemba Simi", + "bez": "Bena Simi", "bg": "Bulgaro Simi", + "bm": "Bambara Simi", "bn": "Bangla Simi", "bo": "Tibetano Simi", "br": "Breton Simi", + "brx": "Bodo Simi", "bs": "Bosnio Simi", "ca": "Catalan Simi", + "ccp": "Chakma Simi", + "ce": "Checheno Simi", + "ceb": "Cebuano Simi", + "cgg": "Kiga Simi", "chr": "Cheroqui Simi", "ckb": "Chawpi Kurdo Simi", "co": "Corso Simi", "cs": "Checo Simi", + "cu": "Eslavo Eclesiástico Simi", "cy": "Gales Simi", "da": "Danes Simi", + "dav": "Taita Simi", "de": "Aleman Simi", + "dje": "Zarma Simi", "dsb": "Bajo Sorbio Simi", + "dua": "Duala Simi", "dv": "Divehi Simi", + "dyo": "Jola-Fonyi Simi", + "dz": "Butanés Simi", + "ebu": "Embu Simi", + "ee": "Ewé Simi", "el": "Griego Simi", "en": "Ingles Simi", + "eo": "Esperanto Simi", "es": "Español Simi", "es_419": "Español Simi (Latino América)", "et": "Estonio Simi", "eu": "Euskera Simi", + "ewo": "Ewondo Simi", "fa": "Persa Simi", "ff": "Fulah Simi", "fi": "Fines Simi", "fil": "Filipino Simi", "fo": "Feroes Simi", "fr": "Frances Simi", + "fur": "Friulano Simi", "fy": "Frison Simi", "ga": "Irlandes Simi", "gd": "Gaelico Escoces Simi", "gl": "Gallego Simi", "gsw": "Alsaciano Simi", "gu": "Gujarati Simi", + "guz": "Guzí Simi", + "gv": "Manés Simi", "ha": "Hausa Simi", + "haw": "Hawaiano Simi", "he": "Hebreo Simi", "hi": "Hindi Simi", "hmn": "Hmong Daw Simi", @@ -52,6 +79,7 @@ "ht": "Haitiano Criollo Simi", "hu": "Hungaro Simi", "hy": "Armenio Simi", + "ia": "Interlingua Simi", "id": "Indonesio Simi", "ig": "Igbo Simi", "ii": "Yi Simi", @@ -59,18 +87,50 @@ "it": "Italiano Simi", "iu": "Inuktitut Simi", "ja": "Japones Simi", + "jgo": "Ngomba Simi", + "jmc": "Machame Simi", + "jv": "Javanés Simi", "ka": "Georgiano Simi", + "kab": "Cabilio Simi", + "kam": "Kamba Simi", + "kde": "Makonde Simi", + "kea": "Caboverdiano Simi", + "khq": "Koyra Chiini Simi", + "ki": "Kikuyu Simi", "kk": "Kazajo Simi", + "kkj": "Kako Simi", "kl": "Groenlandes Simi", + "kln": "Kalenjin Simi", "km": "Khmer Simi", "kn": "Kannada Simi", "ko": "Coreano Simi", "kok": "Konkani Simi", + "ks": "Cachemir Simi", + "ksb": "Shambala Simi", + "ksf": "Bafia Simi", + "ksh": "Kölsch Simi", + "ku": "Kurdo Simi", + "kw": "Córnico Simi", "ky": "Kirghiz Simi", + "la": "Latín Simi", + "lag": "Langi Simi", "lb": "Luxemburgues Simi", + "lg": "Luganda Simi", + "lkt": "Lakota Simi", + "ln": "Lingala Simi", "lo": "Lao Simi", + "lrc": "Luri septentrional Simi", "lt": "Lituano Simi", + "lu": "Luba-Katanga Simi", + "luo": "Luo Simi", + "luy": "Luyia Simi", "lv": "Leton Simi", + "mas": "Masai Simi", + "mer": "Meru Simi", + "mfe": "Mauriciano Simi", + "mg": "Malgache Simi", + "mgh": "Makhuwa-Meetto Simi", + "mgo": "Metaʼ Simi", "mi": "Maori Simi", "mk": "Macedonio Simi", "ml": "Malayalam Simi", @@ -79,58 +139,107 @@ "mr": "Marathi Simi", "ms": "Malayo Simi", "mt": "Maltes Simi", + "mua": "Mundang Simi", + "mul": "Idiomas M´últiples Simi", + "my": "Birmano Simi", + "mzn": "Mazandaraní Simi", + "naq": "Nama Simi", + "nb": "Noruego Bokmål Simi", + "nd": "Ndebele septentrional Simi", + "nds": "Bajo Alemán Simi", "ne": "Nepali Simi", "nl": "Neerlandes Simi", + "nl_BE": "Flamenco Simi", + "nmg": "Kwasio Ngumba Simi", + "nn": "Noruego Nynorsk Simi", + "nnh": "Ngiemboon Simi", "no": "Noruego Simi", "nso": "Sesotho Sa Leboa Simi", + "nus": "Nuer Simi", + "ny": "Nyanja Simi", + "nyn": "Nyankole Simi", "oc": "Occitano Simi", + "om": "Oromo Simi", "or": "Odia Simi", + "os": "Osetio Simi", "pa": "Punyabi Simi", "pap": "Papiamento Simi", "pl": "Polaco Simi", + "prg": "Prusiano Simi", "ps": "Pashto Simi", "pt": "Portugues Simi", "qu": "Runasimi", "quc": "Kʼicheʼ Simi", "rm": "Romanche Simi", + "rn": "Rundi Simi", "ro": "Rumano Simi", + "rof": "Rombo Simi", "ru": "Ruso Simi", "rw": "Kinyarwanda Simi", + "rwk": "Rwa Simi", "sa": "Sanscrito Simi", "sah": "Sakha Simi", + "saq": "Samburu Simi", + "sbp": "Sangu Simi", "sd": "Sindhi Simi", "se": "Chincha Sami Simi", + "seh": "Sena Simi", + "ses": "Koyraboro Senni Simi", + "sg": "Sango Simi", + "shi": "Tashelhit Simi", "si": "Cingales Simi", "sk": "Eslovaco Simi", "sl": "Esloveno Simi", + "sm": "Samoano Simi", "sma": "Qulla Sami Simi", "smj": "Sami Lule Simi", "smn": "Sami Inari Simi", "sms": "Sami Skolt Simi", + "sn": "Shona Simi", + "so": "Somali Simi", "sq": "Albanes Simi", "sr": "Serbio Simi", + "st": "Soto Meridional Simi", + "su": "Sundanés Simi", "sv": "Sueco Simi", "sw": "Suajili Simi", "sw_CD": "Suajili Simi (Congo (RDC))", "syr": "Siriaco Simi", "ta": "Tamil Simi", "te": "Telugu Simi", + "teo": "Teso Simi", "tg": "Tayiko Simi", "th": "Tailandes Simi", "ti": "Tigriña Simi", "tk": "Turcomano Simi", "tn": "Setsuana Simi", + "to": "Tongano Simi", "tr": "Turco Simi", "tt": "Tartaro Simi", + "twq": "Tasawaq Simi", + "tzm": "Tamazight Simi", "ug": "Uigur Simi", "uk": "Ucraniano Simi", + "und": "Mana Riqsisqa Simi", "ur": "Urdu Simi", "uz": "Uzbeko Simi", + "vai": "Vai Simi", "vi": "Vietnamita Simi", + "vo": "Volapük Simi", + "vun": "Vunjo Simi", + "wae": "Walser Simi", "wo": "Wolof Simi", "xh": "Isixhosa Simi", + "xog": "Soga Simi", + "yav": "Yangben Simi", + "yi": "Yiddish Simi", "yo": "Yoruba Simi", + "yue": "Cantonés Simi", + "zgh": "Bereber Marroquí Estándar Simi", "zh": "Chino Simi", - "zu": "Isizulu Simi" + "zh_Hans": "Chino Simplificado Simi", + "zh_Hant": "Chino Tradicional Simi", + "zu": "Isizulu Simi", + "zxx": "Sin contenido linguístico" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rm.json b/src/Symfony/Component/Intl/Resources/data/languages/rm.json index 3d319259268ec..aa1b6bac2be61 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 a06e6acd7fe64..31d0c9e2d17c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 2fb89630cb750..a262ef51c04c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abhază", 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 594c54b9b4147..9a7286132b74f 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,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "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 0785be773deee..6e7db1c33a884 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарский", "ab": "абхазский", @@ -21,7 +21,7 @@ "ang": "староанглийский", "anp": "ангика", "ar": "арабский", - "ar_001": "литературный арабский", + "ar_001": "арабский литературный", "arc": "арамейский", "arn": "мапуче", "arp": "арапахо", @@ -328,14 +328,14 @@ "my": "бирманский", "mye": "миене", "myv": "эрзянский", - "mzn": "мазендеранский", + "mzn": "мазандеранский", "na": "науру", "nan": "миньнань", "nap": "неаполитанский", "naq": "нама", "nb": "норвежский букмол", "nd": "северный ндебеле", - "nds": "нижнегерманский", + "nds": "нижненемецкий", "nds_NL": "нижнесаксонский", "ne": "непальский", "new": "неварский", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rw.json b/src/Symfony/Component/Intl/Resources/data/languages/rw.json index bb41cb5881728..d429f82d83b99 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 19034e27992ea..1f752018895bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "افار", "ab": "ابقازیان", @@ -277,7 +277,7 @@ "pl": "پولش", "prg": "پرشن", "ps": "پشتو", - "pt": "پرتگالي", + "pt": "پورٽگليز", "pt_BR": "برازيلي پرتگالي", "pt_PT": "يورپي پرتگالي", "qu": "ڪيچوا", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se.json b/src/Symfony/Component/Intl/Resources/data/languages/se.json index abb5fb9525792..0e3d47cc35a30 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/se.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 d373463be2989..0939bc662df7a 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,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "ace": "ačehgiella", "ar_001": "standárda arábagiella", @@ -29,6 +29,7 @@ "swb": "komoragiella", "th": "thaigiella", "vi": "vietnamagiella", - "zh_Hans": "álkes kiinnágiella" + "zh_Hans": "álkes kiinnágiella", + "zh_Hant": "árbevirolaš kiinnágiella" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sg.json b/src/Symfony/Component/Intl/Resources/data/languages/sg.json index dbb79356b9a85..48f2bf530ec1a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 cb107e6e93fff..6f8d5c5b07b6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afarski", "ab": "abhaski", @@ -62,7 +62,6 @@ "cad": "kado", "car": "karipski", "cch": "atsam", - "ccp": "ccp", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -99,7 +98,7 @@ "din": "dinka", "dje": "zarma", "doi": "dogri", - "dsb": "donji lužičkosrpski", + "dsb": "donjolužičkosrpski", "dua": "duala", "dum": "srednjeholandski", "dv": "maldivski", @@ -173,7 +172,7 @@ "hmn": "hmonški", "ho": "hiri motu", "hr": "hrvatski", - "hsb": "gornji lužičkosrpski", + "hsb": "gornjolužičkosrpski", "ht": "haićanski", "hu": "mađarski", "hup": "hupa", 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 066b5008b07f4..10b02c30b84b8 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,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { "arn": "mapudungun", "be": "bjeloruski", @@ -12,9 +12,12 @@ "nqo": "n’ko", "shi": "južni šilha", "si": "sinhalski", + "sw_CD": "kisvahili", "tzm": "centralnoatlaski tamašek", "xh": "isikosa", "zgh": "standardni marokanski tamašek", + "zh_Hans": "pojednostavljeni kineski", + "zh_Hant": "tradicionalni kineski", "zu": "isizulu" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index a0c3f3bedc585..f28128901eae9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/si.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "අෆාර්", "ab": "ඇබ්කාසියානු", @@ -48,6 +48,7 @@ "bug": "බුගිනීස්", "byn": "බ්ලින්", "ca": "කැටලන්", + "ccp": "චක්මා", "ce": "චෙච්නියානු", "ceb": "සෙබුඅනො", "cgg": "චිගා", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index 1000b61f65aab..a64bf1c5955d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afarčina", "ab": "abcházčina", @@ -71,6 +71,7 @@ "car": "karibčina", "cay": "kajugčina", "cch": "atsam", + "ccp": "čakma", "ce": "čečenčina", "ceb": "cebuánčina", "cgg": "kiga", @@ -520,7 +521,7 @@ "zap": "zapotéčtina", "zbl": "systém Bliss", "zen": "zenaga", - "zgh": "tuaregčina (štandardná marocká)", + "zgh": "tuaregčina (marocká štandardná)", "zh": "čínština", "zh_Hans": "čínština (zjednodušená)", "zh_Hant": "čínština (tradičná)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index 27e29546b25b9..9f7fc134d2330 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afarščina", "ab": "abhaščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sn.json b/src/Symfony/Component/Intl/Resources/data/languages/sn.json index fa5f1f0934efb..b37e808b3b3a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 fef61a793421c..eb0c32fd59970 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/so.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "af": "Afrikaanka", "agq": "Ageem", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index fa8ec41ef73fd..4208d4724d245 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "afarisht", "ab": "abkazisht", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr.json b/src/Symfony/Component/Intl/Resources/data/languages/sr.json index 87abd3394840f..cb4d46e7bb424 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарски", "ab": "абхаски", @@ -62,7 +62,6 @@ "cad": "кадо", "car": "карипски", "cch": "атсам", - "ccp": "ccp", "ce": "чеченски", "ceb": "себуански", "cgg": "чига", @@ -99,7 +98,7 @@ "din": "динка", "dje": "зарма", "doi": "догри", - "dsb": "доњи лужичкосрпски", + "dsb": "доњолужичкосрпски", "dua": "дуала", "dum": "средњехоландски", "dv": "малдивски", @@ -173,7 +172,7 @@ "hmn": "хмоншки", "ho": "хири моту", "hr": "хрватски", - "hsb": "горњи лужичкосрпски", + "hsb": "горњолужичкосрпски", "ht": "хаићански", "hu": "мађарски", "hup": "хупа", 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 a74389537d9ec..ff019802626d5 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "arn": "мапудунгун", "be": "бјелоруски", @@ -12,9 +12,12 @@ "nqo": "н’ко", "shi": "јужни шилха", "si": "синхалски", + "sw_CD": "кисвахили", "tzm": "централноатласки тамашек", "xh": "исикоса", "zgh": "стандардни марокански тамашек", + "zh_Hans": "поједностављени кинески", + "zh_Hant": "традиционални кинески", "zu": "исизулу" } } 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 a74389537d9ec..ff019802626d5 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "arn": "мапудунгун", "be": "бјелоруски", @@ -12,9 +12,12 @@ "nqo": "н’ко", "shi": "јужни шилха", "si": "синхалски", + "sw_CD": "кисвахили", "tzm": "централноатласки тамашек", "xh": "исикоса", "zgh": "стандардни марокански тамашек", + "zh_Hans": "поједностављени кинески", + "zh_Hant": "традиционални кинески", "zu": "исизулу" } } 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 1dbe221c4f894..b4da1e7f7760b 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 96043408799b6..7a66f3941feb7 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 cb107e6e93fff..6f8d5c5b07b6c 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afarski", "ab": "abhaski", @@ -62,7 +62,6 @@ "cad": "kado", "car": "karipski", "cch": "atsam", - "ccp": "ccp", "ce": "čečenski", "ceb": "sebuanski", "cgg": "čiga", @@ -99,7 +98,7 @@ "din": "dinka", "dje": "zarma", "doi": "dogri", - "dsb": "donji lužičkosrpski", + "dsb": "donjolužičkosrpski", "dua": "duala", "dum": "srednjeholandski", "dv": "maldivski", @@ -173,7 +172,7 @@ "hmn": "hmonški", "ho": "hiri motu", "hr": "hrvatski", - "hsb": "gornji lužičkosrpski", + "hsb": "gornjolužičkosrpski", "ht": "haićanski", "hu": "mađarski", "hup": "hupa", 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 066b5008b07f4..10b02c30b84b8 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,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { "arn": "mapudungun", "be": "bjeloruski", @@ -12,9 +12,12 @@ "nqo": "n’ko", "shi": "južni šilha", "si": "sinhalski", + "sw_CD": "kisvahili", "tzm": "centralnoatlaski tamašek", "xh": "isikosa", "zgh": "standardni marokanski tamašek", + "zh_Hans": "pojednostavljeni kineski", + "zh_Hant": "tradicionalni kineski", "zu": "isizulu" } } 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 7f44a28d534bd..88a559a8f301b 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 60257572085e0..571314ca6975c 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 7f44a28d534bd..88a559a8f301b 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 96043408799b6..7a66f3941feb7 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "bm": "бамананкан", "bn": "бангла", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv.json b/src/Symfony/Component/Intl/Resources/data/languages/sv.json index b40e040ace822..2d54f5cef8968 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.90", + "Version": "36", "Names": { "aa": "afar", "ab": "abchaziska", @@ -270,7 +270,7 @@ "kgp": "kaingang", "kha": "khasi", "kho": "khotanesiska", - "khq": "Timbuktu-songhoy", + "khq": "Timbuktu-songhai", "khw": "khowar", "ki": "kikuyu", "kiu": "kirmanjki", @@ -302,7 +302,7 @@ "kut": "kutenaj", "kv": "kome", "kw": "korniska", - "ky": "kirgisiska", + "ky": "kirgiziska", "la": "latin", "lad": "ladino", "lag": "langi", @@ -485,7 +485,7 @@ "seh": "sena", "sei": "seri", "sel": "selkup", - "ses": "Gao-songhay", + "ses": "Gao-songhai", "sg": "sango", "sga": "forniriska", "sgs": "samogitiska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json deleted file mode 100644 index 1a3325700502e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.47.71", - "Names": { - "ky": "kirgiziska" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw.json b/src/Symfony/Component/Intl/Resources/data/languages/sw.json index 0bfda95a51742..9ed16623cb9ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "Kiafar", "ab": "Kiabkhazi", @@ -59,6 +59,7 @@ "byn": "Kiblin", "byv": "Kimedumba", "ca": "Kikatalani", + "ccp": "Kichakma", "ce": "Kichechenia", "ceb": "Kichebuano", "cgg": "Kichiga", @@ -316,6 +317,7 @@ "rm": "Kiromanshi", "rn": "Kirundi", "ro": "Kiromania", + "ro_MD": "Kimoldova cha Romania", "rof": "Kirombo", "root": "Kiroot", "ru": "Kirusi", 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 91a4115638aa7..43d97d8f0fca4 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "ak": "Kiakan", "ar_001": "Kiarabu cha Dunia Kilichosanifishwa", 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 00a4940a2fd02..04599d2c9f69c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json @@ -1,6 +1,7 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { + "ar_001": "Kiarabu sanifu", "arq": "Kiarabu cha Aljeria", "as": "Kiasamisi", "chr": "Kicheroki", @@ -31,6 +32,7 @@ "nqo": "Kiin’ko", "or": "Kiodia", "pcm": "Kipijini cha Nigeria", + "ro_MD": "Kimoldova cha Romania", "ses": "Kikoyraborosenni", "shu": "Kiarabu cha Chadi", "srn": "Kisranantongo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index 1cd1a13825c70..44bada55ed580 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "அஃபார்", "ab": "அப்காஜியான்", @@ -33,7 +33,7 @@ "av": "அவேரிக்", "awa": "அவதி", "ay": "அய்மரா", - "az": "அஸர்பைஜானி", + "az": "அசர்பைஜானி", "ba": "பஷ்கிர்", "bal": "பலூச்சி", "ban": "பலினீஸ்", @@ -65,6 +65,7 @@ "cad": "கேடோ", "car": "கரீப்", "cch": "ஆட்சம்", + "ccp": "சக்மா", "ce": "செச்சென்", "ceb": "செபுவானோ", "cgg": "சிகா", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/te.json b/src/Symfony/Component/Intl/Resources/data/languages/te.json index 531b3563bb5a9..b37881958ae2d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/te.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", @@ -65,6 +65,7 @@ "cad": "కేడ్డో", "car": "కేరిబ్", "cch": "అట్సామ్", + "ccp": "చక్మా", "ce": "చెచెన్", "ceb": "సెబువానో", "cgg": "ఛిగా", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tg.json b/src/Symfony/Component/Intl/Resources/data/languages/tg.json index ac36b815df61d..604452f51621a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "af": "африкаанс", "am": "амҳарӣ", @@ -25,14 +25,22 @@ "cy": "валлӣ", "da": "даниягӣ", "de": "немисӣ", + "de_AT": "немисии австриягӣ", + "de_CH": "немисии швейсарии болоӣ", "dsb": "сербии поёнӣ", "dv": "дивеҳӣ", "dz": "дзонгха", "el": "юнонӣ", "en": "англисӣ", + "en_AU": "англисии австралиягӣ", + "en_CA": "англисии канадагӣ", + "en_GB": "англисии британӣ", + "en_US": "англисии америкоӣ", "eo": "эсперанто", "es": "испанӣ", - "es_419": "испанӣ (Америкаи Лотинӣ)", + "es_419": "испании америкоии лотинӣ", + "es_ES": "испании аврупоӣ", + "es_MX": "испании мексикоӣ", "et": "эстонӣ", "eu": "баскӣ", "fa": "форсӣ", @@ -41,6 +49,8 @@ "fil": "филиппинӣ", "fo": "фарерӣ", "fr": "франсузӣ", + "fr_CA": "франсузии канадагӣ", + "fr_CH": "франсузии швейсарӣ", "fy": "фризии ғарбӣ", "ga": "ирландӣ", "gd": "шотландии гэлӣ", @@ -106,6 +116,8 @@ "pl": "лаҳистонӣ", "ps": "пушту", "pt": "португалӣ", + "pt_BR": "португалии бразилиягӣ", + "pt_PT": "португалии аврупоӣ", "qu": "кечуа", "quc": "киче", "rm": "ретороманӣ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 06770f680ed0b..712312c6b1a71 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/th.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "อะฟาร์", "ab": "อับฮาเซีย", @@ -88,6 +88,7 @@ "car": "คาริบ", "cay": "คายูกา", "cch": "แอตแซม", + "ccp": "จักม่า", "ce": "เชเชน", "ceb": "เซบู", "cgg": "คีกา", @@ -233,7 +234,7 @@ "id": "อินโดนีเซีย", "ie": "อินเตอร์ลิงกิว", "ig": "อิกโบ", - "ii": "เสฉวนยิ", + "ii": "เสฉวนยี่", "ik": "อีนูเปียก", "ilo": "อีโลโก", "inh": "อินกุช", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ti.json b/src/Symfony/Component/Intl/Resources/data/languages/ti.json index c57f7e1fdc8b6..8624d59f855b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 66c60d7517d81..2248d8438df54 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar dili", "ab": "abhaz dili", @@ -74,7 +74,7 @@ "dsb": "aşaky lužits dili", "dua": "duala dili", "dv": "diwehi dili", - "dyo": "ýola-Fonyi dili", + "dyo": "ýola-fonýi dili", "dz": "dzong-ke dili", "dzg": "daza dili", "ebu": "embu dili", @@ -194,7 +194,7 @@ "loz": "lozi dili", "lrc": "demirgazyk luri dili", "lt": "litwa dili", - "lu": "luba-Katanga dili", + "lu": "luba-katanga dili", "lua": "luba-Lulua dili", "lun": "lunda dili", "luo": "luo dili", @@ -211,7 +211,7 @@ "mer": "meru dili", "mfe": "morisýen dili", "mg": "malagasiý dili", - "mgh": "makua-Mitto dili", + "mgh": "makuwa-mito dili", "mgo": "meta dili", "mh": "marşall dili", "mi": "maori dili", @@ -299,7 +299,7 @@ "sd": "sindhi dili", "se": "demirgazyk saam dili", "seh": "sena dili", - "ses": "koýraboro-Senni dili", + "ses": "koýraboro-senni dili", "sg": "sango dili", "shi": "tahelhit dili", "shn": "şan dili", @@ -319,7 +319,7 @@ "srn": "sranan-tongo dili", "ss": "swati dili", "ssy": "saho dili", - "st": "günorta Soto dili", + "st": "günorta soto dili", "su": "sundan dili", "suk": "sukuma dili", "sv": "şwed dili", @@ -350,7 +350,7 @@ "twq": "tasawak dili", "ty": "taiti dili", "tyv": "tuwa dili", - "tzm": "orta-Atlas tamazight dili", + "tzm": "orta-atlas tamazight dili", "udm": "udmurt dili", "ug": "uýgur dili", "uk": "ukrain dili", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index 83cc19e545e56..c2d200e825c27 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/to.json b/src/Symfony/Component/Intl/Resources/data/languages/to.json index cebc6433fb483..5e875450e4ffb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/to.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "aa": "lea fakaʻafāla", "ab": "lea fakaʻapakasia", @@ -87,6 +87,7 @@ "car": "lea fakakalipa", "cay": "lea fakakaiuka", "cch": "lea fakaʻatisami", + "ccp": "lea fakasākima", "ce": "lea fakasese", "ceb": "lea fakasepuano", "cgg": "lea fakakika", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tr.json b/src/Symfony/Component/Intl/Resources/data/languages/tr.json index df8002702f686..b22267129c0a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "aa": "Afar", "ab": "Abhazca", @@ -42,7 +42,7 @@ "avk": "Kotava", "awa": "Awadhi", "ay": "Aymara", - "az": "Azerice", + "az": "Azerbaycan dili", "az_Arab": "Güney Azerice", "ba": "Başkırtça", "bal": "Beluçça", @@ -92,7 +92,7 @@ "ccp": "Chakma", "ce": "Çeçence", "ceb": "Sebuano dili", - "cgg": "Kigaca", + "cgg": "Kiga", "ch": "Çamorro dili", "chb": "Çibça dili", "chg": "Çağatayca", @@ -229,7 +229,7 @@ "hup": "Hupaca", "hy": "Ermenice", "hz": "Herero dili", - "ia": "Interlingua", + "ia": "İnterlingua", "iba": "Iban", "ibb": "İbibio dili", "id": "Endonezce", @@ -252,7 +252,7 @@ "jpr": "Yahudi Farsçası", "jrb": "Yahudi Arapçası", "jut": "Yutland Dili", - "jv": "Cava Dili", + "jv": "Cava dili", "ka": "Gürcüce", "kaa": "Karakalpakça", "kab": "Kabiliyece", @@ -295,7 +295,7 @@ "krl": "Karelyaca", "kru": "Kurukh dili", "ks": "Keşmir dili", - "ksb": "Shambala", + "ksb": "Şambala", "ksf": "Bafia", "ksh": "Köln lehçesi", "ku": "Kürtçe", @@ -491,7 +491,7 @@ "sga": "Eski İrlandaca", "sgs": "Samogitçe", "sh": "Sırp-Hırvat Dili", - "shi": "Taşelhit", + "shi": "Taşelit", "shn": "Shan dili", "shu": "Çad Arapçası", "si": "Sinhali dili", @@ -505,7 +505,7 @@ "smj": "Lule Laponcası", "smn": "İnari Laponcası", "sms": "Skolt Laponcası", - "sn": "Shona", + "sn": "Şona dili", "snk": "Soninke", "so": "Somalice", "sog": "Sogdiana Dili", @@ -517,7 +517,7 @@ "ssy": "Saho", "st": "Güney Sotho dili", "stq": "Saterland Frizcesi", - "su": "Sunda Dili", + "su": "Sunda dili", "suk": "Sukuma dili", "sus": "Susu", "sux": "Sümerce", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tt.json b/src/Symfony/Component/Intl/Resources/data/languages/tt.json index 1a8426078ab5b..c99ac3fbe5a87 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "af": "африкаанс", "am": "амхар", @@ -26,14 +26,18 @@ "cy": "уэльс", "da": "дания", "de": "алман", + "de_CH": "югары алман (Швейцария)", "dsb": "түбән сорб", "dv": "мальдив", "dz": "дзонг-кха", "el": "грек", "en": "инглиз", + "en_GB": "Британия инглизчәсе", + "en_US": "Америка инглизчәсе", "eo": "эсперанто", "es": "испан", "es_419": "испан (Латин Америкасы)", + "es_ES": "испан (Европа)", "et": "эстон", "eu": "баск", "fa": "фарсы", @@ -105,6 +109,7 @@ "pl": "поляк", "ps": "пушту", "pt": "португал", + "pt_PT": "португал (Европа)", "qu": "кечуа", "quc": "киче", "rm": "ретороман", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ug.json b/src/Symfony/Component/Intl/Resources/data/languages/ug.json index 7a9e05f5bc16f..513b8012374de 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 dfea6cad6aad7..306991cedff59 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "афарська", "ab": "абхазька", @@ -545,7 +545,7 @@ "zh_Hant": "китайська (традиційне письмо)", "zu": "зулуська", "zun": "зуньї", - "zxx": "немає мовного вмісту", + "zxx": "природномовний текст відсутній", "zza": "зазакі" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index 9dccf7698d495..d5469fb0d6141 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "افار", "ab": "ابقازیان", @@ -41,7 +41,7 @@ "bin": "بینی", "bla": "سکسیکا", "bm": "بمبارا", - "bn": "بنگالی", + "bn": "بنگلہ", "bo": "تبتی", "br": "بریٹن", "brx": "بوڈو", 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 a3e1deba6a887..f98723cda29da 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 8fdb67ec3a09e..c5aebf38d2195 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "afar", "ab": "abxaz", @@ -47,6 +47,7 @@ "bug": "bugi", "byn": "blin", "ca": "katalan", + "ccp": "chakma", "ce": "chechen", "ceb": "sebuan", "cgg": "chiga", 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 1bfffd013f377..c2e64d35c1dd5 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 240ba58447a8d..fbdb8e2ec7d31 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 b518e1a6a2ab0..954edb29dade1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", @@ -515,7 +515,7 @@ "udm": "Tiếng Udmurt", "ug": "Tiếng Uyghur", "uga": "Tiếng Ugaritic", - "uk": "Tiếng Ucraina", + "uk": "Tiếng Ukraina", "umb": "Tiếng Umbundu", "und": "Ngôn ngữ không xác định", "ur": "Tiếng Urdu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/wo.json b/src/Symfony/Component/Intl/Resources/data/languages/wo.json index a84b34206f197..e766a65030d99 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 711b2fe0ce2ec..cfc1355c2b2af 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/xh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 e1d7492744778..fd6243b38e9a7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "aa": "אַפֿאַר", "af": "אַפֿריקאַנס", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo.json b/src/Symfony/Component/Intl/Resources/data/languages/yo.json index 44ef9b164a3f3..dc4d3a83f7cae 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,10 +1,10 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "af": "Èdè Afrikani", "ak": "Èdè Akani", "am": "Èdè Amariki", - "ar": "Èdè Arabiki", + "ar": "Èdè Árábìkì", "as": "Ti Assam", "az": "Èdè Azerbaijani", "be": "Èdè Belarusi", @@ -16,8 +16,8 @@ "cs": "Èdè seeki", "cy": "Èdè Welshi", "da": "Èdè Ilẹ̀ Denmark", - "de": "Èdè Ilẹ̀ Jámánì", - "de_AT": "Èdè Ilẹ̀ Jámánì orílẹ̀-èdè Ọ́síríà )", + "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ì)", "el": "Èdè Giriki", "en": "Èdè Gẹ̀ẹ́sì", @@ -26,18 +26,19 @@ "en_GB": "Èdè òyìnbó Gẹ̀ẹ́sì", "eo": "Èdè Esperanto", "es": "Èdè Sípáníìṣì", - "es_419": "Èdè Sípáníìṣì (orílẹ̀-èdè Látìn-Amẹ́ríkà)", + "es_419": "Èdè Sípáníìṣì (orílẹ̀-èdè Látìn-Amẹ́ríkà) ( Èdè Sípáníìshì (Látìn-Amẹ́ríkà)", "es_ES": "Èdè Sípáníìṣì (orílẹ̀-èdè Yúróòpù)", "es_MX": "Èdè Sípáníìṣì (orílẹ̀-èdè Mẹ́síkò)", "et": "Èdè Estonia", "eu": "Èdè Baski", "fa": "Èdè Pasia", + "ff": "Èdè Fúlàní", "fi": "Èdè Finisi", "fil": "Èdè Filipino", "fo": "Èdè Faroesi", "fr": "Èdè Faransé", "fr_CA": "Èdè Faransé (orílẹ̀-èdè Kánádà)", - "fr_CH": "Èdè Faransé (orílẹ̀-èdè swítsàlandì)", + "fr_CH": "Èdè Faranṣé (Súwísàlaǹdì)", "fy": "Èdè Frisia", "ga": "Èdè Ireland", "gd": "Èdè Gaelik ti Ilu Scotland", @@ -46,22 +47,22 @@ "gu": "Èdè Gujarati", "ha": "Èdè Hausa", "he": "Èdè Heberu", - "hi": "Èdè Hindi", + "hi": "Èdè Híńdì", "hr": "Èdè Kroatia", "hu": "Èdè Hungaria", "hy": "Èdè Ile Armenia", "ia": "Èdè pipo", - "id": "Èdè Indonasia", + "id": "Èdè Indonéṣíà", "ie": "Iru Èdè", - "ig": "Èdè Ibo", + "ig": "Èdè Yíbò", "is": "Èdè Icelandic", - "it": "Èdè ilẹ̀ Ítálì", - "ja": "Èdè ilẹ̀ Japan", + "it": "Èdè Ítálì", + "ja": "Èdè Jàpáànù", "jv": "Èdè Javanasi", "ka": "Èdè Georgia", "km": "Èdè kameri", "kn": "Èdè Kannada", - "ko": "Èdè Koria", + "ko": "Èdè Kòríà", "la": "Èdè Latini", "lt": "Èdè Lithuania", "lv": "Èdè Latvianu", @@ -71,16 +72,16 @@ "mt": "Èdè Malta", "my": "Èdè Bumiisi", "ne": "Èdè Nepali", - "nl": "Èdè Duki", + "nl": "Èdè Dọ́ọ̀ṣì", "no": "Èdè Norway", "oc": "Èdè Occitani", "pa": "Èdè Punjabi", - "pl": "Èdè Ilẹ̀ Polandi", + "pl": "Èdè Póláǹdì", "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ù)", "ro": "Èdè Romania", - "ru": "Èdè Rọsià", + "ru": "Èdè Rọ́ṣíà", "rw": "Èdè Ruwanda", "sa": "Èdè awon ara Indo", "sd": "Èdè Sindhi", 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 6f992494b1f10..e5ee8bd9f39a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,115 +1,27 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { - "af": "Èdè Afrikani", - "ak": "Èdè Akani", - "am": "Èdè Amariki", - "ar": "Èdè Arabiki", - "as": "Ti Assam", - "az": "Èdè Azerbaijani", - "be": "Èdè Belarusi", - "bg": "Èdè Bugaria", - "bn": "Èdè Bengali", - "br": "Èdè Bretoni", - "bs": "Èdè Bosnia", - "ca": "Èdè Catala", - "cs": "Èdè seeki", - "cy": "Èdè Welshi", "da": "Èdè Ilɛ̀ Denmark", - "de": "Èdè Ilɛ̀ Jámánì", - "de_AT": "Èdè Ilɛ̀ Jámánì orílɛ̀-èdè Ɔ́síríà )", + "de_AT": "Èdè Jámánì (Ɔ́síríà )", "de_CH": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède swítsàlandì)", - "el": "Èdè Giriki", "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à)", "en_GB": "Èdè òyìnbó Gɛ̀ɛ́sì", - "eo": "Èdè Esperanto", "es": "Èdè Sípáníìshì", - "es_419": "Èdè Sípáníìshì (orílɛ̀-èdè Látìn-Amɛ́ríkà)", + "es_419": "Èdè Sípáníìshì (orílɛ̀-èdè Látìn-Amɛ́ríkà) ( Èdè Sípáníìshì (Látìn-Amɛ́ríkà)", "es_ES": "Èdè Sípáníìshì (orílɛ̀-èdè Yúróòpù)", "es_MX": "Èdè Sípáníìshì (orílɛ̀-èdè Mɛ́síkò)", - "et": "Èdè Estonia", - "eu": "Èdè Baski", - "fa": "Èdè Pasia", - "fi": "Èdè Finisi", - "fil": "Èdè Filipino", - "fo": "Èdè Faroesi", - "fr": "Èdè Faransé", "fr_CA": "Èdè Faransé (orílɛ̀-èdè Kánádà)", - "fr_CH": "Èdè Faransé (orílɛ̀-èdè swítsàlandì)", - "fy": "Èdè Frisia", - "ga": "Èdè Ireland", - "gd": "Èdè Gaelik ti Ilu Scotland", - "gl": "Èdè Galicia", - "gn": "Èdè Guarani", - "gu": "Èdè Gujarati", - "ha": "Èdè Hausa", - "he": "Èdè Heberu", - "hi": "Èdè Hindi", - "hr": "Èdè Kroatia", - "hu": "Èdè Hungaria", - "hy": "Èdè Ile Armenia", - "ia": "Èdè pipo", - "id": "Èdè Indonasia", - "ie": "Iru Èdè", - "ig": "Èdè Ibo", - "is": "Èdè Icelandic", - "it": "Èdè ilɛ̀ Ítálì", - "ja": "Èdè ilɛ̀ Japan", - "jv": "Èdè Javanasi", - "ka": "Èdè Georgia", - "km": "Èdè kameri", - "kn": "Èdè Kannada", - "ko": "Èdè Koria", - "la": "Èdè Latini", - "lt": "Èdè Lithuania", - "lv": "Èdè Latvianu", - "mk": "Èdè Macedonia", - "mr": "Èdè marathi", - "ms": "Èdè Malaya", - "mt": "Èdè Malta", - "my": "Èdè Bumiisi", - "ne": "Èdè Nepali", - "nl": "Èdè Duki", - "no": "Èdè Norway", - "oc": "Èdè Occitani", - "pa": "Èdè Punjabi", - "pl": "Èdè Ilɛ̀ Polandi", + "fr_CH": "Èdè Faranshé (Súwísàlaǹdì)", + "id": "Èdè Indonéshíà", + "nl": "Èdè Dɔ́ɔ̀shì", "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ù)", - "ro": "Èdè Romania", - "ru": "Èdè Rɔsià", - "rw": "Èdè Ruwanda", - "sa": "Èdè awon ara Indo", - "sd": "Èdè Sindhi", - "sh": "Èdè Serbo-Croatiani", - "si": "Èdè Sinhalese", - "sk": "Èdè Slovaki", - "sl": "Èdè Slovenia", - "so": "Èdè ara Somalia", - "sq": "Èdè Albania", - "sr": "Èdè Serbia", - "st": "Èdè Sesoto", - "su": "Èdè Sudani", - "sv": "Èdè Suwidiisi", - "sw": "Èdè Swahili", - "ta": "Èdè Tamili", - "te": "Èdè Telugu", - "th": "Èdè Tai", - "ti": "Èdè Tigrinya", - "tk": "Èdè Turkmen", - "tlh": "Èdè Klingoni", + "ru": "Èdè Rɔ́shíà", "tr": "Èdè Tɔɔkisi", - "uk": "Èdè Ukania", "und": "Èdè àìmɔ̀", - "ur": "Èdè Udu", - "uz": "Èdè Uzbek", - "vi": "Èdè Jetinamu", - "xh": "Èdè Xhosa", - "yi": "Èdè Yiddishi", - "yo": "Èdè Yorùbá", "zh": "Èdè Mandarin tí wɔ́n ń sɔ lórílɛ̀-èdè 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 caaaee1dc2f7d..70e2a778f29a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "aa": "阿法尔语", "ab": "阿布哈西亚语", 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 cfb9d6f9e1992..5d8194d6003e2 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", @@ -26,7 +26,6 @@ "gil": "吉爾伯特文", "gl": "加里西亞文", "gsw": "瑞士德文", - "hi": "印度文", "hmn": "苗語", "hr": "克羅地亞文", "it": "意大利文", 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 841329ec4fc44..8e918cee8d516 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 cfb9d6f9e1992..5d8194d6003e2 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", @@ -26,7 +26,6 @@ "gil": "吉爾伯特文", "gl": "加里西亞文", "gsw": "瑞士德文", - "hi": "印度文", "hmn": "苗語", "hr": "克羅地亞文", "it": "意大利文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 46cd472014df2..319742f91f98b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "aa": "isi-Afar", "ab": "isi-Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/af.json b/src/Symfony/Component/Intl/Resources/data/locales/af.json index a0563ed741540..25dedbe727935 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -179,7 +179,7 @@ "en_SL": "Engels (Sierra Leone)", "en_SS": "Engels (Suid-Soedan)", "en_SX": "Engels (Sint Maarten)", - "en_SZ": "Engels (Swaziland)", + "en_SZ": "Engels (Eswatini)", "en_TC": "Engels (Turks- en Caicoseilande)", "en_TK": "Engels (Tokelau)", "en_TO": "Engels (Tonga)", @@ -306,6 +306,7 @@ "fy": "Fries", "fy_NL": "Fries (Nederland)", "ga": "Iers", + "ga_GB": "Iers (Verenigde Koninkryk)", "ga_IE": "Iers (Ierland)", "gd": "Skotse Gallies", "gd_GB": "Skotse Gallies (Verenigde Koninkryk)", @@ -393,7 +394,7 @@ "mi": "Maori", "mi_NZ": "Maori (Nieu-Seeland)", "mk": "Masedonies", - "mk_MK": "Masedonies (Macedonië)", + "mk_MK": "Masedonies (Noord-Macedonië)", "ml": "Malabaars", "ml_IN": "Malabaars (Indië)", "mn": "Mongools", @@ -506,7 +507,7 @@ "so_SO": "Somalies (Somalië)", "sq": "Albanees", "sq_AL": "Albanees (Albanië)", - "sq_MK": "Albanees (Macedonië)", + "sq_MK": "Albanees (Noord-Macedonië)", "sq_XK": "Albanees (Kosovo)", "sr": "Serwies", "sr_BA": "Serwies (Bosnië en Herzegowina)", @@ -581,21 +582,21 @@ "yo": "Yoruba", "yo_BJ": "Yoruba (Benin)", "yo_NG": "Yoruba (Nigerië)", - "zh": "Sjinees", - "zh_CN": "Sjinees (Sjina)", - "zh_HK": "Sjinees (Hongkong SAS Sjina)", - "zh_Hans": "Sjinees (Vereenvoudig)", - "zh_Hans_CN": "Sjinees (Vereenvoudig, Sjina)", - "zh_Hans_HK": "Sjinees (Vereenvoudig, Hongkong SAS Sjina)", - "zh_Hans_MO": "Sjinees (Vereenvoudig, Macau SAS Sjina)", - "zh_Hans_SG": "Sjinees (Vereenvoudig, Singapoer)", - "zh_Hant": "Sjinees (Tradisioneel)", - "zh_Hant_HK": "Sjinees (Tradisioneel, Hongkong SAS Sjina)", - "zh_Hant_MO": "Sjinees (Tradisioneel, Macau SAS Sjina)", - "zh_Hant_TW": "Sjinees (Tradisioneel, Taiwan)", - "zh_MO": "Sjinees (Macau SAS Sjina)", - "zh_SG": "Sjinees (Singapoer)", - "zh_TW": "Sjinees (Taiwan)", + "zh": "Chinees", + "zh_CN": "Chinees (Sjina)", + "zh_HK": "Chinees (Hongkong SAS Sjina)", + "zh_Hans": "Chinees (Vereenvoudig)", + "zh_Hans_CN": "Chinees (Vereenvoudig, Sjina)", + "zh_Hans_HK": "Chinees (Vereenvoudig, Hongkong SAS Sjina)", + "zh_Hans_MO": "Chinees (Vereenvoudig, Macau SAS Sjina)", + "zh_Hans_SG": "Chinees (Vereenvoudig, Singapoer)", + "zh_Hant": "Chinees (Tradisioneel)", + "zh_Hant_HK": "Chinees (Tradisioneel, Hongkong SAS Sjina)", + "zh_Hant_MO": "Chinees (Tradisioneel, Macau SAS Sjina)", + "zh_Hant_TW": "Chinees (Tradisioneel, Taiwan)", + "zh_MO": "Chinees (Macau SAS Sjina)", + "zh_SG": "Chinees (Singapoer)", + "zh_TW": "Chinees (Taiwan)", "zu": "Zoeloe", "zu_ZA": "Zoeloe (Suid-Afrika)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index b0359aa1f9cec..62891175e7ede 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -264,7 +264,7 @@ "fr_BL": "ፈረንሳይኛ (ቅዱስ በርቴሎሜ)", "fr_CA": "ፈረንሳይኛ (ካናዳ)", "fr_CD": "ፈረንሳይኛ (ኮንጎ-ኪንሻሳ)", - "fr_CF": "ፈረንሳይኛ (የመካከለኛው አፍሪካ ሪፐብሊክ)", + "fr_CF": "ፈረንሳይኛ (ማዕከላዊ አፍሪካ ሪፑብሊክ)", "fr_CG": "ፈረንሳይኛ (ኮንጎ ብራዛቪል)", "fr_CH": "ፈረንሳይኛ (ስዊዘርላንድ)", "fr_CI": "ፈረንሳይኛ (ኮት ዲቯር)", @@ -306,6 +306,7 @@ "fy": "ምዕራባዊ ፍሪሲኛ", "fy_NL": "ምዕራባዊ ፍሪሲኛ (ኔዘርላንድ)", "ga": "አይሪሽ", + "ga_GB": "አይሪሽ (ዩናይትድ ኪንግደም)", "ga_IE": "አይሪሽ (አየርላንድ)", "gd": "የስኮቲሽ ጌልክኛ", "gd_GB": "የስኮቲሽ ጌልክኛ (ዩናይትድ ኪንግደም)", @@ -378,7 +379,7 @@ "ln": "ሊንጋላኛ", "ln_AO": "ሊንጋላኛ (አንጐላ)", "ln_CD": "ሊንጋላኛ (ኮንጎ-ኪንሻሳ)", - "ln_CF": "ሊንጋላኛ (የመካከለኛው አፍሪካ ሪፐብሊክ)", + "ln_CF": "ሊንጋላኛ (ማዕከላዊ አፍሪካ ሪፑብሊክ)", "ln_CG": "ሊንጋላኛ (ኮንጎ ብራዛቪል)", "lo": "ላኦኛ", "lo_LA": "ላኦኛ (ላኦስ)", @@ -488,7 +489,7 @@ "se_NO": "ሰሜናዊ ሳሚ (ኖርዌይ)", "se_SE": "ሰሜናዊ ሳሚ (ስዊድን)", "sg": "ሳንጎኛ", - "sg_CF": "ሳንጎኛ (የመካከለኛው አፍሪካ ሪፐብሊክ)", + "sg_CF": "ሳንጎኛ (ማዕከላዊ አፍሪካ ሪፑብሊክ)", "sh": "ሰርቦ-ክሮኤሽያኛ", "sh_BA": "ሰርቦ-ክሮኤሽያኛ (ቦስኒያ እና ሄርዞጎቪኒያ)", "si": "ሲንሃልኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index 4ba86cbfdda69..efafad5fdb3f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -104,7 +104,7 @@ "en_BE": "الإنجليزية (بلجيكا)", "en_BI": "الإنجليزية (بوروندي)", "en_BM": "الإنجليزية (برمودا)", - "en_BS": "الإنجليزية (البهاما)", + "en_BS": "الإنجليزية (جزر البهاما)", "en_BW": "الإنجليزية (بوتسوانا)", "en_BZ": "الإنجليزية (بليز)", "en_CA": "الإنجليزية (كندا)", @@ -148,7 +148,7 @@ "en_LS": "الإنجليزية (ليسوتو)", "en_MG": "الإنجليزية (مدغشقر)", "en_MH": "الإنجليزية (جزر مارشال)", - "en_MO": "الإنجليزية (مكاو الصينية [منطقة إدارية خاصة])", + "en_MO": "الإنجليزية (منطقة ماكاو الإدارية الخاصة)", "en_MP": "الإنجليزية (جزر ماريانا الشمالية)", "en_MS": "الإنجليزية (مونتسرات)", "en_MT": "الإنجليزية (مالطا)", @@ -306,6 +306,7 @@ "fy": "الفريزيان", "fy_NL": "الفريزيان (هولندا)", "ga": "الأيرلندية", + "ga_GB": "الأيرلندية (المملكة المتحدة)", "ga_IE": "الأيرلندية (أيرلندا)", "gd": "الغيلية الأسكتلندية", "gd_GB": "الغيلية الأسكتلندية (المملكة المتحدة)", @@ -456,7 +457,7 @@ "pt_GQ": "البرتغالية (غينيا الاستوائية)", "pt_GW": "البرتغالية (غينيا بيساو)", "pt_LU": "البرتغالية (لوكسمبورغ)", - "pt_MO": "البرتغالية (مكاو الصينية [منطقة إدارية خاصة])", + "pt_MO": "البرتغالية (منطقة ماكاو الإدارية الخاصة)", "pt_MZ": "البرتغالية (موزمبيق)", "pt_PT": "البرتغالية (البرتغال)", "pt_ST": "البرتغالية (ساو تومي وبرينسيبي)", @@ -589,13 +590,13 @@ "zh_Hans": "الصينية (المبسطة)", "zh_Hans_CN": "الصينية (المبسطة، الصين)", "zh_Hans_HK": "الصينية (المبسطة، هونغ كونغ الصينية [منطقة إدارية خاصة])", - "zh_Hans_MO": "الصينية (المبسطة، مكاو الصينية [منطقة إدارية خاصة])", + "zh_Hans_MO": "الصينية (المبسطة، منطقة ماكاو الإدارية الخاصة)", "zh_Hans_SG": "الصينية (المبسطة، سنغافورة)", "zh_Hant": "الصينية (التقليدية)", "zh_Hant_HK": "الصينية (التقليدية، هونغ كونغ الصينية [منطقة إدارية خاصة])", - "zh_Hant_MO": "الصينية (التقليدية، مكاو الصينية [منطقة إدارية خاصة])", + "zh_Hant_MO": "الصينية (التقليدية، منطقة ماكاو الإدارية الخاصة)", "zh_Hant_TW": "الصينية (التقليدية، تايوان)", - "zh_MO": "الصينية (مكاو الصينية [منطقة إدارية خاصة])", + "zh_MO": "الصينية (منطقة ماكاو الإدارية الخاصة)", "zh_SG": "الصينية (سنغافورة)", "zh_TW": "الصينية (تايوان)", "zu": "الزولو", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar_SA.json b/src/Symfony/Component/Intl/Resources/data/locales/ar_SA.json index 20c9681679fe2..6b376761ddd0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar_SA.json @@ -1,6 +1,5 @@ { "Names": { - "en_BS": "الإنجليزية (جزر البهاما)", "en_MO": "الإنجليزية (ماكاو الصينية [منطقة إدارية خاصة])", "en_MS": "الإنجليزية (مونتيسيرات)", "es_EA": "الإسبانية (سبتة ومليلية)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/as.json b/src/Symfony/Component/Intl/Resources/data/locales/as.json index 70242cd4a2a26..049bca9dd7867 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/as.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/as.json @@ -148,7 +148,7 @@ "en_LS": "ইংৰাজী (লেছ’থ’)", "en_MG": "ইংৰাজী (মাদাগাস্কাৰ)", "en_MH": "ইংৰাজী (মাৰ্শ্বাল দ্বীপপুঞ্জ)", - "en_MO": "ইংৰাজী (মাকাউ এছ. এ. আৰ. চীন)", + "en_MO": "ইংৰাজী (মাকাও এছ. এ. আৰ. চীন)", "en_MP": "ইংৰাজী (উত্তৰ মাৰিয়ানা দ্বীপপুঞ্জ)", "en_MS": "ইংৰাজী (ম’ণ্টছেৰাট)", "en_MT": "ইংৰাজী (মাল্টা)", @@ -306,6 +306,7 @@ "fy": "ৱেষ্টাৰ্ণ ফ্ৰিছিয়ান", "fy_NL": "ৱেষ্টাৰ্ণ ফ্ৰিছিয়ান (নেডাৰলেণ্ড)", "ga": "আইৰিচ", + "ga_GB": "আইৰিচ (সংযুক্ত ৰাজ্য)", "ga_IE": "আইৰিচ (আয়াৰলেণ্ড)", "gd": "স্কটিচ গেইলিক", "gd_GB": "স্কটিচ গেইলিক (সংযুক্ত ৰাজ্য)", @@ -393,7 +394,7 @@ "mi": "মাওৰি", "mi_NZ": "মাওৰি (নিউজিলেণ্ড)", "mk": "মেচিডোনীয়", - "mk_MK": "মেচিডোনীয় (মেচিডোনীয়া)", + "mk_MK": "মেচিডোনীয় (উত্তৰ মেচিডোনীয়া)", "ml": "মালায়ালম", "ml_IN": "মালায়ালম (ভাৰত)", "mn": "মংগোলীয়", @@ -454,7 +455,7 @@ "pt_GQ": "পৰ্তুগীজ (ইকুৱেটৰিয়েল গিনি)", "pt_GW": "পৰ্তুগীজ (গিনি-বিছাও)", "pt_LU": "পৰ্তুগীজ (লাক্সেমবাৰ্গ)", - "pt_MO": "পৰ্তুগীজ (মাকাউ এছ. এ. আৰ. চীন)", + "pt_MO": "পৰ্তুগীজ (মাকাও এছ. এ. আৰ. চীন)", "pt_MZ": "পৰ্তুগীজ (ম’জামবিক)", "pt_PT": "পৰ্তুগীজ (পৰ্তুগাল)", "pt_ST": "পৰ্তুগীজ (চাও টোমে আৰু প্ৰিনচিপে)", @@ -479,8 +480,8 @@ "ru_UA": "ৰাছিয়ান (ইউক্ৰেইন)", "rw": "কিনয়াৰোৱাণ্ডা", "rw_RW": "কিনয়াৰোৱাণ্ডা (ৰোৱাণ্ডা)", - "sd": "সিন্ধি", - "sd_PK": "সিন্ধি (পাকিস্তান)", + "sd": "সিন্ধী", + "sd_PK": "সিন্ধী (পাকিস্তান)", "se": "উদীচ্য ছামি", "se_FI": "উদীচ্য ছামি (ফিনলেণ্ড)", "se_NO": "উদীচ্য ছামি (নৰৱে)", @@ -502,7 +503,7 @@ "so_SO": "ছোমালি (চোমালিয়া)", "sq": "আলবেনীয়", "sq_AL": "আলবেনীয় (আলবেনিয়া)", - "sq_MK": "আলবেনীয় (মেচিডোনীয়া)", + "sq_MK": "আলবেনীয় (উত্তৰ মেচিডোনীয়া)", "sq_XK": "আলবেনীয় (কচ’ভ’)", "sr": "ছাৰ্বিয়ান", "sr_BA": "ছাৰ্বিয়ান (ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", @@ -583,13 +584,13 @@ "zh_Hans": "চীনা (সৰলীকৃত)", "zh_Hans_CN": "চীনা (সৰলীকৃত, চীন)", "zh_Hans_HK": "চীনা (সৰলীকৃত, হং কং এছ. এ. আৰ. চীন)", - "zh_Hans_MO": "চীনা (সৰলীকৃত, মাকাউ এছ. এ. আৰ. চীন)", + "zh_Hans_MO": "চীনা (সৰলীকৃত, মাকাও এছ. এ. আৰ. চীন)", "zh_Hans_SG": "চীনা (সৰলীকৃত, ছিংগাপুৰ)", "zh_Hant": "চীনা (পৰম্পৰাগত)", "zh_Hant_HK": "চীনা (পৰম্পৰাগত, হং কং এছ. এ. আৰ. চীন)", - "zh_Hant_MO": "চীনা (পৰম্পৰাগত, মাকাউ এছ. এ. আৰ. চীন)", + "zh_Hant_MO": "চীনা (পৰম্পৰাগত, মাকাও এছ. এ. আৰ. চীন)", "zh_Hant_TW": "চীনা (পৰম্পৰাগত, টাইৱান)", - "zh_MO": "চীনা (মাকাউ এছ. এ. আৰ. চীন)", + "zh_MO": "চীনা (মাকাও এছ. এ. আৰ. চীন)", "zh_SG": "চীনা (ছিংগাপুৰ)", "zh_TW": "চীনা (টাইৱান)", "zu": "ঝুলু", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 7bb1baea5a9ef..21798adad2de0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -131,7 +131,7 @@ "en_GM": "ingilis (Qambiya)", "en_GU": "ingilis (Quam)", "en_GY": "ingilis (Qayana)", - "en_HK": "ingilis (Honq Konq Xüsusi İnzibati Ərazi Çin)", + "en_HK": "ingilis (Honq Konq Xüsusi İnzibati Rayonu Çin)", "en_IE": "ingilis (İrlandiya)", "en_IL": "ingilis (İsrail)", "en_IM": "ingilis (Men adası)", @@ -148,7 +148,7 @@ "en_LS": "ingilis (Lesoto)", "en_MG": "ingilis (Madaqaskar)", "en_MH": "ingilis (Marşal adaları)", - "en_MO": "ingilis (Makao Xüsusi İnzibati Ərazi Çin)", + "en_MO": "ingilis (Makao XİR Çin)", "en_MP": "ingilis (Şimali Marian adaları)", "en_MS": "ingilis (Monserat)", "en_MT": "ingilis (Malta)", @@ -306,6 +306,7 @@ "fy": "qərbi friz", "fy_NL": "qərbi friz (Niderland)", "ga": "irland", + "ga_GB": "irland (Birləşmiş Krallıq)", "ga_IE": "irland (İrlandiya)", "gd": "Şotlandiya keltcəsi", "gd_GB": "Şotlandiya keltcəsi (Birləşmiş Krallıq)", @@ -456,7 +457,7 @@ "pt_GQ": "portuqal (Ekvatorial Qvineya)", "pt_GW": "portuqal (Qvineya-Bisau)", "pt_LU": "portuqal (Lüksemburq)", - "pt_MO": "portuqal (Makao Xüsusi İnzibati Ərazi Çin)", + "pt_MO": "portuqal (Makao XİR Çin)", "pt_MZ": "portuqal (Mozambik)", "pt_PT": "portuqal (Portuqaliya)", "pt_ST": "portuqal (San-Tome və Prinsipi)", @@ -585,17 +586,17 @@ "yo_NG": "yoruba (Nigeriya)", "zh": "çin", "zh_CN": "çin (Çin)", - "zh_HK": "çin (Honq Konq Xüsusi İnzibati Ərazi Çin)", + "zh_HK": "çin (Honq Konq Xüsusi İnzibati Rayonu Çin)", "zh_Hans": "çin (sadələşmiş)", "zh_Hans_CN": "çin (sadələşmiş, Çin)", - "zh_Hans_HK": "çin (sadələşmiş, Honq Konq Xüsusi İnzibati Ərazi Çin)", - "zh_Hans_MO": "çin (sadələşmiş, Makao Xüsusi İnzibati Ərazi Çin)", + "zh_Hans_HK": "çin (sadələşmiş, Honq Konq Xüsusi İnzibati Rayonu Çin)", + "zh_Hans_MO": "çin (sadələşmiş, Makao XİR Çin)", "zh_Hans_SG": "çin (sadələşmiş, Sinqapur)", "zh_Hant": "çin (ənənəvi)", - "zh_Hant_HK": "çin (ənənəvi, Honq Konq Xüsusi İnzibati Ərazi Çin)", - "zh_Hant_MO": "çin (ənənəvi, Makao Xüsusi İnzibati Ərazi Çin)", + "zh_Hant_HK": "çin (ənənəvi, Honq Konq Xüsusi İnzibati Rayonu Çin)", + "zh_Hant_MO": "çin (ənənəvi, Makao XİR Çin)", "zh_Hant_TW": "çin (ənənəvi, Tayvan)", - "zh_MO": "çin (Makao Xüsusi İnzibati Ərazi Çin)", + "zh_MO": "çin (Makao XİR Çin)", "zh_SG": "çin (Sinqapur)", "zh_TW": "çin (Tayvan)", "zu": "zulu", 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 0f536580ca5c7..9a475a49320af 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -306,6 +306,7 @@ "fy": "гәрби фриз", "fy_NL": "гәрби фриз (Нидерланд)", "ga": "ирланд", + "ga_GB": "ирланд (Бирләшмиш Краллыг)", "ga_IE": "ирланд (Ирландија)", "gd": "шотланд келт", "gd_GB": "шотланд келт (Бирләшмиш Краллыг)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/be.json b/src/Symfony/Component/Intl/Resources/data/locales/be.json index 93bce3ee8cad2..87f6436ca2ef5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -179,7 +179,7 @@ "en_SL": "англійская (Сьера-Леонэ)", "en_SS": "англійская (Паўднёвы Судан)", "en_SX": "англійская (Сінт-Мартэн)", - "en_SZ": "англійская (Свазіленд)", + "en_SZ": "англійская (Эсватыні)", "en_TC": "англійская (Астравы Цёркс і Кайкас)", "en_TK": "англійская (Такелау)", "en_TO": "англійская (Тонга)", @@ -188,7 +188,7 @@ "en_TZ": "англійская (Танзанія)", "en_UG": "англійская (Уганда)", "en_UM": "англійская (Малыя Аддаленыя астравы ЗША)", - "en_US": "англійская (Злучаныя Штаты Амерыкі)", + "en_US": "англійская (Злучаныя Штаты)", "en_VC": "англійская (Сент-Вінсент і Грэнадзіны)", "en_VG": "англійская (Брытанскія Віргінскія астравы)", "en_VI": "англійская (Амерыканскія Віргінскія астравы)", @@ -208,7 +208,7 @@ "es_CR": "іспанская (Коста-Рыка)", "es_CU": "іспанская (Куба)", "es_DO": "іспанская (Дамініканская Рэспубліка)", - "es_EA": "іспанская (Сеўта і Мелілья)", + "es_EA": "іспанская (Сеута і Мелілья)", "es_EC": "іспанская (Эквадор)", "es_ES": "іспанская (Іспанія)", "es_GQ": "іспанская (Экватарыяльная Гвінея)", @@ -223,7 +223,7 @@ "es_PR": "іспанская (Пуэрта-Рыка)", "es_PY": "іспанская (Парагвай)", "es_SV": "іспанская (Сальвадор)", - "es_US": "іспанская (Злучаныя Штаты Амерыкі)", + "es_US": "іспанская (Злучаныя Штаты)", "es_UY": "іспанская (Уругвай)", "es_VE": "іспанская (Венесуэла)", "et": "эстонская", @@ -306,6 +306,7 @@ "fy": "заходняя фрызская", "fy_NL": "заходняя фрызская (Нідэрланды)", "ga": "ірландская", + "ga_GB": "ірландская (Вялікабрытанія)", "ga_IE": "ірландская (Ірландыя)", "gd": "шатландская гэльская", "gd_GB": "шатландская гэльская (Вялікабрытанія)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index 148d5292b1ee2..2b60d553713ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -179,7 +179,7 @@ "en_SL": "английски (Сиера Леоне)", "en_SS": "английски (Южен Судан)", "en_SX": "английски (Синт Мартен)", - "en_SZ": "английски (Свазиленд)", + "en_SZ": "английски (Есватини)", "en_TC": "английски (острови Търкс и Кайкос)", "en_TK": "английски (Токелау)", "en_TO": "английски (Тонга)", @@ -306,9 +306,10 @@ "fy": "западнофризийски", "fy_NL": "западнофризийски (Нидерландия)", "ga": "ирландски", + "ga_GB": "ирландски (Обединеното кралство)", "ga_IE": "ирландски (Ирландия)", - "gd": "шотландски галски", - "gd_GB": "шотландски галски (Обединеното кралство)", + "gd": "шотландски келтски", + "gd_GB": "шотландски келтски (Обединеното кралство)", "gl": "галисийски", "gl_ES": "галисийски (Испания)", "gu": "гуджарати", @@ -335,8 +336,8 @@ "id_ID": "индонезийски (Индонезия)", "ig": "игбо", "ig_NG": "игбо (Нигерия)", - "ii": "съчуански и", - "ii_CN": "съчуански и (Китай)", + "ii": "съчуански йи", + "ii_CN": "съчуански йи (Китай)", "is": "исландски", "is_IS": "исландски (Исландия)", "it": "италиански", @@ -433,9 +434,9 @@ "om_KE": "оромо (Кения)", "or": "ория", "or_IN": "ория (Индия)", - "os": "осетски", - "os_GE": "осетски (Грузия)", - "os_RU": "осетски (Русия)", + "os": "осетински", + "os_GE": "осетински (Грузия)", + "os_RU": "осетински (Русия)", "pa": "пенджабски", "pa_Arab": "пенджабски (арабска)", "pa_Arab_PK": "пенджабски (арабска, Пакистан)", @@ -591,10 +592,10 @@ "zh_Hans_HK": "китайски (опростена, Хонконг, САР на Китай)", "zh_Hans_MO": "китайски (опростена, Макао, САР на Китай)", "zh_Hans_SG": "китайски (опростена, Сингапур)", - "zh_Hant": "китайски (традиционен)", - "zh_Hant_HK": "китайски (традиционен, Хонконг, САР на Китай)", - "zh_Hant_MO": "китайски (традиционен, Макао, САР на Китай)", - "zh_Hant_TW": "китайски (традиционен, Тайван)", + "zh_Hant": "китайски (традиционна)", + "zh_Hant_HK": "китайски (традиционна, Хонконг, САР на Китай)", + "zh_Hant_MO": "китайски (традиционна, Макао, САР на Китай)", + "zh_Hant_TW": "китайски (традиционна, Тайван)", "zh_MO": "китайски (Макао, САР на Китай)", "zh_SG": "китайски (Сингапур)", "zh_TW": "китайски (Тайван)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index 2b2a5e92d0a50..df13bde8e0a2d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -306,6 +306,7 @@ "fy": "পশ্চিম ফ্রিসিয়ান", "fy_NL": "পশ্চিম ফ্রিসিয়ান (নেদারল্যান্ডস)", "ga": "আইরিশ", + "ga_GB": "আইরিশ (যুক্তরাজ্য)", "ga_IE": "আইরিশ (আয়ারল্যান্ড)", "gd": "স্কটস-গ্যেলিক", "gd_GB": "স্কটস-গ্যেলিক (যুক্তরাজ্য)", @@ -393,7 +394,7 @@ "mi": "মাওরি", "mi_NZ": "মাওরি (নিউজিল্যান্ড)", "mk": "ম্যাসিডোনীয়", - "mk_MK": "ম্যাসিডোনীয় (ম্যাসাডোনিয়া)", + "mk_MK": "ম্যাসিডোনীয় (উত্তর ম্যাসেডোনিয়া)", "ml": "মালায়ালাম", "ml_IN": "মালায়ালাম (ভারত)", "mn": "মঙ্গোলিয়", @@ -506,7 +507,7 @@ "so_SO": "সোমালি (সোমালিয়া)", "sq": "আলবেনীয়", "sq_AL": "আলবেনীয় (আলবেনিয়া)", - "sq_MK": "আলবেনীয় (ম্যাসাডোনিয়া)", + "sq_MK": "আলবেনীয় (উত্তর ম্যাসেডোনিয়া)", "sq_XK": "আলবেনীয় (কসোভো)", "sr": "সার্বীয়", "sr_BA": "সার্বীয় (বসনিয়া ও হার্জেগোভিনা)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index ce81836a97850..4368007e71842 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -179,7 +179,7 @@ "en_SL": "saozneg (Sierra Leone)", "en_SS": "saozneg (Susoudan)", "en_SX": "saozneg (Sint Maarten)", - "en_SZ": "saozneg (Swaziland)", + "en_SZ": "saozneg (Eswatini)", "en_TC": "saozneg (Inizi Turks ha Caicos)", "en_TK": "saozneg (Tokelau)", "en_TO": "saozneg (Tonga)", @@ -306,6 +306,7 @@ "fy": "frizeg ar Cʼhornôg", "fy_NL": "frizeg ar Cʼhornôg (Izelvroioù)", "ga": "iwerzhoneg", + "ga_GB": "iwerzhoneg (Rouantelezh-Unanet)", "ga_IE": "iwerzhoneg (Iwerzhon)", "gd": "skoseg", "gd_GB": "skoseg (Rouantelezh-Unanet)", @@ -393,7 +394,7 @@ "mi": "maori", "mi_NZ": "maori (Zeland-Nevez)", "mk": "makedoneg", - "mk_MK": "makedoneg (Makedonia)", + "mk_MK": "makedoneg (Makedonia an Norzh)", "ml": "malayalam", "ml_IN": "malayalam (India)", "mn": "mongoleg", @@ -506,7 +507,7 @@ "so_SO": "somali (Somalia)", "sq": "albaneg", "sq_AL": "albaneg (Albania)", - "sq_MK": "albaneg (Makedonia)", + "sq_MK": "albaneg (Makedonia an Norzh)", "sq_XK": "albaneg (Kosovo)", "sr": "serbeg", "sr_BA": "serbeg (Bosnia ha Herzegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs.json b/src/Symfony/Component/Intl/Resources/data/locales/bs.json index 8c2cdaf40e309..e766cf62a9f9a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -73,7 +73,7 @@ "cs": "češki", "cs_CZ": "češki (Češka)", "cy": "velški", - "cy_GB": "velški (Velika Britanija)", + "cy_GB": "velški (Ujedinjeno Kraljevstvo)", "da": "danski", "da_DK": "danski (Danska)", "da_GL": "danski (Grenland)", @@ -123,7 +123,7 @@ "en_FJ": "engleski (Fidži)", "en_FK": "engleski (Folklandska ostrva)", "en_FM": "engleski (Mikronezija)", - "en_GB": "engleski (Velika Britanija)", + "en_GB": "engleski (Ujedinjeno Kraljevstvo)", "en_GD": "engleski (Grenada)", "en_GG": "engleski (Gernzi)", "en_GH": "engleski (Gana)", @@ -179,7 +179,7 @@ "en_SL": "engleski (Sijera Leone)", "en_SS": "engleski (Južni Sudan)", "en_SX": "engleski (Sint Marten)", - "en_SZ": "engleski (Svazilend)", + "en_SZ": "engleski (Esvatini)", "en_TC": "engleski (Ostrva Turks i Kaikos)", "en_TK": "engleski (Tokelau)", "en_TO": "engleski (Tonga)", @@ -188,7 +188,7 @@ "en_TZ": "engleski (Tanzanija)", "en_UG": "engleski (Uganda)", "en_UM": "engleski (Američka Vanjska Ostrva)", - "en_US": "engleski (Sjedinjene Američke Države)", + "en_US": "engleski (Sjedinjene Države)", "en_VC": "engleski (Sveti Vinsent i Grenadin)", "en_VG": "engleski (Britanska Djevičanska ostrva)", "en_VI": "engleski (Američka Djevičanska ostrva)", @@ -223,7 +223,7 @@ "es_PR": "španski (Porto Riko)", "es_PY": "španski (Paragvaj)", "es_SV": "španski (Salvador)", - "es_US": "španski (Sjedinjene Američke Države)", + "es_US": "španski (Sjedinjene Države)", "es_UY": "španski (Urugvaj)", "es_VE": "španski (Venecuela)", "et": "estonski", @@ -306,9 +306,10 @@ "fy": "zapadni frizijski", "fy_NL": "zapadni frizijski (Holandija)", "ga": "irski", + "ga_GB": "irski (Ujedinjeno Kraljevstvo)", "ga_IE": "irski (Irska)", "gd": "škotski galski", - "gd_GB": "škotski galski (Velika Britanija)", + "gd_GB": "škotski galski (Ujedinjeno Kraljevstvo)", "gl": "galicijski", "gl_ES": "galicijski (Španija)", "gu": "gudžarati", @@ -368,7 +369,7 @@ "ku": "kurdski", "ku_TR": "kurdski (Turska)", "kw": "kornski", - "kw_GB": "kornski (Velika Britanija)", + "kw_GB": "kornski (Ujedinjeno Kraljevstvo)", "ky": "kirgiški", "ky_KG": "kirgiški (Kirgistan)", "lb": "luksemburški", @@ -431,8 +432,8 @@ "om": "oromo", "om_ET": "oromo (Etiopija)", "om_KE": "oromo (Kenija)", - "or": "orijski", - "or_IN": "orijski (Indija)", + "or": "odija", + "or_IN": "odija (Indija)", "os": "osetski", "os_GE": "osetski (Gruzija)", "os_RU": "osetski (Rusija)", 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 4c2fa4de02602..f8abea8201d6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -1,8 +1,8 @@ { "Names": { - "af": "африканерски", - "af_NA": "африканерски (Намибија)", - "af_ZA": "африканерски (Јужноафричка Република)", + "af": "африканс", + "af_NA": "африканс (Намибија)", + "af_ZA": "африканс (Јужноафричка Република)", "ak": "акан", "ak_GH": "акан (Гана)", "am": "амхарски", @@ -49,9 +49,9 @@ "bg_BG": "бугарски (Бугарска)", "bm": "бамбара", "bm_ML": "бамбара (Мали)", - "bn": "бенгласки", - "bn_BD": "бенгласки (Бангладеш)", - "bn_IN": "бенгласки (Индија)", + "bn": "бенгалски", + "bn_BD": "бенгалски (Бангладеш)", + "bn_IN": "бенгалски (Индија)", "bo": "тибетански", "bo_CN": "тибетански (Кина)", "bo_IN": "тибетански (Индија)", @@ -106,7 +106,7 @@ "en_BM": "енглески (Бермуди)", "en_BS": "енглески (Бахами)", "en_BW": "енглески (Боцвана)", - "en_BZ": "енглески (Белиз)", + "en_BZ": "енглески (Белизе)", "en_CA": "енглески (Канада)", "en_CC": "енглески (Кокос [Келинг] Острва)", "en_CH": "енглески (Швицарска)", @@ -121,7 +121,7 @@ "en_ER": "енглески (Еритреја)", "en_FI": "енглески (Финска)", "en_FJ": "енглески (Фиџи)", - "en_FK": "енглески (Фокландска острва)", + "en_FK": "енглески (Фокландска Острва)", "en_FM": "енглески (Микронезија)", "en_GB": "енглески (Уједињено Краљевство)", "en_GD": "енглески (Гренада)", @@ -131,7 +131,7 @@ "en_GM": "енглески (Гамбија)", "en_GU": "енглески (Гуам)", "en_GY": "енглески (Гвајана)", - "en_HK": "енглески (Хонг Конг [САР Кина])", + "en_HK": "енглески (Хонг Конг С. А. Р.)", "en_IE": "енглески (Ирска)", "en_IL": "енглески (Израел)", "en_IM": "енглески (Острво Мен)", @@ -141,15 +141,15 @@ "en_JM": "енглески (Јамајка)", "en_KE": "енглески (Кенија)", "en_KI": "енглески (Кирибати)", - "en_KN": "енглески (Свети Кристофор и Невис)", + "en_KN": "енглески (Свети Китс и Невис)", "en_KY": "енглески (Кајманска острва)", "en_LC": "енглески (Света Луција)", "en_LR": "енглески (Либерија)", "en_LS": "енглески (Лесото)", "en_MG": "енглески (Мадагаскар)", "en_MH": "енглески (Маршалска Острва)", - "en_MO": "енглески (Макао [САР Кина])", - "en_MP": "енглески (Сјеверна Маријанска острва)", + "en_MO": "енглески (Макао С. А. Р.)", + "en_MP": "енглески (Сјеверна Маријанска Острва)", "en_MS": "енглески (Монсерат)", "en_MT": "енглески (Малта)", "en_MU": "енглески (Маурицијус)", @@ -178,8 +178,8 @@ "en_SI": "енглески (Словенија)", "en_SL": "енглески (Сијера Леоне)", "en_SS": "енглески (Јужни Судан)", - "en_SX": "енглески (Sint Marten)", - "en_SZ": "енглески (Свази)", + "en_SX": "енглески (Свети Мартин [Холандија])", + "en_SZ": "енглески (Есватини)", "en_TC": "енглески (Туркс и Кајкос Острва)", "en_TK": "енглески (Токелау)", "en_TO": "енглески (Тонга)", @@ -202,7 +202,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", - "es_BZ": "шпански (Белиз)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -211,7 +211,7 @@ "es_EA": "шпански (Сеута и Мелиља)", "es_EC": "шпански (Еквадор)", "es_ES": "шпански (Шпанија)", - "es_GQ": "шпански (Екваторска Гвинеја)", + "es_GQ": "шпански (Екваторијална Гвинеја)", "es_GT": "шпански (Гватемала)", "es_HN": "шпански (Хондурас)", "es_IC": "шпански (Канарска острва)", @@ -264,10 +264,10 @@ "fr_BL": "француски (Свети Бартоломеј)", "fr_CA": "француски (Канада)", "fr_CD": "француски (Демократска Република Конго)", - "fr_CF": "француски (Средњоафричка Република)", + "fr_CF": "француски (Централноафричка Република)", "fr_CG": "француски (Конго)", "fr_CH": "француски (Швицарска)", - "fr_CI": "француски (Обала Слоноваче)", + "fr_CI": "француски (Обала Слоноваче [Кот д’Ивоар])", "fr_CM": "француски (Камерун)", "fr_DJ": "француски (Џибути)", "fr_DZ": "француски (Алжир)", @@ -276,7 +276,7 @@ "fr_GF": "француски (Француска Гвајана)", "fr_GN": "француски (Гвинеја)", "fr_GP": "француски (Гваделупе)", - "fr_GQ": "француски (Екваторска Гвинеја)", + "fr_GQ": "француски (Екваторијална Гвинеја)", "fr_HT": "француски (Хаити)", "fr_KM": "француски (Комори)", "fr_LU": "француски (Луксембург)", @@ -303,9 +303,10 @@ "fr_VU": "француски (Вануату)", "fr_WF": "француски (Валис и Футуна)", "fr_YT": "француски (Мајоте)", - "fy": "фризијски", - "fy_NL": "фризијски (Холандија)", + "fy": "западни фризијски", + "fy_NL": "западни фризијски (Холандија)", "ga": "ирски", + "ga_GB": "ирски (Уједињено Краљевство)", "ga_IE": "ирски (Ирска)", "gd": "шкотски галски", "gd_GB": "шкотски галски (Уједињено Краљевство)", @@ -328,15 +329,15 @@ "hr_HR": "хрватски (Хрватска)", "hu": "мађарски", "hu_HU": "мађарски (Мађарска)", - "hy": "ерменски", - "hy_AM": "ерменски (Ерменија)", + "hy": "јерменски", + "hy_AM": "јерменски (Арменија)", "ia": "интерлингва", "id": "индонежански", "id_ID": "индонежански (Индонезија)", "ig": "игбо", "ig_NG": "игбо (Нигерија)", - "ii": "сичуан ји", - "ii_CN": "сичуан ји (Кина)", + "ii": "сечуан ји", + "ii_CN": "сечуан ји (Кина)", "is": "исландски", "is_IS": "исландски (Исланд)", "it": "италијански", @@ -352,8 +353,8 @@ "ka_GE": "грузијски (Грузија)", "ki": "кикују", "ki_KE": "кикују (Кенија)", - "kk": "козачки", - "kk_KZ": "козачки (Казахстан)", + "kk": "казашки", + "kk_KZ": "казашки (Казахстан)", "kl": "калалисут", "kl_GL": "калалисут (Гренланд)", "km": "кмерски", @@ -378,7 +379,7 @@ "ln": "лингала", "ln_AO": "лингала (Ангола)", "ln_CD": "лингала (Демократска Република Конго)", - "ln_CF": "лингала (Средњоафричка Република)", + "ln_CF": "лингала (Централноафричка Република)", "ln_CG": "лингала (Конго)", "lo": "лаоски", "lo_LA": "лаоски (Лаос)", @@ -404,8 +405,8 @@ "ms_BN": "малајски (Брунеј)", "ms_MY": "малајски (Малезија)", "ms_SG": "малајски (Сингапур)", - "mt": "мелтешки", - "mt_MT": "мелтешки (Малта)", + "mt": "малтешки", + "mt_MT": "малтешки (Малта)", "my": "бурмански", "my_MM": "бурмански (Мјанмар)", "nb": "норвешки бокмал", @@ -423,26 +424,26 @@ "nl_CW": "холандски (Курасао)", "nl_NL": "холандски (Холандија)", "nl_SR": "холандски (Суринам)", - "nl_SX": "холандски (Sint Marten)", - "nn": "норвешки њорск", - "nn_NO": "норвешки њорск (Норвешка)", + "nl_SX": "холандски (Свети Мартин [Холандија])", + "nn": "норвешки нинорск", + "nn_NO": "норвешки нинорск (Норвешка)", "no": "норвешки", "no_NO": "норвешки (Норвешка)", "om": "оромо", "om_ET": "оромо (Етиопија)", "om_KE": "оромо (Кенија)", - "or": "оријски", - "or_IN": "оријски (Индија)", + "or": "одија", + "or_IN": "одија (Индија)", "os": "осетски", "os_GE": "осетски (Грузија)", "os_RU": "осетски (Русија)", - "pa": "панџабски", - "pa_Arab": "панџабски (арапско писмо)", - "pa_Arab_PK": "панџабски (арапско писмо, Пакистан)", - "pa_Guru": "панџабски (гурмуки писмо)", - "pa_Guru_IN": "панџабски (гурмуки писмо, Индија)", - "pa_IN": "панџабски (Индија)", - "pa_PK": "панџабски (Пакистан)", + "pa": "пенџапски", + "pa_Arab": "пенџапски (арапско писмо)", + "pa_Arab_PK": "пенџапски (арапско писмо, Пакистан)", + "pa_Guru": "пенџапски (гурмуки писмо)", + "pa_Guru_IN": "пенџапски (гурмуки писмо, Индија)", + "pa_IN": "пенџапски (Индија)", + "pa_PK": "пенџапски (Пакистан)", "pl": "пољски", "pl_PL": "пољски (Пољска)", "ps": "паштунски", @@ -453,14 +454,14 @@ "pt_BR": "португалски (Бразил)", "pt_CH": "португалски (Швицарска)", "pt_CV": "португалски (Зеленортска Острва)", - "pt_GQ": "португалски (Екваторска Гвинеја)", + "pt_GQ": "португалски (Екваторијална Гвинеја)", "pt_GW": "португалски (Гвинеја-Бисау)", "pt_LU": "португалски (Луксембург)", - "pt_MO": "португалски (Макао [САР Кина])", + "pt_MO": "португалски (Макао С. А. Р.)", "pt_MZ": "португалски (Мозамбик)", "pt_PT": "португалски (Португал)", - "pt_ST": "португалски (Свети Тома и Принцип)", - "pt_TL": "португалски (Источни Тимор)", + "pt_ST": "португалски (Сао Томе и Принципе)", + "pt_TL": "португалски (Тимор-Лесте)", "qu": "квенча", "qu_BO": "квенча (Боливија)", "qu_EC": "квенча (Еквадор)", @@ -488,11 +489,11 @@ "se_NO": "сјеверни сами (Норвешка)", "se_SE": "сјеверни сами (Шведска)", "sg": "санго", - "sg_CF": "санго (Средњоафричка Република)", + "sg_CF": "санго (Централноафричка Република)", "sh": "српскохрватски", "sh_BA": "српскохрватски (Босна и Херцеговина)", - "si": "сингалески", - "si_LK": "сингалески (Шри Ланка)", + "si": "синхалски", + "si_LK": "синхалски (Шри Ланка)", "sk": "словачки", "sk_SK": "словачки (Словачка)", "sl": "словенски", @@ -539,8 +540,8 @@ "ta_SG": "тамилски (Сингапур)", "te": "телугу", "te_IN": "телугу (Индија)", - "tg": "тађик", - "tg_TJ": "тађик (Таџикистан)", + "tg": "таџички", + "tg_TJ": "таџички (Таџикистан)", "th": "тајландски", "th_TH": "тајландски (Тајланд)", "ti": "тигриња", @@ -577,25 +578,25 @@ "vi_VN": "вијетнамски (Вијетнам)", "wo": "волоф", "wo_SN": "волоф (Сенегал)", - "xh": "ксхоса", - "xh_ZA": "ксхоса (Јужноафричка Република)", + "xh": "коса", + "xh_ZA": "коса (Јужноафричка Република)", "yi": "јидиш", "yo": "јоруба", "yo_BJ": "јоруба (Бенин)", "yo_NG": "јоруба (Нигерија)", "zh": "кинески", "zh_CN": "кинески (Кина)", - "zh_HK": "кинески (Хонг Конг [САР Кина])", - "zh_Hans": "кинески (поједностављено кинеско писмо)", - "zh_Hans_CN": "кинески (поједностављено кинеско писмо, Кина)", - "zh_Hans_HK": "кинески (поједностављено кинеско писмо, Хонг Конг [САР Кина])", - "zh_Hans_MO": "кинески (поједностављено кинеско писмо, Макао [САР Кина])", - "zh_Hans_SG": "кинески (поједностављено кинеско писмо, Сингапур)", - "zh_Hant": "кинески (традиционално кинеско писмо)", - "zh_Hant_HK": "кинески (традиционално кинеско писмо, Хонг Конг [САР Кина])", - "zh_Hant_MO": "кинески (традиционално кинеско писмо, Макао [САР Кина])", - "zh_Hant_TW": "кинески (традиционално кинеско писмо, Тајван)", - "zh_MO": "кинески (Макао [САР Кина])", + "zh_HK": "кинески (Хонг Конг С. А. Р.)", + "zh_Hans": "кинески (поједностављени)", + "zh_Hans_CN": "кинески (поједностављени, Кина)", + "zh_Hans_HK": "кинески (поједностављени, Хонг Конг С. А. Р.)", + "zh_Hans_MO": "кинески (поједностављени, Макао С. А. Р.)", + "zh_Hans_SG": "кинески (поједностављени, Сингапур)", + "zh_Hant": "кинески (традиционални)", + "zh_Hant_HK": "кинески (традиционални, Хонг Конг С. А. Р.)", + "zh_Hant_MO": "кинески (традиционални, Макао С. А. Р.)", + "zh_Hant_TW": "кинески (традиционални, Тајван)", + "zh_MO": "кинески (Макао С. А. Р.)", "zh_SG": "кинески (Сингапур)", "zh_TW": "кинески (Тајван)", "zu": "зулу", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index 3c8da59711078..6f1d2a3d3d505 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -25,7 +25,7 @@ "ar_MA": "àrab (Marroc)", "ar_MR": "àrab (Mauritània)", "ar_OM": "àrab (Oman)", - "ar_PS": "àrab (territoris palestins)", + "ar_PS": "àrab (Territoris palestins)", "ar_QA": "àrab (Qatar)", "ar_SA": "àrab (Aràbia Saudita)", "ar_SD": "àrab (Sudan)", @@ -50,7 +50,7 @@ "bm": "bambara", "bm_ML": "bambara (Mali)", "bn": "bengalí", - "bn_BD": "bengalí (Bangla Desh)", + "bn_BD": "bengalí (Bangladesh)", "bn_IN": "bengalí (Índia)", "bo": "tibetà", "bo_CN": "tibetà (Xina)", @@ -76,7 +76,7 @@ "cy_GB": "gal·lès (Regne Unit)", "da": "danès", "da_DK": "danès (Dinamarca)", - "da_GL": "danès (Grenlàndia)", + "da_GL": "danès (Groenlàndia)", "de": "alemany", "de_AT": "alemany (Àustria)", "de_BE": "alemany (Bèlgica)", @@ -267,7 +267,7 @@ "fr_CF": "francès (República Centreafricana)", "fr_CG": "francès (Congo - Brazzaville)", "fr_CH": "francès (Suïssa)", - "fr_CI": "francès (Costa d’Ivori)", + "fr_CI": "francès (Côte d’Ivoire)", "fr_CM": "francès (Camerun)", "fr_DJ": "francès (Djibouti)", "fr_DZ": "francès (Algèria)", @@ -306,6 +306,7 @@ "fy": "frisó occidental", "fy_NL": "frisó occidental (Països Baixos)", "ga": "irlandès", + "ga_GB": "irlandès (Regne Unit)", "ga_IE": "irlandès (Irlanda)", "gd": "gaèlic escocès", "gd_GB": "gaèlic escocès (Regne Unit)", @@ -355,7 +356,7 @@ "kk": "kazakh", "kk_KZ": "kazakh (Kazakhstan)", "kl": "grenlandès", - "kl_GL": "grenlandès (Grenlàndia)", + "kl_GL": "grenlandès (Groenlàndia)", "km": "khmer", "km_KH": "khmer (Cambodja)", "kn": "kannada", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ce.json b/src/Symfony/Component/Intl/Resources/data/locales/ce.json index e27708519d8e2..cd54e4e769ea0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ce.json @@ -306,6 +306,7 @@ "fy": "малхбузен-фризийн", "fy_NL": "малхбузен-фризийн (Нидерландаш)", "ga": "ирландхойн", + "ga_GB": "ирландхойн (Йоккха Британи)", "ga_IE": "ирландхойн (Ирланди)", "gd": "гэлийн", "gd_GB": "гэлийн (Йоккха Британи)", @@ -393,7 +394,6 @@ "mi": "маори", "mi_NZ": "маори (Керла Зеланди)", "mk": "македонхойн", - "mk_MK": "македонхойн (Македони)", "ml": "малаялам", "ml_IN": "малаялам (ХӀинди)", "mn": "монголийн", @@ -502,7 +502,6 @@ "so_SO": "сомали (Сомали)", "sq": "албанойн", "sq_AL": "албанойн (Албани)", - "sq_MK": "албанойн (Македони)", "sq_XK": "албанойн (Косово)", "sr": "сербийн", "sr_BA": "сербийн (Босни а, Герцеговина а)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index 7411d36fc1a3c..e1c2f621a10e9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -306,6 +306,7 @@ "fy": "fríština [západní]", "fy_NL": "fríština [západní] (Nizozemsko)", "ga": "irština", + "ga_GB": "irština (Spojené království)", "ga_IE": "irština (Irsko)", "gd": "skotská gaelština", "gd_GB": "skotská gaelština (Spojené království)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index 4f9bb3c1bae62..c29cf7d8fce60 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -58,11 +58,11 @@ "br": "Llydaweg", "br_FR": "Llydaweg (Ffrainc)", "bs": "Bosnieg", - "bs_BA": "Bosnieg (Bosnia & Herzegovina)", + "bs_BA": "Bosnieg (Bosnia a Herzegovina)", "bs_Cyrl": "Bosnieg (Cyrilig)", - "bs_Cyrl_BA": "Bosnieg (Cyrilig, Bosnia & Herzegovina)", + "bs_Cyrl_BA": "Bosnieg (Cyrilig, Bosnia a Herzegovina)", "bs_Latn": "Bosnieg (Lladin)", - "bs_Latn_BA": "Bosnieg (Lladin, Bosnia & Herzegovina)", + "bs_Latn_BA": "Bosnieg (Lladin, Bosnia a Herzegovina)", "ca": "Catalaneg", "ca_AD": "Catalaneg (Andorra)", "ca_ES": "Catalaneg (Sbaen)", @@ -306,6 +306,7 @@ "fy": "Ffriseg y Gorllewin", "fy_NL": "Ffriseg y Gorllewin (Yr Iseldiroedd)", "ga": "Gwyddeleg", + "ga_GB": "Gwyddeleg (Y Deyrnas Unedig)", "ga_IE": "Gwyddeleg (Iwerddon)", "gd": "Gaeleg yr Alban", "gd_GB": "Gaeleg yr Alban (Y Deyrnas Unedig)", @@ -324,7 +325,7 @@ "hi": "Hindi", "hi_IN": "Hindi (India)", "hr": "Croateg", - "hr_BA": "Croateg (Bosnia & Herzegovina)", + "hr_BA": "Croateg (Bosnia a Herzegovina)", "hr_HR": "Croateg (Croatia)", "hu": "Hwngareg", "hu_HU": "Hwngareg (Hwngari)", @@ -490,7 +491,7 @@ "sg": "Sango", "sg_CF": "Sango (Gweriniaeth Canolbarth Affrica)", "sh": "Serbo-Croateg", - "sh_BA": "Serbo-Croateg (Bosnia & Herzegovina)", + "sh_BA": "Serbo-Croateg (Bosnia a Herzegovina)", "si": "Sinhaleg", "si_LK": "Sinhaleg (Sri Lanka)", "sk": "Slofaceg", @@ -509,14 +510,14 @@ "sq_MK": "Albaneg (Gogledd Macedonia)", "sq_XK": "Albaneg (Kosovo)", "sr": "Serbeg", - "sr_BA": "Serbeg (Bosnia & Herzegovina)", + "sr_BA": "Serbeg (Bosnia a Herzegovina)", "sr_Cyrl": "Serbeg (Cyrilig)", - "sr_Cyrl_BA": "Serbeg (Cyrilig, Bosnia & Herzegovina)", + "sr_Cyrl_BA": "Serbeg (Cyrilig, Bosnia a Herzegovina)", "sr_Cyrl_ME": "Serbeg (Cyrilig, Montenegro)", "sr_Cyrl_RS": "Serbeg (Cyrilig, Serbia)", "sr_Cyrl_XK": "Serbeg (Cyrilig, Kosovo)", "sr_Latn": "Serbeg (Lladin)", - "sr_Latn_BA": "Serbeg (Lladin, Bosnia & Herzegovina)", + "sr_Latn_BA": "Serbeg (Lladin, Bosnia a Herzegovina)", "sr_Latn_ME": "Serbeg (Lladin, Montenegro)", "sr_Latn_RS": "Serbeg (Lladin, Serbia)", "sr_Latn_XK": "Serbeg (Lladin, Kosovo)", @@ -546,8 +547,8 @@ "ti": "Tigrinya", "ti_ER": "Tigrinya (Eritrea)", "ti_ET": "Tigrinya (Ethiopia)", - "tk": "Twrcmeneg", - "tk_TM": "Twrcmeneg (Turkmenistan)", + "tk": "Tyrcmeneg", + "tk_TM": "Tyrcmeneg (Turkmenistan)", "tl": "Tagalog", "tl_PH": "Tagalog (Y Philipinau)", "to": "Tongeg", @@ -583,21 +584,21 @@ "yo": "Iorwba", "yo_BJ": "Iorwba (Benin)", "yo_NG": "Iorwba (Nigeria)", - "zh": "Tsieineeg", - "zh_CN": "Tsieineeg (Tsieina)", - "zh_HK": "Tsieineeg (Hong Kong SAR Tseina)", - "zh_Hans": "Tsieineeg (Symledig)", - "zh_Hans_CN": "Tsieineeg (Symledig, Tsieina)", - "zh_Hans_HK": "Tsieineeg (Symledig, Hong Kong SAR Tseina)", - "zh_Hans_MO": "Tsieineeg (Symledig, Macau RhGA Tsieina)", - "zh_Hans_SG": "Tsieineeg (Symledig, Singapore)", - "zh_Hant": "Tsieineeg (Traddodiadol)", - "zh_Hant_HK": "Tsieineeg (Traddodiadol, Hong Kong SAR Tseina)", - "zh_Hant_MO": "Tsieineeg (Traddodiadol, Macau RhGA Tsieina)", - "zh_Hant_TW": "Tsieineeg (Traddodiadol, Taiwan)", - "zh_MO": "Tsieineeg (Macau RhGA Tsieina)", - "zh_SG": "Tsieineeg (Singapore)", - "zh_TW": "Tsieineeg (Taiwan)", + "zh": "Tsieinëeg", + "zh_CN": "Tsieinëeg (Tsieina)", + "zh_HK": "Tsieinëeg (Hong Kong SAR Tseina)", + "zh_Hans": "Tsieinëeg (Symledig)", + "zh_Hans_CN": "Tsieinëeg (Symledig, Tsieina)", + "zh_Hans_HK": "Tsieinëeg (Symledig, Hong Kong SAR Tseina)", + "zh_Hans_MO": "Tsieinëeg (Symledig, Macau RhGA Tsieina)", + "zh_Hans_SG": "Tsieinëeg (Symledig, Singapore)", + "zh_Hant": "Tsieinëeg (Traddodiadol)", + "zh_Hant_HK": "Tsieinëeg (Traddodiadol, Hong Kong SAR Tseina)", + "zh_Hant_MO": "Tsieinëeg (Traddodiadol, Macau RhGA Tsieina)", + "zh_Hant_TW": "Tsieinëeg (Traddodiadol, Taiwan)", + "zh_MO": "Tsieinëeg (Macau RhGA Tsieina)", + "zh_SG": "Tsieinëeg (Singapore)", + "zh_TW": "Tsieinëeg (Taiwan)", "zu": "Swlw", "zu_ZA": "Swlw (De Affrica)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/da.json b/src/Symfony/Component/Intl/Resources/data/locales/da.json index a9a8efccf6510..38a925da00416 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -136,7 +136,7 @@ "en_IL": "engelsk (Israel)", "en_IM": "engelsk (Isle of Man)", "en_IN": "engelsk (Indien)", - "en_IO": "engelsk (Det britiske territorium i Det Indiske Ocean)", + "en_IO": "engelsk (Det Britiske Territorium i Det Indiske Ocean)", "en_JE": "engelsk (Jersey)", "en_JM": "engelsk (Jamaica)", "en_KE": "engelsk (Kenya)", @@ -306,6 +306,7 @@ "fy": "vestfrisisk", "fy_NL": "vestfrisisk (Holland)", "ga": "irsk", + "ga_GB": "irsk (Storbritannien)", "ga_IE": "irsk (Irland)", "gd": "skotsk gælisk", "gd_GB": "skotsk gælisk (Storbritannien)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de.json b/src/Symfony/Component/Intl/Resources/data/locales/de.json index ce3037d71cbcf..d43a25ef4e046 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -179,7 +179,7 @@ "en_SL": "Englisch (Sierra Leone)", "en_SS": "Englisch (Südsudan)", "en_SX": "Englisch (Sint Maarten)", - "en_SZ": "Englisch (Swasiland)", + "en_SZ": "Englisch (Eswatini)", "en_TC": "Englisch (Turks- und Caicosinseln)", "en_TK": "Englisch (Tokelau)", "en_TO": "Englisch (Tonga)", @@ -306,6 +306,7 @@ "fy": "Westfriesisch", "fy_NL": "Westfriesisch (Niederlande)", "ga": "Irisch", + "ga_GB": "Irisch (Vereinigtes Königreich)", "ga_IE": "Irisch (Irland)", "gd": "Schottisches Gälisch", "gd_GB": "Schottisches Gälisch (Vereinigtes Königreich)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json b/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json index 5e0bcb8ded017..9bc7652810ac0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json @@ -7,6 +7,7 @@ "en_GB": "Englisch (Grossbritannien)", "en_SB": "Englisch (Salomon-Inseln)", "en_ZW": "Englisch (Zimbabwe)", + "ga_GB": "Irisch (Grossbritannien)", "gd_GB": "Schottisches Gälisch (Grossbritannien)", "kw_GB": "Kornisch (Grossbritannien)", "ms_BN": "Malaiisch (Brunei)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index 4215e6618b716..86257d7dd80be 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -277,6 +277,7 @@ "fy": "ནུབ་ཕྼི་སི་ཡན་ཁ", "fy_NL": "ནུབ་ཕྼི་སི་ཡན་ཁ། (ནེ་དར་ལནཌས྄།)", "ga": "ཨཱའི་རིཤ་ཁ", + "ga_GB": "ཨཱའི་རིཤ་ཁ། (ཡུ་ནཱའི་ཊེཌ་ ཀིང་ཌམ།)", "ga_IE": "ཨཱའི་རིཤ་ཁ། (ཨཱ་ཡ་ལེནཌ།)", "gl": "གལ་ཨིས་ཨི་ཡན་ཁ", "gl_ES": "གལ་ཨིས་ཨི་ཡན་ཁ། (ཨིས་པེན།)", @@ -342,7 +343,6 @@ "mi": "མ་ཨོ་རི་ཁ", "mi_NZ": "མ་ཨོ་རི་ཁ། (ནིའུ་ཛི་ལེནཌ།)", "mk": "མ་སེ་ཌོ་ནི་ཡཱན་ཁ", - "mk_MK": "མ་སེ་ཌོ་ནི་ཡཱན་ཁ། (མ་སེ་ཌོ་ནི་ཡ།)", "ml": "མ་ལ་ཡ་ལམ་ཁ", "ml_IN": "མ་ལ་ཡ་ལམ་ཁ། (རྒྱ་གར།)", "mr": "མ་ར་ཐི་ཁ", @@ -431,7 +431,6 @@ "so_SO": "སོ་མ་ལི་ཁ། (སོ་མ་ལི་ཡ།)", "sq": "ཨཱལ་བེ་ནི་ཡཱན་ཁ", "sq_AL": "ཨཱལ་བེ་ནི་ཡཱན་ཁ། (ཨཱལ་བེ་ནི་ཡ།)", - "sq_MK": "ཨཱལ་བེ་ནི་ཡཱན་ཁ། (མ་སེ་ཌོ་ནི་ཡ།)", "sr": "སཱར་བྷི་ཡཱན་ཁ", "sr_BA": "སཱར་བྷི་ཡཱན་ཁ། (བྷོས་ནི་ཡ་ ཨེནཌ་ ཧར་ཛི་གྷོ་བི་ན།)", "sr_Cyrl": "སཱར་བྷི་ཡཱན་ཁ། (སིརིལ་ལིཀ་ཡིག་གུ།)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ee.json b/src/Symfony/Component/Intl/Resources/data/locales/ee.json index b347347502b80..f502513b5a9c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -278,6 +278,7 @@ "fr_WF": "Fransegbe (Wallis kple Futuna nutome)", "fr_YT": "Fransegbe (Mayotte nutome)", "ga": "irelanɖgbe", + "ga_GB": "irelanɖgbe (United Kingdom nutome)", "ga_IE": "irelanɖgbe (Ireland nutome)", "gl": "galatagbe", "gl_ES": "galatagbe (Spain nutome)", @@ -348,7 +349,6 @@ "mi": "maorgbe", "mi_NZ": "maorgbe (New Zealand nutome)", "mk": "makedoniagbe", - "mk_MK": "makedoniagbe (Makedonia nutome)", "ml": "malayagbe", "ml_IN": "malayagbe (India nutome)", "mn": "mongoliagbe", @@ -455,7 +455,6 @@ "so_SO": "somaliagbe (Somalia nutome)", "sq": "albaniagbe", "sq_AL": "albaniagbe (Albania nutome)", - "sq_MK": "albaniagbe (Makedonia nutome)", "sr": "serbiagbe", "sr_BA": "serbiagbe (Bosnia kple Herzergovina nutome)", "sr_Cyrl": "serbiagbe (Cyrillicgbeŋɔŋlɔ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index 42be1488cb1a7..14489611735be 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -306,6 +306,7 @@ "fy": "Δυτικά Φριζικά", "fy_NL": "Δυτικά Φριζικά (Ολλανδία)", "ga": "Ιρλανδικά", + "ga_GB": "Ιρλανδικά (Ηνωμένο Βασίλειο)", "ga_IE": "Ιρλανδικά (Ιρλανδία)", "gd": "Σκωτικά Κελτικά", "gd_GB": "Σκωτικά Κελτικά (Ηνωμένο Βασίλειο)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index 61a170660dcc8..8bead378d10c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -306,6 +306,7 @@ "fy": "Western Frisian", "fy_NL": "Western Frisian (Netherlands)", "ga": "Irish", + "ga_GB": "Irish (United Kingdom)", "ga_IE": "Irish (Ireland)", "gd": "Scottish Gaelic", "gd_GB": "Scottish Gaelic (United Kingdom)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en_GB.json b/src/Symfony/Component/Intl/Resources/data/locales/en_001.json similarity index 100% rename from src/Symfony/Component/Intl/Resources/data/locales/en_GB.json rename to src/Symfony/Component/Intl/Resources/data/locales/en_001.json diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eo.json b/src/Symfony/Component/Intl/Resources/data/locales/eo.json index 9bce7c22ced52..a59255d203ded 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eo.json @@ -249,6 +249,7 @@ "fy": "frisa", "fy_NL": "frisa (Nederlando)", "ga": "irlanda", + "ga_GB": "irlanda (Unuiĝinta Reĝlando)", "ga_IE": "irlanda (Irlando)", "gd": "gaela", "gd_GB": "gaela (Unuiĝinta Reĝlando)", @@ -321,7 +322,6 @@ "mi": "maoria", "mi_NZ": "maoria (Nov-Zelando)", "mk": "makedona", - "mk_MK": "makedona (Makedonujo)", "ml": "malajalama", "ml_IN": "malajalama (Hindujo)", "mn": "mongola", @@ -416,7 +416,6 @@ "so_SO": "somala (Somalujo)", "sq": "albana", "sq_AL": "albana (Albanujo)", - "sq_MK": "albana (Makedonujo)", "sr": "serba", "sr_BA": "serba (Bosnio-Hercegovino)", "sv": "sveda", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index a5e4c6bcfb3ef..40cd16cc9592e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -306,6 +306,7 @@ "fy": "frisón occidental", "fy_NL": "frisón occidental (Países Bajos)", "ga": "irlandés", + "ga_GB": "irlandés (Reino Unido)", "ga_IE": "irlandés (Irlanda)", "gd": "gaélico escocés", "gd_GB": "gaélico escocés (Reino Unido)", @@ -436,13 +437,13 @@ "os": "osético", "os_GE": "osético (Georgia)", "os_RU": "osético (Rusia)", - "pa": "panyabí", - "pa_Arab": "panyabí (árabe)", - "pa_Arab_PK": "panyabí (árabe, Pakistán)", - "pa_Guru": "panyabí (gurmuji)", - "pa_Guru_IN": "panyabí (gurmuji, India)", - "pa_IN": "panyabí (India)", - "pa_PK": "panyabí (Pakistán)", + "pa": "punyabí", + "pa_Arab": "punyabí (árabe)", + "pa_Arab_PK": "punyabí (árabe, Pakistán)", + "pa_Guru": "punyabí (gurmuji)", + "pa_Guru_IN": "punyabí (gurmuji, India)", + "pa_IN": "punyabí (India)", + "pa_PK": "punyabí (Pakistán)", "pl": "polaco", "pl_PL": "polaco (Polonia)", "ps": "pastún", 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 94161a67bffca..4ebf0142539d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_419.json @@ -7,9 +7,7 @@ "bs_Latn": "bosnio (latín)", "bs_Latn_BA": "bosnio (latín, Bosnia-Herzegovina)", "en_GG": "inglés (Guernesey)", - "en_SZ": "inglés (Suazilandia)", "en_UM": "inglés (Islas Ultramarinas de EE.UU.)", - "en_VI": "inglés (Islas Vírgenes de los Estados Unidos)", "es_IC": "español (Islas Canarias)", "eu": "vasco", "eu_ES": "vasco (España)", @@ -34,7 +32,13 @@ "ln_CG": "lingala (República del Congo)", "lo": "laosiano", "lo_LA": "laosiano (Laos)", - "pt_TL": "portugués (Timor Oriental)", + "pa": "panyabí", + "pa_Arab": "panyabí (árabe)", + "pa_Arab_PK": "panyabí (árabe, Pakistán)", + "pa_Guru": "panyabí (gurmuji)", + "pa_Guru_IN": "panyabí (gurmuji, India)", + "pa_IN": "panyabí (India)", + "pa_PK": "panyabí (Pakistán)", "rm": "retorrománico", "rm_CH": "retorrománico (Suiza)", "sh_BA": "serbocroata (Bosnia-Herzegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_AR.json b/src/Symfony/Component/Intl/Resources/data/locales/es_AR.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_AR.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_BO.json b/src/Symfony/Component/Intl/Resources/data/locales/es_BO.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_BO.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_CL.json b/src/Symfony/Component/Intl/Resources/data/locales/es_CL.json index 805a1fe6cc505..c4223f4bae79f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_CL.json @@ -1,13 +1,6 @@ { "Names": { "ar_EH": "árabe (Sahara Occidental)", - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_CO.json b/src/Symfony/Component/Intl/Resources/data/locales/es_CO.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_CO.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_CR.json b/src/Symfony/Component/Intl/Resources/data/locales/es_CR.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_CR.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_DO.json b/src/Symfony/Component/Intl/Resources/data/locales/es_DO.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_DO.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_EC.json b/src/Symfony/Component/Intl/Resources/data/locales/es_EC.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_EC.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_GT.json b/src/Symfony/Component/Intl/Resources/data/locales/es_GT.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_GT.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_HN.json b/src/Symfony/Component/Intl/Resources/data/locales/es_HN.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_HN.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json b/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json index f21eb3fae8830..7d95712d53681 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json @@ -2,16 +2,6 @@ "Names": { "ar_SA": "árabe (Arabia Saudita)", "en_SZ": "inglés (Eswatini)", - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", - "rn": "kiroundi", - "rn_BI": "kiroundi (Burundi)", - "wo": "wolof", - "wo_SN": "wolof (Senegal)" + "ro_RO": "rumano (Rumania)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_NI.json b/src/Symfony/Component/Intl/Resources/data/locales/es_NI.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_NI.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_PA.json b/src/Symfony/Component/Intl/Resources/data/locales/es_PA.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_PA.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_PE.json b/src/Symfony/Component/Intl/Resources/data/locales/es_PE.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_PE.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_PY.json b/src/Symfony/Component/Intl/Resources/data/locales/es_PY.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_PY.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_VE.json b/src/Symfony/Component/Intl/Resources/data/locales/es_VE.json index ddc1c2a1f2dd2..f218176eed8fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_VE.json @@ -1,12 +1,5 @@ { "Names": { - "pa": "punyabí", - "pa_Arab": "punyabí (árabe)", - "pa_Arab_PK": "punyabí (árabe, Pakistán)", - "pa_Guru": "punyabí (gurmuji)", - "pa_Guru_IN": "punyabí (gurmuji, India)", - "pa_IN": "punyabí (India)", - "pa_PK": "punyabí (Pakistán)", "wo": "wolof", "wo_SN": "wolof (Senegal)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/et.json b/src/Symfony/Component/Intl/Resources/data/locales/et.json index 848eb8b6056c0..4ded6f2135359 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -306,6 +306,7 @@ "fy": "läänefriisi", "fy_NL": "läänefriisi (Holland)", "ga": "iiri", + "ga_GB": "iiri (Suurbritannia)", "ga_IE": "iiri (Iirimaa)", "gd": "gaeli", "gd_GB": "gaeli (Suurbritannia)", @@ -335,8 +336,8 @@ "id_ID": "indoneesia (Indoneesia)", "ig": "ibo", "ig_NG": "ibo (Nigeeria)", - "ii": "Sichuani jii", - "ii_CN": "Sichuani jii (Hiina)", + "ii": "nuosu", + "ii_CN": "nuosu (Hiina)", "is": "islandi", "is_IS": "islandi (Island)", "it": "itaalia", @@ -384,8 +385,8 @@ "lo_LA": "lao (Laos)", "lt": "leedu", "lt_LT": "leedu (Leedu)", - "lu": "luba", - "lu_CD": "luba (Kongo DV)", + "lu": "Katanga luba", + "lu_CD": "Katanga luba (Kongo DV)", "lv": "läti", "lv_LV": "läti (Läti)", "mg": "malagassi", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eu.json b/src/Symfony/Component/Intl/Resources/data/locales/eu.json index 04a6f42e8b33a..45b14fa572e6b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -305,8 +305,9 @@ "fr_YT": "frantses (Mayotte)", "fy": "frisiera", "fy_NL": "frisiera (Herbehereak)", - "ga": "gaeliko", - "ga_IE": "gaeliko (Irlanda)", + "ga": "irlandera", + "ga_GB": "irlandera (Erresuma Batua)", + "ga_IE": "irlandera (Irlanda)", "gd": "Eskoziako gaeliko", "gd_GB": "Eskoziako gaeliko (Erresuma Batua)", "gl": "galiziera", @@ -384,8 +385,8 @@ "lo_LA": "laosera (Laos)", "lt": "lituaniera", "lt_LT": "lituaniera (Lituania)", - "lu": "luba-katangera", - "lu_CD": "luba-katangera (Kongoko Errepublika Demokratikoa)", + "lu": "Katangako lubera", + "lu_CD": "Katangako lubera (Kongoko Errepublika Demokratikoa)", "lv": "letoniera", "lv_LV": "letoniera (Letonia)", "mg": "malgaxe", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa.json b/src/Symfony/Component/Intl/Resources/data/locales/fa.json index d7534c6508b6a..2a4149f885eb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -71,7 +71,7 @@ "ce": "چچنی", "ce_RU": "چچنی (روسیه)", "cs": "چکی", - "cs_CZ": "چکی (جمهوری چک)", + "cs_CZ": "چکی (چک)", "cy": "ولزی", "cy_GB": "ولزی (بریتانیا)", "da": "دانمارکی", @@ -131,7 +131,7 @@ "en_GM": "انگلیسی (گامبیا)", "en_GU": "انگلیسی (گوام)", "en_GY": "انگلیسی (گویان)", - "en_HK": "انگلیسی (هنگ‌کنگ، منطقۀ ویژۀ اداری چین)", + "en_HK": "انگلیسی (هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین)", "en_IE": "انگلیسی (ایرلند)", "en_IL": "انگلیسی (اسرائیل)", "en_IM": "انگلیسی (جزیرهٔ من)", @@ -148,7 +148,7 @@ "en_LS": "انگلیسی (لسوتو)", "en_MG": "انگلیسی (ماداگاسکار)", "en_MH": "انگلیسی (جزایر مارشال)", - "en_MO": "انگلیسی (ماکائو، منطقۀ ویژۀ اداری چین)", + "en_MO": "انگلیسی (ماکائو، منطقهٔ ویژهٔ اداری چین)", "en_MP": "انگلیسی (جزایر ماریانای شمالی)", "en_MS": "انگلیسی (مونت‌سرات)", "en_MT": "انگلیسی (مالت)", @@ -306,6 +306,7 @@ "fy": "فریزی غربی", "fy_NL": "فریزی غربی (هلند)", "ga": "ایرلندی", + "ga_GB": "ایرلندی (بریتانیا)", "ga_IE": "ایرلندی (ایرلند)", "gd": "گیلی اسکاتلندی", "gd_GB": "گیلی اسکاتلندی (بریتانیا)", @@ -410,7 +411,7 @@ "my_MM": "برمه‌ای (میانمار [برمه])", "nb": "نروژی بوک‌مُل", "nb_NO": "نروژی بوک‌مُل (نروژ)", - "nb_SJ": "نروژی بوک‌مُل (اسوالبارد و جان‌ماین)", + "nb_SJ": "نروژی بوک‌مُل (سوالبارد و یان ماین)", "nd": "انده‌بله‌ای شمالی", "nd_ZW": "انده‌بله‌ای شمالی (زیمبابوه)", "ne": "نپالی", @@ -456,7 +457,7 @@ "pt_GQ": "پرتغالی (گینهٔ استوایی)", "pt_GW": "پرتغالی (گینهٔ بیسائو)", "pt_LU": "پرتغالی (لوکزامبورگ)", - "pt_MO": "پرتغالی (ماکائو، منطقۀ ویژۀ اداری چین)", + "pt_MO": "پرتغالی (ماکائو، منطقهٔ ویژهٔ اداری چین)", "pt_MZ": "پرتغالی (موزامبیک)", "pt_PT": "پرتغالی (پرتغال)", "pt_ST": "پرتغالی (سائوتومه و پرینسیپ)", @@ -585,17 +586,17 @@ "yo_NG": "یوروبایی (نیجریه)", "zh": "چینی", "zh_CN": "چینی (چین)", - "zh_HK": "چینی (هنگ‌کنگ، منطقۀ ویژۀ اداری چین)", + "zh_HK": "چینی (هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین)", "zh_Hans": "چینی (ساده‌شده)", "zh_Hans_CN": "چینی (ساده‌شده، چین)", - "zh_Hans_HK": "چینی (ساده‌شده، هنگ‌کنگ، منطقۀ ویژۀ اداری چین)", - "zh_Hans_MO": "چینی (ساده‌شده، ماکائو، منطقۀ ویژۀ اداری چین)", + "zh_Hans_HK": "چینی (ساده‌شده، هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین)", + "zh_Hans_MO": "چینی (ساده‌شده، ماکائو، منطقهٔ ویژهٔ اداری چین)", "zh_Hans_SG": "چینی (ساده‌شده، سنگاپور)", "zh_Hant": "چینی (سنتی)", - "zh_Hant_HK": "چینی (سنتی، هنگ‌کنگ، منطقۀ ویژۀ اداری چین)", - "zh_Hant_MO": "چینی (سنتی، ماکائو، منطقۀ ویژۀ اداری چین)", + "zh_Hant_HK": "چینی (سنتی، هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین)", + "zh_Hant_MO": "چینی (سنتی، ماکائو، منطقهٔ ویژهٔ اداری چین)", "zh_Hant_TW": "چینی (سنتی، تایوان)", - "zh_MO": "چینی (ماکائو، منطقۀ ویژۀ اداری چین)", + "zh_MO": "چینی (ماکائو، منطقهٔ ویژهٔ اداری چین)", "zh_SG": "چینی (سنگاپور)", "zh_TW": "چینی (تایوان)", "zu": "زولویی", 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 929961cb043d4..284c2a891a807 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -21,7 +21,6 @@ "bs_Latn_BA": "بوسنیایی (لاتینی، بوسنیا و هرزه‌گوینا)", "ca_AD": "کاتالان (اندورا)", "ca_ES": "کاتالان (هسپانیه)", - "cs_CZ": "چکی (چک)", "da_DK": "دانمارکی (دنمارک)", "de_BE": "آلمانی (بلجیم)", "de_CH": "آلمانی (سویس)", @@ -110,6 +109,7 @@ "fr_SN": "فرانسوی (سینیگال)", "fy_NL": "فریزی غربی (هالند)", "ga": "آیرلندی", + "ga_GB": "آیرلندی (بریتانیا)", "ga_IE": "آیرلندی (آیرلند)", "gl_ES": "گالیسیایی (هسپانیه)", "ha_GH": "هوسیایی (گانا)", @@ -185,7 +185,7 @@ "pt_GQ": "پرتگالی (گینیا استوایی)", "pt_GW": "پرتگالی (گینیا بیسائو)", "pt_LU": "پرتگالی (لوکزامبورگ)", - "pt_MO": "پرتگالی (ماکائو، منطقۀ ویژۀ اداری چین)", + "pt_MO": "پرتگالی (ماکائو، منطقهٔ ویژهٔ اداری چین)", "pt_MZ": "پرتگالی (موزمبیق)", "pt_PT": "پرتگالی (پرتگال)", "pt_ST": "پرتگالی (سائوتومه و پرینسیپ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index 5aeb49771587a..0ba1b7047c88d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -306,6 +306,7 @@ "fy": "länsifriisi", "fy_NL": "länsifriisi (Alankomaat)", "ga": "iiri", + "ga_GB": "iiri (Iso-Britannia)", "ga_IE": "iiri (Irlanti)", "gd": "gaeli", "gd_GB": "gaeli (Iso-Britannia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index 1c1659064ed97..b8f6986c24389 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -179,7 +179,7 @@ "en_SL": "enskt (Sierra Leona)", "en_SS": "enskt (Suðursudan)", "en_SX": "enskt (Sint Maarten)", - "en_SZ": "enskt (Svasiland)", + "en_SZ": "enskt (Esvatini)", "en_TC": "enskt (Turks- og Caicosoyggjar)", "en_TK": "enskt (Tokelau)", "en_TO": "enskt (Tonga)", @@ -306,6 +306,7 @@ "fy": "vestur frísiskt", "fy_NL": "vestur frísiskt (Niðurlond)", "ga": "írskt", + "ga_GB": "írskt (Stórabretland)", "ga_IE": "írskt (Írland)", "gd": "skotskt gæliskt", "gd_GB": "skotskt gæliskt (Stórabretland)", @@ -393,7 +394,6 @@ "mi": "maori", "mi_NZ": "maori (Nýsæland)", "mk": "makedónskt", - "mk_MK": "makedónskt (Makedónia)", "ml": "malayalam", "ml_IN": "malayalam (India)", "mn": "mongolskt", @@ -506,7 +506,6 @@ "so_SO": "somaliskt (Somalia)", "sq": "albanskt", "sq_AL": "albanskt (Albania)", - "sq_MK": "albanskt (Makedónia)", "sq_XK": "albanskt (Kosovo)", "sr": "serbiskt", "sr_BA": "serbiskt (Bosnia-Hersegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr.json b/src/Symfony/Component/Intl/Resources/data/locales/fr.json index 8abbd1fc6c296..40c1cf11b48cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -306,6 +306,7 @@ "fy": "frison occidental", "fy_NL": "frison occidental (Pays-Bas)", "ga": "irlandais", + "ga_GB": "irlandais (Royaume-Uni)", "ga_IE": "irlandais (Irlande)", "gd": "gaélique écossais", "gd_GB": "gaélique écossais (Royaume-Uni)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index 8059aa7c7b672..e680baefb2952 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -306,6 +306,7 @@ "fy": "Frysk", "fy_NL": "Frysk (Nederlân)", "ga": "Iersk", + "ga_GB": "Iersk (Verenigd Koninkrijk)", "ga_IE": "Iersk (Ierlân)", "gd": "Schotsk Gaelic", "gd_GB": "Schotsk Gaelic (Verenigd Koninkrijk)", @@ -393,7 +394,6 @@ "mi": "Maori", "mi_NZ": "Maori (Nij-Seelân)", "mk": "Macedonysk", - "mk_MK": "Macedonysk (Macedonië)", "ml": "Malayalam", "ml_IN": "Malayalam (India)", "mn": "Mongools", @@ -506,7 +506,6 @@ "so_SO": "Somalysk (Somalië)", "sq": "Albaneesk", "sq_AL": "Albaneesk (Albanië)", - "sq_MK": "Albaneesk (Macedonië)", "sq_XK": "Albaneesk (Kosovo)", "sr": "Servysk", "sr_BA": "Servysk (Bosnië en Herzegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ga.json b/src/Symfony/Component/Intl/Resources/data/locales/ga.json index 6f51b632413cd..afe69cd06b133 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -179,7 +179,7 @@ "en_SL": "Béarla (Siarra Leon)", "en_SS": "Béarla (an tSúdáin Theas)", "en_SX": "Béarla (Sint Maarten)", - "en_SZ": "Béarla (an tSuasalainn)", + "en_SZ": "Béarla (eSuaitíní)", "en_TC": "Béarla (Oileáin na dTurcach agus Caicos)", "en_TK": "Béarla (Tócalá)", "en_TO": "Béarla (Tonga)", @@ -306,6 +306,7 @@ "fy": "Freaslainnis Iartharach", "fy_NL": "Freaslainnis Iartharach (an Ísiltír)", "ga": "Gaeilge", + "ga_GB": "Gaeilge (an Ríocht Aontaithe)", "ga_IE": "Gaeilge (Éire)", "gd": "Gaeilge na hAlban", "gd_GB": "Gaeilge na hAlban (an Ríocht Aontaithe)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gd.json b/src/Symfony/Component/Intl/Resources/data/locales/gd.json index 32357bfa6f8af..3386c4dce3a65 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -179,7 +179,7 @@ "en_SL": "Beurla (Siarra Leòmhann)", "en_SS": "Beurla (Sudàn a Deas)", "en_SX": "Beurla (Sint Maarten)", - "en_SZ": "Beurla (Dùthaich nan Suasaidh)", + "en_SZ": "Beurla (eSwatini)", "en_TC": "Beurla (Na h-Eileanan Turcach is Caiceo)", "en_TK": "Beurla (Tokelau)", "en_TO": "Beurla (Tonga)", @@ -306,6 +306,7 @@ "fy": "Frìoslannais Shiarach", "fy_NL": "Frìoslannais Shiarach (Na Tìrean Ìsle)", "ga": "Gaeilge", + "ga_GB": "Gaeilge (An Rìoghachd Aonaichte)", "ga_IE": "Gaeilge (Èirinn)", "gd": "Gàidhlig", "gd_GB": "Gàidhlig (An Rìoghachd Aonaichte)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gl.json b/src/Symfony/Component/Intl/Resources/data/locales/gl.json index 3eb02ae776663..db0058a4ffd4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -43,8 +43,8 @@ "az_Cyrl_AZ": "acerbaixano (cirílico, Acerbaixán)", "az_Latn": "acerbaixano (latino)", "az_Latn_AZ": "acerbaixano (latino, Acerbaixán)", - "be": "bielorruso", - "be_BY": "bielorruso (Belarús)", + "be": "belaruso", + "be_BY": "belaruso (Belarús)", "bg": "búlgaro", "bg_BG": "búlgaro (Bulgaria)", "bm": "bambara", @@ -179,7 +179,7 @@ "en_SL": "inglés (Serra Leoa)", "en_SS": "inglés (O Sudán do Sur)", "en_SX": "inglés (Sint Maarten)", - "en_SZ": "inglés (Suazilandia)", + "en_SZ": "inglés (Eswatini)", "en_TC": "inglés (Illas Turks e Caicos)", "en_TK": "inglés (Tokelau)", "en_TO": "inglés (Tonga)", @@ -267,7 +267,7 @@ "fr_CF": "francés (República Centroafricana)", "fr_CG": "francés (República do Congo)", "fr_CH": "francés (Suíza)", - "fr_CI": "francés (Costa do Marfil)", + "fr_CI": "francés (Côte d’Ivoire)", "fr_CM": "francés (Camerún)", "fr_DJ": "francés (Djibuti)", "fr_DZ": "francés (Alxeria)", @@ -306,6 +306,7 @@ "fy": "frisón occidental", "fy_NL": "frisón occidental (Países Baixos)", "ga": "irlandés", + "ga_GB": "irlandés (O Reino Unido)", "ga_IE": "irlandés (Irlanda)", "gd": "gaélico escocés", "gd_GB": "gaélico escocés (O Reino Unido)", @@ -352,8 +353,8 @@ "ka_GE": "xeorxiano (Xeorxia)", "ki": "kikuyu", "ki_KE": "kikuyu (Kenya)", - "kk": "casaco", - "kk_KZ": "casaco (Casaquistán)", + "kk": "kazako", + "kk_KZ": "kazako (Kazakistán)", "kl": "groenlandés", "kl_GL": "groenlandés (Groenlandia)", "km": "khmer", @@ -475,7 +476,7 @@ "ru": "ruso", "ru_BY": "ruso (Belarús)", "ru_KG": "ruso (Kirguizistán)", - "ru_KZ": "ruso (Casaquistán)", + "ru_KZ": "ruso (Kazakistán)", "ru_MD": "ruso (Moldavia)", "ru_RU": "ruso (Rusia)", "ru_UA": "ruso (Ucraína)", @@ -546,8 +547,8 @@ "ti": "tigriña", "ti_ER": "tigriña (Eritrea)", "ti_ET": "tigriña (Etiopía)", - "tk": "turcomán", - "tk_TM": "turcomán (Turkmenistán)", + "tk": "turkmeno", + "tk_TM": "turkmeno (Turkmenistán)", "tl": "tagalo", "tl_PH": "tagalo (Filipinas)", "to": "tongano", @@ -564,15 +565,15 @@ "ur": "urdú", "ur_IN": "urdú (A India)", "ur_PK": "urdú (Paquistán)", - "uz": "uzbeco", - "uz_AF": "uzbeco (Afganistán)", - "uz_Arab": "uzbeco (árabe)", - "uz_Arab_AF": "uzbeco (árabe, Afganistán)", - "uz_Cyrl": "uzbeco (cirílico)", - "uz_Cyrl_UZ": "uzbeco (cirílico, Uzbequistán)", - "uz_Latn": "uzbeco (latino)", - "uz_Latn_UZ": "uzbeco (latino, Uzbequistán)", - "uz_UZ": "uzbeco (Uzbequistán)", + "uz": "uzbeko", + "uz_AF": "uzbeko (Afganistán)", + "uz_Arab": "uzbeko (árabe)", + "uz_Arab_AF": "uzbeko (árabe, Afganistán)", + "uz_Cyrl": "uzbeko (cirílico)", + "uz_Cyrl_UZ": "uzbeko (cirílico, Uzbekistán)", + "uz_Latn": "uzbeko (latino)", + "uz_Latn_UZ": "uzbeko (latino, Uzbekistán)", + "uz_UZ": "uzbeko (Uzbekistán)", "vi": "vietnamita", "vi_VN": "vietnamita (Vietnam)", "wo": "wólof", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gu.json b/src/Symfony/Component/Intl/Resources/data/locales/gu.json index feb3b54187650..004ba8226635a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -179,7 +179,7 @@ "en_SL": "અંગ્રેજી (સીએરા લેઓન)", "en_SS": "અંગ્રેજી (દક્ષિણ સુદાન)", "en_SX": "અંગ્રેજી (સિંટ માર્ટેન)", - "en_SZ": "અંગ્રેજી (સ્વાઝિલેન્ડ)", + "en_SZ": "અંગ્રેજી (એસ્વાટીની)", "en_TC": "અંગ્રેજી (તુર્ક્સ અને કેકોઝ આઇલેન્ડ્સ)", "en_TK": "અંગ્રેજી (ટોકેલાઉ)", "en_TO": "અંગ્રેજી (ટોંગા)", @@ -306,6 +306,7 @@ "fy": "પશ્ચિમી ફ્રિસિયન", "fy_NL": "પશ્ચિમી ફ્રિસિયન (નેધરલેન્ડ્સ)", "ga": "આઇરિશ", + "ga_GB": "આઇરિશ (યુનાઇટેડ કિંગડમ)", "ga_IE": "આઇરિશ (આયર્લેન્ડ)", "gd": "સ્કોટીસ ગેલિક", "gd_GB": "સ્કોટીસ ગેલિક (યુનાઇટેડ કિંગડમ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index 041006c930cd8..32913eebd796a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -1,5 +1,8 @@ { "Names": { + "af": "Afirkanci", + "af_NA": "Afirkanci (Namibiya)", + "af_ZA": "Afirkanci (Afirka Ta Kudu)", "ak": "Akan", "ak_GH": "Akan (Gana)", "am": "Amharik", @@ -22,23 +25,57 @@ "ar_MR": "Larabci (Moritaniya)", "ar_OM": "Larabci (Oman)", "ar_PS": "Larabci (Palasɗinu)", - "ar_QA": "Larabci (Kwatar)", - "ar_SA": "Larabci (Ƙasar Makka)", + "ar_QA": "Larabci (Katar)", + "ar_SA": "Larabci (Saudiyya)", "ar_SD": "Larabci (Sudan)", "ar_SO": "Larabci (Somaliya)", + "ar_SS": "Larabci (Sudan ta kudu)", "ar_SY": "Larabci (Sham, Siriya)", "ar_TD": "Larabci (Cadi)", "ar_TN": "Larabci (Tunisiya)", "ar_YE": "Larabci (Yamal)", + "as": "Asamisanci", + "as_IN": "Asamisanci (Indiya)", + "az": "Azerbaijanci", + "az_AZ": "Azerbaijanci (Azarbaijan)", + "az_Cyrl": "Azerbaijanci (Cyrillic)", + "az_Cyrl_AZ": "Azerbaijanci (Cyrillic, Azarbaijan)", + "az_Latn": "Azerbaijanci (Latin)", + "az_Latn_AZ": "Azerbaijanci (Latin, Azarbaijan)", "be": "Belarusanci", "be_BY": "Belarusanci (Belarus)", "bg": "Bulgaranci", "bg_BG": "Bulgaranci (Bulgariya)", + "bm": "Bambara", + "bm_ML": "Bambara (Mali)", "bn": "Bengali", "bn_BD": "Bengali (Bangiladas)", "bn_IN": "Bengali (Indiya)", + "bo": "Tibetan", + "bo_CN": "Tibetan (Sin)", + "bo_IN": "Tibetan (Indiya)", + "br": "Buretananci", + "br_FR": "Buretananci (Faransa)", + "bs": "Bosniyanci", + "bs_BA": "Bosniyanci (Bosniya Harzagobina)", + "bs_Cyrl": "Bosniyanci (Cyrillic)", + "bs_Cyrl_BA": "Bosniyanci (Cyrillic, Bosniya Harzagobina)", + "bs_Latn": "Bosniyanci (Latin)", + "bs_Latn_BA": "Bosniyanci (Latin, Bosniya Harzagobina)", + "ca": "Kataloniyanci", + "ca_AD": "Kataloniyanci (Andora)", + "ca_ES": "Kataloniyanci (Sipen)", + "ca_FR": "Kataloniyanci (Faransa)", + "ca_IT": "Kataloniyanci (Italiya)", + "ce": "Chechen", + "ce_RU": "Chechen (Rasha)", "cs": "Harshen Cak", "cs_CZ": "Harshen Cak (Jamhuriyar Cak)", + "cy": "Kabilar Welsh", + "cy_GB": "Kabilar Welsh (Biritaniya)", + "da": "Danish", + "da_DK": "Danish (Danmark)", + "da_GL": "Danish (Grinlan)", "de": "Jamusanci", "de_AT": "Jamusanci (Ostiriya)", "de_BE": "Jamusanci (Belgiyom)", @@ -47,6 +84,11 @@ "de_IT": "Jamusanci (Italiya)", "de_LI": "Jamusanci (Licansitan)", "de_LU": "Jamusanci (Lukusambur)", + "dz": "Dzongkha", + "dz_BT": "Dzongkha (Butan)", + "ee": "Ewe", + "ee_GH": "Ewe (Gana)", + "ee_TG": "Ewe (Togo)", "el": "Girkanci", "el_CY": "Girkanci (Sifurus)", "el_GR": "Girkanci (Girka)", @@ -65,9 +107,11 @@ "en_BW": "Turanci (Baswana)", "en_BZ": "Turanci (Beliz)", "en_CA": "Turanci (Kanada)", + "en_CC": "Turanci (Tsibirai Cocos [Keeling])", "en_CH": "Turanci (Suwizalan)", "en_CK": "Turanci (Tsibiran Kuku)", "en_CM": "Turanci (Kamaru)", + "en_CX": "Turanci (Tsibirin Kirsmati)", "en_CY": "Turanci (Sifurus)", "en_DE": "Turanci (Jamus)", "en_DK": "Turanci (Danmark)", @@ -119,30 +163,33 @@ "en_PW": "Turanci (Palau)", "en_RW": "Turanci (Ruwanda)", "en_SB": "Turanci (Tsibiran Salaman)", - "en_SC": "Turanci (Saishal)", + "en_SC": "Turanci (Seychelles)", "en_SD": "Turanci (Sudan)", "en_SE": "Turanci (Suwedan)", "en_SG": "Turanci (Singapur)", "en_SH": "Turanci (San Helena)", "en_SI": "Turanci (Sulobeniya)", "en_SL": "Turanci (Salewo)", - "en_SZ": "Turanci (Suwazilan)", + "en_SS": "Turanci (Sudan ta kudu)", + "en_SX": "Turanci (Sint Maarten)", + "en_SZ": "Turanci (Eswatini)", "en_TC": "Turanci (Turkis Da Tsibiran Kaikwas)", "en_TK": "Turanci (Takelau)", - "en_TO": "Turanci (Tanga)", + "en_TO": "Turanci (Tonga)", "en_TT": "Turanci (Tirinidad Da Tobago)", "en_TV": "Turanci (Tubalu)", "en_TZ": "Turanci (Tanzaniya)", "en_UG": "Turanci (Yuganda)", - "en_US": "Turanci (Amirka)", + "en_US": "Turanci (Amurka)", "en_VC": "Turanci (San Binsan Da Girnadin)", "en_VG": "Turanci (Tsibirin Birjin Na Birtaniya)", "en_VI": "Turanci (Tsibiran Birjin Ta Amurka)", "en_VU": "Turanci (Banuwatu)", - "en_WS": "Turanci (Samowa)", + "en_WS": "Turanci (Samoa)", "en_ZA": "Turanci (Afirka Ta Kudu)", "en_ZM": "Turanci (Zambiya)", "en_ZW": "Turanci (Zimbabuwe)", + "eo": "Dʼan\/ʼYar Kabilar Andalus", "es": "Sifaniyanci", "es_AR": "Sifaniyanci (Arjantiniya)", "es_BO": "Sifaniyanci (Bolibiya)", @@ -161,22 +208,49 @@ "es_MX": "Sifaniyanci (Makasiko)", "es_NI": "Sifaniyanci (Nikaraguwa)", "es_PA": "Sifaniyanci (Panama)", - "es_PE": "Sifaniyanci (Peru)", + "es_PE": "Sifaniyanci (Feru)", "es_PH": "Sifaniyanci (Filipin)", "es_PR": "Sifaniyanci (Porto Riko)", - "es_PY": "Sifaniyanci (Paragai)", + "es_PY": "Sifaniyanci (Faragwai)", "es_SV": "Sifaniyanci (El Salbador)", - "es_US": "Sifaniyanci (Amirka)", - "es_UY": "Sifaniyanci (Yurugai)", + "es_US": "Sifaniyanci (Amurka)", + "es_UY": "Sifaniyanci (Yurigwai)", "es_VE": "Sifaniyanci (Benezuwela)", + "et": "Istoniyanci", + "et_EE": "Istoniyanci (Estoniya)", + "eu": "Basque", + "eu_ES": "Basque (Sipen)", "fa": "Parisanci", "fa_AF": "Parisanci (Afaganistan)", "fa_IR": "Parisanci (Iran)", + "ff": "Fulah", + "ff_CM": "Fulah (Kamaru)", + "ff_GN": "Fulah (Gini)", + "ff_Latn": "Fulah (Latin)", + "ff_Latn_BF": "Fulah (Latin, Burkina Faso)", + "ff_Latn_CM": "Fulah (Latin, Kamaru)", + "ff_Latn_GH": "Fulah (Latin, Gana)", + "ff_Latn_GM": "Fulah (Latin, Gambiya)", + "ff_Latn_GN": "Fulah (Latin, Gini)", + "ff_Latn_GW": "Fulah (Latin, Gini Bisau)", + "ff_Latn_LR": "Fulah (Latin, Laberiya)", + "ff_Latn_MR": "Fulah (Latin, Moritaniya)", + "ff_Latn_NE": "Fulah (Latin, Nijar)", + "ff_Latn_NG": "Fulah (Latin, Najeriya)", + "ff_Latn_SL": "Fulah (Latin, Salewo)", + "ff_Latn_SN": "Fulah (Latin, Sanigal)", + "ff_MR": "Fulah (Moritaniya)", + "ff_SN": "Fulah (Sanigal)", + "fi": "Yaren mutanen Finland", + "fi_FI": "Yaren mutanen Finland (Finlan)", + "fo": "Faroese", + "fo_DK": "Faroese (Danmark)", "fr": "Faransanci", "fr_BE": "Faransanci (Belgiyom)", "fr_BF": "Faransanci (Burkina Faso)", "fr_BI": "Faransanci (Burundi)", "fr_BJ": "Faransanci (Binin)", + "fr_BL": "Faransanci (St. Barthélemy)", "fr_CA": "Faransanci (Kanada)", "fr_CD": "Faransanci (Jamhuriyar Dimokuraɗiyyar Kongo)", "fr_CF": "Faransanci (Jamhuriyar Afirka Ta Tsakiya)", @@ -197,6 +271,7 @@ "fr_LU": "Faransanci (Lukusambur)", "fr_MA": "Faransanci (Maroko)", "fr_MC": "Faransanci (Monako)", + "fr_MF": "Faransanci (St. Martin)", "fr_MG": "Faransanci (Madagaskar)", "fr_ML": "Faransanci (Mali)", "fr_MQ": "Faransanci (Martinik)", @@ -208,8 +283,8 @@ "fr_PM": "Faransanci (San Piyar Da Mikelan)", "fr_RE": "Faransanci (Rawuniyan)", "fr_RW": "Faransanci (Ruwanda)", - "fr_SC": "Faransanci (Saishal)", - "fr_SN": "Faransanci (Sinigal)", + "fr_SC": "Faransanci (Seychelles)", + "fr_SN": "Faransanci (Sanigal)", "fr_SY": "Faransanci (Sham, Siriya)", "fr_TD": "Faransanci (Cadi)", "fr_TG": "Faransanci (Togo)", @@ -217,18 +292,42 @@ "fr_VU": "Faransanci (Banuwatu)", "fr_WF": "Faransanci (Walis Da Futuna)", "fr_YT": "Faransanci (Mayoti)", + "fy": "Kʼabilan Firsi", + "fy_NL": "Kʼabilan Firsi (Holan)", + "ga": "Dan Ailan", + "ga_GB": "Dan Ailan (Biritaniya)", + "ga_IE": "Dan Ailan (Ayalan)", + "gd": "Kʼabilan Scots Gaelic", + "gd_GB": "Kʼabilan Scots Gaelic (Biritaniya)", + "gl": "Bagalike", + "gl_ES": "Bagalike (Sipen)", + "gu": "Gujarati", + "gu_IN": "Gujarati (Indiya)", + "gv": "Manx", "ha": "Hausa", "ha_GH": "Hausa (Gana)", "ha_NE": "Hausa (Nijar)", "ha_NG": "Hausa (Najeriya)", + "he": "Ibrananci", + "he_IL": "Ibrananci (Iziraʼila)", "hi": "Harshen Hindi", "hi_IN": "Harshen Hindi (Indiya)", + "hr": "Kuroshiyan", + "hr_BA": "Kuroshiyan (Bosniya Harzagobina)", + "hr_HR": "Kuroshiyan (Kurowaishiya)", "hu": "Harshen Hungari", "hu_HU": "Harshen Hungari (Hungari)", + "hy": "Armeniyanci", + "hy_AM": "Armeniyanci (Armeniya)", + "ia": "Yare Tsakanin Kasashe", "id": "Harshen Indunusiya", "id_ID": "Harshen Indunusiya (Indunusiya)", "ig": "Inyamuranci", "ig_NG": "Inyamuranci (Najeriya)", + "ii": "Sichuan Yi", + "ii_CN": "Sichuan Yi (Sin)", + "is": "Yaren mutanen Iceland", + "is_IS": "Yaren mutanen Iceland (Aisalan)", "it": "Italiyanci", "it_CH": "Italiyanci (Suwizalan)", "it_IT": "Italiyanci (Italiya)", @@ -238,32 +337,103 @@ "ja_JP": "Japananci (Jàpân)", "jv": "Jabananci", "jv_ID": "Jabananci (Indunusiya)", + "ka": "Jojiyanci", + "ka_GE": "Jojiyanci (Jiwarjiya)", + "ki": "Kikuyu", + "ki_KE": "Kikuyu (Kenya)", + "kk": "Kazakh", + "kk_KZ": "Kazakh (Kazakistan)", + "kl": "Kalaallisut", + "kl_GL": "Kalaallisut (Grinlan)", "km": "Harshen Kimar", "km_KH": "Harshen Kimar (Kambodiya)", + "kn": "Kannada", + "kn_IN": "Kannada (Indiya)", "ko": "Harshen Koreya", - "ko_KP": "Harshen Koreya (Koreya Ta Arewa)", - "ko_KR": "Harshen Koreya (Koreya Ta Kudu)", + "ko_KP": "Harshen Koreya (Koriya Ta Arewa)", + "ko_KR": "Harshen Koreya (Koriya Ta Kudu)", + "ks": "Kashmiri", + "ks_IN": "Kashmiri (Indiya)", + "ku": "Kurdanci", + "ku_TR": "Kurdanci (Turkiyya)", + "kw": "Cornish", + "kw_GB": "Cornish (Biritaniya)", + "ky": "Kirgizanci", + "ky_KG": "Kirgizanci (Kirgizistan)", + "lb": "Luxembourgish", + "lb_LU": "Luxembourgish (Lukusambur)", + "lg": "Ganda", + "lg_UG": "Ganda (Yuganda)", + "ln": "Lingala", + "ln_AO": "Lingala (Angola)", + "ln_CD": "Lingala (Jamhuriyar Dimokuraɗiyyar Kongo)", + "ln_CF": "Lingala (Jamhuriyar Afirka Ta Tsakiya)", + "ln_CG": "Lingala (Kongo)", + "lo": "Laothian", + "lo_LA": "Laothian (Lawas)", + "lt": "Lituweniyanci", + "lt_LT": "Lituweniyanci (Lituweniya)", + "lu": "Luba-Katanga", + "lu_CD": "Luba-Katanga (Jamhuriyar Dimokuraɗiyyar Kongo)", + "lv": "Latbiyanci", + "lv_LV": "Latbiyanci (latibiya)", + "mg": "Malagasy", + "mg_MG": "Malagasy (Madagaskar)", + "mi": "Maori", + "mi_NZ": "Maori (Nuzilan)", + "mk": "Dan Masedoniya", + "mk_MK": "Dan Masedoniya (Macedonia ta Arewa)", + "ml": "Kabilar Maleyalam", + "ml_IN": "Kabilar Maleyalam (Indiya)", + "mn": "Mongolian", + "mn_MN": "Mongolian (Mangoliya)", + "mr": "Kʼabilan Marathi", + "mr_IN": "Kʼabilan Marathi (Indiya)", "ms": "Harshen Malai", "ms_BN": "Harshen Malai (Burune)", "ms_MY": "Harshen Malai (Malaisiya)", "ms_SG": "Harshen Malai (Singapur)", + "mt": "Harshen Maltis", + "mt_MT": "Harshen Maltis (Malta)", "my": "Burmanci", "my_MM": "Burmanci (Burma, Miyamar)", + "nb": "Norwegian Bokmål", + "nb_NO": "Norwegian Bokmål (Norwe)", + "nd": "North Ndebele", + "nd_ZW": "North Ndebele (Zimbabuwe)", "ne": "Nepali", "ne_IN": "Nepali (Indiya)", "ne_NP": "Nepali (Nefal)", "nl": "Holanci", "nl_AW": "Holanci (Aruba)", "nl_BE": "Holanci (Belgiyom)", + "nl_BQ": "Holanci (Caribbean Netherlands)", + "nl_CW": "Holanci (Kasar Curaçao)", "nl_NL": "Holanci (Holan)", "nl_SR": "Holanci (Suriname)", + "nl_SX": "Holanci (Sint Maarten)", + "nn": "Norwegian Nynorsk", + "nn_NO": "Norwegian Nynorsk (Norwe)", + "om": "Oromo", + "om_ET": "Oromo (Habasha)", + "om_KE": "Oromo (Kenya)", + "or": "Oriyanci", + "or_IN": "Oriyanci (Indiya)", + "os": "Ossetic", + "os_GE": "Ossetic (Jiwarjiya)", + "os_RU": "Ossetic (Rasha)", "pa": "Punjabi", "pa_Arab": "Punjabi (Larabci)", "pa_Arab_PK": "Punjabi (Larabci, Pakistan)", + "pa_Guru": "Punjabi (Gurmukhi)", + "pa_Guru_IN": "Punjabi (Gurmukhi, Indiya)", "pa_IN": "Punjabi (Indiya)", "pa_PK": "Punjabi (Pakistan)", "pl": "Harshen Polan", "pl_PL": "Harshen Polan (Polan)", + "ps": "Pashtanci", + "ps_AF": "Pashtanci (Afaganistan)", + "ps_PK": "Pashtanci (Pakistan)", "pt": "Harshen Fotugis", "pt_AO": "Harshen Fotugis (Angola)", "pt_BR": "Harshen Fotugis (Birazil)", @@ -276,6 +446,14 @@ "pt_PT": "Harshen Fotugis (Portugal)", "pt_ST": "Harshen Fotugis (Sawo Tome Da Paransip)", "pt_TL": "Harshen Fotugis (Timor Ta Gabas)", + "qu": "Quechua", + "qu_BO": "Quechua (Bolibiya)", + "qu_EC": "Quechua (Ekwador)", + "qu_PE": "Quechua (Feru)", + "rm": "Romansh", + "rm_CH": "Romansh (Suwizalan)", + "rn": "Rundi", + "rn_BI": "Rundi (Burundi)", "ro": "Romaniyanci", "ro_MD": "Romaniyanci (Maldoba)", "ro_RO": "Romaniyanci (Romaniya)", @@ -288,38 +466,103 @@ "ru_UA": "Rashanci (Yukaran)", "rw": "Kiniyaruwanda", "rw_RW": "Kiniyaruwanda (Ruwanda)", - "so": "Somali", - "so_DJ": "Somali (Jibuti)", - "so_ET": "Somali (Habasha)", - "so_KE": "Somali (Kenya)", - "so_SO": "Somali (Somaliya)", + "sd": "Sindiyanci", + "sd_PK": "Sindiyanci (Pakistan)", + "se": "Northern Sami", + "se_FI": "Northern Sami (Finlan)", + "se_NO": "Northern Sami (Norwe)", + "se_SE": "Northern Sami (Suwedan)", + "sg": "Sango", + "sg_CF": "Sango (Jamhuriyar Afirka Ta Tsakiya)", + "si": "Sinhalanci", + "si_LK": "Sinhalanci (Siri Lanka)", + "sk": "Basulke", + "sk_SK": "Basulke (Sulobakiya)", + "sl": "Basulabe", + "sl_SI": "Basulabe (Sulobeniya)", + "sn": "Shona", + "sn_ZW": "Shona (Zimbabuwe)", + "so": "Somalianci", + "so_DJ": "Somalianci (Jibuti)", + "so_ET": "Somalianci (Habasha)", + "so_KE": "Somalianci (Kenya)", + "so_SO": "Somalianci (Somaliya)", + "sq": "Albanian", + "sq_AL": "Albanian (Albaniya)", + "sq_MK": "Albanian (Macedonia ta Arewa)", + "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_Latn": "Sabiyan (Latin)", + "sr_Latn_BA": "Sabiyan (Latin, Bosniya Harzagobina)", + "sr_Latn_ME": "Sabiyan (Latin, Mantanegara)", + "sr_Latn_RS": "Sabiyan (Latin, Sabiya)", + "sr_ME": "Sabiyan (Mantanegara)", + "sr_RS": "Sabiyan (Sabiya)", "sv": "Harshen Suwedan", "sv_FI": "Harshen Suwedan (Finlan)", "sv_SE": "Harshen Suwedan (Suwedan)", + "sw": "Harshen Suwahili", + "sw_CD": "Harshen Suwahili (Jamhuriyar Dimokuraɗiyyar Kongo)", + "sw_KE": "Harshen Suwahili (Kenya)", + "sw_TZ": "Harshen Suwahili (Tanzaniya)", + "sw_UG": "Harshen Suwahili (Yuganda)", "ta": "Tamil", "ta_IN": "Tamil (Indiya)", "ta_LK": "Tamil (Siri Lanka)", "ta_MY": "Tamil (Malaisiya)", "ta_SG": "Tamil (Singapur)", + "te": "Dʼan\/ʼYar Kabilar Telug", + "te_IN": "Dʼan\/ʼYar Kabilar Telug (Indiya)", + "tg": "Tajik", + "tg_TJ": "Tajik (Tajikistan)", "th": "Thai", "th_TH": "Thai (Tailan)", + "ti": "Tigriyanci", + "ti_ER": "Tigriyanci (Eritireya)", + "ti_ET": "Tigriyanci (Habasha)", + "tk": "Tukmenistanci", + "tk_TM": "Tukmenistanci (Turkumenistan)", + "to": "Tongan", + "to_TO": "Tongan (Tonga)", "tr": "Harshen Turkiyya", "tr_CY": "Harshen Turkiyya (Sifurus)", "tr_TR": "Harshen Turkiyya (Turkiyya)", + "tt": "Tatar", + "tt_RU": "Tatar (Rasha)", + "ug": "Ugiranci", + "ug_CN": "Ugiranci (Sin)", "uk": "Harshen Yukuren", "uk_UA": "Harshen Yukuren (Yukaran)", - "ur": "Harshen Urdu", - "ur_IN": "Harshen Urdu (Indiya)", - "ur_PK": "Harshen Urdu (Pakistan)", + "ur": "Urdawa", + "ur_IN": "Urdawa (Indiya)", + "ur_PK": "Urdawa (Pakistan)", + "uz": "Uzbek", + "uz_AF": "Uzbek (Afaganistan)", + "uz_Arab": "Uzbek (Larabci)", + "uz_Arab_AF": "Uzbek (Larabci, Afaganistan)", + "uz_Cyrl": "Uzbek (Cyrillic)", + "uz_Cyrl_UZ": "Uzbek (Cyrillic, Uzubekistan)", + "uz_Latn": "Uzbek (Latin)", + "uz_Latn_UZ": "Uzbek (Latin, Uzubekistan)", + "uz_UZ": "Uzbek (Uzubekistan)", "vi": "Harshen Biyetinam", "vi_VN": "Harshen Biyetinam (Biyetinam)", + "wo": "Wolof", + "wo_SN": "Wolof (Sanigal)", + "xh": "Bazosa", + "xh_ZA": "Bazosa (Afirka Ta Kudu)", + "yi": "Yiddish", "yo": "Yarbanci", "yo_BJ": "Yarbanci (Binin)", "yo_NG": "Yarbanci (Najeriya)", "zh": "Harshen Sinanci", - "zh_CN": "Harshen Sinanci (Caina, Sin)", + "zh_CN": "Harshen Sinanci (Sin)", "zh_Hans": "Harshen Sinanci (Sauƙaƙaƙƙen)", - "zh_Hans_CN": "Harshen Sinanci (Sauƙaƙaƙƙen, Caina, Sin)", + "zh_Hans_CN": "Harshen Sinanci (Sauƙaƙaƙƙen, Sin)", "zh_Hans_SG": "Harshen Sinanci (Sauƙaƙaƙƙen, Singapur)", "zh_Hant": "Harshen Sinanci (Na gargajiya)", "zh_Hant_TW": "Harshen Sinanci (Na gargajiya, Taiwan)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha_NE.json b/src/Symfony/Component/Intl/Resources/data/locales/ha_NE.json new file mode 100644 index 0000000000000..88ee481ab8240 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha_NE.json @@ -0,0 +1,7 @@ +{ + "Names": { + "eo": "Dʼan\/Ƴar Kabilar Andalus", + "te": "Dʼan\/Ƴar Kabilar Telug", + "te_IN": "Dʼan\/Ƴar Kabilar Telug (Indiya)" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index fa0be2c071783..cd2a593b854b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -306,6 +306,7 @@ "fy": "פריזית מערבית", "fy_NL": "פריזית מערבית (הולנד)", "ga": "אירית", + "ga_GB": "אירית (בריטניה)", "ga_IE": "אירית (אירלנד)", "gd": "גאלית סקוטית", "gd_GB": "גאלית סקוטית (בריטניה)", @@ -573,8 +574,8 @@ "uz_Latn": "אוזבקית (לטיני)", "uz_Latn_UZ": "אוזבקית (לטיני, אוזבקיסטן)", "uz_UZ": "אוזבקית (אוזבקיסטן)", - "vi": "ויאטנמית", - "vi_VN": "ויאטנמית (וייטנאם)", + "vi": "וייטנאמית", + "vi_VN": "וייטנאמית (וייטנאם)", "wo": "וולוף", "wo_SN": "וולוף (סנגל)", "xh": "קוסה", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index 4e9d02324ddc4..0059725cabeee 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -306,6 +306,7 @@ "fy": "पश्चिमी फ़्रिसियाई", "fy_NL": "पश्चिमी फ़्रिसियाई (नीदरलैंड)", "ga": "आयरिश", + "ga_GB": "आयरिश (यूनाइटेड किंगडम)", "ga_IE": "आयरिश (आयरलैंड)", "gd": "स्कॉटिश गाएलिक", "gd_GB": "स्कॉटिश गाएलिक (यूनाइटेड किंगडम)", @@ -393,7 +394,7 @@ "mi": "माओरी", "mi_NZ": "माओरी (न्यूज़ीलैंड)", "mk": "मकदूनियाई", - "mk_MK": "मकदूनियाई (मकदूनिया)", + "mk_MK": "मकदूनियाई (उत्तरी मकदूनिया)", "ml": "मलयालम", "ml_IN": "मलयालम (भारत)", "mn": "मंगोलियाई", @@ -506,7 +507,7 @@ "so_SO": "सोमाली (सोमालिया)", "sq": "अल्बानियाई", "sq_AL": "अल्बानियाई (अल्बानिया)", - "sq_MK": "अल्बानियाई (मकदूनिया)", + "sq_MK": "अल्बानियाई (उत्तरी मकदूनिया)", "sq_XK": "अल्बानियाई (कोसोवो)", "sr": "सर्बियाई", "sr_BA": "सर्बियाई (बोस्निया और हर्ज़ेगोविना)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index 939fba3f674b8..ba7e071b56df2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -179,7 +179,7 @@ "en_SL": "engleski (Sijera Leone)", "en_SS": "engleski (Južni Sudan)", "en_SX": "engleski (Sint Maarten)", - "en_SZ": "engleski (Svazi)", + "en_SZ": "engleski (Esvatini)", "en_TC": "engleski (Otoci Turks i Caicos)", "en_TK": "engleski (Tokelau)", "en_TO": "engleski (Tonga)", @@ -291,7 +291,7 @@ "fr_NC": "francuski (Nova Kaledonija)", "fr_NE": "francuski (Niger)", "fr_PF": "francuski (Francuska Polinezija)", - "fr_PM": "francuski (Sveti Petar i Mikelon)", + "fr_PM": "francuski (Saint-Pierre-et-Miquelon)", "fr_RE": "francuski (Réunion)", "fr_RW": "francuski (Ruanda)", "fr_SC": "francuski (Sejšeli)", @@ -306,6 +306,7 @@ "fy": "zapadnofrizijski", "fy_NL": "zapadnofrizijski (Nizozemska)", "ga": "irski", + "ga_GB": "irski (Ujedinjeno Kraljevstvo)", "ga_IE": "irski (Irska)", "gd": "škotski gaelski", "gd_GB": "škotski gaelski (Ujedinjeno Kraljevstvo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hu.json b/src/Symfony/Component/Intl/Resources/data/locales/hu.json index 2b9c5ed9259af..400f12e2835c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -306,6 +306,7 @@ "fy": "nyugati fríz", "fy_NL": "nyugati fríz (Hollandia)", "ga": "ír", + "ga_GB": "ír (Egyesült Királyság)", "ga_IE": "ír (Írország)", "gd": "skóciai kelta", "gd_GB": "skóciai kelta (Egyesült Királyság)", @@ -407,7 +408,7 @@ "mt": "máltai", "mt_MT": "máltai (Málta)", "my": "burmai", - "my_MM": "burmai (Mianmar [Burma])", + "my_MM": "burmai (Mianmar)", "nb": "norvég [bokmål]", "nb_NO": "norvég [bokmål] (Norvégia)", "nb_SJ": "norvég [bokmål] (Svalbard és Jan Mayen)", @@ -573,8 +574,8 @@ "uz_Latn": "üzbég (Latin)", "uz_Latn_UZ": "üzbég (Latin, Üzbegisztán)", "uz_UZ": "üzbég (Üzbegisztán)", - "vi": "vietnami", - "vi_VN": "vietnami (Vietnám)", + "vi": "vietnámi", + "vi_VN": "vietnámi (Vietnám)", "wo": "volof", "wo_SN": "volof (Szenegál)", "xh": "xhosza", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hy.json b/src/Symfony/Component/Intl/Resources/data/locales/hy.json index 3312988273194..d563070909ba9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -267,7 +267,7 @@ "fr_CF": "ֆրանսերեն (Կենտրոնական Աֆրիկյան Հանրապետություն)", "fr_CG": "ֆրանսերեն (Կոնգո - Բրազավիլ)", "fr_CH": "ֆրանսերեն (Շվեյցարիա)", - "fr_CI": "ֆրանսերեն (Կոտ դ’Իվուար)", + "fr_CI": "ֆրանսերեն (Կոտ դ՚Իվուար)", "fr_CM": "ֆրանսերեն (Կամերուն)", "fr_DJ": "ֆրանսերեն (Ջիբութի)", "fr_DZ": "ֆրանսերեն (Ալժիր)", @@ -306,6 +306,7 @@ "fy": "արևմտաֆրիզերեն", "fy_NL": "արևմտաֆրիզերեն (Նիդեռլանդներ)", "ga": "իռլանդերեն", + "ga_GB": "իռլանդերեն (Միացյալ Թագավորություն)", "ga_IE": "իռլանդերեն (Իռլանդիա)", "gd": "շոտլանդական գաելերեն", "gd_GB": "շոտլանդական գաելերեն (Միացյալ Թագավորություն)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ia.json b/src/Symfony/Component/Intl/Resources/data/locales/ia.json index 47e8125358157..05207a48f33a6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ia.json @@ -259,6 +259,7 @@ "fy": "frison occidental", "fy_NL": "frison occidental (Nederlandia)", "ga": "irlandese", + "ga_GB": "irlandese (Regno Unite)", "ga_IE": "irlandese (Irlanda)", "gd": "gaelico scotese", "gd_GB": "gaelico scotese (Regno Unite)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/id.json b/src/Symfony/Component/Intl/Resources/data/locales/id.json index b3860a22f0d74..aab75440cae69 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -112,7 +112,7 @@ "en_CH": "Inggris (Swiss)", "en_CK": "Inggris (Kepulauan Cook)", "en_CM": "Inggris (Kamerun)", - "en_CX": "Inggris (Pulau Christmas)", + "en_CX": "Inggris (Pulau Natal)", "en_CY": "Inggris (Siprus)", "en_DE": "Inggris (Jerman)", "en_DG": "Inggris (Diego Garcia)", @@ -121,7 +121,7 @@ "en_ER": "Inggris (Eritrea)", "en_FI": "Inggris (Finlandia)", "en_FJ": "Inggris (Fiji)", - "en_FK": "Inggris (Kepulauan Malvinas)", + "en_FK": "Inggris (Kepulauan Falkland)", "en_FM": "Inggris (Mikronesia)", "en_GB": "Inggris (Inggris Raya)", "en_GD": "Inggris (Grenada)", @@ -131,7 +131,7 @@ "en_GM": "Inggris (Gambia)", "en_GU": "Inggris (Guam)", "en_GY": "Inggris (Guyana)", - "en_HK": "Inggris (Hong Kong SAR Tiongkok)", + "en_HK": "Inggris (Hong Kong DAK Tiongkok)", "en_IE": "Inggris (Irlandia)", "en_IL": "Inggris (Israel)", "en_IM": "Inggris (Pulau Man)", @@ -148,7 +148,7 @@ "en_LS": "Inggris (Lesotho)", "en_MG": "Inggris (Madagaskar)", "en_MH": "Inggris (Kepulauan Marshall)", - "en_MO": "Inggris (Makau SAR Tiongkok)", + "en_MO": "Inggris (Makau DAK Tiongkok)", "en_MP": "Inggris (Kepulauan Mariana Utara)", "en_MS": "Inggris (Montserrat)", "en_MT": "Inggris (Malta)", @@ -189,9 +189,9 @@ "en_UG": "Inggris (Uganda)", "en_UM": "Inggris (Kepulauan Terluar A.S.)", "en_US": "Inggris (Amerika Serikat)", - "en_VC": "Inggris (Saint Vincent dan Grenadines)", - "en_VG": "Inggris (Kepulauan Virgin Inggris)", - "en_VI": "Inggris (Kepulauan Virgin A.S.)", + "en_VC": "Inggris (Saint Vincent dan Grenadine)", + "en_VG": "Inggris (Kepulauan Virgin Britania Raya)", + "en_VI": "Inggris (Kepulauan Virgin Amerika Serikat)", "en_VU": "Inggris (Vanuatu)", "en_WS": "Inggris (Samoa)", "en_ZA": "Inggris (Afrika Selatan)", @@ -214,7 +214,7 @@ "es_GQ": "Spanyol (Guinea Ekuatorial)", "es_GT": "Spanyol (Guatemala)", "es_HN": "Spanyol (Honduras)", - "es_IC": "Spanyol (Kepulauan Canary)", + "es_IC": "Spanyol (Kepulauan Canaria)", "es_MX": "Spanyol (Meksiko)", "es_NI": "Spanyol (Nikaragua)", "es_PA": "Spanyol (Panama)", @@ -267,7 +267,7 @@ "fr_CF": "Prancis (Republik Afrika Tengah)", "fr_CG": "Prancis (Kongo - Brazzaville)", "fr_CH": "Prancis (Swiss)", - "fr_CI": "Prancis (Pantai Gading)", + "fr_CI": "Prancis (Côte d’Ivoire)", "fr_CM": "Prancis (Kamerun)", "fr_DJ": "Prancis (Jibuti)", "fr_DZ": "Prancis (Aljazair)", @@ -306,6 +306,7 @@ "fy": "Frisia Barat", "fy_NL": "Frisia Barat (Belanda)", "ga": "Irlandia", + "ga_GB": "Irlandia (Inggris Raya)", "ga_IE": "Irlandia (Irlandia)", "gd": "Gaelik Skotlandia", "gd_GB": "Gaelik Skotlandia (Inggris Raya)", @@ -437,6 +438,8 @@ "os_GE": "Ossetia (Georgia)", "os_RU": "Ossetia (Rusia)", "pa": "Punjabi", + "pa_Arab": "Punjabi (Arab)", + "pa_Arab_PK": "Punjabi (Arab, Pakistan)", "pa_Guru": "Punjabi (Gurmukhi)", "pa_Guru_IN": "Punjabi (Gurmukhi, India)", "pa_IN": "Punjabi (India)", @@ -454,7 +457,7 @@ "pt_GQ": "Portugis (Guinea Ekuatorial)", "pt_GW": "Portugis (Guinea-Bissau)", "pt_LU": "Portugis (Luksemburg)", - "pt_MO": "Portugis (Makau SAR Tiongkok)", + "pt_MO": "Portugis (Makau DAK Tiongkok)", "pt_MZ": "Portugis (Mozambik)", "pt_PT": "Portugis (Portugal)", "pt_ST": "Portugis (Sao Tome dan Principe)", @@ -564,6 +567,8 @@ "ur_PK": "Urdu (Pakistan)", "uz": "Uzbek", "uz_AF": "Uzbek (Afganistan)", + "uz_Arab": "Uzbek (Arab)", + "uz_Arab_AF": "Uzbek (Arab, Afganistan)", "uz_Cyrl": "Uzbek (Sirilik)", "uz_Cyrl_UZ": "Uzbek (Sirilik, Uzbekistan)", "uz_Latn": "Uzbek (Latin)", @@ -581,17 +586,17 @@ "yo_NG": "Yoruba (Nigeria)", "zh": "Tionghoa", "zh_CN": "Tionghoa (Tiongkok)", - "zh_HK": "Tionghoa (Hong Kong SAR Tiongkok)", + "zh_HK": "Tionghoa (Hong Kong DAK Tiongkok)", "zh_Hans": "Tionghoa (Sederhana)", "zh_Hans_CN": "Tionghoa (Sederhana, Tiongkok)", - "zh_Hans_HK": "Tionghoa (Sederhana, Hong Kong SAR Tiongkok)", - "zh_Hans_MO": "Tionghoa (Sederhana, Makau SAR Tiongkok)", + "zh_Hans_HK": "Tionghoa (Sederhana, Hong Kong DAK Tiongkok)", + "zh_Hans_MO": "Tionghoa (Sederhana, Makau DAK Tiongkok)", "zh_Hans_SG": "Tionghoa (Sederhana, Singapura)", "zh_Hant": "Tionghoa (Tradisional)", - "zh_Hant_HK": "Tionghoa (Tradisional, Hong Kong SAR Tiongkok)", - "zh_Hant_MO": "Tionghoa (Tradisional, Makau SAR Tiongkok)", + "zh_Hant_HK": "Tionghoa (Tradisional, Hong Kong DAK Tiongkok)", + "zh_Hant_MO": "Tionghoa (Tradisional, Makau DAK Tiongkok)", "zh_Hant_TW": "Tionghoa (Tradisional, Taiwan)", - "zh_MO": "Tionghoa (Makau SAR Tiongkok)", + "zh_MO": "Tionghoa (Makau DAK Tiongkok)", "zh_SG": "Tionghoa (Singapura)", "zh_TW": "Tionghoa (Taiwan)", "zu": "Zulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ig.json b/src/Symfony/Component/Intl/Resources/data/locales/ig.json index a448d2e333493..f21e43395df1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ig.json @@ -1,75 +1,296 @@ { "Names": { "ak": "Akan", + "ak_GH": "Akan (Ghana)", "am": "Amariikị", + "am_ET": "Amariikị (Ethiopia)", "ar": "Arabiikị", + "ar_DJ": "Arabiikị (Djibouti)", + "ar_DZ": "Arabiikị (Algeria)", + "ar_EG": "Arabiikị (Egypt)", + "ar_EH": "Arabiikị (Ọdịda Anyanwụ Sahara)", + "ar_ER": "Arabiikị (Eritrea)", "ar_KM": "Arabiikị (Comorosu)", "ar_LY": "Arabiikị (Libyia)", + "ar_MA": "Arabiikị (Morocco)", + "ar_MR": "Arabiikị (Mauritania)", + "ar_SD": "Arabiikị (Sudan)", + "ar_SO": "Arabiikị (Somalia)", + "ar_SS": "Arabiikị (South Sudan)", + "ar_TD": "Arabiikị (Chad)", + "ar_TN": "Arabiikị (Tunisia)", "be": "Belaruusu", + "be_BY": "Belaruusu (Belarus)", "bg": "Bọlụgarịa", + "bg_BG": "Bọlụgarịa (Bulgaria)", "bn": "Bengali", "bn_IN": "Bengali (Mba India)", "cs": "Cheekị", + "cs_CZ": "Cheekị (Czechia)", "de": "Asụsụ Jaman", + "de_AT": "Asụsụ Jaman (Austria)", + "de_BE": "Asụsụ Jaman (Belgium)", + "de_CH": "Asụsụ Jaman (Switzerland)", "de_DE": "Asụsụ Jaman (Mba Germany)", "de_IT": "Asụsụ Jaman (Mba Italy)", + "de_LI": "Asụsụ Jaman (Liechtenstein)", + "de_LU": "Asụsụ Jaman (Luxembourg)", "el": "Giriikị", + "el_GR": "Giriikị (Greece)", "en": "Asụsụ Bekee", + "en_AG": "Asụsụ Bekee (Antigua & Barbuda)", + "en_AI": "Asụsụ Bekee (Anguilla)", + "en_AS": "Asụsụ Bekee (American Samoa)", + "en_AT": "Asụsụ Bekee (Austria)", + "en_AU": "Asụsụ Bekee (Australia)", + "en_BB": "Asụsụ Bekee (Barbados)", + "en_BE": "Asụsụ Bekee (Belgium)", + "en_BI": "Asụsụ Bekee (Burundi)", "en_BM": "Asụsụ Bekee (Bemuda)", + "en_BS": "Asụsụ Bekee (Bahamas)", + "en_BW": "Asụsụ Bekee (Botswana)", + "en_BZ": "Asụsụ Bekee (Belize)", + "en_CA": "Asụsụ Bekee (Kanada)", + "en_CC": "Asụsụ Bekee (Agwaetiti Cocos [Keeling])", + "en_CH": "Asụsụ Bekee (Switzerland)", + "en_CK": "Asụsụ Bekee (Agwaetiti Cook)", + "en_CM": "Asụsụ Bekee (Cameroon)", + "en_CX": "Asụsụ Bekee (Agwaetiti Christmas)", "en_DE": "Asụsụ Bekee (Mba Germany)", + "en_DG": "Asụsụ Bekee (Diego Garcia)", + "en_DK": "Asụsụ Bekee (Denmark)", + "en_DM": "Asụsụ Bekee (Dominika)", + "en_ER": "Asụsụ Bekee (Eritrea)", + "en_FI": "Asụsụ Bekee (Finland)", + "en_FJ": "Asụsụ Bekee (Fiji)", + "en_FK": "Asụsụ Bekee (Agwaetiti Falkland)", + "en_FM": "Asụsụ Bekee (Micronesia)", "en_GB": "Asụsụ Bekee (Mba United Kingdom)", + "en_GD": "Asụsụ Bekee (Grenada)", + "en_GG": "Asụsụ Bekee (Guernsey)", + "en_GH": "Asụsụ Bekee (Ghana)", + "en_GI": "Asụsụ Bekee (Gibraltar)", + "en_GM": "Asụsụ Bekee (Gambia)", + "en_GU": "Asụsụ Bekee (Guam)", + "en_GY": "Asụsụ Bekee (Guyana)", + "en_IE": "Asụsụ Bekee (Ireland)", + "en_IM": "Asụsụ Bekee (Isle of Man)", "en_IN": "Asụsụ Bekee (Mba India)", + "en_IO": "Asụsụ Bekee (British Indian Ocean Territory)", + "en_JE": "Asụsụ Bekee (Jersey)", + "en_JM": "Asụsụ Bekee (Jamaika)", + "en_KE": "Asụsụ Bekee (Kenya)", + "en_KI": "Asụsụ Bekee (Kiribati)", + "en_KN": "Asụsụ Bekee (St. Kitts & Nevis)", + "en_KY": "Asụsụ Bekee (Agwaetiti Cayman)", + "en_LC": "Asụsụ Bekee (St. Lucia)", + "en_LR": "Asụsụ Bekee (Liberia)", + "en_LS": "Asụsụ Bekee (Lesotho)", + "en_MG": "Asụsụ Bekee (Madagaskar)", + "en_MH": "Asụsụ Bekee (Agwaetiti Marshall)", + "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_NA": "Asụsụ Bekee (Namibia)", + "en_NF": "Asụsụ Bekee (Agwaetiti Norfolk)", "en_NG": "Asụsụ Bekee (Naịjịrịa)", + "en_NL": "Asụsụ Bekee (Netherlands)", + "en_NR": "Asụsụ Bekee (Nauru)", + "en_NU": "Asụsụ Bekee (Niue)", + "en_NZ": "Asụsụ Bekee (New Zealand)", + "en_PG": "Asụsụ Bekee (Papua New Guinea)", + "en_PH": "Asụsụ Bekee (Philippines)", + "en_PN": "Asụsụ Bekee (Agwaetiti Pitcairn)", + "en_PR": "Asụsụ Bekee (Puerto Rico)", + "en_PW": "Asụsụ Bekee (Palau)", + "en_RW": "Asụsụ Bekee (Rwanda)", + "en_SB": "Asụsụ Bekee (Agwaetiti Solomon)", + "en_SC": "Asụsụ Bekee (Seychelles)", + "en_SD": "Asụsụ Bekee (Sudan)", + "en_SE": "Asụsụ Bekee (Sweden)", + "en_SG": "Asụsụ Bekee (Singapore)", + "en_SH": "Asụsụ Bekee (St. Helena)", + "en_SI": "Asụsụ Bekee (Slovenia)", + "en_SL": "Asụsụ Bekee (Sierra Leone)", + "en_SS": "Asụsụ Bekee (South Sudan)", + "en_SX": "Asụsụ Bekee (Sint Maarten)", + "en_SZ": "Asụsụ Bekee (Eswatini)", + "en_TC": "Asụsụ Bekee (Agwaetiti Turks na Caicos)", + "en_TK": "Asụsụ Bekee (Tokelau)", + "en_TO": "Asụsụ Bekee (Tonga)", + "en_TT": "Asụsụ Bekee (Trinidad & Tobago)", + "en_TV": "Asụsụ Bekee (Tuvalu)", + "en_TZ": "Asụsụ Bekee (Tanzania)", + "en_UG": "Asụsụ Bekee (Uganda)", + "en_UM": "Asụsụ Bekee (Obere Agwaetiti Dị Na Mpụga U.S)", "en_US": "Asụsụ Bekee (Mba United States)", + "en_VC": "Asụsụ Bekee (St. Vincent & Grenadines)", + "en_VG": "Asụsụ Bekee (Agwaetiti British Virgin)", + "en_VI": "Asụsụ Bekee (Agwaetiti Virgin nke US)", + "en_VU": "Asụsụ Bekee (Vanuatu)", + "en_WS": "Asụsụ Bekee (Samoa)", + "en_ZA": "Asụsụ Bekee (South Africa)", + "en_ZM": "Asụsụ Bekee (Zambia)", + "en_ZW": "Asụsụ Bekee (Zimbabwe)", "es": "Asụsụ Spanish", + "es_AR": "Asụsụ Spanish (Argentina)", + "es_BO": "Asụsụ Spanish (Bolivia)", "es_BR": "Asụsụ Spanish (Mba Brazil)", + "es_BZ": "Asụsụ Spanish (Belize)", + "es_CL": "Asụsụ Spanish (Chile)", + "es_CO": "Asụsụ Spanish (Colombia)", + "es_CR": "Asụsụ Spanish (Kosta Rika)", + "es_CU": "Asụsụ Spanish (Cuba)", + "es_DO": "Asụsụ Spanish (Dominican Republik)", + "es_EA": "Asụsụ Spanish (Ceuta & Melilla)", + "es_EC": "Asụsụ Spanish (Ecuador)", + "es_ES": "Asụsụ Spanish (Spain)", + "es_GQ": "Asụsụ Spanish (Equatorial Guinea)", + "es_GT": "Asụsụ Spanish (Guatemala)", + "es_HN": "Asụsụ Spanish (Honduras)", + "es_IC": "Asụsụ Spanish (Agwaetiti Kanarị)", + "es_MX": "Asụsụ Spanish (Mexico)", + "es_NI": "Asụsụ Spanish (Nicaragua)", + "es_PA": "Asụsụ Spanish (Panama)", + "es_PE": "Asụsụ Spanish (Peru)", + "es_PH": "Asụsụ Spanish (Philippines)", + "es_PR": "Asụsụ Spanish (Puerto Rico)", + "es_PY": "Asụsụ Spanish (Paraguay)", + "es_SV": "Asụsụ Spanish (El Salvador)", "es_US": "Asụsụ Spanish (Mba United States)", + "es_UY": "Asụsụ Spanish (Uruguay)", + "es_VE": "Asụsụ Spanish (Venezuela)", "fa": "Peshan", "fr": "Asụsụ Fụrench", + "fr_BE": "Asụsụ Fụrench (Belgium)", + "fr_BF": "Asụsụ Fụrench (Burkina Faso)", + "fr_BI": "Asụsụ Fụrench (Burundi)", "fr_BJ": "Asụsụ Fụrench (Binin)", + "fr_BL": "Asụsụ Fụrench (St. Barthélemy)", + "fr_CA": "Asụsụ Fụrench (Kanada)", + "fr_CD": "Asụsụ Fụrench (Congo - Kinshasa)", + "fr_CF": "Asụsụ Fụrench (Central African Republik)", + "fr_CG": "Asụsụ Fụrench (Congo)", + "fr_CH": "Asụsụ Fụrench (Switzerland)", + "fr_CI": "Asụsụ Fụrench (Côte d’Ivoire)", + "fr_CM": "Asụsụ Fụrench (Cameroon)", + "fr_DJ": "Asụsụ Fụrench (Djibouti)", + "fr_DZ": "Asụsụ Fụrench (Algeria)", "fr_FR": "Asụsụ Fụrench (Mba France)", + "fr_GA": "Asụsụ Fụrench (Gabon)", + "fr_GF": "Asụsụ Fụrench (Frenchi Guiana)", + "fr_GN": "Asụsụ Fụrench (Guinea)", + "fr_GP": "Asụsụ Fụrench (Guadeloupe)", + "fr_GQ": "Asụsụ Fụrench (Equatorial Guinea)", "fr_HT": "Asụsụ Fụrench (Hati)", "fr_KM": "Asụsụ Fụrench (Comorosu)", + "fr_LU": "Asụsụ Fụrench (Luxembourg)", + "fr_MA": "Asụsụ Fụrench (Morocco)", + "fr_MC": "Asụsụ Fụrench (Monaco)", + "fr_MF": "Asụsụ Fụrench (St. Martin)", + "fr_MG": "Asụsụ Fụrench (Madagaskar)", + "fr_ML": "Asụsụ Fụrench (Mali)", + "fr_MQ": "Asụsụ Fụrench (Martinique)", + "fr_MR": "Asụsụ Fụrench (Mauritania)", + "fr_MU": "Asụsụ Fụrench (Mauritius)", + "fr_NC": "Asụsụ Fụrench (New Caledonia)", + "fr_NE": "Asụsụ Fụrench (Niger)", + "fr_PF": "Asụsụ Fụrench (Frenchi Polynesia)", + "fr_PM": "Asụsụ Fụrench (St. Pierre & Miquelon)", + "fr_RE": "Asụsụ Fụrench (Réunion)", + "fr_RW": "Asụsụ Fụrench (Rwanda)", + "fr_SC": "Asụsụ Fụrench (Seychelles)", + "fr_SN": "Asụsụ Fụrench (Senegal)", + "fr_TD": "Asụsụ Fụrench (Chad)", + "fr_TG": "Asụsụ Fụrench (Togo)", + "fr_TN": "Asụsụ Fụrench (Tunisia)", + "fr_VU": "Asụsụ Fụrench (Vanuatu)", + "fr_WF": "Asụsụ Fụrench (Wallis & Futuna)", + "fr_YT": "Asụsụ Fụrench (Mayotte)", "ha": "Awụsa", + "ha_GH": "Awụsa (Ghana)", + "ha_NE": "Awụsa (Niger)", "ha_NG": "Awụsa (Naịjịrịa)", "hi": "Hindi", "hi_IN": "Hindi (Mba India)", "hu": "Magịya", + "hu_HU": "Magịya (Hungary)", "id": "Indonisia", "ig": "Asụsụ Igbo", "ig_NG": "Asụsụ Igbo (Naịjịrịa)", "it": "Asụsụ Italian", + "it_CH": "Asụsụ Italian (Switzerland)", "it_IT": "Asụsụ Italian (Mba Italy)", + "it_SM": "Asụsụ Italian (San Marino)", + "it_VA": "Asụsụ Italian (Vatican City)", "ja": "Asụsụ Japanese", "ja_JP": "Asụsụ Japanese (Mba Japan)", "jv": "Java", "km": "Keme, Etiti", "ko": "Koria", "ms": "Maleyi", + "ms_SG": "Maleyi (Singapore)", "my": "Mịanma", "ne": "Nepali", "ne_IN": "Nepali (Mba India)", "nl": "Dọọch", + "nl_AW": "Dọọch (Aruba)", + "nl_BE": "Dọọch (Belgium)", + "nl_BQ": "Dọọch (Caribbean Netherlands)", + "nl_CW": "Dọọch (Kurakao)", + "nl_NL": "Dọọch (Netherlands)", + "nl_SR": "Dọọch (Suriname)", + "nl_SX": "Dọọch (Sint Maarten)", "pa": "Punjabi", "pa_Arab": "Punjabi (Mkpụrụ Okwu Arabic)", "pa_IN": "Punjabi (Mba India)", "pl": "Poliishi", + "pl_PL": "Poliishi (Poland)", "pt": "Asụsụ Portuguese", + "pt_AO": "Asụsụ Portuguese (Angola)", "pt_BR": "Asụsụ Portuguese (Mba Brazil)", + "pt_CH": "Asụsụ Portuguese (Switzerland)", + "pt_CV": "Asụsụ Portuguese (Cape Verde)", + "pt_GQ": "Asụsụ Portuguese (Equatorial Guinea)", + "pt_GW": "Asụsụ Portuguese (Guinea-Bissau)", + "pt_LU": "Asụsụ Portuguese (Luxembourg)", + "pt_MZ": "Asụsụ Portuguese (Mozambik)", + "pt_PT": "Asụsụ Portuguese (Portugal)", + "pt_ST": "Asụsụ Portuguese (São Tomé & Príncipe)", + "pt_TL": "Asụsụ Portuguese (Timor-Leste)", "ro": "Rumenia", + "ro_MD": "Rumenia (Moldova)", + "ro_RO": "Rumenia (Romania)", "ru": "Asụsụ Russian", + "ru_BY": "Asụsụ Russian (Belarus)", + "ru_MD": "Asụsụ Russian (Moldova)", "ru_RU": "Asụsụ Russian (Mba Russia)", + "ru_UA": "Asụsụ Russian (Ukraine)", "rw": "Rụwanda", + "rw_RW": "Rụwanda (Rwanda)", "so": "Somali", + "so_DJ": "Somali (Djibouti)", + "so_ET": "Somali (Ethiopia)", + "so_KE": "Somali (Kenya)", + "so_SO": "Somali (Somalia)", "sv": "Sụwidiishi", + "sv_AX": "Sụwidiishi (Agwaetiti Aland)", + "sv_FI": "Sụwidiishi (Finland)", + "sv_SE": "Sụwidiishi (Sweden)", "ta": "Tamụlụ", "ta_IN": "Tamụlụ (Mba India)", + "ta_SG": "Tamụlụ (Singapore)", "th": "Taị", + "th_TH": "Taị (Thailand)", "tr": "Tọkiishi", "uk": "Ukureenị", + "uk_UA": "Ukureenị (Ukraine)", "ur": "Urudu", "ur_IN": "Urudu (Mba India)", "vi": "Viyetịnaamụ", + "vi_VN": "Viyetịnaamụ (Vietnam)", "yo": "Yoruba", "yo_BJ": "Yoruba (Binin)", "yo_NG": "Yoruba (Naịjịrịa)", @@ -77,7 +298,10 @@ "zh_CN": "Mandarịịnị (Mba China)", "zh_Hans": "Mandarịịnị (Nke dị mfe)", "zh_Hans_CN": "Mandarịịnị (Nke dị mfe, Mba China)", + "zh_Hans_SG": "Mandarịịnị (Nke dị mfe, Singapore)", "zh_Hant": "Mandarịịnị (Izugbe)", - "zu": "Zulu" + "zh_SG": "Mandarịịnị (Singapore)", + "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 0f92c133576fd..aa65e552c76d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -282,7 +282,7 @@ "fr_LU": "franska (Lúxemborg)", "fr_MA": "franska (Marokkó)", "fr_MC": "franska (Mónakó)", - "fr_MF": "franska (St. Martin)", + "fr_MF": "franska (Saint-Martin)", "fr_MG": "franska (Madagaskar)", "fr_ML": "franska (Malí)", "fr_MQ": "franska (Martiník)", @@ -306,6 +306,7 @@ "fy": "vesturfrísneska", "fy_NL": "vesturfrísneska (Holland)", "ga": "írska", + "ga_GB": "írska (Bretland)", "ga_IE": "írska (Írland)", "gd": "skosk gelíska", "gd_GB": "skosk gelíska (Bretland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/it.json b/src/Symfony/Component/Intl/Resources/data/locales/it.json index 11e5058efe710..da22b42b0cee5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -306,6 +306,7 @@ "fy": "frisone occidentale", "fy_NL": "frisone occidentale (Paesi Bassi)", "ga": "irlandese", + "ga_GB": "irlandese (Regno Unito)", "ga_IE": "irlandese (Irlanda)", "gd": "gaelico scozzese", "gd_GB": "gaelico scozzese (Regno Unito)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ja.json b/src/Symfony/Component/Intl/Resources/data/locales/ja.json index 6f0544ab3b0ea..5081f13a6c309 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -306,6 +306,7 @@ "fy": "西フリジア語", "fy_NL": "西フリジア語 (オランダ)", "ga": "アイルランド語", + "ga_GB": "アイルランド語 (イギリス)", "ga_IE": "アイルランド語 (アイルランド)", "gd": "スコットランド・ゲール語", "gd_GB": "スコットランド・ゲール語 (イギリス)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/jv.json b/src/Symfony/Component/Intl/Resources/data/locales/jv.json index 871efa3fb3158..1f593a88f830f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/jv.json @@ -89,6 +89,7 @@ "ee_TG": "Ewe (Togo)", "el": "Yunani", "el_CY": "Yunani (Siprus)", + "el_GR": "Yunani (Grikenlan)", "en": "Inggris", "en_AE": "Inggris (Uni Émirat Arab)", "en_AG": "Inggris (Antigua lan Barbuda)", @@ -118,6 +119,7 @@ "en_FI": "Inggris (Finlan)", "en_FJ": "Inggris (Fiji)", "en_FK": "Inggris (Kapuloan Falkland)", + "en_FM": "Inggris (Féderasi Mikronésia)", "en_GB": "Inggris (Karajan Manunggal)", "en_GD": "Inggris (Grénada)", "en_GG": "Inggris (Guernsei)", @@ -135,6 +137,7 @@ "en_JM": "Inggris (Jamaika)", "en_KE": "Inggris (Kénya)", "en_KI": "Inggris (Kiribati)", + "en_KN": "Inggris (Saint Kits lan Nèvis)", "en_KY": "Inggris (Kapuloan Kéman)", "en_LC": "Inggris (Santa Lusia)", "en_LR": "Inggris (Libèria)", @@ -166,6 +169,7 @@ "en_SD": "Inggris (Sudan)", "en_SE": "Inggris (Swèdhen)", "en_SG": "Inggris (Singapura)", + "en_SH": "Inggris (Saint Héléna)", "en_SI": "Inggris (Slovénia)", "en_SL": "Inggris (Siéra Léoné)", "en_SS": "Inggris (Sudan Kidul)", @@ -180,6 +184,7 @@ "en_UG": "Inggris (Uganda)", "en_UM": "Inggris (Kapuloan AS Paling Njaba)", "en_US": "Inggris (Amérika Sarékat)", + "en_VC": "Inggris (Saint Vinsen lan Grénadin)", "en_VG": "Inggris (Kapuloan Virgin Britania)", "en_VI": "Inggris (Kapuloan Virgin Amérika)", "en_VU": "Inggris (Vanuatu)", @@ -201,6 +206,7 @@ "es_EA": "Spanyol (Séuta lan Melila)", "es_EC": "Spanyol (Ékuadhor)", "es_ES": "Spanyol (Sepanyol)", + "es_GQ": "Spanyol (Guinéa Katulistiwa)", "es_GT": "Spanyol (Guatémala)", "es_HN": "Spanyol (Honduras)", "es_IC": "Spanyol (Kapuloan Kanari)", @@ -250,6 +256,7 @@ "fr_BF": "Prancis (Burkina Faso)", "fr_BI": "Prancis (Burundi)", "fr_BJ": "Prancis (Bénin)", + "fr_BL": "Prancis (Saint Barthélémi)", "fr_CA": "Prancis (Kanada)", "fr_CD": "Prancis (Kongo - Kinshasa)", "fr_CF": "Prancis (Républik Afrika Tengah)", @@ -264,6 +271,7 @@ "fr_GF": "Prancis (Guyana Prancis)", "fr_GN": "Prancis (Guinea)", "fr_GP": "Prancis (Guadélup)", + "fr_GQ": "Prancis (Guinéa Katulistiwa)", "fr_HT": "Prancis (Haiti)", "fr_KM": "Prancis (Komoro)", "fr_LU": "Prancis (Luksemburg)", @@ -278,6 +286,7 @@ "fr_NC": "Prancis (Kalédonia Anyar)", "fr_NE": "Prancis (Nigér)", "fr_PF": "Prancis (Polinesia Prancis)", + "fr_PM": "Prancis (Saint Pièr lan Mikuélon)", "fr_RE": "Prancis (Réunion)", "fr_RW": "Prancis (Rwanda)", "fr_SC": "Prancis (Sésèl)", @@ -292,6 +301,7 @@ "fy": "Frisia Sisih Kulon", "fy_NL": "Frisia Sisih Kulon (Walanda)", "ga": "Irlandia", + "ga_GB": "Irlandia (Karajan Manunggal)", "ga_IE": "Irlandia (Républik Irlan)", "gd": "Gaulia", "gd_GB": "Gaulia (Karajan Manunggal)", @@ -424,6 +434,7 @@ "pt_BR": "Portugis (Brasil)", "pt_CH": "Portugis (Switserlan)", "pt_CV": "Portugis (Pongol Verdé)", + "pt_GQ": "Portugis (Guinéa Katulistiwa)", "pt_GW": "Portugis (Guinea-Bissau)", "pt_LU": "Portugis (Luksemburg)", "pt_MO": "Portugis (Laladan Administratif Astamiwa Makau)", @@ -480,12 +491,15 @@ "sr_Cyrl": "Serbia (Sirilik)", "sr_Cyrl_BA": "Serbia (Sirilik, Bosnia lan Hèrségovina)", "sr_Cyrl_ME": "Serbia (Sirilik, Montenégro)", + "sr_Cyrl_RS": "Serbia (Sirilik, Sèrbi)", "sr_Cyrl_XK": "Serbia (Sirilik, Kosovo)", "sr_Latn": "Serbia (Latin)", "sr_Latn_BA": "Serbia (Latin, Bosnia lan Hèrségovina)", "sr_Latn_ME": "Serbia (Latin, Montenégro)", + "sr_Latn_RS": "Serbia (Latin, Sèrbi)", "sr_Latn_XK": "Serbia (Latin, Kosovo)", "sr_ME": "Serbia (Montenégro)", + "sr_RS": "Serbia (Sèrbi)", "sr_XK": "Serbia (Kosovo)", "sv": "Swedia", "sv_AX": "Swedia (Kapuloan Alan)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ka.json b/src/Symfony/Component/Intl/Resources/data/locales/ka.json index 898d225e3849e..c0ea1fa260bdc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -306,6 +306,7 @@ "fy": "დასავლეთფრიზიული", "fy_NL": "დასავლეთფრიზიული (ნიდერლანდები)", "ga": "ირლანდიური", + "ga_GB": "ირლანდიური (გაერთიანებული სამეფო)", "ga_IE": "ირლანდიური (ირლანდია)", "gd": "შოტლანდიური გელური", "gd_GB": "შოტლანდიური გელური (გაერთიანებული სამეფო)", @@ -393,7 +394,7 @@ "mi": "მაორი", "mi_NZ": "მაორი (ახალი ზელანდია)", "mk": "მაკედონური", - "mk_MK": "მაკედონური (მაკედონია)", + "mk_MK": "მაკედონური (ჩრდილოეთ მაკედონია)", "ml": "მალაიალამური", "ml_IN": "მალაიალამური (ინდოეთი)", "mn": "მონღოლური", @@ -506,7 +507,7 @@ "so_SO": "სომალიური (სომალი)", "sq": "ალბანური", "sq_AL": "ალბანური (ალბანეთი)", - "sq_MK": "ალბანური (მაკედონია)", + "sq_MK": "ალბანური (ჩრდილოეთ მაკედონია)", "sq_XK": "ალბანური (კოსოვო)", "sr": "სერბული", "sr_BA": "სერბული (ბოსნია და ჰერცეგოვინა)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 52f072983babc..8ac16b8952655 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -306,6 +306,7 @@ "fy": "батыс фриз тілі", "fy_NL": "батыс фриз тілі (Нидерланд)", "ga": "ирланд тілі", + "ga_GB": "ирланд тілі (Ұлыбритания)", "ga_IE": "ирланд тілі (Ирландия)", "gd": "шотландиялық гэль тілі", "gd_GB": "шотландиялық гэль тілі (Ұлыбритания)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index ca7ac0f0d768e..c94ca52d75c60 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -306,6 +306,7 @@ "fy": "ហ្វ្រីស៊ានខាងលិច", "fy_NL": "ហ្វ្រីស៊ានខាងលិច (ហូឡង់)", "ga": "អៀរឡង់", + "ga_GB": "អៀរឡង់ (ចក្រភព​អង់គ្លេស)", "ga_IE": "អៀរឡង់ (អៀរឡង់)", "gd": "ស្កុតហ្កែលិគ", "gd_GB": "ស្កុតហ្កែលិគ (ចក្រភព​អង់គ្លេស)", @@ -460,7 +461,7 @@ "pt_MZ": "ព័រទុយហ្គាល់ (ម៉ូសំប៊ិក)", "pt_PT": "ព័រទុយហ្គាល់ (ព័រទុយហ្គាល់)", "pt_ST": "ព័រទុយហ្គាល់ (សៅតូម៉េ និង ប្រាំងស៊ីប)", - "pt_TL": "ព័រទុយហ្គាល់ (ទីម័រលីស)", + "pt_TL": "ព័រទុយហ្គាល់ (ទីម័រលេស្តេ)", "qu": "ហ្គិកឈួ", "qu_BO": "ហ្គិកឈួ (បូលីវី)", "qu_EC": "ហ្គិកឈួ (អេក្វាទ័រ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index 95723a1d7908a..dc1a7ddde920b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -73,7 +73,7 @@ "cs": "ಜೆಕ್", "cs_CZ": "ಜೆಕ್ (ಝೆಕಿಯಾ)", "cy": "ವೆಲ್ಶ್", - "cy_GB": "ವೆಲ್ಶ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", + "cy_GB": "ವೆಲ್ಶ್ (ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್)", "da": "ಡ್ಯಾನಿಶ್", "da_DK": "ಡ್ಯಾನಿಶ್ (ಡೆನ್ಮಾರ್ಕ್)", "da_GL": "ಡ್ಯಾನಿಶ್ (ಗ್ರೀನ್‌ಲ್ಯಾಂಡ್)", @@ -123,7 +123,7 @@ "en_FJ": "ಇಂಗ್ಲಿಷ್ (ಫಿಜಿ)", "en_FK": "ಇಂಗ್ಲಿಷ್ (ಫಾಕ್‌ಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳು)", "en_FM": "ಇಂಗ್ಲಿಷ್ (ಮೈಕ್ರೋನೇಶಿಯಾ)", - "en_GB": "ಇಂಗ್ಲಿಷ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", + "en_GB": "ಇಂಗ್ಲಿಷ್ (ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್)", "en_GD": "ಇಂಗ್ಲಿಷ್ (ಗ್ರೆನೆಡಾ)", "en_GG": "ಇಂಗ್ಲಿಷ್ (ಗುರ್ನ್‌ಸೆ)", "en_GH": "ಇಂಗ್ಲಿಷ್ (ಘಾನಾ)", @@ -179,7 +179,7 @@ "en_SL": "ಇಂಗ್ಲಿಷ್ (ಸಿಯೆರ್ರಾ ಲಿಯೋನ್)", "en_SS": "ಇಂಗ್ಲಿಷ್ (ದಕ್ಷಿಣ ಸುಡಾನ್)", "en_SX": "ಇಂಗ್ಲಿಷ್ (ಸಿಂಟ್ ಮಾರ್ಟೆನ್)", - "en_SZ": "ಇಂಗ್ಲಿಷ್ (ಸ್ವಾಜಿಲ್ಯಾಂಡ್)", + "en_SZ": "ಇಂಗ್ಲಿಷ್ (ಸ್ವಾತಿನಿ)", "en_TC": "ಇಂಗ್ಲಿಷ್ (ಟರ್ಕ್ಸ್ ಮತ್ತು ಕೈಕೋಸ್ ದ್ವೀಪಗಳು)", "en_TK": "ಇಂಗ್ಲಿಷ್ (ಟೊಕೆಲಾವ್)", "en_TO": "ಇಂಗ್ಲಿಷ್ (ಟೊಂಗಾ)", @@ -306,9 +306,10 @@ "fy": "ಪಶ್ಚಿಮ ಫ್ರಿಸಿಯನ್", "fy_NL": "ಪಶ್ಚಿಮ ಫ್ರಿಸಿಯನ್ (ನೆದರ್‌ಲ್ಯಾಂಡ್ಸ್)", "ga": "ಐರಿಷ್", + "ga_GB": "ಐರಿಷ್ (ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್)", "ga_IE": "ಐರಿಷ್ (ಐರ್ಲೆಂಡ್)", "gd": "ಸ್ಕಾಟಿಶ್ ಗೆಲಿಕ್", - "gd_GB": "ಸ್ಕಾಟಿಶ್ ಗೆಲಿಕ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", + "gd_GB": "ಸ್ಕಾಟಿಶ್ ಗೆಲಿಕ್ (ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್)", "gl": "ಗ್ಯಾಲಿಶಿಯನ್", "gl_ES": "ಗ್ಯಾಲಿಶಿಯನ್ (ಸ್ಪೇನ್)", "gu": "ಗುಜರಾತಿ", @@ -368,7 +369,7 @@ "ku": "ಕುರ್ದಿಷ್", "ku_TR": "ಕುರ್ದಿಷ್ (ಟರ್ಕಿ)", "kw": "ಕಾರ್ನಿಷ್", - "kw_GB": "ಕಾರ್ನಿಷ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", + "kw_GB": "ಕಾರ್ನಿಷ್ (ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್)", "ky": "ಕಿರ್ಗಿಜ್", "ky_KG": "ಕಿರ್ಗಿಜ್ (ಕಿರ್ಗಿಸ್ಥಾನ್)", "lb": "ಲಕ್ಸಂಬರ್ಗಿಷ್", @@ -393,7 +394,7 @@ "mi": "ಮಾವೋರಿ", "mi_NZ": "ಮಾವೋರಿ (ನ್ಯೂಜಿಲೆಂಡ್)", "mk": "ಮೆಸಿಡೋನಿಯನ್", - "mk_MK": "ಮೆಸಿಡೋನಿಯನ್ (ಮ್ಯಾಸಿಡೋನಿಯಾ)", + "mk_MK": "ಮೆಸಿಡೋನಿಯನ್ (ಉತ್ತರ ಮ್ಯಾಸಿಡೋನಿಯಾ)", "ml": "ಮಲಯಾಳಂ", "ml_IN": "ಮಲಯಾಳಂ (ಭಾರತ)", "mn": "ಮಂಗೋಲಿಯನ್", @@ -506,7 +507,7 @@ "so_SO": "ಸೊಮಾಲಿ (ಸೊಮಾಲಿಯಾ)", "sq": "ಅಲ್ಬೇನಿಯನ್", "sq_AL": "ಅಲ್ಬೇನಿಯನ್ (ಅಲ್ಬೇನಿಯಾ)", - "sq_MK": "ಅಲ್ಬೇನಿಯನ್ (ಮ್ಯಾಸಿಡೋನಿಯಾ)", + "sq_MK": "ಅಲ್ಬೇನಿಯನ್ (ಉತ್ತರ ಮ್ಯಾಸಿಡೋನಿಯಾ)", "sq_XK": "ಅಲ್ಬೇನಿಯನ್ (ಕೊಸೊವೊ)", "sr": "ಸೆರ್ಬಿಯನ್", "sr_BA": "ಸೆರ್ಬಿಯನ್ (ಬೋಸ್ನಿಯಾ ಮತ್ತು ಹರ್ಜೆಗೋವಿನಾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index f55f3007aec21..b6eccf3d0da5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -306,6 +306,7 @@ "fy": "서부 프리지아어", "fy_NL": "서부 프리지아어(네덜란드)", "ga": "아일랜드어", + "ga_GB": "아일랜드어(영국)", "ga_IE": "아일랜드어(아일랜드)", "gd": "스코틀랜드 게일어", "gd_GB": "스코틀랜드 게일어(영국)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index a8de48fcb0b50..d76a8eaf9d357 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -297,6 +297,7 @@ "fy": "مغربی فرِشیَن", "fy_NL": "مغربی فرِشیَن (نیٖدَرلینڑ)", "ga": "اَیرِش", + "ga_GB": "اَیرِش (یُنایٹِڑ کِنگڈَم)", "ga_IE": "اَیرِش (اَیَرلینڑ)", "gd": "سکوٹِش گیےلِک", "gd_GB": "سکوٹِش گیےلِک (یُنایٹِڑ کِنگڈَم)", @@ -384,7 +385,6 @@ "mi": "ماوری", "mi_NZ": "ماوری (نیوٗزِلینڑ)", "mk": "میکَڈونیَن", - "mk_MK": "میکَڈونیَن (مؠسوڑونِیا)", "ml": "مٔلیالَم", "ml_IN": "مٔلیالَم (ہِندوستان)", "mn": "مَنگولی", @@ -495,7 +495,6 @@ "so_SO": "سومٲلی (سومالِیا)", "sq": "البانِیَن", "sq_AL": "البانِیَن (اؠلبانِیا)", - "sq_MK": "البانِیَن (مؠسوڑونِیا)", "sr": "سٔربِیَن", "sr_BA": "سٔربِیَن (بوسنِیا تہٕ ہَرزِگووِنا)", "sr_Cyrl": "سٔربِیَن (سَیرِلِک)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ku.json b/src/Symfony/Component/Intl/Resources/data/locales/ku.json index 2c7c51e377796..ea767897dcbfd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ku.json @@ -287,6 +287,7 @@ "fy": "frîsî", "fy_NL": "frîsî (Holenda)", "ga": "îrî", + "ga_GB": "îrî (Keyaniya Yekbûyî)", "ga_IE": "îrî (Îrlenda)", "gd": "gaelîka skotî", "gd_GB": "gaelîka skotî (Keyaniya Yekbûyî)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ky.json b/src/Symfony/Component/Intl/Resources/data/locales/ky.json index 867412b042709..0dcd9054daa82 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -306,6 +306,7 @@ "fy": "батыш фризче", "fy_NL": "батыш фризче (Нидерланд)", "ga": "ирландча", + "ga_GB": "ирландча (Улуу Британия)", "ga_IE": "ирландча (Ирландия)", "gd": "шотладиялык гелча", "gd_GB": "шотладиялык гелча (Улуу Британия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index a1c784dea2686..f3ce93ebdd023 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -306,6 +306,7 @@ "fy": "Westfriesesch", "fy_NL": "Westfriesesch (Holland)", "ga": "Iresch", + "ga_GB": "Iresch (Groussbritannien)", "ga_IE": "Iresch (Irland)", "gd": "Schottescht Gällesch", "gd_GB": "Schottescht Gällesch (Groussbritannien)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index c06bd0fcec5d4..090ad7f291f2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -208,7 +208,7 @@ "es_CR": "ສະແປນນິຊ (ໂຄສຕາ ຣິກາ)", "es_CU": "ສະແປນນິຊ (ຄິວບາ)", "es_DO": "ສະແປນນິຊ (ສາທາລະນະລັດ ໂດມິນິກັນ)", - "es_EA": "ສະແປນນິຊ (ເຊວຕາ ແລະເມລິນລາ)", + "es_EA": "ສະແປນນິຊ (ເຊວຕາ & ເມລິນລາ)", "es_EC": "ສະແປນນິຊ (ເອກວາດໍ)", "es_ES": "ສະແປນນິຊ (ສະເປນ)", "es_GQ": "ສະແປນນິຊ (ເອຄົວໂທຣຽວ ກີນີ)", @@ -306,6 +306,7 @@ "fy": "ຟຣິຊຽນ ຕາເວັນຕົກ", "fy_NL": "ຟຣິຊຽນ ຕາເວັນຕົກ (ເນເທີແລນ)", "ga": "ໄອຣິສ", + "ga_GB": "ໄອຣິສ (ສະຫະລາດຊະອະນາຈັກ)", "ga_IE": "ໄອຣິສ (ໄອແລນ)", "gd": "ສະກັອດເກລິກ", "gd_GB": "ສະກັອດເກລິກ (ສະຫະລາດຊະອະນາຈັກ)", @@ -393,7 +394,7 @@ "mi": "ມາວຣິ", "mi_NZ": "ມາວຣິ (ນິວຊີແລນ)", "mk": "ແມຊິໂດນຽນ", - "mk_MK": "ແມຊິໂດນຽນ (ແມຊິໂດເນຍ)", + "mk_MK": "ແມຊິໂດນຽນ (ແມຊິໂດເນຍເໜືອ)", "ml": "ມາເລອາລຳ", "ml_IN": "ມາເລອາລຳ (ອິນເດຍ)", "mn": "ມອງໂກເລຍ", @@ -506,7 +507,7 @@ "so_SO": "ໂຊມາລີ (ໂຊມາເລຍ)", "sq": "ອານບານຽນ", "sq_AL": "ອານບານຽນ (ແອວເບເນຍ)", - "sq_MK": "ອານບານຽນ (ແມຊິໂດເນຍ)", + "sq_MK": "ອານບານຽນ (ແມຊິໂດເນຍເໜືອ)", "sq_XK": "ອານບານຽນ (ໂຄໂຊໂວ)", "sr": "ເຊີບຽນ", "sr_BA": "ເຊີບຽນ (ບອດສະເນຍ ແລະ ແຮສໂກວີນາ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index ba81de9805338..20d47722bf1dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -306,6 +306,7 @@ "fy": "vakarų fryzų", "fy_NL": "vakarų fryzų (Nyderlandai)", "ga": "airių", + "ga_GB": "airių (Jungtinė Karalystė)", "ga_IE": "airių (Airija)", "gd": "škotų [gėlų]", "gd_GB": "škotų [gėlų] (Jungtinė Karalystė)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index d9d807c6e68d3..1e3fd4b78fb25 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -148,7 +148,7 @@ "en_LS": "angļu (Lesoto)", "en_MG": "angļu (Madagaskara)", "en_MH": "angļu (Māršala salas)", - "en_MO": "angļu (Ķīnas īpašās pārvaldes apgabals Makao)", + "en_MO": "angļu (ĶTR īpašais administratīvais reģions Makao)", "en_MP": "angļu (Ziemeļu Marianas salas)", "en_MS": "angļu (Montserrata)", "en_MT": "angļu (Malta)", @@ -179,7 +179,7 @@ "en_SL": "angļu (Sjerraleone)", "en_SS": "angļu (Dienvidsudāna)", "en_SX": "angļu (Sintmārtena)", - "en_SZ": "angļu (Svazilenda)", + "en_SZ": "angļu (Svatini)", "en_TC": "angļu (Tērksas un Kaikosas salas)", "en_TK": "angļu (Tokelau)", "en_TO": "angļu (Tonga)", @@ -306,6 +306,7 @@ "fy": "rietumfrīzu", "fy_NL": "rietumfrīzu (Nīderlande)", "ga": "īru", + "ga_GB": "īru (Apvienotā Karaliste)", "ga_IE": "īru (Īrija)", "gd": "skotu gēlu", "gd_GB": "skotu gēlu (Apvienotā Karaliste)", @@ -456,7 +457,7 @@ "pt_GQ": "portugāļu (Ekvatoriālā Gvineja)", "pt_GW": "portugāļu (Gvineja-Bisava)", "pt_LU": "portugāļu (Luksemburga)", - "pt_MO": "portugāļu (Ķīnas īpašās pārvaldes apgabals Makao)", + "pt_MO": "portugāļu (ĶTR īpašais administratīvais reģions Makao)", "pt_MZ": "portugāļu (Mozambika)", "pt_PT": "portugāļu (Portugāle)", "pt_ST": "portugāļu (Santome un Prinsipi)", @@ -589,13 +590,13 @@ "zh_Hans": "ķīniešu (vienkāršotā)", "zh_Hans_CN": "ķīniešu (vienkāršotā, Ķīna)", "zh_Hans_HK": "ķīniešu (vienkāršotā, Ķīnas īpašās pārvaldes apgabals Honkonga)", - "zh_Hans_MO": "ķīniešu (vienkāršotā, Ķīnas īpašās pārvaldes apgabals Makao)", + "zh_Hans_MO": "ķīniešu (vienkāršotā, ĶTR īpašais administratīvais reģions Makao)", "zh_Hans_SG": "ķīniešu (vienkāršotā, Singapūra)", "zh_Hant": "ķīniešu (tradicionālā)", "zh_Hant_HK": "ķīniešu (tradicionālā, Ķīnas īpašās pārvaldes apgabals Honkonga)", - "zh_Hant_MO": "ķīniešu (tradicionālā, Ķīnas īpašās pārvaldes apgabals Makao)", + "zh_Hant_MO": "ķīniešu (tradicionālā, ĶTR īpašais administratīvais reģions Makao)", "zh_Hant_TW": "ķīniešu (tradicionālā, Taivāna)", - "zh_MO": "ķīniešu (Ķīnas īpašās pārvaldes apgabals Makao)", + "zh_MO": "ķīniešu (ĶTR īpašais administratīvais reģions Makao)", "zh_SG": "ķīniešu (Singapūra)", "zh_TW": "ķīniešu (Taivāna)", "zu": "zulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index 12eb1bfabcc4d..9104fa86ac37e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/meta.json @@ -314,6 +314,7 @@ "fy", "fy_NL", "ga", + "ga_GB", "ga_IE", "gd", "gd_GB", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 4c74e7bdc98bc..3e2483033a8f2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -306,6 +306,7 @@ "fy": "западнофризиски", "fy_NL": "западнофризиски (Холандија)", "ga": "ирски", + "ga_GB": "ирски (Обединето Кралство)", "ga_IE": "ирски (Ирска)", "gd": "шкотски гелски", "gd_GB": "шкотски гелски (Обединето Кралство)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index 6332aabbb8b0e..bd9467b5c829b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -85,8 +85,8 @@ "de_IT": "ജർമ്മൻ (ഇറ്റലി)", "de_LI": "ജർമ്മൻ (ലിച്ചൺസ്റ്റൈൻ)", "de_LU": "ജർമ്മൻ (ലക്സംബർഗ്)", - "dz": "സോങ്ക", - "dz_BT": "സോങ്ക (ഭൂട്ടാൻ)", + "dz": "ദ്‌സോങ്ക", + "dz_BT": "ദ്‌സോങ്ക (ഭൂട്ടാൻ)", "ee": "യൂവ്", "ee_GH": "യൂവ് (ഘാന)", "ee_TG": "യൂവ് (ടോഗോ)", @@ -291,7 +291,7 @@ "fr_NC": "ഫ്രഞ്ച് (ന്യൂ കാലിഡോണിയ)", "fr_NE": "ഫ്രഞ്ച് (നൈജർ)", "fr_PF": "ഫ്രഞ്ച് (ഫ്രഞ്ച് പോളിനേഷ്യ)", - "fr_PM": "ഫ്രഞ്ച് (സെന്റ് പിയറിയും മിക്കലണും)", + "fr_PM": "ഫ്രഞ്ച് (സെന്റ് പിയറി ആൻഡ് മിക്വലൻ)", "fr_RE": "ഫ്രഞ്ച് (റീയൂണിയൻ)", "fr_RW": "ഫ്രഞ്ച് (റുവാണ്ട)", "fr_SC": "ഫ്രഞ്ച് (സീഷെൽസ്)", @@ -306,6 +306,7 @@ "fy": "പശ്ചിമ ഫ്രിഷിയൻ", "fy_NL": "പശ്ചിമ ഫ്രിഷിയൻ (നെതർലാൻഡ്‌സ്)", "ga": "ഐറിഷ്", + "ga_GB": "ഐറിഷ് (യുണൈറ്റഡ് കിംഗ്ഡം)", "ga_IE": "ഐറിഷ് (അയർലൻഡ്)", "gd": "സ്കോട്ടിഷ് ഗൈലിക്", "gd_GB": "സ്കോട്ടിഷ് ഗൈലിക് (യുണൈറ്റഡ് കിംഗ്ഡം)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index a50526e8cf045..f5aadf0362577 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -179,7 +179,7 @@ "en_SL": "англи (Сьерра-Леоне)", "en_SS": "англи (Өмнөд Судан)", "en_SX": "англи (Синт Мартен)", - "en_SZ": "англи (Свазиланд)", + "en_SZ": "англи (Эсватини)", "en_TC": "англи (Турк ба Кайкосын Арлууд)", "en_TK": "англи (Токелау)", "en_TO": "англи (Тонга)", @@ -306,6 +306,7 @@ "fy": "баруун фриз", "fy_NL": "баруун фриз (Нидерланд)", "ga": "ирланд", + "ga_GB": "ирланд (Их Британи)", "ga_IE": "ирланд (Ирланд)", "gd": "шотландын гел", "gd_GB": "шотландын гел (Их Британи)", @@ -393,7 +394,7 @@ "mi": "маори", "mi_NZ": "маори (Шинэ Зеланд)", "mk": "македон", - "mk_MK": "македон (Македон)", + "mk_MK": "македон (Хойд Македон)", "ml": "малаялам", "ml_IN": "малаялам (Энэтхэг)", "mn": "монгол", @@ -470,13 +471,13 @@ "rn": "рунди", "rn_BI": "рунди (Бурунди)", "ro": "румын", - "ro_MD": "румын (Молдав)", + "ro_MD": "румын (Молдова)", "ro_RO": "румын (Румын)", "ru": "орос", "ru_BY": "орос (Беларусь)", "ru_KG": "орос (Кыргызстан)", "ru_KZ": "орос (Казахстан)", - "ru_MD": "орос (Молдав)", + "ru_MD": "орос (Молдова)", "ru_RU": "орос (Орос)", "ru_UA": "орос (Украин)", "rw": "киньяруанда", @@ -506,7 +507,7 @@ "so_SO": "сомали (Сомали)", "sq": "албани", "sq_AL": "албани (Албани)", - "sq_MK": "албани (Македон)", + "sq_MK": "албани (Хойд Македон)", "sq_XK": "албани (Косово)", "sr": "серб", "sr_BA": "серб (Босни-Герцеговин)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index 92f38298c5af3..e81387ba50fa7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -179,7 +179,7 @@ "en_SL": "इंग्रजी (सिएरा लिओन)", "en_SS": "इंग्रजी (दक्षिण सुदान)", "en_SX": "इंग्रजी (सिंट मार्टेन)", - "en_SZ": "इंग्रजी (स्वाझिलँड)", + "en_SZ": "इंग्रजी (इस्वातिनी)", "en_TC": "इंग्रजी (टर्क्स आणि कैकोस बेटे)", "en_TK": "इंग्रजी (तोकेलाउ)", "en_TO": "इंग्रजी (टोंगा)", @@ -306,6 +306,7 @@ "fy": "पश्चिमी फ्रिशियन", "fy_NL": "पश्चिमी फ्रिशियन (नेदरलँड)", "ga": "आयरिश", + "ga_GB": "आयरिश (युनायटेड किंगडम)", "ga_IE": "आयरिश (आयर्लंड)", "gd": "स्कॉट्स गेलिक", "gd_GB": "स्कॉट्स गेलिक (युनायटेड किंगडम)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 2429430f1ee32..6b54c431cff8e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -306,6 +306,7 @@ "fy": "Frisian Barat", "fy_NL": "Frisian Barat (Belanda)", "ga": "Ireland", + "ga_GB": "Ireland (United Kingdom)", "ga_IE": "Ireland (Ireland)", "gd": "Scots Gaelic", "gd_GB": "Scots Gaelic (United Kingdom)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mt.json b/src/Symfony/Component/Intl/Resources/data/locales/mt.json index c70554dbd75cb..f412c1b48e890 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -306,6 +306,7 @@ "fy": "Frisian tal-Punent", "fy_NL": "Frisian tal-Punent (in-Netherlands)", "ga": "Irlandiż", + "ga_GB": "Irlandiż (ir-Renju Unit)", "ga_IE": "Irlandiż (l-Irlanda)", "gd": "Galliku Skoċċiż", "gd_GB": "Galliku Skoċċiż (ir-Renju Unit)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/my.json b/src/Symfony/Component/Intl/Resources/data/locales/my.json index 3db810af576cc..5a9bf1e4d74ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -306,6 +306,7 @@ "fy": "အနောက် ဖရီစီရန်", "fy_NL": "အနောက် ဖရီစီရန် (နယ်သာလန်)", "ga": "အိုင်းရစ်ရှ်", + "ga_GB": "အိုင်းရစ်ရှ် (ယူနိုက်တက်ကင်းဒမ်း)", "ga_IE": "အိုင်းရစ်ရှ် (အိုင်ယာလန်)", "gd": "စကော့တစ်ရှ် ဂေးလစ်ခ်", "gd_GB": "စကော့တစ်ရှ် ဂေးလစ်ခ် (ယူနိုက်တက်ကင်းဒမ်း)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index a8320d2b5e7a4..5b95d64aebf9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -306,6 +306,7 @@ "fy": "vestfrisisk", "fy_NL": "vestfrisisk (Nederland)", "ga": "irsk", + "ga_GB": "irsk (Storbritannia)", "ga_IE": "irsk (Irland)", "gd": "skotsk-gælisk", "gd_GB": "skotsk-gælisk (Storbritannia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index 37eaae9f42ca2..0c67fdd75f16c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -14,7 +14,7 @@ "ar_DZ": "अरबी (अल्जेरिया)", "ar_EG": "अरबी (इजिप्ट)", "ar_EH": "अरबी (पश्चिमी साहारा)", - "ar_ER": "अरबी (एरित्रिया)", + "ar_ER": "अरबी (एरिट्रीया)", "ar_IL": "अरबी (इजरायल)", "ar_IQ": "अरबी (इराक)", "ar_JO": "अरबी (जोर्डन)", @@ -67,7 +67,7 @@ "ca_AD": "क्याटालन (अन्डोर्रा)", "ca_ES": "क्याटालन (स्पेन)", "ca_FR": "क्याटालन (फ्रान्स)", - "ca_IT": "क्याटालन (इटाली)", + "ca_IT": "क्याटालन (इटली)", "ce": "चेचेन", "ce_RU": "चेचेन (रूस)", "cs": "चेक", @@ -82,7 +82,7 @@ "de_BE": "जर्मन (बेल्जियम)", "de_CH": "जर्मन (स्विजरल्याण्ड)", "de_DE": "जर्मन (जर्मनी)", - "de_IT": "जर्मन (इटाली)", + "de_IT": "जर्मन (इटली)", "de_LI": "जर्मन (लिकटेन्सटाइन)", "de_LU": "जर्मन (लक्जेमबर्ग)", "dz": "जोङ्खा", @@ -118,14 +118,14 @@ "en_DG": "अङ्ग्रेजी (डियगो गार्सिया)", "en_DK": "अङ्ग्रेजी (डेनमार्क)", "en_DM": "अङ्ग्रेजी (डोमिनिका)", - "en_ER": "अङ्ग्रेजी (एरित्रिया)", + "en_ER": "अङ्ग्रेजी (एरिट्रीया)", "en_FI": "अङ्ग्रेजी (फिनल्याण्ड)", "en_FJ": "अङ्ग्रेजी (फिजी)", "en_FK": "अङ्ग्रेजी (फकल्याण्ड टापुहरु)", "en_FM": "अङ्ग्रेजी (माइक्रोनेसिया)", "en_GB": "अङ्ग्रेजी (संयुक्त अधिराज्य)", "en_GD": "अङ्ग्रेजी (ग्रेनाडा)", - "en_GG": "अङ्ग्रेजी (गुएर्नसे)", + "en_GG": "अङ्ग्रेजी (ग्यूर्न्सी)", "en_GH": "अङ्ग्रेजी (घाना)", "en_GI": "अङ्ग्रेजी (जिब्राल्टार)", "en_GM": "अङ्ग्रेजी (गाम्विया)", @@ -169,7 +169,7 @@ "en_PR": "अङ्ग्रेजी (पुएर्टो रिको)", "en_PW": "अङ्ग्रेजी (पलाउ)", "en_RW": "अङ्ग्रेजी (रवाण्डा)", - "en_SB": "अङ्ग्रेजी (सोलोमोन टापुहरु)", + "en_SB": "अङ्ग्रेजी (सोलोमन टापुहरू)", "en_SC": "अङ्ग्रेजी (सेचेलेस)", "en_SD": "अङ्ग्रेजी (सुडान)", "en_SE": "अङ्ग्रेजी (स्विडेन)", @@ -306,6 +306,7 @@ "fy": "पश्चिमी फ्रिसियन", "fy_NL": "पश्चिमी फ्रिसियन (नेदरल्याण्ड)", "ga": "आइरिस", + "ga_GB": "आइरिस (संयुक्त अधिराज्य)", "ga_IE": "आइरिस (आयरल्याण्ड)", "gd": "स्कटिस गाएलिक", "gd_GB": "स्कटिस गाएलिक (संयुक्त अधिराज्य)", @@ -341,7 +342,7 @@ "is_IS": "आइसल्यान्डियाली (आइस्ल्याण्ड)", "it": "इटालेली", "it_CH": "इटालेली (स्विजरल्याण्ड)", - "it_IT": "इटालेली (इटाली)", + "it_IT": "इटालेली (इटली)", "it_SM": "इटालेली (सान् मारिनो)", "it_VA": "इटालेली (भेटिकन सिटी)", "ja": "जापानी", @@ -542,7 +543,7 @@ "th": "थाई", "th_TH": "थाई (थाइल्याण्ड)", "ti": "टिग्रिन्या", - "ti_ER": "टिग्रिन्या (एरित्रिया)", + "ti_ER": "टिग्रिन्या (एरिट्रीया)", "ti_ET": "टिग्रिन्या (इथियोपिया)", "tk": "टर्कमेन", "tk_TM": "टर्कमेन (तुर्कमेनिस्तान)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index f91277e21bef3..d34a7bee9b619 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -306,6 +306,7 @@ "fy": "Fries", "fy_NL": "Fries (Nederland)", "ga": "Iers", + "ga_GB": "Iers (Verenigd Koninkrijk)", "ga_IE": "Iers (Ierland)", "gd": "Schots-Gaelisch", "gd_GB": "Schots-Gaelisch (Verenigd Koninkrijk)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nn.json b/src/Symfony/Component/Intl/Resources/data/locales/nn.json index 25c23b50429f0..3fc0d3619ef9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -306,6 +306,7 @@ "fy": "vestfrisisk", "fy_NL": "vestfrisisk (Nederland)", "ga": "irsk", + "ga_GB": "irsk (Storbritannia)", "ga_IE": "irsk (Irland)", "gd": "skotsk-gælisk", "gd_GB": "skotsk-gælisk (Storbritannia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/om.json b/src/Symfony/Component/Intl/Resources/data/locales/om.json index cee8d6c1a5ba9..dc89f7b3dbd0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/om.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/om.json @@ -42,6 +42,7 @@ "fr_FR": "Afaan Faransaayii (France)", "fy": "Afaan Firisiyaani", "ga": "Afaan Ayirishii", + "ga_GB": "Afaan Ayirishii (United Kingdom)", "gd": "Scots Gaelic", "gd_GB": "Scots Gaelic (United Kingdom)", "gl": "Afaan Galishii", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index 9099a6f959892..1192e528937da 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -263,7 +263,7 @@ "fr_BJ": "ଫରାସୀ (ବେନିନ୍)", "fr_BL": "ଫରାସୀ (ସେଣ୍ଟ ବାର୍ଥେଲେମି)", "fr_CA": "ଫରାସୀ (କାନାଡା)", - "fr_CD": "ଫରାସୀ (କଙ୍ଗୋ-କିନସାସା)", + "fr_CD": "ଫରାସୀ (କଙ୍ଗୋ [ଡିଆରସି])", "fr_CF": "ଫରାସୀ (ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର)", "fr_CG": "ଫରାସୀ (କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ)", "fr_CH": "ଫରାସୀ (ସ୍ୱିଜରଲ୍ୟାଣ୍ଡ)", @@ -306,6 +306,7 @@ "fy": "ପାଶ୍ଚାତ୍ୟ ଫ୍ରିସିଆନ୍", "fy_NL": "ପାଶ୍ଚାତ୍ୟ ଫ୍ରିସିଆନ୍ (ନେଦରଲ୍ୟାଣ୍ଡ)", "ga": "ଇରିସ୍", + "ga_GB": "ଇରିସ୍ (ଯୁକ୍ତରାଜ୍ୟ)", "ga_IE": "ଇରିସ୍ (ଆୟରଲ୍ୟାଣ୍ଡ)", "gd": "ସ୍କଟିସ୍ ଗାଏଲିକ୍", "gd_GB": "ସ୍କଟିସ୍ ଗାଏଲିକ୍ (ଯୁକ୍ତରାଜ୍ୟ)", @@ -377,7 +378,7 @@ "lg_UG": "ଗନ୍ଦା (ଉଗାଣ୍ଡା)", "ln": "ଲିଙ୍ଗାଲା", "ln_AO": "ଲିଙ୍ଗାଲା (ଆଙ୍ଗୋଲା)", - "ln_CD": "ଲିଙ୍ଗାଲା (କଙ୍ଗୋ-କିନସାସା)", + "ln_CD": "ଲିଙ୍ଗାଲା (କଙ୍ଗୋ [ଡିଆରସି])", "ln_CF": "ଲିଙ୍ଗାଲା (ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର)", "ln_CG": "ଲିଙ୍ଗାଲା (କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ)", "lo": "ଲାଓ", @@ -385,7 +386,7 @@ "lt": "ଲିଥୁଆନିଆନ୍", "lt_LT": "ଲିଥୁଆନିଆନ୍ (ଲିଥୁଆନିଆ)", "lu": "ଲ୍ୟୁବା-କାଟାଙ୍ଗା", - "lu_CD": "ଲ୍ୟୁବା-କାଟାଙ୍ଗା (କଙ୍ଗୋ-କିନସାସା)", + "lu_CD": "ଲ୍ୟୁବା-କାଟାଙ୍ଗା (କଙ୍ଗୋ [ଡିଆରସି])", "lv": "ଲାଟଭିଆନ୍", "lv_LV": "ଲାଟଭିଆନ୍ (ଲାଟଭିଆ)", "mg": "ମାଲାଗାସୀ", @@ -528,7 +529,7 @@ "sv_FI": "ସ୍ୱେଡିସ୍ (ଫିନଲ୍ୟାଣ୍ଡ)", "sv_SE": "ସ୍ୱେଡିସ୍ (ସ୍ୱେଡେନ୍)", "sw": "ସ୍ୱାହିଲ୍", - "sw_CD": "ସ୍ୱାହିଲ୍ (କଙ୍ଗୋ-କିନସାସା)", + "sw_CD": "ସ୍ୱାହିଲ୍ (କଙ୍ଗୋ [ଡିଆରସି])", "sw_KE": "ସ୍ୱାହିଲ୍ (କେନିୟା)", "sw_TZ": "ସ୍ୱାହିଲ୍ (ତାଞ୍ଜାନିଆ)", "sw_UG": "ସ୍ୱାହିଲ୍ (ଉଗାଣ୍ଡା)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/os.json b/src/Symfony/Component/Intl/Resources/data/locales/os.json index d79a759acfef8..45fd280ce29d0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/os.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/os.json @@ -37,6 +37,7 @@ "fr": "францаг", "fr_FR": "францаг (Франц)", "ga": "ирландиаг", + "ga_GB": "ирландиаг (Стыр Британи)", "he": "уираг", "hr": "хорватаг", "hu": "венгериаг", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 017a0ebfb33e6..24277a92a2c07 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -306,6 +306,7 @@ "fy": "ਪੱਛਮੀ ਫ੍ਰਿਸੀਅਨ", "fy_NL": "ਪੱਛਮੀ ਫ੍ਰਿਸੀਅਨ (ਨੀਦਰਲੈਂਡ)", "ga": "ਆਇਰਸ਼", + "ga_GB": "ਆਇਰਸ਼ (ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ)", "ga_IE": "ਆਇਰਸ਼ (ਆਇਰਲੈਂਡ)", "gd": "ਸਕਾਟਿਸ਼ ਗੇਲਿਕ", "gd_GB": "ਸਕਾਟਿਸ਼ ਗੇਲਿਕ (ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ)", @@ -388,12 +389,12 @@ "lu_CD": "ਲੂਬਾ-ਕਾਟਾਂਗਾ (ਕਾਂਗੋ - ਕਿੰਸ਼ਾਸਾ)", "lv": "ਲਾਤੀਵੀ", "lv_LV": "ਲਾਤੀਵੀ (ਲਾਤਵੀਆ)", - "mg": "ਮੇਲੇਗਸੀ", - "mg_MG": "ਮੇਲੇਗਸੀ (ਮੈਡਾਗਾਸਕਰ)", + "mg": "ਮਾਲਾਗੈਸੀ", + "mg_MG": "ਮਾਲਾਗੈਸੀ (ਮੈਡਾਗਾਸਕਰ)", "mi": "ਮਾਉਰੀ", "mi_NZ": "ਮਾਉਰੀ (ਨਿਊਜ਼ੀਲੈਂਡ)", "mk": "ਮੈਕਡੋਨੀਆਈ", - "mk_MK": "ਮੈਕਡੋਨੀਆਈ (ਮੈਕਡੋਨੀਆ)", + "mk_MK": "ਮੈਕਡੋਨੀਆਈ (ਉੱਤਰੀ ਮੈਕਡੋਨੀਆ)", "ml": "ਮਲਿਆਲਮ", "ml_IN": "ਮਲਿਆਲਮ (ਭਾਰਤ)", "mn": "ਮੰਗੋਲੀ", @@ -504,7 +505,7 @@ "so_SO": "ਸੋਮਾਲੀ (ਸੋਮਾਲੀਆ)", "sq": "ਅਲਬਾਨੀਆਈ", "sq_AL": "ਅਲਬਾਨੀਆਈ (ਅਲਬਾਨੀਆ)", - "sq_MK": "ਅਲਬਾਨੀਆਈ (ਮੈਕਡੋਨੀਆ)", + "sq_MK": "ਅਲਬਾਨੀਆਈ (ਉੱਤਰੀ ਮੈਕਡੋਨੀਆ)", "sq_XK": "ਅਲਬਾਨੀਆਈ (ਕੋਸੋਵੋ)", "sr": "ਸਰਬੀਆਈ", "sr_BA": "ਸਰਬੀਆਈ (ਬੋਸਨੀਆ ਅਤੇ ਹਰਜ਼ੇਗੋਵੀਨਾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index acce3ca791725..ef97142745f68 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -306,6 +306,7 @@ "fy": "zachodniofryzyjski", "fy_NL": "zachodniofryzyjski (Holandia)", "ga": "irlandzki", + "ga_GB": "irlandzki (Wielka Brytania)", "ga_IE": "irlandzki (Irlandia)", "gd": "szkocki gaelicki", "gd_GB": "szkocki gaelicki (Wielka Brytania)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ps.json b/src/Symfony/Component/Intl/Resources/data/locales/ps.json index 648d202957a86..531ec24a30a24 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ps.json @@ -19,7 +19,7 @@ "ar_IQ": "عربي (عراق)", "ar_JO": "عربي (اردن)", "ar_KM": "عربي (کوموروس)", - "ar_KW": "عربي (کویټ)", + "ar_KW": "عربي (کويت)", "ar_LB": "عربي (لبنان)", "ar_LY": "عربي (لیبیا)", "ar_MA": "عربي (مراکش)", @@ -47,8 +47,8 @@ "be_BY": "بېلاروسي (بیلاروس)", "bg": "بلغاري", "bg_BG": "بلغاري (بلغاریه)", - "bm": "بامره", - "bm_ML": "بامره (مالي)", + "bm": "بمبارا", + "bm_ML": "بمبارا (مالي)", "bn": "بنگالي", "bn_BD": "بنگالي (بنگله دېش)", "bn_IN": "بنگالي (هند)", @@ -68,15 +68,15 @@ "ca_ES": "کټلاني (هسپانیه)", "ca_FR": "کټلاني (فرانسه)", "ca_IT": "کټلاني (ایټالیه)", - "ce": "چيچيني", - "ce_RU": "چيچيني (روسیه)", + "ce": "چيچني", + "ce_RU": "چيچني (روسیه)", "cs": "چېکي", "cs_CZ": "چېکي (چکیا)", "cy": "ويلشي", "cy_GB": "ويلشي (برتانیه)", - "da": "دانمارکي", - "da_DK": "دانمارکي (ډنمارک)", - "da_GL": "دانمارکي (ګرینلینډ)", + "da": "ډنمارکي", + "da_DK": "ډنمارکي (ډنمارک)", + "da_GL": "ډنمارکي (ګرینلینډ)", "de": "الماني", "de_AT": "الماني (اتریش)", "de_BE": "الماني (بیلجیم)", @@ -93,110 +93,110 @@ "el": "یوناني", "el_CY": "یوناني (قبرس)", "el_GR": "یوناني (یونان)", - "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": "انګریزي (هانګ کانګ SAR چین)", - "en_IE": "انګریزي (ایرلینډ)", - "en_IL": "انګریزي (اسراييل)", - "en_IM": "انګریزي (د آئل آف مین)", - "en_IN": "انګریزي (هند)", - "en_IO": "انګریزي (د بريتانوي هند سمندري سيمه)", - "en_JE": "انګریزي (جرسی)", - "en_JM": "انګریزي (جمیکا)", - "en_KE": "انګریزي (کینیا)", - "en_KI": "انګریزي (کیري باتي)", - "en_KN": "انګریزي (سینټ کټس او نیویس)", - "en_KY": "انګریزي (کیمان ټاپوګان)", - "en_LC": "انګریزي (سینټ لوسیا)", - "en_LR": "انګریزي (لایبریا)", - "en_LS": "انګریزي (لسوتو)", - "en_MG": "انګریزي (مدګاسکار)", - "en_MH": "انګریزي (مارشل ټاپوګان)", - "en_MO": "انګریزي (مکاو سار چین)", - "en_MP": "انګریزي (شمالي ماريانا ټاپوګان)", - "en_MS": "انګریزي (مانټیسیرت)", - "en_MT": "انګریزي (مالتا)", - "en_MU": "انګریزي (موریشیس)", - "en_MW": "انګریزي (مالاوي)", - "en_MY": "انګریزي (مالیزیا)", - "en_NA": "انګریزي (نیمبیا)", - "en_NF": "انګریزي (نارفولک ټاپوګان)", - "en_NG": "انګریزي (نایجیریا)", - "en_NL": "انګریزي (هالېنډ)", - "en_NR": "انګریزي (نایرو)", - "en_NU": "انګریزي (نیوو)", - "en_NZ": "انګریزي (نیوزیلنډ)", - "en_PG": "انګریزي (پاپوا نيو ګيني)", - "en_PH": "انګریزي (فلپين)", - "en_PK": "انګریزي (پاکستان)", - "en_PN": "انګریزي (پيټکيرن ټاپوګان)", - "en_PR": "انګریزي (پورتو ریکو)", - "en_PW": "انګریزي (پلاؤ)", - "en_RW": "انګریزي (روندا)", - "en_SB": "انګریزي (سليمان ټاپوګان)", - "en_SC": "انګریزي (سیچیلیس)", - "en_SD": "انګریزي (سوډان)", - "en_SE": "انګریزي (سویډن)", - "en_SG": "انګریزي (سينگاپور)", - "en_SH": "انګریزي (سینټ هیلینا)", - "en_SI": "انګریزي (سلوانیا)", - "en_SL": "انګریزي (سییرا لیون)", - "en_SS": "انګریزي (سويلي سوډان)", - "en_SX": "انګریزي (سینټ مارټین)", - "en_SZ": "انګریزي (اسواټيني)", - "en_TC": "انګریزي (د ترکیې او کیکاسو ټاپو)", - "en_TK": "انګریزي (توکیلو)", - "en_TO": "انګریزي (تونګا)", - "en_TT": "انګریزي (ټرينيډاډ او ټوباګو)", - "en_TV": "انګریزي (توالیو)", - "en_TZ": "انګریزي (تنزانیا)", - "en_UG": "انګریزي (یوګانډا)", - "en_UM": "انګریزي (د متحده ایالاتو ټاپوګان)", - "en_US": "انګریزي (متحده آيالات)", - "en_VC": "انګریزي (سینټ ویسنټینټ او ګرینډینز)", - "en_VG": "انګریزي (بریتانوی ویګور ټاپوګان)", - "en_VI": "انګریزي (د متحده آيالاتو ورجن ټاپوګان)", - "en_VU": "انګریزي (واناتو)", - "en_WS": "انګریزي (ساموا)", - "en_ZA": "انګریزي (سویلي افریقا)", - "en_ZM": "انګریزي (زیمبیا)", - "en_ZW": "انګریزي (زیمبابوی)", + "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": "انګليسي (هانګ کانګ SAR چین)", + "en_IE": "انګليسي (آيرلېنډ)", + "en_IL": "انګليسي (اسراييل)", + "en_IM": "انګليسي (د آئل آف مین)", + "en_IN": "انګليسي (هند)", + "en_IO": "انګليسي (د بريتانوي هند سمندري سيمه)", + "en_JE": "انګليسي (جرسی)", + "en_JM": "انګليسي (جمیکا)", + "en_KE": "انګليسي (کینیا)", + "en_KI": "انګليسي (کیري باتي)", + "en_KN": "انګليسي (سینټ کټس او نیویس)", + "en_KY": "انګليسي (کیمان ټاپوګان)", + "en_LC": "انګليسي (سینټ لوسیا)", + "en_LR": "انګليسي (لايبيريا)", + "en_LS": "انګليسي (لسوتو)", + "en_MG": "انګليسي (مدغاسکر)", + "en_MH": "انګليسي (مارشل ټاپوګان)", + "en_MO": "انګليسي (مکاو سار چین)", + "en_MP": "انګليسي (شمالي ماريانا ټاپوګان)", + "en_MS": "انګليسي (مانټیسیرت)", + "en_MT": "انګليسي (مالټا)", + "en_MU": "انګليسي (موریشیس)", + "en_MW": "انګليسي (مالاوي)", + "en_MY": "انګليسي (مالیزیا)", + "en_NA": "انګليسي (نیمبیا)", + "en_NF": "انګليسي (نارفولک ټاپوګان)", + "en_NG": "انګليسي (نایجیریا)", + "en_NL": "انګليسي (هالېنډ)", + "en_NR": "انګليسي (نایرو)", + "en_NU": "انګليسي (نیوو)", + "en_NZ": "انګليسي (نیوزیلنډ)", + "en_PG": "انګليسي (پاپوا نيو ګيني)", + "en_PH": "انګليسي (فلپين)", + "en_PK": "انګليسي (پاکستان)", + "en_PN": "انګليسي (پيټکيرن ټاپوګان)", + "en_PR": "انګليسي (پورتو ریکو)", + "en_PW": "انګليسي (پلاؤ)", + "en_RW": "انګليسي (روندا)", + "en_SB": "انګليسي (سليمان ټاپوګان)", + "en_SC": "انګليسي (سیچیلیس)", + "en_SD": "انګليسي (سوډان)", + "en_SE": "انګليسي (سویډن)", + "en_SG": "انګليسي (سينگاپور)", + "en_SH": "انګليسي (سینټ هیلینا)", + "en_SI": "انګليسي (سلوانیا)", + "en_SL": "انګليسي (سییرا لیون)", + "en_SS": "انګليسي (سويلي سوډان)", + "en_SX": "انګليسي (سینټ مارټین)", + "en_SZ": "انګليسي (اسواټيني)", + "en_TC": "انګليسي (د ترکیې او کیکاسو ټاپو)", + "en_TK": "انګليسي (توکیلو)", + "en_TO": "انګليسي (تونګا)", + "en_TT": "انګليسي (ټرينيډاډ او ټوباګو)", + "en_TV": "انګليسي (توالیو)", + "en_TZ": "انګليسي (تنزانیا)", + "en_UG": "انګليسي (یوګانډا)", + "en_UM": "انګليسي (د متحده ایالاتو ټاپوګان)", + "en_US": "انګليسي (متحده آيالات)", + "en_VC": "انګليسي (سینټ ویسنټینټ او ګرینډینز)", + "en_VG": "انګليسي (بریتانوی ویګور ټاپوګان)", + "en_VI": "انګليسي (د متحده آيالاتو ورجن ټاپوګان)", + "en_VU": "انګليسي (واناتو)", + "en_WS": "انګليسي (ساموا)", + "en_ZA": "انګليسي (سویلي افریقا)", + "en_ZM": "انګليسي (زیمبیا)", + "en_ZW": "انګليسي (زیمبابوی)", "eo": "اسپرانتو", "es": "هسپانوي", "es_AR": "هسپانوي (ارجنټاين)", @@ -233,24 +233,24 @@ "fa": "فارسي", "fa_AF": "فارسي (افغانستان)", "fa_IR": "فارسي (ايران)", - "ff": "فلاحہ", - "ff_CM": "فلاحہ (کامرون)", - "ff_GN": "فلاحہ (ګینه)", - "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": "فلاحہ (لاتين\/لاتيني, سينيګال)", - "ff_MR": "فلاحہ (موریتانیا)", - "ff_SN": "فلاحہ (سينيګال)", + "ff": "فولاح", + "ff_CM": "فولاح (کامرون)", + "ff_GN": "فولاح (ګینه)", + "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": "فولاح (لاتين\/لاتيني, سينيګال)", + "ff_MR": "فولاح (موریتانیا)", + "ff_SN": "فولاح (سينيګال)", "fi": "فینلنډي", "fi_FI": "فینلنډي (فنلینډ)", "fo": "فاروئې", @@ -283,7 +283,7 @@ "fr_MA": "فرانسوي (مراکش)", "fr_MC": "فرانسوي (موناکو)", "fr_MF": "فرانسوي (سینټ مارټن)", - "fr_MG": "فرانسوي (مدګاسکار)", + "fr_MG": "فرانسوي (مدغاسکر)", "fr_ML": "فرانسوي (مالي)", "fr_MQ": "فرانسوي (مارټینیک)", "fr_MR": "فرانسوي (موریتانیا)", @@ -303,10 +303,11 @@ "fr_VU": "فرانسوي (واناتو)", "fr_WF": "فرانسوي (والیس او فوتونا)", "fr_YT": "فرانسوي (مايوټ)", - "fy": "فريزي", - "fy_NL": "فريزي (هالېنډ)", + "fy": "لوېديځ فريشي", + "fy_NL": "لوېديځ فريشي (هالېنډ)", "ga": "ائيرلېنډي", - "ga_IE": "ائيرلېنډي (ایرلینډ)", + "ga_GB": "ائيرلېنډي (برتانیه)", + "ga_IE": "ائيرلېنډي (آيرلېنډ)", "gd": "سکاټلېنډي ګېلک", "gd_GB": "سکاټلېنډي ګېلک (برتانیه)", "gl": "ګلېشيايي", @@ -319,17 +320,17 @@ "ha_GH": "هوسا (ګانا)", "ha_NE": "هوسا (نیجر)", "ha_NG": "هوسا (نایجیریا)", - "he": "عبري", - "he_IL": "عبري (اسراييل)", + "he": "عبراني", + "he_IL": "عبراني (اسراييل)", "hi": "هندي", "hi_IN": "هندي (هند)", - "hr": "کروواسي", - "hr_BA": "کروواسي (بوسنيا او هېرزګوينا)", - "hr_HR": "کروواسي (کرواشيا)", + "hr": "کروايشيايي", + "hr_BA": "کروايشيايي (بوسنيا او هېرزګوينا)", + "hr_HR": "کروايشيايي (کرواشيا)", "hu": "هنگري", "hu_HU": "هنگري (مجارستان)", - "hy": "ارمني", - "hy_AM": "ارمني (ارمنستان)", + "hy": "آرمينيايي", + "hy_AM": "آرمينيايي (ارمنستان)", "ia": "انټرلنګوا", "id": "انډونېزي", "id_ID": "انډونېزي (اندونیزیا)", @@ -358,8 +359,8 @@ "kl_GL": "کلالیسٹ (ګرینلینډ)", "km": "خمر", "km_KH": "خمر (کمبودیا)", - "kn": "کنأډه", - "kn_IN": "کنأډه (هند)", + "kn": "کناډا", + "kn_IN": "کناډا (هند)", "ko": "کوریایی", "ko_KP": "کوریایی (شمالی کوریا)", "ko_KR": "کوریایی (سویلي کوریا)", @@ -367,19 +368,19 @@ "ks_IN": "کشمیري (هند)", "ku": "کردي", "ku_TR": "کردي (ترکي)", - "kw": "کرونيشي", - "kw_GB": "کرونيشي (برتانیه)", - "ky": "کرګيز", - "ky_KG": "کرګيز (قرغزستان)", + "kw": "کورنيشي", + "kw_GB": "کورنيشي (برتانیه)", + "ky": "کرغيزي", + "ky_KG": "کرغيزي (قرغزستان)", "lb": "لوګزامبورګي", "lb_LU": "لوګزامبورګي (لوګزامبورګ)", "lg": "ګانده", "lg_UG": "ګانده (یوګانډا)", - "ln": "لنگلا", - "ln_AO": "لنگلا (انګولا)", - "ln_CD": "لنگلا (کانګو - کینشاسا)", - "ln_CF": "لنگلا (وسطي افريقا جمهور)", - "ln_CG": "لنگلا (کانګو - بروزوییل)", + "ln": "لنګالا", + "ln_AO": "لنګالا (انګولا)", + "ln_CD": "لنګالا (کانګو - کینشاسا)", + "ln_CF": "لنګالا (وسطي افريقا جمهور)", + "ln_CG": "لنګالا (کانګو - بروزوییل)", "lo": "لاو", "lo_LA": "لاو (لاوس)", "lt": "ليتواني", @@ -389,7 +390,7 @@ "lv": "لېټواني", "lv_LV": "لېټواني (ليتهويا)", "mg": "ملغاسي", - "mg_MG": "ملغاسي (مدګاسکار)", + "mg_MG": "ملغاسي (مدغاسکر)", "mi": "ماوري", "mi_NZ": "ماوري (نیوزیلنډ)", "mk": "مقدوني", @@ -397,7 +398,7 @@ "ml": "مالايالم", "ml_IN": "مالايالم (هند)", "mn": "منګولیایی", - "mn_MN": "منګولیایی (مغولستان)", + "mn_MN": "منګولیایی (منګوليا)", "mr": "مراټهي", "mr_IN": "مراټهي (هند)", "ms": "ملایا", @@ -405,7 +406,7 @@ "ms_MY": "ملایا (مالیزیا)", "ms_SG": "ملایا (سينگاپور)", "mt": "مالټايي", - "mt_MT": "مالټايي (مالتا)", + "mt_MT": "مالټايي (مالټا)", "my": "برمایی", "my_MM": "برمایی (ميانمار [برما])", "nb": "ناروې بوکمال", @@ -431,9 +432,9 @@ "om_KE": "اورومو (کینیا)", "or": "اوڊيا", "or_IN": "اوڊيا (هند)", - "os": "اوسیٹک", - "os_GE": "اوسیٹک (گورجستان)", - "os_RU": "اوسیٹک (روسیه)", + "os": "اوسيټک", + "os_GE": "اوسيټک (گورجستان)", + "os_RU": "اوسيټک (روسیه)", "pa": "پنجابي", "pa_Arab": "پنجابي (عربي)", "pa_Arab_PK": "پنجابي (عربي, پاکستان)", @@ -528,11 +529,11 @@ "sw_KE": "سواهېلي (کینیا)", "sw_TZ": "سواهېلي (تنزانیا)", "sw_UG": "سواهېلي (یوګانډا)", - "ta": "تامیل", - "ta_IN": "تامیل (هند)", - "ta_LK": "تامیل (سريلنکا)", - "ta_MY": "تامیل (مالیزیا)", - "ta_SG": "تامیل (سينگاپور)", + "ta": "تامل", + "ta_IN": "تامل (هند)", + "ta_LK": "تامل (سريلنکا)", + "ta_MY": "تامل (مالیزیا)", + "ta_SG": "تامل (سينگاپور)", "te": "تېليګو", "te_IN": "تېليګو (هند)", "tg": "تاجکي", @@ -553,8 +554,8 @@ "tt_RU": "تاتار (روسیه)", "ug": "اويغوري", "ug_CN": "اويغوري (چین)", - "uk": "اوکرانايي", - "uk_UA": "اوکرانايي (اوکراین)", + "uk": "اوکرايني", + "uk_UA": "اوکرايني (اوکراین)", "ur": "اردو", "ur_IN": "اردو (هند)", "ur_PK": "اردو (پاکستان)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ps_PK.json b/src/Symfony/Component/Intl/Resources/data/locales/ps_PK.json index 83d0dd6d896c6..670804562a027 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ps_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ps_PK.json @@ -1,7 +1,7 @@ { "Names": { "ar_PS": "عربي (فلسطين سيمے)", - "en_TC": "انګریزي (د ترکیے او کیکاسو ټاپو)", + "en_TC": "انګليسي (د ترکیے او کیکاسو ټاپو)", "fo": "فاروئے", "fo_DK": "فاروئے (ډنمارک)", "fo_FO": "فاروئے (فارو ټاپو)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 8e5497c864b60..84f45713cc702 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -179,7 +179,7 @@ "en_SL": "inglês (Serra Leoa)", "en_SS": "inglês (Sudão do Sul)", "en_SX": "inglês (Sint Maarten)", - "en_SZ": "inglês (Suazilândia)", + "en_SZ": "inglês (Essuatíni)", "en_TC": "inglês (Ilhas Turcas e Caicos)", "en_TK": "inglês (Tokelau)", "en_TO": "inglês (Tonga)", @@ -306,6 +306,7 @@ "fy": "frísio ocidental", "fy_NL": "frísio ocidental (Países Baixos)", "ga": "irlandês", + "ga_GB": "irlandês (Reino Unido)", "ga_IE": "irlandês (Irlanda)", "gd": "gaélico escocês", "gd_GB": "gaélico escocês (Reino Unido)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json index 62985eeabde26..8c2201ad69d3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json @@ -37,7 +37,6 @@ "en_NU": "inglês (Niuê)", "en_SI": "inglês (Eslovénia)", "en_SX": "inglês (São Martinho [Sint Maarten])", - "en_SZ": "inglês (Essuatíni)", "en_TK": "inglês (Toquelau)", "en_TT": "inglês (Trindade e Tobago)", "en_UM": "inglês (Ilhas Menores Afastadas dos EUA)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/qu.json b/src/Symfony/Component/Intl/Resources/data/locales/qu.json index 9f3461609488d..57a9afa1ba99c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -3,13 +3,17 @@ "af": "Afrikaans Simi", "af_NA": "Afrikaans Simi (Namibia)", "af_ZA": "Afrikaans Simi (Sudáfrica)", + "ak": "Akan Simi", + "ak_GH": "Akan Simi (Ghana)", "am": "Amarico Simi", "am_ET": "Amarico Simi (Etiopía)", "ar": "Arabe Simi", + "ar_AE": "Arabe Simi (Emiratos Árabes Unidos)", "ar_BH": "Arabe Simi (Baréin)", "ar_DJ": "Arabe Simi (Yibuti)", "ar_DZ": "Arabe Simi (Argelia)", "ar_EG": "Arabe Simi (Egipto)", + "ar_EH": "Arabe Simi (Sahara Occidental)", "ar_ER": "Arabe Simi (Eritrea)", "ar_IL": "Arabe Simi (Israel)", "ar_IQ": "Arabe Simi (Irak)", @@ -17,6 +21,7 @@ "ar_KM": "Arabe Simi (Comoras)", "ar_KW": "Arabe Simi (Kuwait)", "ar_LB": "Arabe Simi (Líbano)", + "ar_LY": "Arabe Simi (Libia)", "ar_MA": "Arabe Simi (Marruecos)", "ar_MR": "Arabe Simi (Mauritania)", "ar_OM": "Arabe Simi (Omán)", @@ -38,6 +43,8 @@ "be_BY": "Bielorruso Simi (Belarús)", "bg": "Bulgaro Simi", "bg_BG": "Bulgaro Simi (Bulgaria)", + "bm": "Bambara Simi", + "bm_ML": "Bambara Simi (Malí)", "bn": "Bangla Simi", "bn_BD": "Bangla Simi (Bangladesh)", "bn_IN": "Bangla Simi (India)", @@ -47,16 +54,21 @@ "br": "Breton Simi", "br_FR": "Breton Simi (Francia)", "bs": "Bosnio Simi", + "bs_BA": "Bosnio Simi (Bosnia y Herzegovina)", "ca": "Catalan Simi", "ca_AD": "Catalan Simi (Andorra)", "ca_ES": "Catalan Simi (España)", "ca_FR": "Catalan Simi (Francia)", "ca_IT": "Catalan Simi (Italia)", + "ce": "Checheno Simi", + "ce_RU": "Checheno Simi (Rusia)", "cs": "Checo Simi", + "cs_CZ": "Checo Simi (Chequia)", "cy": "Gales Simi", "cy_GB": "Gales Simi (Reino Unido)", "da": "Danes Simi", "da_DK": "Danes Simi (Dinamarca)", + "da_GL": "Danes Simi (Groenlandia)", "de": "Aleman Simi", "de_AT": "Aleman Simi (Austria)", "de_BE": "Aleman Simi (Bélgica)", @@ -65,56 +77,83 @@ "de_IT": "Aleman Simi (Italia)", "de_LI": "Aleman Simi (Liechtenstein)", "de_LU": "Aleman Simi (Luxemburgo)", + "dz": "Butanés Simi", + "dz_BT": "Butanés Simi (Bután)", + "ee": "Ewé Simi", + "ee_GH": "Ewé Simi (Ghana)", + "ee_TG": "Ewé Simi (Togo)", "el": "Griego Simi", "el_CY": "Griego Simi (Chipre)", "el_GR": "Griego Simi (Grecia)", "en": "Ingles Simi", + "en_AE": "Ingles Simi (Emiratos Árabes Unidos)", + "en_AG": "Ingles Simi (Antigua y Barbuda)", + "en_AI": "Ingles Simi (Anguila)", "en_AS": "Ingles Simi (Samoa Americana)", "en_AT": "Ingles Simi (Austria)", "en_AU": "Ingles Simi (Australia)", + "en_BB": "Ingles Simi (Barbados)", "en_BE": "Ingles Simi (Bélgica)", "en_BI": "Ingles Simi (Burundi)", + "en_BM": "Ingles Simi (Bermudas)", "en_BS": "Ingles Simi (Bahamas)", "en_BW": "Ingles Simi (Botsuana)", + "en_BZ": "Ingles Simi (Belice)", + "en_CA": "Ingles Simi (Canadá)", "en_CC": "Ingles Simi (Islas Cocos)", "en_CH": "Ingles Simi (Suiza)", + "en_CK": "Ingles Simi (Islas Cook)", "en_CM": "Ingles Simi (Camerún)", "en_CX": "Ingles Simi (Isla Christmas)", "en_CY": "Ingles Simi (Chipre)", "en_DE": "Ingles Simi (Alemania)", + "en_DG": "Ingles Simi (Diego García)", "en_DK": "Ingles Simi (Dinamarca)", "en_DM": "Ingles Simi (Dominica)", "en_ER": "Ingles Simi (Eritrea)", "en_FI": "Ingles Simi (Finlandia)", "en_FJ": "Ingles Simi (Fiyi)", + "en_FK": "Ingles Simi (Islas Malvinas)", "en_FM": "Ingles Simi (Micronesia)", "en_GB": "Ingles Simi (Reino Unido)", + "en_GD": "Ingles Simi (Granada)", "en_GG": "Ingles Simi (Guernesey)", "en_GH": "Ingles Simi (Ghana)", + "en_GI": "Ingles Simi (Gibraltar)", "en_GM": "Ingles Simi (Gambia)", "en_GU": "Ingles Simi (Guam)", "en_GY": "Ingles Simi (Guyana)", "en_HK": "Ingles Simi (Hong Kong [RAE])", + "en_IE": "Ingles Simi (Irlanda)", "en_IL": "Ingles Simi (Israel)", + "en_IM": "Ingles Simi (Isla de Man)", "en_IN": "Ingles Simi (India)", + "en_IO": "Ingles Simi (Territorio Británico del Océano Índico)", "en_JE": "Ingles Simi (Jersey)", + "en_JM": "Ingles Simi (Jamaica)", "en_KE": "Ingles Simi (Kenia)", "en_KI": "Ingles Simi (Kiribati)", "en_KN": "Ingles Simi (San Cristóbal y Nieves)", + "en_KY": "Ingles Simi (Islas Caimán)", + "en_LC": "Ingles Simi (Santa Lucia)", "en_LR": "Ingles Simi (Liberia)", "en_LS": "Ingles Simi (Lesoto)", "en_MG": "Ingles Simi (Madagascar)", "en_MH": "Ingles Simi (Islas Marshall)", "en_MO": "Ingles Simi (Macao RAE)", "en_MP": "Ingles Simi (Islas Marianas del Norte)", + "en_MS": "Ingles Simi (Montserrat)", "en_MT": "Ingles Simi (Malta)", "en_MU": "Ingles Simi (Mauricio)", "en_MW": "Ingles Simi (Malawi)", + "en_MY": "Ingles Simi (Malasia)", "en_NA": "Ingles Simi (Namibia)", "en_NF": "Ingles Simi (Isla Norfolk)", "en_NG": "Ingles Simi (Nigeria)", "en_NL": "Ingles Simi (Países Bajos)", "en_NR": "Ingles Simi (Nauru)", + "en_NU": "Ingles Simi (Niue)", + "en_NZ": "Ingles Simi (Nueva Zelanda)", "en_PG": "Ingles Simi (Papúa Nueva Guinea)", "en_PH": "Ingles Simi (Filipinas)", "en_PK": "Ingles Simi (Pakistán)", @@ -122,40 +161,52 @@ "en_PR": "Ingles Simi (Puerto Rico)", "en_PW": "Ingles Simi (Palaos)", "en_RW": "Ingles Simi (Ruanda)", + "en_SB": "Ingles Simi (Islas Salomón)", "en_SC": "Ingles Simi (Seychelles)", "en_SD": "Ingles Simi (Sudán)", "en_SE": "Ingles Simi (Suecia)", "en_SG": "Ingles Simi (Singapur)", + "en_SH": "Ingles Simi (Santa Elena)", "en_SI": "Ingles Simi (Eslovenia)", "en_SL": "Ingles Simi (Sierra Leona)", "en_SS": "Ingles Simi (Sudán del Sur)", "en_SX": "Ingles Simi (Sint Maarten)", "en_SZ": "Ingles Simi (Suazilandia)", + "en_TC": "Ingles Simi (Islas Turcas y Caicos)", + "en_TK": "Ingles Simi (Tokelau)", "en_TO": "Ingles Simi (Tonga)", "en_TT": "Ingles Simi (Trinidad y Tobago)", + "en_TV": "Ingles Simi (Tuvalu)", "en_TZ": "Ingles Simi (Tanzania)", "en_UG": "Ingles Simi (Uganda)", "en_UM": "Ingles Simi (Islas menores alejadas de los EE.UU.)", "en_US": "Ingles Simi (Estados Unidos)", + "en_VC": "Ingles Simi (San Vicente y las Granadinas)", + "en_VG": "Ingles Simi (Islas Vírgenes Británicas)", "en_VI": "Ingles Simi (EE.UU. Islas Vírgenes)", "en_VU": "Ingles Simi (Vanuatu)", "en_WS": "Ingles Simi (Samoa)", "en_ZA": "Ingles Simi (Sudáfrica)", "en_ZM": "Ingles Simi (Zambia)", "en_ZW": "Ingles Simi (Zimbabue)", + "eo": "Esperanto Simi", "es": "Español Simi", "es_AR": "Español Simi (Argentina)", "es_BO": "Español Simi (Bolivia)", "es_BR": "Español Simi (Brasil)", + "es_BZ": "Español Simi (Belice)", "es_CL": "Español Simi (Chile)", "es_CO": "Español Simi (Colombia)", "es_CR": "Español Simi (Costa Rica)", "es_CU": "Español Simi (Cuba)", + "es_DO": "Español Simi (República Dominicana)", + "es_EA": "Español Simi (Ceuta y Melilla)", "es_EC": "Español Simi (Ecuador)", "es_ES": "Español Simi (España)", "es_GQ": "Español Simi (Guinea Ecuatorial)", "es_GT": "Español Simi (Guatemala)", "es_HN": "Español Simi (Honduras)", + "es_IC": "Español Simi (Islas Canarias)", "es_MX": "Español Simi (México)", "es_NI": "Español Simi (Nicaragua)", "es_PA": "Español Simi (Panamá)", @@ -183,11 +234,16 @@ "fi_FI": "Fines Simi (Finlandia)", "fo": "Feroes Simi", "fo_DK": "Feroes Simi (Dinamarca)", + "fo_FO": "Feroes Simi (Islas Feroe)", "fr": "Frances Simi", "fr_BE": "Frances Simi (Bélgica)", + "fr_BF": "Frances Simi (Burkina Faso)", "fr_BI": "Frances Simi (Burundi)", "fr_BJ": "Frances Simi (Benín)", + "fr_BL": "Frances Simi (San Bartolomé)", + "fr_CA": "Frances Simi (Canadá)", "fr_CD": "Frances Simi (Congo [RDC])", + "fr_CF": "Frances Simi (República Centroafricana)", "fr_CG": "Frances Simi (Congo)", "fr_CH": "Frances Simi (Suiza)", "fr_CI": "Frances Simi (Côte d’Ivoire)", @@ -196,7 +252,9 @@ "fr_DZ": "Frances Simi (Argelia)", "fr_FR": "Frances Simi (Francia)", "fr_GA": "Frances Simi (Gabón)", + "fr_GF": "Frances Simi (Guayana Francesa)", "fr_GN": "Frances Simi (Guinea)", + "fr_GP": "Frances Simi (Guadalupe)", "fr_GQ": "Frances Simi (Guinea Ecuatorial)", "fr_HT": "Frances Simi (Haití)", "fr_KM": "Frances Simi (Comoras)", @@ -206,12 +264,14 @@ "fr_MF": "Frances Simi (San Martín)", "fr_MG": "Frances Simi (Madagascar)", "fr_ML": "Frances Simi (Malí)", + "fr_MQ": "Frances Simi (Martinica)", "fr_MR": "Frances Simi (Mauritania)", "fr_MU": "Frances Simi (Mauricio)", "fr_NC": "Frances Simi (Nueva Caledonia)", "fr_NE": "Frances Simi (Níger)", "fr_PF": "Frances Simi (Polinesia Francesa)", "fr_PM": "Frances Simi (San Pedro y Miquelón)", + "fr_RE": "Frances Simi (Reunión)", "fr_RW": "Frances Simi (Ruanda)", "fr_SC": "Frances Simi (Seychelles)", "fr_SN": "Frances Simi (Senegal)", @@ -221,15 +281,20 @@ "fr_TN": "Frances Simi (Túnez)", "fr_VU": "Frances Simi (Vanuatu)", "fr_WF": "Frances Simi (Wallis y Futuna)", + "fr_YT": "Frances Simi (Mayotte)", "fy": "Frison Simi", "fy_NL": "Frison Simi (Países Bajos)", "ga": "Irlandes Simi", + "ga_GB": "Irlandes Simi (Reino Unido)", + "ga_IE": "Irlandes Simi (Irlanda)", "gd": "Gaelico Escoces Simi", "gd_GB": "Gaelico Escoces Simi (Reino Unido)", "gl": "Gallego Simi", "gl_ES": "Gallego Simi (España)", "gu": "Gujarati Simi", "gu_IN": "Gujarati Simi (India)", + "gv": "Manés Simi", + "gv_IM": "Manés Simi (Isla de Man)", "ha": "Hausa Simi", "ha_GH": "Hausa Simi (Ghana)", "ha_NE": "Hausa Simi (Níger)", @@ -239,10 +304,13 @@ "hi": "Hindi Simi", "hi_IN": "Hindi Simi (India)", "hr": "Croata Simi", + "hr_BA": "Croata Simi (Bosnia y Herzegovina)", "hr_HR": "Croata Simi (Croacia)", "hu": "Hungaro Simi", + "hu_HU": "Hungaro Simi (Hungría)", "hy": "Armenio Simi", "hy_AM": "Armenio Simi (Armenia)", + "ia": "Interlingua Simi", "id": "Indonesio Simi", "id_ID": "Indonesio Simi (Indonesia)", "ig": "Igbo Simi", @@ -257,10 +325,17 @@ "it_SM": "Italiano Simi (San Marino)", "it_VA": "Italiano Simi (Santa Sede [Ciudad del Vaticano])", "ja": "Japones Simi", + "ja_JP": "Japones Simi (Japón)", + "jv": "Javanés Simi", + "jv_ID": "Javanés Simi (Indonesia)", "ka": "Georgiano Simi", + "ka_GE": "Georgiano Simi (Georgia)", + "ki": "Kikuyu Simi", + "ki_KE": "Kikuyu Simi (Kenia)", "kk": "Kazajo Simi", "kk_KZ": "Kazajo Simi (Kazajistán)", "kl": "Groenlandes Simi", + "kl_GL": "Groenlandes Simi (Groenlandia)", "km": "Khmer Simi", "km_KH": "Khmer Simi (Camboya)", "kn": "Kannada Simi", @@ -268,43 +343,79 @@ "ko": "Coreano Simi", "ko_KP": "Coreano Simi (Corea del Norte)", "ko_KR": "Coreano Simi (Corea del Sur)", + "ks": "Cachemir Simi", + "ks_IN": "Cachemir Simi (India)", + "ku": "Kurdo Simi", + "ku_TR": "Kurdo Simi (Turquía)", + "kw": "Córnico Simi", + "kw_GB": "Córnico Simi (Reino Unido)", "ky": "Kirghiz Simi", "ky_KG": "Kirghiz Simi (Kirguistán)", "lb": "Luxemburgues Simi", "lb_LU": "Luxemburgues Simi (Luxemburgo)", + "lg": "Luganda Simi", + "lg_UG": "Luganda Simi (Uganda)", + "ln": "Lingala Simi", + "ln_AO": "Lingala Simi (Angola)", + "ln_CD": "Lingala Simi (Congo [RDC])", + "ln_CF": "Lingala Simi (República Centroafricana)", + "ln_CG": "Lingala Simi (Congo)", "lo": "Lao Simi", "lo_LA": "Lao Simi (Laos)", "lt": "Lituano Simi", "lt_LT": "Lituano Simi (Lituania)", + "lu": "Luba-Katanga Simi", + "lu_CD": "Luba-Katanga Simi (Congo [RDC])", "lv": "Leton Simi", "lv_LV": "Leton Simi (Letonia)", + "mg": "Malgache Simi", + "mg_MG": "Malgache Simi (Madagascar)", "mi": "Maori Simi", + "mi_NZ": "Maori Simi (Nueva Zelanda)", "mk": "Macedonio Simi", "mk_MK": "Macedonio Simi (Macedonia del Norte)", "ml": "Malayalam Simi", "ml_IN": "Malayalam Simi (India)", "mn": "Mongol Simi", + "mn_MN": "Mongol Simi (Mongolia)", "mr": "Marathi Simi", "mr_IN": "Marathi Simi (India)", "ms": "Malayo Simi", "ms_BN": "Malayo Simi (Brunéi)", + "ms_MY": "Malayo Simi (Malasia)", "ms_SG": "Malayo Simi (Singapur)", "mt": "Maltes Simi", "mt_MT": "Maltes Simi (Malta)", + "my": "Birmano Simi", + "my_MM": "Birmano Simi (Myanmar)", + "nb": "Noruego Bokmål Simi", + "nb_NO": "Noruego Bokmål Simi (Noruega)", + "nb_SJ": "Noruego Bokmål Simi (Svalbard y Jan Mayen)", + "nd": "Ndebele septentrional Simi", + "nd_ZW": "Ndebele septentrional Simi (Zimbabue)", "ne": "Nepali Simi", "ne_IN": "Nepali Simi (India)", "ne_NP": "Nepali Simi (Nepal)", "nl": "Neerlandes Simi", + "nl_AW": "Neerlandes Simi (Aruba)", "nl_BE": "Neerlandes Simi (Bélgica)", "nl_BQ": "Neerlandes Simi (Bonaire)", "nl_CW": "Neerlandes Simi (Curazao)", "nl_NL": "Neerlandes Simi (Países Bajos)", "nl_SR": "Neerlandes Simi (Surinam)", "nl_SX": "Neerlandes Simi (Sint Maarten)", + "nn": "Noruego Nynorsk Simi", + "nn_NO": "Noruego Nynorsk Simi (Noruega)", "no": "Noruego Simi", "no_NO": "Noruego Simi (Noruega)", + "om": "Oromo Simi", + "om_ET": "Oromo Simi (Etiopía)", + "om_KE": "Oromo Simi (Kenia)", "or": "Odia Simi", "or_IN": "Odia Simi (India)", + "os": "Osetio Simi", + "os_GE": "Osetio Simi (Georgia)", + "os_RU": "Osetio Simi (Rusia)", "pa": "Punyabi Simi", "pa_IN": "Punyabi Simi (India)", "pa_PK": "Punyabi Simi (Pakistán)", @@ -317,6 +428,7 @@ "pt_AO": "Portugues Simi (Angola)", "pt_BR": "Portugues Simi (Brasil)", "pt_CH": "Portugues Simi (Suiza)", + "pt_CV": "Portugues Simi (Cabo Verde)", "pt_GQ": "Portugues Simi (Guinea Ecuatorial)", "pt_GW": "Portugues Simi (Guinea-Bisáu)", "pt_LU": "Portugues Simi (Luxemburgo)", @@ -331,14 +443,18 @@ "qu_PE": "Runasimi (Perú)", "rm": "Romanche Simi", "rm_CH": "Romanche Simi (Suiza)", + "rn": "Rundi Simi", + "rn_BI": "Rundi Simi (Burundi)", "ro": "Rumano Simi", "ro_MD": "Rumano Simi (Moldova)", + "ro_RO": "Rumano Simi (Rumania)", "ru": "Ruso Simi", "ru_BY": "Ruso Simi (Belarús)", "ru_KG": "Ruso Simi (Kirguistán)", "ru_KZ": "Ruso Simi (Kazajistán)", "ru_MD": "Ruso Simi (Moldova)", "ru_RU": "Ruso Simi (Rusia)", + "ru_UA": "Ruso Simi (Ucrania)", "rw": "Kinyarwanda Simi", "rw_RW": "Kinyarwanda Simi (Ruanda)", "sd": "Sindhi Simi", @@ -347,18 +463,32 @@ "se_FI": "Chincha Sami Simi (Finlandia)", "se_NO": "Chincha Sami Simi (Noruega)", "se_SE": "Chincha Sami Simi (Suecia)", + "sg": "Sango Simi", + "sg_CF": "Sango Simi (República Centroafricana)", "si": "Cingales Simi", "si_LK": "Cingales Simi (Sri Lanka)", "sk": "Eslovaco Simi", "sk_SK": "Eslovaco Simi (Eslovaquia)", "sl": "Esloveno Simi", "sl_SI": "Esloveno Simi (Eslovenia)", + "sn": "Shona Simi", + "sn_ZW": "Shona Simi (Zimbabue)", + "so": "Somali Simi", + "so_DJ": "Somali Simi (Yibuti)", + "so_ET": "Somali Simi (Etiopía)", + "so_KE": "Somali Simi (Kenia)", + "so_SO": "Somali Simi (Somalia)", "sq": "Albanes Simi", "sq_AL": "Albanes Simi (Albania)", "sq_MK": "Albanes Simi (Macedonia del Norte)", + "sq_XK": "Albanes Simi (Kosovo)", "sr": "Serbio Simi", + "sr_BA": "Serbio Simi (Bosnia y Herzegovina)", + "sr_ME": "Serbio Simi (Montenegro)", "sr_RS": "Serbio Simi (Serbia)", + "sr_XK": "Serbio Simi (Kosovo)", "sv": "Sueco Simi", + "sv_AX": "Sueco Simi (Islas Åland)", "sv_FI": "Sueco Simi (Finlandia)", "sv_SE": "Sueco Simi (Suecia)", "sw": "Suajili Simi", @@ -369,6 +499,7 @@ "ta": "Tamil Simi", "ta_IN": "Tamil Simi (India)", "ta_LK": "Tamil Simi (Sri Lanka)", + "ta_MY": "Tamil Simi (Malasia)", "ta_SG": "Tamil Simi (Singapur)", "te": "Telugu Simi", "te_IN": "Telugu Simi (India)", @@ -380,6 +511,9 @@ "ti_ER": "Tigriña Simi (Eritrea)", "ti_ET": "Tigriña Simi (Etiopía)", "tk": "Turcomano Simi", + "tk_TM": "Turcomano Simi (Turkmenistán)", + "to": "Tongano Simi", + "to_TO": "Tongano Simi (Tonga)", "tr": "Turco Simi", "tr_CY": "Turco Simi (Chipre)", "tr_TR": "Turco Simi (Turquía)", @@ -388,6 +522,7 @@ "ug": "Uigur Simi", "ug_CN": "Uigur Simi (China)", "uk": "Ucraniano Simi", + "uk_UA": "Ucraniano Simi (Ucrania)", "ur": "Urdu Simi", "ur_IN": "Urdu Simi (India)", "ur_PK": "Urdu Simi (Pakistán)", @@ -400,6 +535,7 @@ "wo_SN": "Wolof Simi (Senegal)", "xh": "Isixhosa Simi", "xh_ZA": "Isixhosa Simi (Sudáfrica)", + "yi": "Yiddish Simi", "yo": "Yoruba Simi", "yo_BJ": "Yoruba Simi (Benín)", "yo_NG": "Yoruba Simi (Nigeria)", @@ -408,6 +544,7 @@ "zh_HK": "Chino Simi (Hong Kong [RAE])", "zh_MO": "Chino Simi (Macao RAE)", "zh_SG": "Chino Simi (Singapur)", + "zh_TW": "Chino Simi (Taiwán)", "zu": "Isizulu Simi", "zu_ZA": "Isizulu Simi (Sudáfrica)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index 2175970067bd1..a76f0636b8a08 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -300,6 +300,7 @@ "fy": "fris", "fy_NL": "fris (Pajais Bass)", "ga": "irlandais", + "ga_GB": "irlandais (Reginavel Unì)", "ga_IE": "irlandais (Irlanda)", "gd": "gaelic scot", "gd_GB": "gaelic scot (Reginavel Unì)", @@ -387,7 +388,6 @@ "mi": "maori", "mi_NZ": "maori (Nova Zelanda)", "mk": "macedon", - "mk_MK": "macedon (Macedonia)", "ml": "malayalam", "ml_IN": "malayalam (India)", "mn": "mongolic", @@ -497,7 +497,6 @@ "so_SO": "somali (Somalia)", "sq": "albanais", "sq_AL": "albanais (Albania)", - "sq_MK": "albanais (Macedonia)", "sr": "serb", "sr_BA": "serb (Bosnia ed Erzegovina)", "sr_Cyrl": "serb (cirillic)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index 58719e35d4305..1c0511753df9b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -306,6 +306,7 @@ "fy": "frizonă occidentală", "fy_NL": "frizonă occidentală (Țările de Jos)", "ga": "irlandeză", + "ga_GB": "irlandeză (Regatul Unit)", "ga_IE": "irlandeză (Irlanda)", "gd": "gaelică scoțiană", "gd_GB": "gaelică scoțiană (Regatul Unit)", @@ -459,7 +460,7 @@ "pt_MO": "portugheză (R.A.S. Macao, China)", "pt_MZ": "portugheză (Mozambic)", "pt_PT": "portugheză (Portugalia)", - "pt_ST": "portugheză (Sao Tome și Principe)", + "pt_ST": "portugheză (São Tomé și Príncipe)", "pt_TL": "portugheză (Timor-Leste)", "qu": "quechua", "qu_BO": "quechua (Bolivia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 33aa2a57ee4ad..7670e4e4eaf0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -306,6 +306,7 @@ "fy": "западнофризский", "fy_NL": "западнофризский (Нидерланды)", "ga": "ирландский", + "ga_GB": "ирландский (Великобритания)", "ga_IE": "ирландский (Ирландия)", "gd": "гэльский", "gd_GB": "гэльский (Великобритания)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rw.json b/src/Symfony/Component/Intl/Resources/data/locales/rw.json index b7a80641cb59f..1d4dde907942d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rw.json @@ -55,7 +55,7 @@ "lt": "Ikilituwaniya", "lv": "Ikinyaletoviyani", "mk": "Ikimasedoniya", - "mk_MK": "Ikimasedoniya (Masedoniya y'Amajyaruguru)", + "mk_MK": "Ikimasedoniya (Masedoniya y’Amajyaruguru)", "ml": "Ikimalayalami", "mn": "Ikimongoli", "mr": "Ikimarati", @@ -81,7 +81,7 @@ "sl": "Ikinyasiloveniya", "so": "Igisomali", "sq": "Icyalubaniya", - "sq_MK": "Icyalubaniya (Masedoniya y'Amajyaruguru)", + "sq_MK": "Icyalubaniya (Masedoniya y’Amajyaruguru)", "sr": "Igiseribe", "sv": "Igisuweduwa", "sw": "Igiswahili", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sd.json b/src/Symfony/Component/Intl/Resources/data/locales/sd.json index 7186febb8b5a0..fdd3f06f25eef 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sd.json @@ -27,7 +27,7 @@ "ar_OM": "عربي (عمان)", "ar_PS": "عربي (فلسطيني حدون)", "ar_QA": "عربي (قطر)", - "ar_SA": "عربي (سعودی عرب)", + "ar_SA": "عربي (سعودي عرب)", "ar_SD": "عربي (سوڊان)", "ar_SO": "عربي (سوماليا)", "ar_SS": "عربي (ڏکڻ سوڊان)", @@ -306,6 +306,7 @@ "fy": "مغربي فريشن", "fy_NL": "مغربي فريشن (نيدرلينڊ)", "ga": "آئرش", + "ga_GB": "آئرش (برطانيه)", "ga_IE": "آئرش (آئرلينڊ)", "gd": "اسڪاٽش گيلڪ", "gd_GB": "اسڪاٽش گيلڪ (برطانيه)", @@ -393,7 +394,7 @@ "mi": "مائوري", "mi_NZ": "مائوري (نيو زيلينڊ)", "mk": "ميسي ڊونيائي", - "mk_MK": "ميسي ڊونيائي (ميسي ڊونيا)", + "mk_MK": "ميسي ڊونيائي (شمالي مقدونيا)", "ml": "مليالم", "ml_IN": "مليالم (انڊيا)", "mn": "منگولي", @@ -446,19 +447,19 @@ "ps": "پشتو", "ps_AF": "پشتو (افغانستان)", "ps_PK": "پشتو (پاڪستان)", - "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": "پرتگالي (تيمور ليستي)", + "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": "پورٽگليز (تيمور ليستي)", "qu": "ڪيچوا", "qu_BO": "ڪيچوا (بوليويا)", "qu_EC": "ڪيچوا (ايڪواڊور)", @@ -502,7 +503,7 @@ "so_SO": "سومالي (سوماليا)", "sq": "الباني", "sq_AL": "الباني (البانيا)", - "sq_MK": "الباني (ميسي ڊونيا)", + "sq_MK": "الباني (شمالي مقدونيا)", "sq_XK": "الباني (ڪوسووو)", "sr": "سربيائي", "sr_BA": "سربيائي (بوسنیا اور هرزیگوینا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/se.json b/src/Symfony/Component/Intl/Resources/data/locales/se.json index 7f42fff806131..ce644207bdc08 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/se.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/se.json @@ -264,6 +264,7 @@ "fy": "oarjifriisagiella", "fy_NL": "oarjifriisagiella (Vuolleeatnamat)", "ga": "iirragiella", + "ga_GB": "iirragiella (Stuorra-Británnia)", "ga_IE": "iirragiella (Irlánda)", "gu": "gujaratagiella", "gu_IN": "gujaratagiella (India)", @@ -319,7 +320,6 @@ "mi": "maorigiella", "mi_NZ": "maorigiella (Ođđa-Selánda)", "mk": "makedoniagiella", - "mk_MK": "makedoniagiella (Makedonia)", "mn": "mongoliagiella", "mn_MN": "mongoliagiella (Mongolia)", "mt": "maltagiella", @@ -387,7 +387,6 @@ "sl_SI": "slovenagiella (Slovenia)", "sq": "albánagiella", "sq_AL": "albánagiella (Albánia)", - "sq_MK": "albánagiella (Makedonia)", "sq_XK": "albánagiella (Kosovo)", "sr": "serbiagiella", "sr_BA": "serbiagiella (Bosnia-Hercegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index b9e1735ca896b..b62be10f5203f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -148,7 +148,7 @@ "en_LS": "ඉංග්‍රීසි (ලෙසතෝ)", "en_MG": "ඉංග්‍රීසි (මැඩගස්කරය)", "en_MH": "ඉංග්‍රීසි (මාෂල් දූපත්)", - "en_MO": "ඉංග්‍රීසි (මකාවු චීන විශේෂ පරිපාලන කලාපය)", + "en_MO": "ඉංග්‍රීසි (මකාවු එස්ඒආර්)", "en_MP": "ඉංග්‍රීසි (උතුරු මරියානා දූපත්)", "en_MS": "ඉංග්‍රීසි (මොන්සෙරාට්)", "en_MT": "ඉංග්‍රීසි (මෝල්ටාව)", @@ -179,7 +179,7 @@ "en_SL": "ඉංග්‍රීසි (සියරාලියෝන්)", "en_SS": "ඉංග්‍රීසි (දකුණු සුඩානය)", "en_SX": "ඉංග්‍රීසි (ශාන්ත මාර්ටෙන්)", - "en_SZ": "ඉංග්‍රීසි (ස්වාසිලන්තය)", + "en_SZ": "ඉංග්‍රීසි (එස්වාටිනි)", "en_TC": "ඉංග්‍රීසි (ටර්ක්ස් සහ කයිකොස් දූපත්)", "en_TK": "ඉංග්‍රීසි (ටොකලාවු)", "en_TO": "ඉංග්‍රීසි (ටොංගා)", @@ -263,7 +263,7 @@ "fr_BJ": "ප්‍රංශ (බෙනින්)", "fr_BL": "ප්‍රංශ (ශාන්ත බර්තලෙමි)", "fr_CA": "ප්‍රංශ (කැනඩාව)", - "fr_CD": "ප්‍රංශ (කොංගො - කින්ශාසා)", + "fr_CD": "ප්‍රංශ (කොංගෝව [ඩීආර්සී])", "fr_CF": "ප්‍රංශ (මධ්‍යම අප්‍රිකානු ජනරජය)", "fr_CG": "ප්‍රංශ (කොංගො - බ්‍රසාවිල්)", "fr_CH": "ප්‍රංශ (ස්විස්ටර්ලන්තය)", @@ -306,6 +306,7 @@ "fy": "බටහිර ෆ්‍රිසියානු", "fy_NL": "බටහිර ෆ්‍රිසියානු (නෙදර්ලන්තය)", "ga": "අයර්ලන්ත", + "ga_GB": "අයර්ලන්ත (එක්සත් රාජධානිය)", "ga_IE": "අයර්ලන්ත (අයර්ලන්තය)", "gd": "ස්කොට්ටිශ් ගෙලික්", "gd_GB": "ස්කොට්ටිශ් ගෙලික් (එක්සත් රාජධානිය)", @@ -377,7 +378,7 @@ "lg_UG": "ගන්ඩා (උගන්ඩාව)", "ln": "ලින්ගලා", "ln_AO": "ලින්ගලා (ඇන්ගෝලාව)", - "ln_CD": "ලින්ගලා (කොංගො - කින්ශාසා)", + "ln_CD": "ලින්ගලා (කොංගෝව [ඩීආර්සී])", "ln_CF": "ලින්ගලා (මධ්‍යම අප්‍රිකානු ජනරජය)", "ln_CG": "ලින්ගලා (කොංගො - බ්‍රසාවිල්)", "lo": "ලාඕ", @@ -385,7 +386,7 @@ "lt": "ලිතුවේනියානු", "lt_LT": "ලිතුවේනියානු (ලිතුවේනියාව)", "lu": "ලුබා-කටන්ගා", - "lu_CD": "ලුබා-කටන්ගා (කොංගො - කින්ශාසා)", + "lu_CD": "ලුබා-කටන්ගා (කොංගෝව [ඩීආර්සී])", "lv": "ලැට්වියානු", "lv_LV": "ලැට්වියානු (ලැට්වියාව)", "mg": "මලගාසි", @@ -393,7 +394,7 @@ "mi": "මාවොරි", "mi_NZ": "මාවොරි (නවසීලන්තය)", "mk": "මැසිඩෝනියානු", - "mk_MK": "මැසිඩෝනියානු (මැසිඩෝනියාව)", + "mk_MK": "මැසිඩෝනියානු (උතුරු මැසිඩෝනියාව)", "ml": "මලයාලම්", "ml_IN": "මලයාලම් (ඉන්දියාව)", "mn": "මොංගෝලියානු", @@ -454,7 +455,7 @@ "pt_GQ": "පෘතුගීසි (සමක ගිනියාව)", "pt_GW": "පෘතුගීසි (ගිනි බිසව්)", "pt_LU": "පෘතුගීසි (ලක්ශම්බර්ග්)", - "pt_MO": "පෘතුගීසි (මකාවු චීන විශේෂ පරිපාලන කලාපය)", + "pt_MO": "පෘතුගීසි (මකාවු එස්ඒආර්)", "pt_MZ": "පෘතුගීසි (මොසැම්බික්)", "pt_PT": "පෘතුගීසි (පෘතුගාලය)", "pt_ST": "පෘතුගීසි (සාඕ තෝම් සහ ප්‍රින්සිප්)", @@ -502,7 +503,7 @@ "so_SO": "සෝමාලි (සෝමාලියාව)", "sq": "ඇල්බේනියානු", "sq_AL": "ඇල්බේනියානු (ඇල්බේනියාව)", - "sq_MK": "ඇල්බේනියානු (මැසිඩෝනියාව)", + "sq_MK": "ඇල්බේනියානු (උතුරු මැසිඩෝනියාව)", "sq_XK": "ඇල්බේනියානු (කොසෝවෝ)", "sr": "සර්බියානු", "sr_BA": "සර්බියානු (බොස්නියාව සහ හර්සගොවීනාව)", @@ -524,7 +525,7 @@ "sv_FI": "ස්වීඩන් (ෆින්ලන්තය)", "sv_SE": "ස්වීඩන් (ස්වීඩනය)", "sw": "ස්වාහිලි", - "sw_CD": "ස්වාහිලි (කොංගො - කින්ශාසා)", + "sw_CD": "ස්වාහිලි (කොංගෝව [ඩීආර්සී])", "sw_KE": "ස්වාහිලි (කෙන්යාව)", "sw_TZ": "ස්වාහිලි (ටැන්සානියාව)", "sw_UG": "ස්වාහිලි (උගන්ඩාව)", @@ -583,13 +584,13 @@ "zh_Hans": "චීන (සුළුකළ)", "zh_Hans_CN": "චීන (සුළුකළ, චීනය)", "zh_Hans_HK": "චීන (සුළුකළ, හොංකොං චීන විශේෂ පරිපාලන කලාපය)", - "zh_Hans_MO": "චීන (සුළුකළ, මකාවු චීන විශේෂ පරිපාලන කලාපය)", + "zh_Hans_MO": "චීන (සුළුකළ, මකාවු එස්ඒආර්)", "zh_Hans_SG": "චීන (සුළුකළ, සිංගප්පූරුව)", "zh_Hant": "චීන (සාම්ප්‍රදායික)", "zh_Hant_HK": "චීන (සාම්ප්‍රදායික, හොංකොං චීන විශේෂ පරිපාලන කලාපය)", - "zh_Hant_MO": "චීන (සාම්ප්‍රදායික, මකාවු චීන විශේෂ පරිපාලන කලාපය)", + "zh_Hant_MO": "චීන (සාම්ප්‍රදායික, මකාවු එස්ඒආර්)", "zh_Hant_TW": "චීන (සාම්ප්‍රදායික, තායිවානය)", - "zh_MO": "චීන (මකාවු චීන විශේෂ පරිපාලන කලාපය)", + "zh_MO": "චීන (මකාවු එස්ඒආර්)", "zh_SG": "චීන (සිංගප්පූරුව)", "zh_TW": "චීන (තායිවානය)", "zu": "සුලු", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index 0abca78b0f20f..0ea80fb539d8d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -179,7 +179,7 @@ "en_SL": "angličtina (Sierra Leone)", "en_SS": "angličtina (Južný Sudán)", "en_SX": "angličtina (Svätý Martin [hol.])", - "en_SZ": "angličtina (Svazijsko)", + "en_SZ": "angličtina (Eswatini)", "en_TC": "angličtina (Turks a Caicos)", "en_TK": "angličtina (Tokelau)", "en_TO": "angličtina (Tonga)", @@ -306,6 +306,7 @@ "fy": "západná frízština", "fy_NL": "západná frízština (Holandsko)", "ga": "írčina", + "ga_GB": "írčina (Spojené kráľovstvo)", "ga_IE": "írčina (Írsko)", "gd": "škótska gaelčina", "gd_GB": "škótska gaelčina (Spojené kráľovstvo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sl.json b/src/Symfony/Component/Intl/Resources/data/locales/sl.json index 0020f8996d4db..fbf854cd66477 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -179,7 +179,7 @@ "en_SL": "angleščina (Sierra Leone)", "en_SS": "angleščina (Južni Sudan)", "en_SX": "angleščina (Sint Maarten)", - "en_SZ": "angleščina (Svazi)", + "en_SZ": "angleščina (Esvatini)", "en_TC": "angleščina (Otoki Turks in Caicos)", "en_TK": "angleščina (Tokelau)", "en_TO": "angleščina (Tonga)", @@ -306,6 +306,7 @@ "fy": "zahodna frizijščina", "fy_NL": "zahodna frizijščina (Nizozemska)", "ga": "irščina", + "ga_GB": "irščina (Združeno kraljestvo)", "ga_IE": "irščina (Irska)", "gd": "škotska gelščina", "gd_GB": "škotska gelščina (Združeno kraljestvo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/so.json b/src/Symfony/Component/Intl/Resources/data/locales/so.json index b51f8ca6bf5db..6f59e2993810c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/so.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/so.json @@ -130,7 +130,6 @@ "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)", @@ -204,7 +203,6 @@ "es_BR": "Isbaanish (Baraasiil)", "es_BZ": "Isbaanish (Beliis)", "es_CL": "Isbaanish (Jili)", - "es_CO": "Isbaanish (Kolombiya)", "es_CR": "Isbaanish (Kosta Riika)", "es_CU": "Isbaanish (Kuuba)", "es_DO": "Isbaanish (Jamhuuriyaddda Dominika)", @@ -306,6 +304,7 @@ "fy": "Firiisiyan Galbeed", "fy_NL": "Firiisiyan Galbeed (Nederlaands)", "ga": "Ayrish", + "ga_GB": "Ayrish (Boqortooyada Midowday)", "ga_IE": "Ayrish (Ayrlaand)", "gd": "Iskot Giilik", "gd_GB": "Iskot Giilik (Boqortooyada Midowday)", @@ -437,8 +436,6 @@ "pa": "Bunjaabi", "pa_Arab": "Bunjaabi (Carabi)", "pa_Arab_PK": "Bunjaabi (Carabi, Bakistaan)", - "pa_Guru": "Bunjaabi (Guru)", - "pa_Guru_IN": "Bunjaabi (Guru, Hindiya)", "pa_IN": "Bunjaabi (Hindiya)", "pa_PK": "Bunjaabi (Bakistaan)", "pl": "Boolish", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index 47941b8b8f23e..b7a3d6c194c11 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -306,6 +306,7 @@ "fy": "frizianishte perëndimore", "fy_NL": "frizianishte perëndimore (Holandë)", "ga": "irlandisht", + "ga_GB": "irlandisht (Mbretëria e Bashkuar)", "ga_IE": "irlandisht (Irlandë)", "gd": "galishte skoceze", "gd_GB": "galishte skoceze (Mbretëria e Bashkuar)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr.json b/src/Symfony/Component/Intl/Resources/data/locales/sr.json index ec86dcba14191..5693494997a79 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -306,6 +306,7 @@ "fy": "западни фризијски", "fy_NL": "западни фризијски (Холандија)", "ga": "ирски", + "ga_GB": "ирски (Уједињено Краљевство)", "ga_IE": "ирски (Ирска)", "gd": "шкотски гелски", "gd_GB": "шкотски гелски (Уједињено Краљевство)", 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 8533e71344208..9d73623d0349d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -306,6 +306,7 @@ "fy": "zapadni frizijski", "fy_NL": "zapadni frizijski (Holandija)", "ga": "irski", + "ga_GB": "irski (Ujedinjeno Kraljevstvo)", "ga_IE": "irski (Irska)", "gd": "škotski gelski", "gd_GB": "škotski gelski (Ujedinjeno Kraljevstvo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index 815ec72cf8b22..d2f4e38b694e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -267,7 +267,7 @@ "fr_CF": "franska (Centralafrikanska republiken)", "fr_CG": "franska (Kongo-Brazzaville)", "fr_CH": "franska (Schweiz)", - "fr_CI": "franska (Elfenbenskusten)", + "fr_CI": "franska (Côte d’Ivoire)", "fr_CM": "franska (Kamerun)", "fr_DJ": "franska (Djibouti)", "fr_DZ": "franska (Algeriet)", @@ -306,6 +306,7 @@ "fy": "västfrisiska", "fy_NL": "västfrisiska (Nederländerna)", "ga": "iriska", + "ga_GB": "iriska (Storbritannien)", "ga_IE": "iriska (Irland)", "gd": "skotsk gäliska", "gd_GB": "skotsk gäliska (Storbritannien)", @@ -369,8 +370,8 @@ "ku_TR": "kurdiska (Turkiet)", "kw": "korniska", "kw_GB": "korniska (Storbritannien)", - "ky": "kirgisiska", - "ky_KG": "kirgisiska (Kirgizistan)", + "ky": "kirgiziska", + "ky_KG": "kirgiziska (Kirgizistan)", "lb": "luxemburgiska", "lb_LU": "luxemburgiska (Luxemburg)", "lg": "luganda", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json deleted file mode 100644 index cb3d14079a452..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Names": { - "ky": "kirgiziska", - "ky_KG": "kirgiziska (Kirgizistan)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw.json b/src/Symfony/Component/Intl/Resources/data/locales/sw.json index ea5ee1f3b8b93..b603d415a62cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -148,7 +148,7 @@ "en_LS": "Kiingereza (Lesoto)", "en_MG": "Kiingereza (Madagaska)", "en_MH": "Kiingereza (Visiwa vya Marshall)", - "en_MO": "Kiingereza (Macau SAR China)", + "en_MO": "Kiingereza (Makau SAR China)", "en_MP": "Kiingereza (Visiwa vya Mariana vya Kaskazini)", "en_MS": "Kiingereza (Montserrat)", "en_MT": "Kiingereza (Malta)", @@ -306,6 +306,7 @@ "fy": "Kifrisia cha Magharibi", "fy_NL": "Kifrisia cha Magharibi (Uholanzi)", "ga": "Kiayalandi", + "ga_GB": "Kiayalandi (Ufalme wa Muungano)", "ga_IE": "Kiayalandi (Ayalandi)", "gd": "Kigaeli cha Uskoti", "gd_GB": "Kigaeli cha Uskoti (Ufalme wa Muungano)", @@ -393,7 +394,7 @@ "mi": "Kimaori", "mi_NZ": "Kimaori (Nyuzilandi)", "mk": "Kimacedonia", - "mk_MK": "Kimacedonia (Macedonia)", + "mk_MK": "Kimacedonia (Masedonia ya Kaskazini)", "ml": "Kimalayalamu", "ml_IN": "Kimalayalamu (India)", "mn": "Kimongolia", @@ -456,7 +457,7 @@ "pt_GQ": "Kireno (Guinea ya Ikweta)", "pt_GW": "Kireno (Ginebisau)", "pt_LU": "Kireno (Luxembourg)", - "pt_MO": "Kireno (Macau SAR China)", + "pt_MO": "Kireno (Makau SAR China)", "pt_MZ": "Kireno (Msumbiji)", "pt_PT": "Kireno (Ureno)", "pt_ST": "Kireno (São Tomé na Príncipe)", @@ -506,7 +507,7 @@ "so_SO": "Kisomali (Somalia)", "sq": "Kialbania", "sq_AL": "Kialbania (Albania)", - "sq_MK": "Kialbania (Macedonia)", + "sq_MK": "Kialbania (Masedonia ya Kaskazini)", "sq_XK": "Kialbania (Kosovo)", "sr": "Kiserbia", "sr_BA": "Kiserbia (Bosnia na Hezegovina)", @@ -587,13 +588,13 @@ "zh_Hans": "Kichina (Rahisi)", "zh_Hans_CN": "Kichina (Rahisi, Uchina)", "zh_Hans_HK": "Kichina (Rahisi, Hong Kong SAR China)", - "zh_Hans_MO": "Kichina (Rahisi, Macau SAR China)", + "zh_Hans_MO": "Kichina (Rahisi, Makau SAR China)", "zh_Hans_SG": "Kichina (Rahisi, Singapore)", "zh_Hant": "Kichina (Cha jadi)", "zh_Hant_HK": "Kichina (Cha jadi, Hong Kong SAR China)", - "zh_Hant_MO": "Kichina (Cha jadi, Macau SAR China)", + "zh_Hant_MO": "Kichina (Cha jadi, Makau SAR China)", "zh_Hant_TW": "Kichina (Cha jadi, Taiwan)", - "zh_MO": "Kichina (Macau SAR China)", + "zh_MO": "Kichina (Makau SAR China)", "zh_SG": "Kichina (Singapore)", "zh_TW": "Kichina (Taiwan)", "zu": "Kizulu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json index 1d5ea317a1c7e..5d06054ffde8d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json @@ -47,7 +47,7 @@ "lb_LU": "Kilasembagi (Lasembagi)", "lv_LV": "Kilatvia (Lativia)", "mk": "Kimasedonia", - "mk_MK": "Kimasedonia (Macedonia)", + "mk_MK": "Kimasedonia (Masedonia ya Kaskazini)", "my_MM": "Kiburma (Myama)", "nb_NO": "Kinorwe cha Bokmal (Norwe)", "ne_NP": "Kinepali (Nepali)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/locales/sw_KE.json index e0699a7ca4b91..de8c78450c3d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw_KE.json @@ -29,7 +29,6 @@ "en_IO": "Kiingereza (Himaya ya Uingereza katika Bahari Hindi)", "en_KY": "Kiingereza (Visiwa vya Kaimani)", "en_LS": "Kiingereza (Lesotho)", - "en_MO": "Kiingereza (Makau SAR China)", "en_MS": "Kiingereza (Montserati)", "en_PG": "Kiingereza (Papua Guinea Mpya)", "en_PR": "Kiingereza (Puetoriko)", @@ -87,8 +86,8 @@ "or_IN": "Kiodia (India)", "pl_PL": "Kipolandi (Polandi)", "ps_AF": "Kipashto (Afghanistani)", + "pt_CV": "Kireno (Kepuvede)", "pt_LU": "Kireno (Lasembagi)", - "pt_MO": "Kireno (Makau SAR China)", "pt_ST": "Kireno (Sao Tome na Prinsipe)", "qu_EC": "Kikechua (Ekwado)", "ru_BY": "Kirusi (Belarusi)", @@ -107,11 +106,8 @@ "uz_Arab_AF": "Kiuzbeki (Kiarabu, Afghanistani)", "vi_VN": "Kivietinamu (Vietnamu)", "yo_BJ": "Kiyoruba (Benini)", - "zh_Hans_MO": "Kichina (Rahisi, Makau SAR China)", "zh_Hans_SG": "Kichina (Rahisi, Singapuri)", - "zh_Hant_MO": "Kichina (Cha jadi, Makau SAR China)", "zh_Hant_TW": "Kichina (Cha jadi, Taiwani)", - "zh_MO": "Kichina (Makau SAR China)", "zh_SG": "Kichina (Singapuri)", "zh_TW": "Kichina (Taiwani)" } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ta.json b/src/Symfony/Component/Intl/Resources/data/locales/ta.json index 36227c2169961..b5cccdcbca329 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -37,12 +37,12 @@ "ar_YE": "அரபிக் (ஏமன்)", "as": "அஸ்ஸாமீஸ்", "as_IN": "அஸ்ஸாமீஸ் (இந்தியா)", - "az": "அஸர்பைஜானி", - "az_AZ": "அஸர்பைஜானி (அசர்பைஜான்)", - "az_Cyrl": "அஸர்பைஜானி (சிரிலிக்)", - "az_Cyrl_AZ": "அஸர்பைஜானி (சிரிலிக், அசர்பைஜான்)", - "az_Latn": "அஸர்பைஜானி (லத்தின்)", - "az_Latn_AZ": "அஸர்பைஜானி (லத்தின், அசர்பைஜான்)", + "az": "அசர்பைஜானி", + "az_AZ": "அசர்பைஜானி (அசர்பைஜான்)", + "az_Cyrl": "அசர்பைஜானி (சிரிலிக்)", + "az_Cyrl_AZ": "அசர்பைஜானி (சிரிலிக், அசர்பைஜான்)", + "az_Latn": "அசர்பைஜானி (லத்தின்)", + "az_Latn_AZ": "அசர்பைஜானி (லத்தின், அசர்பைஜான்)", "be": "பெலாருஷியன்", "be_BY": "பெலாருஷியன் (பெலாரஸ்)", "bg": "பல்கேரியன்", @@ -100,7 +100,7 @@ "en_AS": "ஆங்கிலம் (அமெரிக்க சமோவா)", "en_AT": "ஆங்கிலம் (ஆஸ்திரியா)", "en_AU": "ஆங்கிலம் (ஆஸ்திரேலியா)", - "en_BB": "ஆங்கிலம் (பார்படோஸ்)", + "en_BB": "ஆங்கிலம் (பார்படாஸ்)", "en_BE": "ஆங்கிலம் (பெல்ஜியம்)", "en_BI": "ஆங்கிலம் (புருண்டி)", "en_BM": "ஆங்கிலம் (பெர்முடா)", @@ -179,7 +179,7 @@ "en_SL": "ஆங்கிலம் (சியாரா லியோன்)", "en_SS": "ஆங்கிலம் (தெற்கு சூடான்)", "en_SX": "ஆங்கிலம் (சின்ட் மார்டென்)", - "en_SZ": "ஆங்கிலம் (ஸ்வாஸிலாந்து)", + "en_SZ": "ஆங்கிலம் (எஸ்வாட்டீனி)", "en_TC": "ஆங்கிலம் (டர்க்ஸ் & கைகோஸ் தீவுகள்)", "en_TK": "ஆங்கிலம் (டோகேலோ)", "en_TO": "ஆங்கிலம் (டோங்கா)", @@ -306,6 +306,7 @@ "fy": "மேற்கு ஃப்ரிஷியன்", "fy_NL": "மேற்கு ஃப்ரிஷியன் (நெதர்லாந்து)", "ga": "ஐரிஷ்", + "ga_GB": "ஐரிஷ் (யுனைடெட் கிங்டம்)", "ga_IE": "ஐரிஷ் (அயர்லாந்து)", "gd": "ஸ்காட்ஸ் கேலிக்", "gd_GB": "ஸ்காட்ஸ் கேலிக் (யுனைடெட் கிங்டம்)", @@ -325,7 +326,7 @@ "hi_IN": "இந்தி (இந்தியா)", "hr": "குரோஷியன்", "hr_BA": "குரோஷியன் (போஸ்னியா & ஹெர்ஸகோவினா)", - "hr_HR": "குரோஷியன் (குரேஷியா)", + "hr_HR": "குரோஷியன் (குரோஷியா)", "hu": "ஹங்கேரியன்", "hu_HU": "ஹங்கேரியன் (ஹங்கேரி)", "hy": "ஆர்மேனியன்", @@ -393,7 +394,7 @@ "mi": "மௌரி", "mi_NZ": "மௌரி (நியூசிலாந்து)", "mk": "மாஸிடோனியன்", - "mk_MK": "மாஸிடோனியன் (மாசிடோனியா)", + "mk_MK": "மாஸிடோனியன் (வடக்கு மாசிடோனியா)", "ml": "மலையாளம்", "ml_IN": "மலையாளம் (இந்தியா)", "mn": "மங்கோலியன்", @@ -460,7 +461,7 @@ "pt_MZ": "போர்ச்சுக்கீஸ் (மொசாம்பிக்)", "pt_PT": "போர்ச்சுக்கீஸ் (போர்ச்சுக்கல்)", "pt_ST": "போர்ச்சுக்கீஸ் (சாவ் தோம் & ப்ரின்சிபி)", - "pt_TL": "போர்ச்சுக்கீஸ் (தைமூர்-லெஸ்தே)", + "pt_TL": "போர்ச்சுக்கீஸ் (திமோர்-லெஸ்தே)", "qu": "க்வெச்சுவா", "qu_BO": "க்வெச்சுவா (பொலிவியா)", "qu_EC": "க்வெச்சுவா (ஈக்வடார்)", @@ -506,7 +507,7 @@ "so_SO": "சோமாலி (சோமாலியா)", "sq": "அல்பேனியன்", "sq_AL": "அல்பேனியன் (அல்பேனியா)", - "sq_MK": "அல்பேனியன் (மாசிடோனியா)", + "sq_MK": "அல்பேனியன் (வடக்கு மாசிடோனியா)", "sq_XK": "அல்பேனியன் (கொசோவோ)", "sr": "செர்பியன்", "sr_BA": "செர்பியன் (போஸ்னியா & ஹெர்ஸகோவினா)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index 98493a934a22e..385dd4573a196 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -131,12 +131,12 @@ "en_GM": "ఆంగ్లం (గాంబియా)", "en_GU": "ఆంగ్లం (గ్వామ్)", "en_GY": "ఆంగ్లం (గయానా)", - "en_HK": "ఆంగ్లం (హాంకాంగ్ ఎస్ఏఆర్)", + "en_HK": "ఆంగ్లం (హాంకాంగ్ ఎస్ఏఆర్ చైనా)", "en_IE": "ఆంగ్లం (ఐర్లాండ్)", "en_IL": "ఆంగ్లం (ఇజ్రాయెల్)", "en_IM": "ఆంగ్లం (ఐల్ ఆఫ్ మాన్)", "en_IN": "ఆంగ్లం (భారతదేశం)", - "en_IO": "ఆంగ్లం (బ్రిటీష్ హిందూ మహాసముద్ర ప్రాంతం)", + "en_IO": "ఆంగ్లం (బ్రిటిష్ హిందూ మహాసముద్ర ప్రాంతం)", "en_JE": "ఆంగ్లం (జెర్సీ)", "en_JM": "ఆంగ్లం (జమైకా)", "en_KE": "ఆంగ్లం (కెన్యా)", @@ -179,7 +179,7 @@ "en_SL": "ఆంగ్లం (సియెర్రా లియాన్)", "en_SS": "ఆంగ్లం (దక్షిణ సూడాన్)", "en_SX": "ఆంగ్లం (సింట్ మార్టెన్)", - "en_SZ": "ఆంగ్లం (స్వాజిల్యాండ్)", + "en_SZ": "ఆంగ్లం (ఈస్వాటిని)", "en_TC": "ఆంగ్లం (టర్క్స్ మరియు కైకోస్ దీవులు)", "en_TK": "ఆంగ్లం (టోకెలావ్)", "en_TO": "ఆంగ్లం (టోంగా)", @@ -306,6 +306,7 @@ "fy": "పశ్చిమ ఫ్రిసియన్", "fy_NL": "పశ్చిమ ఫ్రిసియన్ (నెదర్లాండ్స్)", "ga": "ఐరిష్", + "ga_GB": "ఐరిష్ (యునైటెడ్ కింగ్‌డమ్)", "ga_IE": "ఐరిష్ (ఐర్లాండ్)", "gd": "స్కాటిష్ గేలిక్", "gd_GB": "స్కాటిష్ గేలిక్ (యునైటెడ్ కింగ్‌డమ్)", @@ -393,7 +394,7 @@ "mi": "మావొరీ", "mi_NZ": "మావొరీ (న్యూజిలాండ్)", "mk": "మాసిడోనియన్", - "mk_MK": "మాసిడోనియన్ (మేసిడోనియా)", + "mk_MK": "మాసిడోనియన్ (ఉత్తర మాసిడోనియా)", "ml": "మలయాళం", "ml_IN": "మలయాళం (భారతదేశం)", "mn": "మంగోలియన్", @@ -506,7 +507,7 @@ "so_SO": "సోమాలి (సోమాలియా)", "sq": "అల్బేనియన్", "sq_AL": "అల్బేనియన్ (అల్బేనియా)", - "sq_MK": "అల్బేనియన్ (మేసిడోనియా)", + "sq_MK": "అల్బేనియన్ (ఉత్తర మాసిడోనియా)", "sq_XK": "అల్బేనియన్ (కొసోవో)", "sr": "సెర్బియన్", "sr_BA": "సెర్బియన్ (బోస్నియా మరియు హెర్జిగోవినా)", @@ -585,14 +586,14 @@ "yo_NG": "యోరుబా (నైజీరియా)", "zh": "చైనీస్", "zh_CN": "చైనీస్ (చైనా)", - "zh_HK": "చైనీస్ (హాంకాంగ్ ఎస్ఏఆర్)", + "zh_HK": "చైనీస్ (హాంకాంగ్ ఎస్ఏఆర్ చైనా)", "zh_Hans": "చైనీస్ (సరళీకృతం)", "zh_Hans_CN": "చైనీస్ (సరళీకృతం, చైనా)", - "zh_Hans_HK": "చైనీస్ (సరళీకృతం, హాంకాంగ్ ఎస్ఏఆర్)", + "zh_Hans_HK": "చైనీస్ (సరళీకృతం, హాంకాంగ్ ఎస్ఏఆర్ చైనా)", "zh_Hans_MO": "చైనీస్ (సరళీకృతం, మకావ్ ఎస్ఏఆర్ చైనా)", "zh_Hans_SG": "చైనీస్ (సరళీకృతం, సింగపూర్)", "zh_Hant": "చైనీస్ (సాంప్రదాయక)", - "zh_Hant_HK": "చైనీస్ (సాంప్రదాయక, హాంకాంగ్ ఎస్ఏఆర్)", + "zh_Hant_HK": "చైనీస్ (సాంప్రదాయక, హాంకాంగ్ ఎస్ఏఆర్ చైనా)", "zh_Hant_MO": "చైనీస్ (సాంప్రదాయక, మకావ్ ఎస్ఏఆర్ చైనా)", "zh_Hant_TW": "చైనీస్ (సాంప్రదాయక, తైవాన్)", "zh_MO": "చైనీస్ (మకావ్ ఎస్ఏఆర్ చైనా)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tg.json b/src/Symfony/Component/Intl/Resources/data/locales/tg.json index 2cca0eba8bcde..4f9138dcbb4a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tg.json @@ -50,7 +50,7 @@ "bo_CN": "тибетӣ (Хитой)", "bo_IN": "тибетӣ (Ҳиндустон)", "br": "бретонӣ", - "br_FR": "бретонӣ (Франсия)", + "br_FR": "бретонӣ (Фаронса)", "bs": "босниягӣ", "bs_BA": "босниягӣ (Босния ва Ҳерсеговина)", "bs_Cyrl": "босниягӣ (Кириллӣ)", @@ -60,7 +60,7 @@ "ca": "каталонӣ", "ca_AD": "каталонӣ (Андорра)", "ca_ES": "каталонӣ (Испания)", - "ca_FR": "каталонӣ (Франсия)", + "ca_FR": "каталонӣ (Фаронса)", "ca_IT": "каталонӣ (Италия)", "cs": "чехӣ", "cs_CZ": "чехӣ (Ҷумҳурии Чех)", @@ -255,7 +255,7 @@ "fr_CM": "франсузӣ (Камерун)", "fr_DJ": "франсузӣ (Ҷибути)", "fr_DZ": "франсузӣ (Алҷазоир)", - "fr_FR": "франсузӣ (Франсия)", + "fr_FR": "франсузӣ (Фаронса)", "fr_GA": "франсузӣ (Габон)", "fr_GF": "франсузӣ (Гвианаи Фаронса)", "fr_GN": "франсузӣ (Гвинея)", @@ -290,6 +290,7 @@ "fy": "фризии ғарбӣ", "fy_NL": "фризии ғарбӣ (Нидерландия)", "ga": "ирландӣ", + "ga_GB": "ирландӣ (Шоҳигарии Муттаҳида)", "ga_IE": "ирландӣ (Ирландия)", "gd": "шотландии гэлӣ", "gd_GB": "шотландии гэлӣ (Шоҳигарии Муттаҳида)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index 19c8dfdbe1817..7cf4abdc98732 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -306,6 +306,7 @@ "fy": "ฟริเซียนตะวันตก", "fy_NL": "ฟริเซียนตะวันตก (เนเธอร์แลนด์)", "ga": "ไอริช", + "ga_GB": "ไอริช (สหราชอาณาจักร)", "ga_IE": "ไอริช (ไอร์แลนด์)", "gd": "เกลิกสกอต", "gd_GB": "เกลิกสกอต (สหราชอาณาจักร)", @@ -335,8 +336,8 @@ "id_ID": "อินโดนีเซีย (อินโดนีเซีย)", "ig": "อิกโบ", "ig_NG": "อิกโบ (ไนจีเรีย)", - "ii": "เสฉวนยิ", - "ii_CN": "เสฉวนยิ (จีน)", + "ii": "เสฉวนยี่", + "ii_CN": "เสฉวนยี่ (จีน)", "is": "ไอซ์แลนด์", "is_IS": "ไอซ์แลนด์ (ไอซ์แลนด์)", "it": "อิตาลี", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ti.json b/src/Symfony/Component/Intl/Resources/data/locales/ti.json index d16eb5bf78201..bffb74d5f1198 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ti.json @@ -268,6 +268,7 @@ "fy": "ፍሪሰኛ", "fy_NL": "ፍሪሰኛ (ኔዘርላንድስ)", "ga": "አይሪሽ", + "ga_GB": "አይሪሽ (እንግሊዝ)", "ga_IE": "አይሪሽ (አየርላንድ)", "gd": "እስኮትስ ጌልክኛ", "gd_GB": "እስኮትስ ጌልክኛ (እንግሊዝ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tk.json b/src/Symfony/Component/Intl/Resources/data/locales/tk.json index 58a5c9c250294..93f7b6315ba6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tk.json @@ -179,7 +179,7 @@ "en_SL": "iňlis dili (Sýerra-Leone)", "en_SS": "iňlis dili (Günorta Sudan)", "en_SX": "iňlis dili (Sint-Marten)", - "en_SZ": "iňlis dili (Swazilend)", + "en_SZ": "iňlis dili (Eswatini)", "en_TC": "iňlis dili (Terks we Kaýkos adalary)", "en_TK": "iňlis dili (Tokelau)", "en_TO": "iňlis dili (Tonga)", @@ -306,6 +306,7 @@ "fy": "günbatar friz dili", "fy_NL": "günbatar friz dili (Niderlandlar)", "ga": "irland dili", + "ga_GB": "irland dili (Birleşen Patyşalyk)", "ga_IE": "irland dili (Irlandiýa)", "gd": "şotland kelt dili", "gd_GB": "şotland kelt dili (Birleşen Patyşalyk)", @@ -384,8 +385,8 @@ "lo_LA": "laos dili (Laos)", "lt": "litwa dili", "lt_LT": "litwa dili (Litwa)", - "lu": "luba-Katanga dili", - "lu_CD": "luba-Katanga dili (Kongo - Kinşasa)", + "lu": "luba-katanga dili", + "lu_CD": "luba-katanga dili (Kongo - Kinşasa)", "lv": "latyş dili", "lv_LV": "latyş dili (Latwiýa)", "mg": "malagasiý dili", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/to.json b/src/Symfony/Component/Intl/Resources/data/locales/to.json index 15a88779eb211..cab64a1346f54 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -179,7 +179,7 @@ "en_SL": "lea fakapālangi (Siela Leone)", "en_SS": "lea fakapālangi (Sūtani fakatonga)", "en_SX": "lea fakapālangi (Sā Mātini [fakahōlani])", - "en_SZ": "lea fakapālangi (Suasilani)", + "en_SZ": "lea fakapālangi (ʻEsuatini)", "en_TC": "lea fakapālangi (ʻOtumotu Tuki mo Kaikosi)", "en_TK": "lea fakapālangi (Tokelau)", "en_TO": "lea fakapālangi (Tonga)", @@ -306,6 +306,7 @@ "fy": "lea fakafilisia-hihifo", "fy_NL": "lea fakafilisia-hihifo (Hōlani)", "ga": "lea fakaʻaelani", + "ga_GB": "lea fakaʻaelani (Pilitānia)", "ga_IE": "lea fakaʻaelani (ʻAealani)", "gd": "lea fakakaeliki", "gd_GB": "lea fakakaeliki (Pilitānia)", @@ -393,7 +394,7 @@ "mi": "lea fakamauli", "mi_NZ": "lea fakamauli (Nuʻusila)", "mk": "lea fakamasitōnia", - "mk_MK": "lea fakamasitōnia (Masetōnia)", + "mk_MK": "lea fakamasitōnia (Masetōnia fakatokelau)", "ml": "lea fakaʻinitia-malāialami", "ml_IN": "lea fakaʻinitia-malāialami (ʻInitia)", "mn": "lea fakamongokōlia", @@ -460,7 +461,7 @@ "pt_MZ": "lea fakapotukali (Mosēmipiki)", "pt_PT": "lea fakapotukali (Potukali)", "pt_ST": "lea fakapotukali (Sao Tomē mo Pilinisipe)", - "pt_TL": "lea fakapotukali (Timoa hahake)", + "pt_TL": "lea fakapotukali (Timoa fakahahake)", "qu": "lea fakakuetisa", "qu_BO": "lea fakakuetisa (Polīvia)", "qu_EC": "lea fakakuetisa (ʻEkuetoa)", @@ -506,7 +507,7 @@ "so_SO": "lea fakasomali (Sōmalia)", "sq": "lea fakaʻalapēnia", "sq_AL": "lea fakaʻalapēnia (ʻAlipania)", - "sq_MK": "lea fakaʻalapēnia (Masetōnia)", + "sq_MK": "lea fakaʻalapēnia (Masetōnia fakatokelau)", "sq_XK": "lea fakaʻalapēnia (Kōsovo)", "sr": "lea fakasēpia", "sr_BA": "lea fakasēpia (Posinia mo Hesikōvina)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tr.json b/src/Symfony/Component/Intl/Resources/data/locales/tr.json index bd11b36bfa310..351b510ba68f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -37,12 +37,12 @@ "ar_YE": "Arapça (Yemen)", "as": "Assamca", "as_IN": "Assamca (Hindistan)", - "az": "Azerice", - "az_AZ": "Azerice (Azerbaycan)", - "az_Cyrl": "Azerice (Kiril)", - "az_Cyrl_AZ": "Azerice (Kiril, Azerbaycan)", - "az_Latn": "Azerice (Latin)", - "az_Latn_AZ": "Azerice (Latin, Azerbaycan)", + "az": "Azerbaycan dili", + "az_AZ": "Azerbaycan dili (Azerbaycan)", + "az_Cyrl": "Azerbaycan dili (Kiril)", + "az_Cyrl_AZ": "Azerbaycan dili (Kiril, Azerbaycan)", + "az_Latn": "Azerbaycan dili (Latin)", + "az_Latn_AZ": "Azerbaycan dili (Latin, Azerbaycan)", "be": "Belarusça", "be_BY": "Belarusça (Belarus)", "bg": "Bulgarca", @@ -267,7 +267,7 @@ "fr_CF": "Fransızca (Orta Afrika Cumhuriyeti)", "fr_CG": "Fransızca (Kongo - Brazavil)", "fr_CH": "Fransızca (İsviçre)", - "fr_CI": "Fransızca (Fildişi Sahili)", + "fr_CI": "Fransızca (Côte d’Ivoire)", "fr_CM": "Fransızca (Kamerun)", "fr_DJ": "Fransızca (Cibuti)", "fr_DZ": "Fransızca (Cezayir)", @@ -292,7 +292,7 @@ "fr_NE": "Fransızca (Nijer)", "fr_PF": "Fransızca (Fransız Polinezyası)", "fr_PM": "Fransızca (Saint Pierre ve Miquelon)", - "fr_RE": "Fransızca (Réunion)", + "fr_RE": "Fransızca (Reunion)", "fr_RW": "Fransızca (Ruanda)", "fr_SC": "Fransızca (Seyşeller)", "fr_SN": "Fransızca (Senegal)", @@ -306,6 +306,7 @@ "fy": "Batı Frizcesi", "fy_NL": "Batı Frizcesi (Hollanda)", "ga": "İrlandaca", + "ga_GB": "İrlandaca (Birleşik Krallık)", "ga_IE": "İrlandaca (İrlanda)", "gd": "İskoç Gaelcesi", "gd_GB": "İskoç Gaelcesi (Birleşik Krallık)", @@ -330,7 +331,7 @@ "hu_HU": "Macarca (Macaristan)", "hy": "Ermenice", "hy_AM": "Ermenice (Ermenistan)", - "ia": "Interlingua", + "ia": "İnterlingua", "id": "Endonezce", "id_ID": "Endonezce (Endonezya)", "ig": "İbo dili", @@ -346,8 +347,8 @@ "it_VA": "İtalyanca (Vatikan)", "ja": "Japonca", "ja_JP": "Japonca (Japonya)", - "jv": "Cava Dili", - "jv_ID": "Cava Dili (Endonezya)", + "jv": "Cava dili", + "jv_ID": "Cava dili (Endonezya)", "ka": "Gürcüce", "ka_GE": "Gürcüce (Gürcistan)", "ki": "Kikuyu", @@ -459,7 +460,7 @@ "pt_MO": "Portekizce (Çin Makao ÖİB)", "pt_MZ": "Portekizce (Mozambik)", "pt_PT": "Portekizce (Portekiz)", - "pt_ST": "Portekizce (São Tomé ve Príncipe)", + "pt_ST": "Portekizce (Sao Tome ve Principe)", "pt_TL": "Portekizce (Timor-Leste)", "qu": "Keçuva dili", "qu_BO": "Keçuva dili (Bolivya)", @@ -497,8 +498,8 @@ "sk_SK": "Slovakça (Slovakya)", "sl": "Slovence", "sl_SI": "Slovence (Slovenya)", - "sn": "Shona", - "sn_ZW": "Shona (Zimbabve)", + "sn": "Şona dili", + "sn_ZW": "Şona dili (Zimbabve)", "so": "Somalice", "so_DJ": "Somalice (Cibuti)", "so_ET": "Somalice (Etiyopya)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tt.json b/src/Symfony/Component/Intl/Resources/data/locales/tt.json index 2893991718fb4..3bd10013c09fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tt.json @@ -65,7 +65,7 @@ "cs": "чех", "cs_CZ": "чех (Чехия Республикасы)", "cy": "уэльс", - "cy_GB": "уэльс (Бөекбритания)", + "cy_GB": "уэльс (Берләшкән Корольлек)", "da": "дания", "da_DK": "дания (Дания)", "da_GL": "дания (Гренландия)", @@ -111,7 +111,7 @@ "en_FJ": "инглиз (Фиджи)", "en_FK": "инглиз (Фолкленд утраулары)", "en_FM": "инглиз (Микронезия)", - "en_GB": "инглиз (Бөекбритания)", + "en_GB": "инглиз (Берләшкән Корольлек)", "en_GD": "инглиз (Гренада)", "en_GG": "инглиз (Гернси)", "en_GH": "инглиз (Гана)", @@ -287,9 +287,10 @@ "fr_WF": "француз (Уоллис һәм Футуна)", "fr_YT": "француз (Майотта)", "ga": "ирланд", + "ga_GB": "ирланд (Берләшкән Корольлек)", "ga_IE": "ирланд (Ирландия)", "gd": "шотланд гэль", - "gd_GB": "шотланд гэль (Бөекбритания)", + "gd_GB": "шотланд гэль (Берләшкән Корольлек)", "gl": "галисия", "gl_ES": "галисия (Испания)", "gu": "гуҗарати", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 6481ebba441ea..45328fd29e084 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -306,6 +306,7 @@ "fy": "غەربىي فىرسچە", "fy_NL": "غەربىي فىرسچە (گوللاندىيە)", "ga": "ئىرېلاندچە", + "ga_GB": "ئىرېلاندچە (بىرلەشمە پادىشاھلىق)", "ga_IE": "ئىرېلاندچە (ئىرېلاندىيە)", "gd": "شوتلاندىيە گايلچىسى", "gd_GB": "شوتلاندىيە گايلچىسى (بىرلەشمە پادىشاھلىق)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index c61811f404d79..b4fbc58fde9ea 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -306,6 +306,7 @@ "fy": "західнофризька", "fy_NL": "західнофризька (Нідерланди)", "ga": "ірландська", + "ga_GB": "ірландська (Велика Британія)", "ga_IE": "ірландська (Ірландія)", "gd": "гаельська", "gd_GB": "гаельська (Велика Британія)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index 89d7524c951d8..82e912947b9c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -49,9 +49,9 @@ "bg_BG": "بلغاری (بلغاریہ)", "bm": "بمبارا", "bm_ML": "بمبارا (مالی)", - "bn": "بنگالی", - "bn_BD": "بنگالی (بنگلہ دیش)", - "bn_IN": "بنگالی (بھارت)", + "bn": "بنگلہ", + "bn_BD": "بنگلہ (بنگلہ دیش)", + "bn_IN": "بنگلہ (بھارت)", "bo": "تبتی", "bo_CN": "تبتی (چین)", "bo_IN": "تبتی (بھارت)", @@ -180,7 +180,7 @@ "en_SS": "انگریزی (جنوبی سوڈان)", "en_SX": "انگریزی (سنٹ مارٹن)", "en_SZ": "انگریزی (سواتنی)", - "en_TC": "انگریزی (ترکس اور کیکاؤس جزائر)", + "en_TC": "انگریزی (ٹرکس اور کیکوس جزائر)", "en_TK": "انگریزی (ٹوکیلاؤ)", "en_TO": "انگریزی (ٹونگا)", "en_TT": "انگریزی (ترینیداد اور ٹوباگو)", @@ -188,7 +188,7 @@ "en_TZ": "انگریزی (تنزانیہ)", "en_UG": "انگریزی (یوگنڈا)", "en_UM": "انگریزی (امریکہ سے باہر کے چھوٹے جزائز)", - "en_US": "انگریزی (ریاستہائے متحدہ)", + "en_US": "انگریزی (ریاست ہائے متحدہ امریکہ)", "en_VC": "انگریزی (سینٹ ونسنٹ اور گرینیڈائنز)", "en_VG": "انگریزی (برٹش ورجن آئلینڈز)", "en_VI": "انگریزی (امریکی ورجن آئلینڈز)", @@ -223,7 +223,7 @@ "es_PR": "ہسپانوی (پیورٹو ریکو)", "es_PY": "ہسپانوی (پیراگوئے)", "es_SV": "ہسپانوی (ال سلواڈور)", - "es_US": "ہسپانوی (ریاستہائے متحدہ)", + "es_US": "ہسپانوی (ریاست ہائے متحدہ امریکہ)", "es_UY": "ہسپانوی (یوروگوئے)", "es_VE": "ہسپانوی (وینزوئیلا)", "et": "اسٹونین", @@ -306,6 +306,7 @@ "fy": "مغربی فریسیئن", "fy_NL": "مغربی فریسیئن (نیدر لینڈز)", "ga": "آئیرِش", + "ga_GB": "آئیرِش (سلطنت متحدہ)", "ga_IE": "آئیرِش (آئرلینڈ)", "gd": "سکاٹش گیلک", "gd_GB": "سکاٹش گیلک (سلطنت متحدہ)", @@ -459,7 +460,7 @@ "pt_MO": "پُرتگالی (مکاؤ SAR چین)", "pt_MZ": "پُرتگالی (موزمبیق)", "pt_PT": "پُرتگالی (پرتگال)", - "pt_ST": "پُرتگالی (ساؤ ٹوم اور پرنسپے)", + "pt_ST": "پُرتگالی (ساؤ ٹومے اور پرنسپے)", "pt_TL": "پُرتگالی (تیمور لیسٹ)", "qu": "کویچوآ", "qu_BO": "کویچوآ (بولیویا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index 0562ec7a4f535..ebe002e2cf599 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -306,6 +306,7 @@ "fy": "g‘arbiy friz", "fy_NL": "g‘arbiy friz (Niderlandiya)", "ga": "irland", + "ga_GB": "irland (Buyuk Britaniya)", "ga_IE": "irland (Irlandiya)", "gd": "shotland-gel", "gd_GB": "shotland-gel (Buyuk Britaniya)", 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 30f151586e8cd..e5b3fea1235b2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -306,6 +306,7 @@ "fy": "ғарбий фризча", "fy_NL": "ғарбий фризча (Нидерландия)", "ga": "ирландча", + "ga_GB": "ирландча (Буюк Британия)", "ga_IE": "ирландча (Ирландия)", "gd": "шотландча гаелик", "gd_GB": "шотландча гаелик (Буюк Британия)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index 6a21406fe7799..1861fd4e65ae4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -306,6 +306,7 @@ "fy": "Tiếng Frisia", "fy_NL": "Tiếng Frisia (Hà Lan)", "ga": "Tiếng Ireland", + "ga_GB": "Tiếng Ireland (Vương quốc Anh)", "ga_IE": "Tiếng Ireland (Ireland)", "gd": "Tiếng Gael Scotland", "gd_GB": "Tiếng Gael Scotland (Vương quốc Anh)", @@ -349,7 +350,7 @@ "jv": "Tiếng Java", "jv_ID": "Tiếng Java (Indonesia)", "ka": "Tiếng Georgia", - "ka_GE": "Tiếng Georgia (Gruzia)", + "ka_GE": "Tiếng Georgia (Georgia)", "ki": "Tiếng Kikuyu", "ki_KE": "Tiếng Kikuyu (Kenya)", "kk": "Tiếng Kazakh", @@ -434,7 +435,7 @@ "or": "Tiếng Odia", "or_IN": "Tiếng Odia (Ấn Độ)", "os": "Tiếng Ossetic", - "os_GE": "Tiếng Ossetic (Gruzia)", + "os_GE": "Tiếng Ossetic (Georgia)", "os_RU": "Tiếng Ossetic (Nga)", "pa": "Tiếng Punjab", "pa_Arab": "Tiếng Punjab (Chữ Ả Rập)", @@ -559,8 +560,8 @@ "tt_RU": "Tiếng Tatar (Nga)", "ug": "Tiếng Uyghur", "ug_CN": "Tiếng Uyghur (Trung Quốc)", - "uk": "Tiếng Ucraina", - "uk_UA": "Tiếng Ucraina (Ukraina)", + "uk": "Tiếng Ukraina", + "uk_UA": "Tiếng Ukraina (Ukraina)", "ur": "Tiếng Urdu", "ur_IN": "Tiếng Urdu (Ấn Độ)", "ur_PK": "Tiếng Urdu (Pakistan)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/wo.json b/src/Symfony/Component/Intl/Resources/data/locales/wo.json index 8a95455a35bc9..e62246fac40dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/wo.json @@ -249,7 +249,7 @@ "fr_CA": "Farañse (Kanadaa)", "fr_CF": "Farañse (Repiblik Sàntar Afrik)", "fr_CH": "Farañse (Siwis)", - "fr_CI": "Farañse (Kodiwaar [Côte d’Ivoire])", + "fr_CI": "Farañse (Kodiwaar)", "fr_CM": "Farañse (Kamerun)", "fr_DJ": "Farañse (Jibuti)", "fr_DZ": "Farañse (Alseri)", @@ -286,6 +286,7 @@ "fr_WF": "Farañse (Walis ak Futuna)", "fr_YT": "Farañse (Mayot)", "ga": "Irlànde", + "ga_GB": "Irlànde (Ruwaayom Ini)", "ga_IE": "Irlànde (Irlànd)", "gd": "Galuwaa bu Ekos", "gd_GB": "Galuwaa bu Ekos (Ruwaayom Ini)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yi.json b/src/Symfony/Component/Intl/Resources/data/locales/yi.json index 3dbe0bd91f871..285f02498600f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -232,6 +232,7 @@ "fy": "מערב־פֿריזיש", "fy_NL": "מערב־פֿריזיש (האלאַנד)", "ga": "איריש", + "ga_GB": "איריש (פֿאַראייניגטע קעניגרייך)", "ga_IE": "איריש (אירלאַנד)", "gd": "סקאטיש געליש", "gd_GB": "סקאטיש געליש (פֿאַראייניגטע קעניגרייך)", @@ -290,7 +291,6 @@ "mi": "מאַאריש", "mi_NZ": "מאַאריש (ניו זילאַנד)", "mk": "מאַקעדאניש", - "mk_MK": "מאַקעדאניש (מאַקעדאניע)", "ml": "מאַלאַיאַלאַם", "ml_IN": "מאַלאַיאַלאַם (אינדיע)", "mn": "מאנגאליש", @@ -362,7 +362,6 @@ "so_SO": "סאמאַליש (סאמאַליע)", "sq": "אַלבאַניש", "sq_AL": "אַלבאַניש (אַלבאַניע)", - "sq_MK": "אַלבאַניש (מאַקעדאניע)", "sq_XK": "אַלבאַניש (קאסאווא)", "sr": "סערביש", "sr_BA": "סערביש (באסניע הערצעגאווינע)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index 4f6569a9cd209..5455d17358e37 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -2,37 +2,39 @@ "Names": { "af": "Èdè Afrikani", "af_NA": "Èdè Afrikani (Orílẹ́ède Namibia)", - "af_ZA": "Èdè Afrikani (Orílẹ́ède Ariwa Afirika)", + "af_ZA": "Èdè Afrikani (Gúúṣù Áfíríkà)", "ak": "Èdè Akani", "ak_GH": "Èdè Akani (Orílẹ́ède Gana)", "am": "Èdè Amariki", "am_ET": "Èdè Amariki (Orílẹ́ède Etopia)", - "ar": "Èdè Arabiki", - "ar_AE": "Èdè Arabiki (Orílẹ́ède Ẹmirate ti Awọn Arabu)", - "ar_BH": "Èdè Arabiki (Orílẹ́ède Báránì)", - "ar_DJ": "Èdè Arabiki (Orílẹ́ède Díbọ́ótì)", - "ar_DZ": "Èdè Arabiki (Orílẹ́ède Àlùgèríánì)", - "ar_EG": "Èdè Arabiki (Orílẹ́ède Égípítì)", - "ar_ER": "Èdè Arabiki (Orílẹ́ède Eritira)", - "ar_IL": "Èdè Arabiki (Orílẹ́ède Iserẹli)", - "ar_IQ": "Èdè Arabiki (Orílẹ́ède Iraki)", - "ar_JO": "Èdè Arabiki (Orílẹ́ède Jọdani)", - "ar_KM": "Èdè Arabiki (Orílẹ́ède Kòmòrósì)", - "ar_KW": "Èdè Arabiki (Orílẹ́ède Kuweti)", - "ar_LB": "Èdè Arabiki (Orílẹ́ède Lebanoni)", - "ar_LY": "Èdè Arabiki (Orílẹ́ède Libiya)", - "ar_MA": "Èdè Arabiki (Orílẹ́ède Moroko)", - "ar_MR": "Èdè Arabiki (Orílẹ́ède Maritania)", - "ar_OM": "Èdè Arabiki (Orílẹ́ède Ọọma)", - "ar_PS": "Èdè Arabiki (Orílẹ́ède Iwọorun Pakisitian ati Gaṣa)", - "ar_QA": "Èdè Arabiki (Orílẹ́ède Kota)", - "ar_SA": "Èdè Arabiki (Orílẹ́ède Saudi Arabia)", - "ar_SD": "Èdè Arabiki (Orílẹ́ède Sudani)", - "ar_SO": "Èdè Arabiki (Orílẹ́ède Somalia)", - "ar_SY": "Èdè Arabiki (Orílẹ́ède Siria)", - "ar_TD": "Èdè Arabiki (Orílẹ́ède ṣààdì)", - "ar_TN": "Èdè Arabiki (Orílẹ́ède Tuniṣia)", - "ar_YE": "Èdè Arabiki (Orílẹ́ède yemeni)", + "ar": "Èdè Árábìkì", + "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ì)", + "ar_DZ": "Èdè Árábìkì (Orílẹ́ède Àlùgèríánì)", + "ar_EG": "Èdè Árábìkì (Orílẹ́ède Égípítì)", + "ar_EH": "Èdè Árábìkì (Ìwọ̀òòrùn Sàhárà)", + "ar_ER": "Èdè Árábìkì (Orílẹ́ède Eritira)", + "ar_IL": "Èdè Árábìkì (Orílẹ́ède Iserẹli)", + "ar_IQ": "Èdè Árábìkì (Orílẹ́ède Iraki)", + "ar_JO": "Èdè Árábìkì (Orílẹ́ède Jọdani)", + "ar_KM": "Èdè Árábìkì (Orílẹ́ède Kòmòrósì)", + "ar_KW": "Èdè Árábìkì (Orílẹ́ède Kuweti)", + "ar_LB": "Èdè Árábìkì (Orílẹ́ède Lebanoni)", + "ar_LY": "Èdè Árábìkì (Orílẹ́ède Libiya)", + "ar_MA": "Èdè Árábìkì (Orílẹ́ède Moroko)", + "ar_MR": "Èdè Árábìkì (Orílẹ́ède Maritania)", + "ar_OM": "Èdè Árábìkì (Orílẹ́ède Ọọma)", + "ar_PS": "Èdè Árábìkì (Agbègbè Palẹsítíànù)", + "ar_QA": "Èdè Árábìkì (Orílẹ́ède Kota)", + "ar_SA": "Èdè Árábìkì (Orílẹ́ède Saudi Arabia)", + "ar_SD": "Èdè Árábìkì (Orílẹ́ède Sudani)", + "ar_SO": "Èdè Árábìkì (Orílẹ́ède Somalia)", + "ar_SS": "Èdè Árábìkì (Gúúsù Sudan)", + "ar_SY": "Èdè Árábìkì (Orílẹ́ède Siria)", + "ar_TD": "Èdè Árábìkì (Orílẹ́ède ṣààdì)", + "ar_TN": "Èdè Árábìkì (Orílẹ́ède Tuniṣia)", + "ar_YE": "Èdè Árábìkì (Orílẹ́ède yemeni)", "as": "Ti Assam", "as_IN": "Ti Assam (Orílẹ́ède India)", "az": "Èdè Azerbaijani", @@ -68,14 +70,14 @@ "da": "Èdè Ilẹ̀ Denmark", "da_DK": "Èdè Ilẹ̀ Denmark (Orílẹ́ède Dẹ́mákì)", "da_GL": "Èdè Ilẹ̀ Denmark (Orílẹ́ède Gerelandi)", - "de": "Èdè Ilẹ̀ Jámánì", - "de_AT": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède Asítíríà)", - "de_BE": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède Bégíọ́mù)", - "de_CH": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède switiṣilandi)", - "de_DE": "Èdè Ilẹ̀ Jámánì (Orílẹèdè Jámánì)", - "de_IT": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède Itáli)", - "de_LI": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède Lẹṣitẹnisiteni)", - "de_LU": "Èdè Ilẹ̀ Jámánì (Orílẹ́ède Lusemogi)", + "de": "Èdè Jámánì", + "de_AT": "Èdè Jámánì (Orílẹ́ède Asítíríà)", + "de_BE": "Èdè Jámánì (Orílẹ́ède Bégíọ́mù)", + "de_CH": "Èdè Jámánì (Orílẹ́ède switiṣilandi)", + "de_DE": "Èdè Jámánì (Orílẹèdè Jámánì)", + "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)", "el": "Èdè Giriki", "el_CY": "Èdè Giriki (Orílẹ́ède Kúrúsì)", "el_GR": "Èdè Giriki (Orílẹ́ède Geriisi)", @@ -155,13 +157,14 @@ "en_SH": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Hẹlena)", "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_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)", "en_TO": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tonga)", "en_TT": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tirinida ati Tobaga)", "en_TV": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tufalu)", - "en_TZ": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tanṣania)", + "en_TZ": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Tàǹsáníà)", "en_UG": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Uganda)", "en_US": "Èdè Gẹ̀ẹ́sì (Orílẹ̀-èdè Amẹrikà)", "en_VC": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Fisẹnnti ati Genadina)", @@ -169,7 +172,7 @@ "en_VI": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Etikun Fagini ti Amẹrika)", "en_VU": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Faniatu)", "en_WS": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Samọ)", - "en_ZA": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède Ariwa Afirika)", + "en_ZA": "Èdè Gẹ̀ẹ́sì (Gúúṣù Áfíríkà)", "en_ZM": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède ṣamibia)", "en_ZW": "Èdè Gẹ̀ẹ́sì (Orílẹ́ède ṣimibabe)", "eo": "Èdè Esperanto", @@ -206,6 +209,24 @@ "fa": "Èdè Pasia", "fa_AF": "Èdè Pasia (Orílẹ́ède Àfùgànístánì)", "fa_IR": "Èdè Pasia (Orílẹ́ède Irani)", + "ff": "Èdè Fúlàní", + "ff_CM": "Èdè Fúlàní (Orílẹ́ède Kamerúúnì)", + "ff_GN": "Èdè Fúlàní (Orílẹ́ède Gene)", + "ff_Latn": "Èdè Fúlàní (Èdè Látìn)", + "ff_Latn_BF": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Bùùkíná Fasò)", + "ff_Latn_CM": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Kamerúúnì)", + "ff_Latn_GH": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Gana)", + "ff_Latn_GM": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Gambia)", + "ff_Latn_GN": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Gene)", + "ff_Latn_GW": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Gene-Busau)", + "ff_Latn_LR": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Laberia)", + "ff_Latn_MR": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Maritania)", + "ff_Latn_NE": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Nàìjá)", + "ff_Latn_NG": "Èdè Fúlàní (Èdè Látìn, Orilẹ̀-èdè Nàìjíríà)", + "ff_Latn_SL": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Siria looni)", + "ff_Latn_SN": "Èdè Fúlàní (Èdè Látìn, Orílẹ́ède Sẹnẹga)", + "ff_MR": "Èdè Fúlàní (Orílẹ́ède Maritania)", + "ff_SN": "Èdè Fúlàní (Orílẹ́ède Sẹnẹga)", "fi": "Èdè Finisi", "fi_FI": "Èdè Finisi (Orílẹ́ède Filandi)", "fo": "Èdè Faroesi", @@ -258,6 +279,7 @@ "fy": "Èdè Frisia", "fy_NL": "Èdè Frisia (Orílẹ́ède Nedalandi)", "ga": "Èdè Ireland", + "ga_GB": "Èdè Ireland (Orílẹ́èdè Gẹ̀ẹ́sì)", "ga_IE": "Èdè Ireland (Orílẹ́ède Ailandi)", "gd": "Èdè Gaelik ti Ilu Scotland", "gd_GB": "Èdè Gaelik ti Ilu Scotland (Orílẹ́èdè Gẹ̀ẹ́sì)", @@ -271,8 +293,8 @@ "ha_NG": "Èdè Hausa (Orilẹ̀-èdè Nàìjíríà)", "he": "Èdè Heberu", "he_IL": "Èdè Heberu (Orílẹ́ède Iserẹli)", - "hi": "Èdè Hindi", - "hi_IN": "Èdè Hindi (Orílẹ́ède India)", + "hi": "Èdè Híńdì", + "hi_IN": "Èdè Híńdì (Orílẹ́ède India)", "hr": "Èdè Kroatia", "hr_BA": "Èdè Kroatia (Orílẹ́ède Bọ̀síníà àti Ẹtisẹgófínà)", "hr_HR": "Èdè Kroatia (Orílẹ́ède Kòróátíà)", @@ -281,19 +303,19 @@ "hy": "Èdè Ile Armenia", "hy_AM": "Èdè Ile Armenia (Orílẹ́ède Améníà)", "ia": "Èdè pipo", - "id": "Èdè Indonasia", - "id_ID": "Èdè Indonasia (Orílẹ́ède Indonesia)", - "ig": "Èdè Ibo", - "ig_NG": "Èdè Ibo (Orilẹ̀-èdè Nàìjíríà)", + "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íà)", "is": "Èdè Icelandic", "is_IS": "Èdè Icelandic (Orílẹ́ède Aṣilandi)", - "it": "Èdè ilẹ̀ Ítálì", - "it_CH": "Èdè ilẹ̀ Ítálì (Orílẹ́ède switiṣilandi)", - "it_IT": "Èdè ilẹ̀ Ítálì (Orílẹ́ède Itáli)", - "it_SM": "Èdè ilẹ̀ Ítálì (Orílẹ́ède Sani Marino)", - "it_VA": "Èdè ilẹ̀ Ítálì (Ìlú Vatican)", - "ja": "Èdè ilẹ̀ Japan", - "ja_JP": "Èdè ilẹ̀ Japan (Orílẹ́ède Japani)", + "it": "Èdè Ítálì", + "it_CH": "Èdè Ítálì (Orílẹ́ède switiṣilandi)", + "it_IT": "Èdè Ítálì (Orílẹ́ède Itáli)", + "it_SM": "Èdè Ítálì (Orílẹ́ède Sani Marino)", + "it_VA": "Èdè Ítálì (Ìlú Vatican)", + "ja": "Èdè Jàpáànù", + "ja_JP": "Èdè Jàpáànù (Orílẹ́ède Japani)", "jv": "Èdè Javanasi", "jv_ID": "Èdè Javanasi (Orílẹ́ède Indonesia)", "ka": "Èdè Georgia", @@ -302,15 +324,15 @@ "km_KH": "Èdè kameri (Orílẹ́ède Kàmùbódíà)", "kn": "Èdè Kannada", "kn_IN": "Èdè Kannada (Orílẹ́ède India)", - "ko": "Èdè Koria", - "ko_KP": "Èdè Koria (Orílẹ́ède Guusu Kọria)", - "ko_KR": "Èdè Koria (Orílẹ́ède Ariwa Kọria)", + "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)", "lt": "Èdè Lithuania", "lt_LT": "Èdè Lithuania (Orílẹ́ède Lituania)", "lv": "Èdè Latvianu", "lv_LV": "Èdè Latvianu (Orílẹ́ède Latifia)", "mk": "Èdè Macedonia", - "mk_MK": "Èdè Macedonia (Orílẹ́ède Masidonia)", + "mk_MK": "Èdè Macedonia (Àríwá Macedonia)", "mr": "Èdè marathi", "mr_IN": "Èdè marathi (Orílẹ́ède India)", "ms": "Èdè Malaya", @@ -324,11 +346,11 @@ "ne": "Èdè Nepali", "ne_IN": "Èdè Nepali (Orílẹ́ède India)", "ne_NP": "Èdè Nepali (Orílẹ́ède Nepa)", - "nl": "Èdè Duki", - "nl_AW": "Èdè Duki (Orílẹ́ède Árúbà)", - "nl_BE": "Èdè Duki (Orílẹ́ède Bégíọ́mù)", - "nl_NL": "Èdè Duki (Orílẹ́ède Nedalandi)", - "nl_SR": "Èdè Duki (Orílẹ́ède Surinami)", + "nl": "Èdè Dọ́ọ̀ṣì", + "nl_AW": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Árúbà)", + "nl_BE": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Bégíọ́mù)", + "nl_NL": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Nedalandi)", + "nl_SR": "Èdè Dọ́ọ̀ṣì (Orílẹ́ède Surinami)", "no": "Èdè Norway", "no_NO": "Èdè Norway (Orílẹ́ède Nọọwii)", "pa": "Èdè Punjabi", @@ -336,8 +358,8 @@ "pa_Arab_PK": "Èdè Punjabi (èdè Lárúbáwá, Orílẹ́ède Pakisitan)", "pa_IN": "Èdè Punjabi (Orílẹ́ède India)", "pa_PK": "Èdè Punjabi (Orílẹ́ède Pakisitan)", - "pl": "Èdè Ilẹ̀ Polandi", - "pl_PL": "Èdè Ilẹ̀ Polandi (Orílẹ́ède Polandi)", + "pl": "Èdè Póláǹdì", + "pl_PL": "Èdè Póláǹdì (Orílẹ́ède Polandi)", "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ì)", @@ -347,19 +369,19 @@ "pt_GW": "Èdè Pọtogí (Orílẹ́ède Gene-Busau)", "pt_LU": "Èdè Pọtogí (Orílẹ́ède Lusemogi)", "pt_MZ": "Èdè Pọtogí (Orílẹ́ède Moṣamibiku)", - "pt_PT": "Èdè Pọtogí (Orílẹ́ède Pọtugi)", + "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ọ̀)", "ro": "Èdè Romania", "ro_MD": "Èdè Romania (Orílẹ́ède Modofia)", "ro_RO": "Èdè Romania (Orílẹ́ède Romaniya)", - "ru": "Èdè Rọsià", - "ru_BY": "Èdè Rọsià (Orílẹ́ède Bélárúsì)", - "ru_KG": "Èdè Rọsià (Orílẹ́ède Kuriṣisitani)", - "ru_KZ": "Èdè Rọsià (Orílẹ́ède Kaṣaṣatani)", - "ru_MD": "Èdè Rọsià (Orílẹ́ède Modofia)", - "ru_RU": "Èdè Rọsià (Orílẹ́ède Rọṣia)", - "ru_UA": "Èdè Rọsià (Orílẹ́ède Ukarini)", + "ru": "Èdè Rọ́ṣíà", + "ru_BY": "Èdè Rọ́ṣíà (Orílẹ́ède Bélárúsì)", + "ru_KG": "Èdè Rọ́ṣíà (Orílẹ́ède Kuriṣisitani)", + "ru_KZ": "Èdè Rọ́ṣíà (Orílẹ́ède Kaṣaṣatani)", + "ru_MD": "Èdè Rọ́ṣíà (Orílẹ́ède Modofia)", + "ru_RU": "Èdè Rọ́ṣíà (Orílẹ́ède Rọṣia)", + "ru_UA": "Èdè Rọ́ṣíà (Orílẹ́ède Ukarini)", "rw": "Èdè Ruwanda", "rw_RW": "Èdè Ruwanda (Orílẹ́ède Ruwanda)", "sd": "Èdè Sindhi", @@ -379,20 +401,24 @@ "so_SO": "Èdè ara Somalia (Orílẹ́ède Somalia)", "sq": "Èdè Albania", "sq_AL": "Èdè Albania (Orílẹ́ède Àlùbàníánì)", - "sq_MK": "Èdè Albania (Orílẹ́ède Masidonia)", + "sq_MK": "Èdè Albania (Àríwá Macedonia)", + "sq_XK": "Èdè Albania (Kòsófò)", "sr": "Èdè Serbia", "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_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_XK": "Èdè Serbia (Èdè Látìn, Kòsófò)", + "sr_XK": "Èdè Serbia (Kòsófò)", "sv": "Èdè Suwidiisi", "sv_FI": "Èdè Suwidiisi (Orílẹ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílẹ́ède Swidini)", "sw": "Èdè Swahili", "sw_CD": "Èdè Swahili (Orilẹ́ède Kóngò)", "sw_KE": "Èdè Swahili (Orílẹ́ède Kenya)", - "sw_TZ": "Èdè Swahili (Orílẹ́ède Tanṣania)", + "sw_TZ": "Èdè Swahili (Orílẹ́ède Tàǹsáníà)", "sw_UG": "Èdè Swahili (Orílẹ́ède Uganda)", "ta": "Èdè Tamili", "ta_IN": "Èdè Tamili (Orílẹ́ède India)", @@ -428,7 +454,7 @@ "vi": "Èdè Jetinamu", "vi_VN": "Èdè Jetinamu (Orílẹ́ède Fẹtinami)", "xh": "Èdè Xhosa", - "xh_ZA": "Èdè Xhosa (Orílẹ́ède Ariwa Afirika)", + "xh_ZA": "Èdè Xhosa (Gúúṣù Áfíríkà)", "yi": "Èdè Yiddishi", "yo": "Èdè Yorùbá", "yo_BJ": "Èdè Yorùbá (Orílẹ́ède Bẹ̀nẹ̀)", @@ -443,6 +469,6 @@ "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", - "zu_ZA": "Èdè Ṣulu (Orílẹ́ède Ariwa Afirika)" + "zu_ZA": "Èdè Ṣulu (Gúúṣù Áfíríkà)" } } 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 136a881b3553c..e2792408412c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json @@ -1,34 +1,35 @@ { "Names": { "af_NA": "Èdè Afrikani (Orílɛ́ède Namibia)", - "af_ZA": "Èdè Afrikani (Orílɛ́ède Ariwa Afirika)", + "af_ZA": "Èdè Afrikani (Gúúshù Áfíríkà)", "ak_GH": "Èdè Akani (Orílɛ́ède Gana)", "am_ET": "Èdè Amariki (Orílɛ́ède Etopia)", - "ar_AE": "Èdè Arabiki (Orílɛ́ède Ɛmirate ti Awɔn Arabu)", - "ar_BH": "Èdè Arabiki (Orílɛ́ède Báránì)", - "ar_DJ": "Èdè Arabiki (Orílɛ́ède Díbɔ́ótì)", - "ar_DZ": "Èdè Arabiki (Orílɛ́ède Àlùgèríánì)", - "ar_EG": "Èdè Arabiki (Orílɛ́ède Égípítì)", - "ar_ER": "Èdè Arabiki (Orílɛ́ède Eritira)", - "ar_IL": "Èdè Arabiki (Orílɛ́ède Iserɛli)", - "ar_IQ": "Èdè Arabiki (Orílɛ́ède Iraki)", - "ar_JO": "Èdè Arabiki (Orílɛ́ède Jɔdani)", - "ar_KM": "Èdè Arabiki (Orílɛ́ède Kòmòrósì)", - "ar_KW": "Èdè Arabiki (Orílɛ́ède Kuweti)", - "ar_LB": "Èdè Arabiki (Orílɛ́ède Lebanoni)", - "ar_LY": "Èdè Arabiki (Orílɛ́ède Libiya)", - "ar_MA": "Èdè Arabiki (Orílɛ́ède Moroko)", - "ar_MR": "Èdè Arabiki (Orílɛ́ède Maritania)", - "ar_OM": "Èdè Arabiki (Orílɛ́ède Ɔɔma)", - "ar_PS": "Èdè Arabiki (Orílɛ́ède Iwɔorun Pakisitian ati Gasha)", - "ar_QA": "Èdè Arabiki (Orílɛ́ède Kota)", - "ar_SA": "Èdè Arabiki (Orílɛ́ède Saudi Arabia)", - "ar_SD": "Èdè Arabiki (Orílɛ́ède Sudani)", - "ar_SO": "Èdè Arabiki (Orílɛ́ède Somalia)", - "ar_SY": "Èdè Arabiki (Orílɛ́ède Siria)", - "ar_TD": "Èdè Arabiki (Orílɛ́ède shààdì)", - "ar_TN": "Èdè Arabiki (Orílɛ́ède Tunishia)", - "ar_YE": "Èdè Arabiki (Orílɛ́ède yemeni)", + "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ì)", + "ar_DZ": "Èdè Árábìkì (Orílɛ́ède Àlùgèríánì)", + "ar_EG": "Èdè Árábìkì (Orílɛ́ède Égípítì)", + "ar_EH": "Èdè Árábìkì (Ìwɔ̀òòrùn Sàhárà)", + "ar_ER": "Èdè Árábìkì (Orílɛ́ède Eritira)", + "ar_IL": "Èdè Árábìkì (Orílɛ́ède Iserɛli)", + "ar_IQ": "Èdè Árábìkì (Orílɛ́ède Iraki)", + "ar_JO": "Èdè Árábìkì (Orílɛ́ède Jɔdani)", + "ar_KM": "Èdè Árábìkì (Orílɛ́ède Kòmòrósì)", + "ar_KW": "Èdè Árábìkì (Orílɛ́ède Kuweti)", + "ar_LB": "Èdè Árábìkì (Orílɛ́ède Lebanoni)", + "ar_LY": "Èdè Árábìkì (Orílɛ́ède Libiya)", + "ar_MA": "Èdè Árábìkì (Orílɛ́ède Moroko)", + "ar_MR": "Èdè Árábìkì (Orílɛ́ède Maritania)", + "ar_OM": "Èdè Árábìkì (Orílɛ́ède Ɔɔma)", + "ar_PS": "Èdè Árábìkì (Agbègbè Palɛsítíànù)", + "ar_QA": "Èdè Árábìkì (Orílɛ́ède Kota)", + "ar_SA": "Èdè Árábìkì (Orílɛ́ède Saudi Arabia)", + "ar_SD": "Èdè Árábìkì (Orílɛ́ède Sudani)", + "ar_SO": "Èdè Árábìkì (Orílɛ́ède Somalia)", + "ar_SY": "Èdè Árábìkì (Orílɛ́ède Siria)", + "ar_TD": "Èdè Árábìkì (Orílɛ́ède shààdì)", + "ar_TN": "Èdè Árábìkì (Orílɛ́ède Tunishia)", + "ar_YE": "Èdè Árábìkì (Orílɛ́ède yemeni)", "as_IN": "Ti Assam (Orílɛ́ède India)", "az_AZ": "Èdè Azerbaijani (Orílɛ́ède Asɛ́bájánì)", "az_Cyrl": "Èdè Azerbaijani (èdè ilɛ̀ Rɔ́shíà)", @@ -52,14 +53,13 @@ "da": "Èdè Ilɛ̀ Denmark", "da_DK": "Èdè Ilɛ̀ Denmark (Orílɛ́ède Dɛ́mákì)", "da_GL": "Èdè Ilɛ̀ Denmark (Orílɛ́ède Gerelandi)", - "de": "Èdè Ilɛ̀ Jámánì", - "de_AT": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède Asítíríà)", - "de_BE": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède Bégíɔ́mù)", - "de_CH": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède switishilandi)", - "de_DE": "Èdè Ilɛ̀ Jámánì (Orílɛèdè Jámánì)", - "de_IT": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède Itáli)", - "de_LI": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède Lɛshitɛnisiteni)", - "de_LU": "Èdè Ilɛ̀ Jámánì (Orílɛ́ède Lusemogi)", + "de_AT": "Èdè Jámánì (Orílɛ́ède Asítíríà)", + "de_BE": "Èdè Jámánì (Orílɛ́ède Bégíɔ́mù)", + "de_CH": "Èdè Jámánì (Orílɛ́ède switishilandi)", + "de_DE": "Èdè Jámánì (Orílɛèdè Jámánì)", + "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)", "el_CY": "Èdè Giriki (Orílɛ́ède Kúrúsì)", "el_GR": "Èdè Giriki (Orílɛ́ède Geriisi)", "en": "Èdè Gɛ̀ɛ́sì", @@ -138,13 +138,14 @@ "en_SH": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Hɛlena)", "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_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)", "en_TO": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tonga)", "en_TT": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tirinida ati Tobaga)", "en_TV": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tufalu)", - "en_TZ": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tanshania)", + "en_TZ": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Tàǹsáníà)", "en_UG": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Uganda)", "en_US": "Èdè Gɛ̀ɛ́sì (Orílɛ̀-èdè Amɛrikà)", "en_VC": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Fisɛnnti ati Genadina)", @@ -152,7 +153,7 @@ "en_VI": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Etikun Fagini ti Amɛrika)", "en_VU": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Faniatu)", "en_WS": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Samɔ)", - "en_ZA": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède Ariwa Afirika)", + "en_ZA": "Èdè Gɛ̀ɛ́sì (Gúúshù Áfíríkà)", "en_ZM": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède shamibia)", "en_ZW": "Èdè Gɛ̀ɛ́sì (Orílɛ́ède shimibabe)", "es": "Èdè Sípáníìshì", @@ -185,6 +186,22 @@ "eu_ES": "Èdè Baski (Orílɛ́ède Sipani)", "fa_AF": "Èdè Pasia (Orílɛ́ède Àfùgànístánì)", "fa_IR": "Èdè Pasia (Orílɛ́ède Irani)", + "ff_CM": "Èdè Fúlàní (Orílɛ́ède Kamerúúnì)", + "ff_GN": "Èdè Fúlàní (Orílɛ́ède Gene)", + "ff_Latn_BF": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Bùùkíná Fasò)", + "ff_Latn_CM": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Kamerúúnì)", + "ff_Latn_GH": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Gana)", + "ff_Latn_GM": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Gambia)", + "ff_Latn_GN": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Gene)", + "ff_Latn_GW": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Gene-Busau)", + "ff_Latn_LR": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Laberia)", + "ff_Latn_MR": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Maritania)", + "ff_Latn_NE": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Nàìjá)", + "ff_Latn_NG": "Èdè Fúlàní (Èdè Látìn, Orilɛ̀-èdè Nàìjíríà)", + "ff_Latn_SL": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Siria looni)", + "ff_Latn_SN": "Èdè Fúlàní (Èdè Látìn, Orílɛ́ède Sɛnɛga)", + "ff_MR": "Èdè Fúlàní (Orílɛ́ède Maritania)", + "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ì)", "fr_BE": "Èdè Faransé (Orílɛ́ède Bégíɔ́mù)", @@ -232,6 +249,7 @@ "fr_WF": "Èdè Faransé (Orílɛ́ède Wali ati futuna)", "fr_YT": "Èdè Faransé (Orílɛ́ède Mayote)", "fy_NL": "Èdè Frisia (Orílɛ́ède Nedalandi)", + "ga_GB": "Èdè Ireland (Orílɛ́èdè Gɛ̀ɛ́sì)", "ga_IE": "Èdè Ireland (Orílɛ́ède Ailandi)", "gd_GB": "Èdè Gaelik ti Ilu Scotland (Orílɛ́èdè Gɛ̀ɛ́sì)", "gl_ES": "Èdè Galicia (Orílɛ́ède Sipani)", @@ -240,30 +258,27 @@ "ha_NE": "Èdè Hausa (Orílɛ́ède Nàìjá)", "ha_NG": "Èdè Hausa (Orilɛ̀-èdè Nàìjíríà)", "he_IL": "Èdè Heberu (Orílɛ́ède Iserɛli)", - "hi_IN": "Èdè Hindi (Orílɛ́ède India)", + "hi_IN": "Èdè Híńdì (Orílɛ́ède India)", "hr_BA": "Èdè Kroatia (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", "hr_HR": "Èdè Kroatia (Orílɛ́ède Kòróátíà)", "hu_HU": "Èdè Hungaria (Orílɛ́ède Hungari)", "hy_AM": "Èdè Ile Armenia (Orílɛ́ède Améníà)", - "id_ID": "Èdè Indonasia (Orílɛ́ède Indonesia)", - "ig_NG": "Èdè Ibo (Orilɛ̀-èdè Nàìjíríà)", + "id": "Èdè Indonéshíà", + "id_ID": "Èdè Indonéshíà (Orílɛ́ède Indonesia)", + "ig_NG": "Èdè Yíbò (Orilɛ̀-èdè Nàìjíríà)", "is_IS": "Èdè Icelandic (Orílɛ́ède Ashilandi)", - "it": "Èdè ilɛ̀ Ítálì", - "it_CH": "Èdè ilɛ̀ Ítálì (Orílɛ́ède switishilandi)", - "it_IT": "Èdè ilɛ̀ Ítálì (Orílɛ́ède Itáli)", - "it_SM": "Èdè ilɛ̀ Ítálì (Orílɛ́ède Sani Marino)", - "it_VA": "Èdè ilɛ̀ Ítálì (Ìlú Vatican)", - "ja": "Èdè ilɛ̀ Japan", - "ja_JP": "Èdè ilɛ̀ Japan (Orílɛ́ède Japani)", + "it_CH": "Èdè Ítálì (Orílɛ́ède switishilandi)", + "it_IT": "Èdè Ítálì (Orílɛ́ède Itáli)", + "it_SM": "Èdè Ítálì (Orílɛ́ède Sani Marino)", + "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)", "km_KH": "Èdè kameri (Orílɛ́ède Kàmùbódíà)", "kn_IN": "Èdè Kannada (Orílɛ́ède India)", - "ko_KP": "Èdè Koria (Orílɛ́ède Guusu Kɔria)", - "ko_KR": "Èdè Koria (Orílɛ́ède Ariwa Kɔria)", + "ko_KP": "Èdè Kòríà (Orílɛ́ède Guusu Kɔria)", + "ko_KR": "Èdè Kòríà (Orílɛ́ède Ariwa Kɔria)", "lt_LT": "Èdè Lithuania (Orílɛ́ède Lituania)", "lv_LV": "Èdè Latvianu (Orílɛ́ède Latifia)", - "mk_MK": "Èdè Macedonia (Orílɛ́ède Masidonia)", "mr_IN": "Èdè marathi (Orílɛ́ède India)", "ms_BN": "Èdè Malaya (Orílɛ́ède Búrúnɛ́lì)", "ms_MY": "Èdè Malaya (Orílɛ́ède Malasia)", @@ -272,16 +287,16 @@ "my_MM": "Èdè Bumiisi (Orílɛ́ède Manamari)", "ne_IN": "Èdè Nepali (Orílɛ́ède India)", "ne_NP": "Èdè Nepali (Orílɛ́ède Nepa)", - "nl_AW": "Èdè Duki (Orílɛ́ède Árúbà)", - "nl_BE": "Èdè Duki (Orílɛ́ède Bégíɔ́mù)", - "nl_NL": "Èdè Duki (Orílɛ́ède Nedalandi)", - "nl_SR": "Èdè Duki (Orílɛ́ède Surinami)", + "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_NL": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Nedalandi)", + "nl_SR": "Èdè Dɔ́ɔ̀shì (Orílɛ́ède Surinami)", "no_NO": "Èdè Norway (Orílɛ́ède Nɔɔwii)", "pa_Arab_PK": "Èdè Punjabi (èdè Lárúbáwá, Orílɛ́ède Pakisitan)", "pa_IN": "Èdè Punjabi (Orílɛ́ède India)", "pa_PK": "Èdè Punjabi (Orílɛ́ède Pakisitan)", - "pl": "Èdè Ilɛ̀ Polandi", - "pl_PL": "Èdè Ilɛ̀ Polandi (Orílɛ́ède Polandi)", + "pl_PL": "Èdè Póláǹdì (Orílɛ́ède Polandi)", "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ì)", @@ -291,18 +306,18 @@ "pt_GW": "Èdè Pɔtogí (Orílɛ́ède Gene-Busau)", "pt_LU": "Èdè Pɔtogí (Orílɛ́ède Lusemogi)", "pt_MZ": "Èdè Pɔtogí (Orílɛ́ède Moshamibiku)", - "pt_PT": "Èdè Pɔtogí (Orílɛ́ède Pɔtugi)", + "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ɔ̀)", "ro_MD": "Èdè Romania (Orílɛ́ède Modofia)", "ro_RO": "Èdè Romania (Orílɛ́ède Romaniya)", - "ru": "Èdè Rɔsià", - "ru_BY": "Èdè Rɔsià (Orílɛ́ède Bélárúsì)", - "ru_KG": "Èdè Rɔsià (Orílɛ́ède Kurishisitani)", - "ru_KZ": "Èdè Rɔsià (Orílɛ́ède Kashashatani)", - "ru_MD": "Èdè Rɔsià (Orílɛ́ède Modofia)", - "ru_RU": "Èdè Rɔsià (Orílɛ́ède Rɔshia)", - "ru_UA": "Èdè Rɔsià (Orílɛ́ède Ukarini)", + "ru": "Èdè Rɔ́shíà", + "ru_BY": "Èdè Rɔ́shíà (Orílɛ́ède Bélárúsì)", + "ru_KG": "Èdè Rɔ́shíà (Orílɛ́ède Kurishisitani)", + "ru_KZ": "Èdè Rɔ́shíà (Orílɛ́ède Kashashatani)", + "ru_MD": "Èdè Rɔ́shíà (Orílɛ́ède Modofia)", + "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_PK": "Èdè Sindhi (Orílɛ́ède Pakisitan)", "sh_BA": "Èdè Serbo-Croatiani (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", @@ -314,16 +329,16 @@ "so_KE": "Èdè ara Somalia (Orílɛ́ède Kenya)", "so_SO": "Èdè ara Somalia (Orílɛ́ède Somalia)", "sq_AL": "Èdè Albania (Orílɛ́ède Àlùbàníánì)", - "sq_MK": "Èdè Albania (Orílɛ́ède Masidonia)", "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_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à)", "sv_FI": "Èdè Suwidiisi (Orílɛ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílɛ́ède Swidini)", "sw_CD": "Èdè Swahili (Orilɛ́ède Kóngò)", "sw_KE": "Èdè Swahili (Orílɛ́ède Kenya)", - "sw_TZ": "Èdè Swahili (Orílɛ́ède Tanshania)", + "sw_TZ": "Èdè Swahili (Orílɛ́ède Tàǹsáníà)", "sw_UG": "Èdè Swahili (Orílɛ́ède Uganda)", "ta_IN": "Èdè Tamili (Orílɛ́ède India)", "ta_LK": "Èdè Tamili (Orílɛ́ède Siri Lanka)", @@ -347,7 +362,7 @@ "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)", - "xh_ZA": "Èdè Xhosa (Orílɛ́ède Ariwa Afirika)", + "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à", @@ -360,6 +375,6 @@ "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", - "zu_ZA": "Èdè Shulu (Orílɛ́ède Ariwa Afirika)" + "zu_ZA": "Èdè Shulu (Gúúshù Áfíríkà)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh.json b/src/Symfony/Component/Intl/Resources/data/locales/zh.json index ec3f2e37d4b3d..7270ffccad51c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -306,6 +306,7 @@ "fy": "西弗里西亚语", "fy_NL": "西弗里西亚语(荷兰)", "ga": "爱尔兰语", + "ga_GB": "爱尔兰语(英国)", "ga_IE": "爱尔兰语(爱尔兰)", "gd": "苏格兰盖尔语", "gd_GB": "苏格兰盖尔语(英国)", 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 8f3122af33223..7b237d39a2909 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -179,7 +179,7 @@ "en_SL": "英文(獅子山)", "en_SS": "英文(南蘇丹)", "en_SX": "英文(荷屬聖馬丁)", - "en_SZ": "英文(史瓦濟蘭)", + "en_SZ": "英文(史瓦帝尼)", "en_TC": "英文(土克斯及開科斯群島)", "en_TK": "英文(托克勞群島)", "en_TO": "英文(東加)", @@ -306,6 +306,7 @@ "fy": "西弗里西亞文", "fy_NL": "西弗里西亞文(荷蘭)", "ga": "愛爾蘭文", + "ga_GB": "愛爾蘭文(英國)", "ga_IE": "愛爾蘭文(愛爾蘭)", "gd": "蘇格蘭蓋爾文", "gd_GB": "蘇格蘭蓋爾文(英國)", 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 a8193a2da95e8..86f5a319399e3 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 @@ -127,8 +127,6 @@ "ha_GH": "豪撒文(加納)", "ha_NE": "豪撒文(尼日爾)", "ha_NG": "豪撒文(尼日利亞)", - "hi": "印度文", - "hi_IN": "印度文(印度)", "hr": "克羅地亞文", "hr_BA": "克羅地亞文(波斯尼亞和黑塞哥維那)", "hr_HR": "克羅地亞文(克羅地亞)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index 1c9206bb77a21..f3d1f345448fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -187,7 +187,7 @@ "en_TV": "i-English (i-Tuvalu)", "en_TZ": "i-English (i-Tanzania)", "en_UG": "i-English (i-Uganda)", - "en_UM": "i-English (i-U.S. Minor Outlying Islands)", + "en_UM": "i-English (I-U.S. Outlying Islands)", "en_US": "i-English (i-United States)", "en_VC": "i-English (i-Saint Vincent ne-Grenadines)", "en_VG": "i-English (i-British Virgin Islands)", @@ -306,6 +306,7 @@ "fy": "isi-Western Frisian", "fy_NL": "isi-Western Frisian (i-Netherlands)", "ga": "isi-Irish", + "ga_GB": "isi-Irish (i-United Kingdom)", "ga_IE": "isi-Irish (i-Ireland)", "gd": "isi-Scottish Gaelic", "gd_GB": "isi-Scottish Gaelic (i-United Kingdom)", @@ -393,7 +394,7 @@ "mi": "isi-Maori", "mi_NZ": "isi-Maori (i-New Zealand)", "mk": "isi-Macedonian", - "mk_MK": "isi-Macedonian (i-Macedonia)", + "mk_MK": "isi-Macedonian (i-North Macedonia)", "ml": "isi-Malayalam", "ml_IN": "isi-Malayalam (i-India)", "mn": "isi-Mongolian", @@ -506,7 +507,7 @@ "so_SO": "isi-Somali (i-Somalia)", "sq": "isi-Albania", "sq_AL": "isi-Albania (i-Albania)", - "sq_MK": "isi-Albania (i-Macedonia)", + "sq_MK": "isi-Albania (i-North Macedonia)", "sq_XK": "isi-Albania (i-Kosovo)", "sr": "isi-Serbian", "sr_BA": "isi-Serbian (i-Bosnia ne-Herzegovina)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index f2930d3c2d782..0d78d89f607fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/af.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "Ascensioneiland", "AD": "Andorra", @@ -146,7 +146,7 @@ "MF": "Sint Martin", "MG": "Madagaskar", "MH": "Marshalleilande", - "MK": "Macedonië", + "MK": "Noord-Macedonië", "ML": "Mali", "MM": "Mianmar (Birma)", "MN": "Mongolië", @@ -215,7 +215,7 @@ "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Sirië", - "SZ": "Swaziland", + "SZ": "Eswatini", "TA": "Tristan da Cunha", "TC": "Turks- en Caicoseilande", "TD": "Tsjad", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis en Futuna", "WS": "Samoa", + "XA": "Pseudoaksente", + "XB": "Pseudotweerigting", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index dcb9f9fd8f6a5..9575d615f8328 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andora", "AE": "United Arab Emirates", @@ -126,7 +126,6 @@ "MD": "Mɔldova", "MG": "Madagaska", "MH": "Marshall Islands", - "MK": "Masedonia", "ML": "Mali", "MM": "Miyanma", "MN": "Mɔngolia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/am.json b/src/Symfony/Component/Intl/Resources/data/regions/am.json index 5ea6d7ab10bf9..bb8e86d1c4688 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/am.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", @@ -41,7 +41,7 @@ "CA": "ካናዳ", "CC": "ኮኮስ(ኬሊንግ) ደሴቶች", "CD": "ኮንጎ-ኪንሻሳ", - "CF": "የመካከለኛው አፍሪካ ሪፐብሊክ", + "CF": "ማዕከላዊ አፍሪካ ሪፑብሊክ", "CG": "ኮንጎ ብራዛቪል", "CH": "ስዊዘርላንድ", "CI": "ኮት ዲቯር", @@ -248,6 +248,8 @@ "VU": "ቫኑአቱ", "WF": "ዋሊስ እና ፉቱና ደሴቶች", "WS": "ሳሞአ", + "XA": "የሀሰት ትእምርት", + "XB": "የሀሰት ባለሁለት አቅጣጫ", "XK": "ኮሶቮ", "YE": "የመን", "YT": "ሜይኦቴ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index 6f0b0c03725db..514fa077d4896 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "جزيرة أسينشيون", "AD": "أندورا", @@ -33,7 +33,7 @@ "BO": "بوليفيا", "BQ": "هولندا الكاريبية", "BR": "البرازيل", - "BS": "البهاما", + "BS": "جزر البهاما", "BT": "بوتان", "BW": "بوتسوانا", "BY": "بيلاروس", @@ -150,7 +150,7 @@ "ML": "مالي", "MM": "ميانمار (بورما)", "MN": "منغوليا", - "MO": "مكاو الصينية (منطقة إدارية خاصة)", + "MO": "منطقة ماكاو الإدارية الخاصة", "MP": "جزر ماريانا الشمالية", "MQ": "جزر المارتينيك", "MR": "موريتانيا", @@ -248,7 +248,6 @@ "VU": "فانواتو", "WF": "جزر والس وفوتونا", "WS": "ساموا", - "XA": "XA", "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 588dfe58c3732..c1094f6326510 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 8a4a7e080e175..a72a28c542179 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json @@ -1,8 +1,7 @@ { - "Version": "2.1.49.36", + "Version": "36", "Names": { "AC": "جزيرة أسينشين", - "BS": "جزر البهاما", "EA": "سبتة ومليلية", "MO": "ماكاو الصينية (منطقة إدارية خاصة)", "MS": "مونتيسيرات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index d458991167ef8..4e43ac5a63ef9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/as.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "এচেনচিয়ন দ্বীপ", "AD": "আন্দোৰা", @@ -146,11 +146,11 @@ "MF": "ছেইণ্ট মাৰ্টিন", "MG": "মাদাগাস্কাৰ", "MH": "মাৰ্শ্বাল দ্বীপপুঞ্জ", - "MK": "মেচিডোনীয়া", + "MK": "উত্তৰ মেচিডোনীয়া", "ML": "মালি", "MM": "ম্যানমাৰ (বাৰ্মা)", "MN": "মঙ্গোলিয়া", - "MO": "মাকাউ এছ. এ. আৰ. চীন", + "MO": "মাকাও এছ. এ. আৰ. চীন", "MP": "উত্তৰ মাৰিয়ানা দ্বীপপুঞ্জ", "MQ": "মাৰ্টিনিক", "MR": "মাউৰিটানিয়া", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index 76251a04a6950..10f6a86ff933c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/az.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Askenson adası", "AD": "Andorra", @@ -97,7 +97,7 @@ "GU": "Quam", "GW": "Qvineya-Bisau", "GY": "Qayana", - "HK": "Honq Konq Xüsusi İnzibati Ərazi Çin", + "HK": "Honq Konq Xüsusi İnzibati Rayonu Çin", "HN": "Honduras", "HR": "Xorvatiya", "HT": "Haiti", @@ -150,7 +150,7 @@ "ML": "Mali", "MM": "Myanma", "MN": "Monqolustan", - "MO": "Makao Xüsusi İnzibati Ərazi Çin", + "MO": "Makao XİR Çin", "MP": "Şimali Marian adaları", "MQ": "Martinik", "MR": "Mavritaniya", 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 0c0d0937c4cbf..73f2662eb97f7 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 e80965c3f5584..5742c04419ec9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/be.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Востраў Узнясення", "AD": "Андора", @@ -64,7 +64,7 @@ "DM": "Дамініка", "DO": "Дамініканская Рэспубліка", "DZ": "Алжыр", - "EA": "Сеўта і Мелілья", + "EA": "Сеута і Мелілья", "EC": "Эквадор", "EE": "Эстонія", "EG": "Егіпет", @@ -92,7 +92,7 @@ "GP": "Гвадэлупа", "GQ": "Экватарыяльная Гвінея", "GR": "Грэцыя", - "GS": "Паўднёвая Джорджыя і Паўднёвыя Сандвічавы астравы", + "GS": "Паўднёвая Георгія і Паўднёвыя Сандвічавы астравы", "GT": "Гватэмала", "GU": "Гуам", "GW": "Гвінея-Бісау", @@ -215,7 +215,7 @@ "SV": "Сальвадор", "SX": "Сінт-Мартэн", "SY": "Сірыя", - "SZ": "Свазіленд", + "SZ": "Эсватыні", "TA": "Трыстан-да-Кунья", "TC": "Астравы Цёркс і Кайкас", "TD": "Чад", @@ -236,7 +236,7 @@ "UA": "Украіна", "UG": "Уганда", "UM": "Малыя Аддаленыя астравы ЗША", - "US": "Злучаныя Штаты Амерыкі", + "US": "Злучаныя Штаты", "UY": "Уругвай", "UZ": "Узбекістан", "VA": "Ватыкан", @@ -248,6 +248,8 @@ "VU": "Вануату", "WF": "Уоліс і Футуна", "WS": "Самоа", + "XA": "Псеўдаакцэнты", + "XB": "Псеўда-Bidi", "XK": "Косава", "YE": "Емен", "YT": "Маёта", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index fcb4c7be781db..468b9f275297c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "остров Възнесение", "AD": "Андора", @@ -215,7 +215,7 @@ "SV": "Салвадор", "SX": "Синт Мартен", "SY": "Сирия", - "SZ": "Свазиленд", + "SZ": "Есватини", "TA": "Тристан да Куня", "TC": "острови Търкс и Кайкос", "TD": "Чад", @@ -248,6 +248,8 @@ "VU": "Вануату", "WF": "Уолис и Футуна", "WS": "Самоа", + "XA": "Псевдоакценти", + "XB": "Псевдодвупосочни", "XK": "Косово", "YE": "Йемен", "YT": "Майот", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index dbfb52f5cd3e9..c7f754ebf419f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andɔr", "AE": "Arabu mara kafoli", @@ -126,7 +126,6 @@ "MD": "Molidavi", "MG": "Madagasikari", "MH": "Marisali Gun", - "MK": "Macedɔni", "ML": "Mali", "MM": "Myanimari", "MN": "Moŋoli", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn.json b/src/Symfony/Component/Intl/Resources/data/regions/bn.json index c306cbfd98b4f..801228076316a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "Names": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "আন্ডোরা", @@ -146,7 +146,7 @@ "MF": "সেন্ট মার্টিন", "MG": "মাদাগাস্কার", "MH": "মার্শাল দ্বীপপুঞ্জ", - "MK": "ম্যাসাডোনিয়া", + "MK": "উত্তর ম্যাসেডোনিয়া", "ML": "মালি", "MM": "মায়ানমার (বার্মা)", "MN": "মঙ্গোলিয়া", @@ -248,6 +248,8 @@ "VU": "ভানুয়াটু", "WF": "ওয়ালিস ও ফুটুনা", "WS": "সামোয়া", + "XA": "সিউডো-অ্যাকসেন্ট", + "XB": "সিউডো-বিডি", "XK": "কসোভো", "YE": "ইয়েমেন", "YT": "মায়োত্তে", 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 776c04315eef7..9501c7f229844 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 f39ec59508350..69d699de82b80 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 88abd9051e5bd..926801b767187 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,4 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 2e7edd148133d..40f22eca5bd38 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/br.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.86", + "Version": "36", "Names": { "AC": "Enez Ascension", "AD": "Andorra", @@ -146,7 +146,7 @@ "MF": "Saint Martin", "MG": "Madagaskar", "MH": "Inizi Marshall", - "MK": "Makedonia", + "MK": "Makedonia an Norzh", "ML": "Mali", "MM": "Myanmar (Birmania)", "MN": "Mongolia", @@ -215,7 +215,7 @@ "SV": "Salvador", "SX": "Sint Maarten", "SY": "Siria", - "SZ": "Swaziland", + "SZ": "Eswatini", "TA": "Tristan da Cunha", "TC": "Inizi Turks ha Caicos", "TD": "Tchad", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis ha Futuna", "WS": "Samoa", + "XA": "pouez-mouezh gaou", + "XB": "BiDi gaou", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 3cd97c23ce908..79f58bcbd7a1a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ostrvo Ascension", "AD": "Andora", @@ -79,7 +79,7 @@ "FO": "Farska ostrva", "FR": "Francuska", "GA": "Gabon", - "GB": "Velika Britanija", + "GB": "Ujedinjeno Kraljevstvo", "GD": "Grenada", "GE": "Gruzija", "GF": "Francuska Gvajana", @@ -215,7 +215,7 @@ "SV": "Salvador", "SX": "Sint Marten", "SY": "Sirija", - "SZ": "Svazilend", + "SZ": "Esvatini", "TA": "Tristan da Cunha", "TC": "Ostrva Turks i Kaikos", "TD": "Čad", @@ -236,7 +236,7 @@ "UA": "Ukrajina", "UG": "Uganda", "UM": "Američka Vanjska Ostrva", - "US": "Sjedinjene Američke Države", + "US": "Sjedinjene Države", "UY": "Urugvaj", "UZ": "Uzbekistan", "VA": "Vatikan", 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 7811ea55ec810..554cb05b5018c 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Острво Асенсион", "AD": "Андора", @@ -8,7 +8,7 @@ "AG": "Антигва и Барбуда", "AI": "Ангвила", "AL": "Албанија", - "AM": "Ерменија", + "AM": "Арменија", "AO": "Ангола", "AQ": "Антарктик", "AR": "Аргентина", @@ -37,14 +37,14 @@ "BT": "Бутан", "BW": "Боцвана", "BY": "Бјелорусија", - "BZ": "Белиз", + "BZ": "Белизе", "CA": "Канада", "CC": "Кокос (Келинг) Острва", "CD": "Демократска Република Конго", - "CF": "Средњоафричка Република", + "CF": "Централноафричка Република", "CG": "Конго", "CH": "Швицарска", - "CI": "Обала Слоноваче", + "CI": "Обала Слоноваче (Кот д’Ивоар)", "CK": "Кукова Острва", "CL": "Чиле", "CM": "Камерун", @@ -74,7 +74,7 @@ "ET": "Етиопија", "FI": "Финска", "FJ": "Фиџи", - "FK": "Фокландска острва", + "FK": "Фокландска Острва", "FM": "Микронезија", "FO": "Фарска острва", "FR": "Француска", @@ -90,14 +90,14 @@ "GM": "Гамбија", "GN": "Гвинеја", "GP": "Гваделупе", - "GQ": "Екваторска Гвинеја", + "GQ": "Екваторијална Гвинеја", "GR": "Грчка", - "GS": "Јужна Џорџија и Јужна Сендвич Острва", + "GS": "Јужна Џорџија и Јужна Сендвичка Острва", "GT": "Гватемала", "GU": "Гуам", "GW": "Гвинеја-Бисау", "GY": "Гвајана", - "HK": "Хонг Конг (САР Кина)", + "HK": "Хонг Конг С. А. Р.", "HN": "Хондурас", "HR": "Хрватска", "HT": "Хаити", @@ -122,7 +122,7 @@ "KH": "Камбоџа", "KI": "Кирибати", "KM": "Комори", - "KN": "Свети Кристофор и Невис", + "KN": "Свети Китс и Невис", "KP": "Сјеверна Кореја", "KR": "Јужна Кореја", "KW": "Кувајт", @@ -150,8 +150,8 @@ "ML": "Мали", "MM": "Мјанмар", "MN": "Монголија", - "MO": "Макао (САР Кина)", - "MP": "Сјеверна Маријанска острва", + "MO": "Макао С. А. Р.", + "MP": "Сјеверна Маријанска Острва", "MQ": "Мартиник", "MR": "Мауританија", "MS": "Монсерат", @@ -211,10 +211,11 @@ "SO": "Сомалија", "SR": "Суринам", "SS": "Јужни Судан", - "ST": "Свети Тома и Принцип", + "ST": "Сао Томе и Принципе", "SV": "Салвадор", + "SX": "Свети Мартин (Холандија)", "SY": "Сирија", - "SZ": "Свази", + "SZ": "Есватини", "TA": "Тристан да Куња", "TC": "Туркс и Кајкос Острва", "TD": "Чад", @@ -223,7 +224,7 @@ "TH": "Тајланд", "TJ": "Таџикистан", "TK": "Токелау", - "TL": "Источни Тимор", + "TL": "Тимор-Лесте", "TM": "Туркменистан", "TN": "Тунис", "TO": "Тонга", @@ -247,6 +248,8 @@ "VU": "Вануату", "WF": "Валис и Футуна", "WS": "Самоа", + "XA": "псеудо акценти", + "XB": "псеудо двосмјерно", "XK": "Косово", "YE": "Јемен", "YT": "Мајоте", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ca.json b/src/Symfony/Component/Intl/Resources/data/regions/ca.json index 3f7bb44539410..c2705ca5ffb94 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Illa de l’Ascensió", "AD": "Andorra", @@ -20,7 +20,7 @@ "AZ": "Azerbaidjan", "BA": "Bòsnia i Hercegovina", "BB": "Barbados", - "BD": "Bangla Desh", + "BD": "Bangladesh", "BE": "Bèlgica", "BF": "Burkina Faso", "BG": "Bulgària", @@ -44,7 +44,7 @@ "CF": "República Centreafricana", "CG": "Congo - Brazzaville", "CH": "Suïssa", - "CI": "Costa d’Ivori", + "CI": "Côte d’Ivoire", "CK": "Illes Cook", "CL": "Xile", "CM": "Camerun", @@ -86,7 +86,7 @@ "GG": "Guernsey", "GH": "Ghana", "GI": "Gibraltar", - "GL": "Grenlàndia", + "GL": "Groenlàndia", "GM": "Gàmbia", "GN": "Guinea", "GP": "Guadeloupe", @@ -185,7 +185,7 @@ "PM": "Saint-Pierre-et-Miquelon", "PN": "Illes Pitcairn", "PR": "Puerto Rico", - "PS": "territoris palestins", + "PS": "Territoris palestins", "PT": "Portugal", "PW": "Palau", "PY": "Paraguai", @@ -216,7 +216,7 @@ "SX": "Sint Maarten", "SY": "Síria", "SZ": "eSwatini", - "TA": "Tristão da Cunha", + "TA": "Tristan da Cunha", "TC": "Illes Turks i Caicos", "TD": "Txad", "TF": "Territoris Australs Francesos", @@ -248,8 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis i Futuna", "WS": "Samoa", - "XA": "Pseudo-Accents", - "XB": "Pseudo-Bidi", + "XA": "pseudoaccents", + "XB": "pseudobidi", "XK": "Kosovo", "YE": "Iemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index 0c992586879a5..7e2cf64a5e80c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AC": "Айъадаларан гӀайре", "AD": "Андорра", @@ -146,7 +146,6 @@ "MF": "Сен-Мартен", "MG": "Мадагаскар", "MH": "Маршаллан гӀайренаш", - "MK": "Македони", "ML": "Мали", "MM": "Мьянма (Бирма)", "MN": "Монголи", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index 20f209de6a573..705ca5d9a6422 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "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 f8bf7aab1d42e..fc386b712baf0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ynys Ascension", "AD": "Andorra", @@ -18,7 +18,7 @@ "AW": "Aruba", "AX": "Ynysoedd Åland", "AZ": "Azerbaijan", - "BA": "Bosnia & Herzegovina", + "BA": "Bosnia a Herzegovina", "BB": "Barbados", "BD": "Bangladesh", "BE": "Gwlad Belg", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 0d6b922fee7f8..f49f616b4d922 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/da.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ascensionøen", "AD": "Andorra", @@ -108,7 +108,7 @@ "IL": "Israel", "IM": "Isle of Man", "IN": "Indien", - "IO": "Det britiske territorium i Det Indiske Ocean", + "IO": "Det Britiske Territorium i Det Indiske Ocean", "IQ": "Irak", "IR": "Iran", "IS": "Island", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Turks- og Caicosøerne", "TD": "Tchad", - "TF": "De Franske Besiddelser i Det Sydlige Indiske Ocean", + "TF": "De Franske Besiddelser i Det Sydlige Indiske Ocean og Antarktis", "TG": "Togo", "TH": "Thailand", "TJ": "Tadsjikistan", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis og Futuna", "WS": "Samoa", + "XA": "pseudo-accenter", + "XB": "pseudo-bidi", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index 7851e87dc8e36..3604075853506 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -215,7 +215,7 @@ "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Syrien", - "SZ": "Swasiland", + "SZ": "Eswatini", "TA": "Tristan da Cunha", "TC": "Turks- und Caicosinseln", "TD": "Tschad", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis und Futuna", "WS": "Samoa", + "XA": "Pseudo-Akzente", + "XB": "Pseudo-Bidi", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", 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 acdbdf4c9494a..93eaecdcf686e 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,5 @@ { - "Version": "2.1.47.69", + "Version": "36", "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 9e9592276074d..2191489733156 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 118fbd93c8353..5859973b64676 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AC": "ཨེ་སེན་ཤུན་ཚོ་གླིང༌", "AD": "ཨཱན་དོ་ར", @@ -146,7 +146,6 @@ "MF": "སེནཊ་ མཱར་ཊིན", "MG": "མ་དཱ་གེས་ཀར", "MH": "མར་ཤེལ་གླིང་ཚོམ", - "MK": "མ་སེ་ཌོ་ནི་ཡ", "ML": "མཱ་ལི", "MM": "མི་ཡཱན་མར་ (བྷར་མ)", "MN": "སོག་པོ་ཡུལ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index 475e5b8dc4558..eb88b29f69dff 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AC": "Ascension ƒudomekpo nutome", "AD": "Andorra nutome", @@ -144,7 +144,6 @@ "MF": "Saint Martin nutome", "MG": "Madagaska nutome", "MH": "Marshal ƒudomekpowo nutome", - "MK": "Makedonia nutome", "ML": "Mali nutome", "MM": "Myanmar (Burma) nutome", "MN": "Mongolia nutome", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/el.json b/src/Symfony/Component/Intl/Resources/data/regions/el.json index e2166265e48a9..c3d982504c499 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/el.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 ccd1c833f82b9..2c74cecce5c2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.65", + "Version": "36", "Names": { "AC": "Ascension Island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json b/src/Symfony/Component/Intl/Resources/data/regions/en_001.json similarity index 91% rename from src/Symfony/Component/Intl/Resources/data/regions/en_GB.json rename to src/Symfony/Component/Intl/Resources/data/regions/en_001.json index 556b3491e7edf..ca394a1572f0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en_001.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 new file mode 100644 index 0000000000000..bf50970760ebe --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json @@ -0,0 +1,10 @@ +{ + "Version": "36", + "Names": { + "BL": "St. Barthélemy", + "KN": "St. Kitts & Nevis", + "LC": "St. Lucia", + "MF": "St. Martin", + "VC": "St. Vincent & Grenadines" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index 2fd4c4c3684c3..bd3f08cb491d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.33", + "Version": "36", "Names": { "AD": "Andoro", "AE": "Unuiĝintaj Arabaj Emirlandoj", @@ -127,7 +127,6 @@ "MD": "Moldavujo", "MG": "Madagaskaro", "MH": "Marŝaloj", - "MK": "Makedonujo", "ML": "Malio", "MM": "Mjanmao", "MN": "Mongolujo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es.json b/src/Symfony/Component/Intl/Resources/data/regions/es.json index 0277f4ce85c3b..0c9cbb0d3dc3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Isla de la Ascensión", "AD": "Andorra", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis y Futuna", "WS": "Samoa", + "XA": "Pseudoacentos", + "XB": "Pseudobidi", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", 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 76d874439747c..36e2df393de8e 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "AC": "Isla Ascensión", "BA": "Bosnia-Herzegovina", @@ -7,10 +7,7 @@ "CI": "Costa de Marfil", "GG": "Guernesey", "IC": "Islas Canarias", - "SZ": "Suazilandia", "TA": "Tristán da Cunha", - "TL": "Timor Oriental", - "UM": "Islas Ultramarinas de EE.UU.", - "VI": "Islas Vírgenes de los Estados Unidos" + "UM": "Islas Ultramarinas de EE.UU." } } 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 57c6d73860480..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json @@ -1,10 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", - "UM": "Islas menores alejadas de EE. UU.", - "VI": "Islas Vírgenes de EE. UU." + "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json index 76ac65c055515..807499b0ab505 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json @@ -1,10 +1,9 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "EH": "Sahara Occidental", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } 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 57c6d73860480..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json @@ -1,10 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", - "UM": "Islas menores alejadas de EE. UU.", - "VI": "Islas Vírgenes de EE. UU." + "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json index 8a34a956758d4..1bd007bf049dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json @@ -1,14 +1,13 @@ { - "Version": "2.1.47.96", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "CI": "Côte d’Ivoire", "GG": "Guernsey", + "RO": "Rumania", "SA": "Arabia Saudita", "SZ": "Eswatini", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", - "UM": "Islas menores alejadas de EE. UU.", - "VI": "Islas Vírgenes de EE. UU." + "UM": "Islas menores alejadas de EE. UU." } } 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 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json index 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json index b31d69876b037..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json index c21aa484e2a41..5b82ae2884696 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json index c21aa484e2a41..5b82ae2884696 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 653d22a933dba..08b3dfa799baf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json @@ -1,12 +1,11 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "AC": "Isla de la Ascensión", "BA": "Bosnia y Herzegovina", "CI": "Côte d’Ivoire", "GG": "Guernsey", - "TL": "Timor-Leste", - "UM": "Islas menores alejadas de EE. UU.", - "VI": "Islas Vírgenes de EE. UU." + "TA": "Tristán de Acuña", + "UM": "Islas menores alejadas de EE. UU." } } 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 97d209f68bc84..bfe0012bd7847 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json @@ -1,9 +1,8 @@ { - "Version": "2.1.47.70", + "Version": "36", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", - "TL": "Timor-Leste", "UM": "Islas menores alejadas de EE. UU." } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index 74ada9b30cc2f..82e319d118f0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/et.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 864be628aa749..79f3b4a03b796 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ascension uhartea", "AD": "Andorra", @@ -248,6 +248,7 @@ "VU": "Vanuatu", "WF": "Wallis eta Futuna", "WS": "Samoa", + "XA": "Sasiazentuak", "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 02fa753c8e147..ec854a054480e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "جزایر آسنسیون", "AD": "آندورا", @@ -56,7 +56,7 @@ "CW": "کوراسائو", "CX": "جزیرهٔ کریسمس", "CY": "قبرس", - "CZ": "جمهوری چک", + "CZ": "چک", "DE": "آلمان", "DG": "دیه‌گو گارسیا", "DJ": "جیبوتی", @@ -92,12 +92,12 @@ "GP": "گوادلوپ", "GQ": "گینهٔ استوایی", "GR": "یونان", - "GS": "جزایر جورجیای جنوبی و ساندویچ جنوبی", + "GS": "جورجیای جنوبی و جزایر ساندویچ جنوبی", "GT": "گواتمالا", "GU": "گوام", "GW": "گینهٔ بیسائو", "GY": "گویان", - "HK": "هنگ‌کنگ، منطقۀ ویژۀ اداری چین", + "HK": "هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین", "HN": "هندوراس", "HR": "کرواسی", "HT": "هائیتی", @@ -150,7 +150,7 @@ "ML": "مالی", "MM": "میانمار (برمه)", "MN": "مغولستان", - "MO": "ماکائو، منطقۀ ویژۀ اداری چین", + "MO": "ماکائو، منطقهٔ ویژهٔ اداری چین", "MP": "جزایر ماریانای شمالی", "MQ": "مارتینیک", "MR": "موریتانی", @@ -203,7 +203,7 @@ "SG": "سنگاپور", "SH": "سنت هلن", "SI": "اسلوونی", - "SJ": "اسوالبارد و جان‌ماین", + "SJ": "سوالبارد و یان ماین", "SK": "اسلواکی", "SL": "سیرالئون", "SM": "سان‌مارینو", @@ -248,6 +248,7 @@ "VU": "وانواتو", "WF": "والیس و فوتونا", "WS": "ساموآ", + "XB": "مجازی - دوجهته", "XK": "کوزوو", "YE": "یمن", "YT": "مایوت", 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 a96c0120373f7..38d4f3dca854c 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "AD": "اندورا", "AG": "انتیگوا و باربودا", @@ -22,7 +22,6 @@ "CO": "کولمبیا", "CR": "کاستریکا", "CU": "کیوبا", - "CZ": "چک", "DK": "دنمارک", "EA": "سئوتا و ملیلا", "EE": "استونیا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ff.json b/src/Symfony/Component/Intl/Resources/data/regions/ff.json index 0b22f8b3bfa16..ad9ad16701756 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Anndoora", "AE": "Emiraat Araab Denntuɗe", @@ -126,7 +126,6 @@ "MD": "Moldawii", "MG": "Madagaskaar", "MH": "Duuɗe Marsaal", - "MK": "Meceduwaan", "ML": "Maali", "MM": "Miyamaar", "MN": "Monngolii", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fi.json b/src/Symfony/Component/Intl/Resources/data/regions/fi.json index d80fb248ba8c9..6fa1e976a4c65 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension-saari", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index e5dbef4a25d37..0981b062add89 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.9", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -146,7 +146,6 @@ "MF": "St-Martin", "MG": "Madagaskar", "MH": "Marshalloyggjar", - "MK": "Makedónia", "ML": "Mali", "MM": "Myanmar (Burma)", "MN": "Mongolia", @@ -215,7 +214,7 @@ "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Sýria", - "SZ": "Svasiland", + "SZ": "Esvatini", "TA": "Tristan da Cunha", "TC": "Turks- og Caicosoyggjar", "TD": "Kjad", @@ -248,6 +247,8 @@ "VU": "Vanuatu", "WF": "Wallis- og Futunaoyggjar", "WS": "Samoa", + "XA": "óekta tónalag", + "XB": "óektaður BIDI tekstur", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index a1e7b62150865..74abdfba42899 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 c12001099c8fb..ae2413d98bfdc 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,5 @@ { - "Version": "2.1.47.70", + "Version": "36", "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 1209281a2b16e..25e6cb2f276fa 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 6d58a908cd3ec..f0ede7a66a522 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -146,7 +146,6 @@ "MF": "Saint-Martin", "MG": "Madeiaskar", "MH": "Marshalleilannen", - "MK": "Macedonië", "ML": "Mali", "MM": "Myanmar (Birma)", "MN": "Mongolië", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ga.json b/src/Symfony/Component/Intl/Resources/data/regions/ga.json index 21e60b33b2865..0a082e3e74f20 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Oileán na Deascabhála", "AD": "Andóra", @@ -215,7 +215,7 @@ "SV": "an tSalvadóir", "SX": "Sint Maarten", "SY": "an tSiria", - "SZ": "an tSuasalainn", + "SZ": "eSuaitíní", "TA": "Tristan da Cunha", "TC": "Oileáin na dTurcach agus Caicos", "TD": "Sead", @@ -248,8 +248,8 @@ "VU": "Vanuatú", "WF": "Vailís agus Futúna", "WS": "Samó", - "XA": "XA", - "XB": "XB", + "XA": "Bréagdhiaicriticí", + "XB": "Bréag-Bidi", "XK": "an Chosaiv", "YE": "Éimin", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gd.json b/src/Symfony/Component/Intl/Resources/data/regions/gd.json index a88daa99b92e4..0bc6d3c7ed4d2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Eilean na Deasgabhalach", "AD": "Andorra", @@ -215,7 +215,7 @@ "SV": "An Salbhador", "SX": "Sint Maarten", "SY": "Siridhea", - "SZ": "Dùthaich nan Suasaidh", + "SZ": "eSwatini", "TA": "Tristan da Cunha", "TC": "Na h-Eileanan Turcach is Caiceo", "TD": "An t-Seàd", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Uallas agus Futuna", "WS": "Samotha", + "XA": "Sràcan fuadain", + "XB": "Dà-chomhaireach fuadain", "XK": "A’ Chosobho", "YE": "An Eaman", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index f1e41cb1a9e07..c85c1e66996c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Illa de Ascensión", "AD": "Andorra", @@ -44,7 +44,7 @@ "CF": "República Centroafricana", "CG": "República do Congo", "CH": "Suíza", - "CI": "Costa do Marfil", + "CI": "Côte d’Ivoire", "CK": "Illas Cook", "CL": "Chile", "CM": "Camerún", @@ -127,7 +127,7 @@ "KR": "Corea do Sur", "KW": "Kuwait", "KY": "Illas Caimán", - "KZ": "Casaquistán", + "KZ": "Kazakistán", "LA": "Laos", "LB": "O Líbano", "LC": "Santa Lucía", @@ -215,7 +215,7 @@ "SV": "O Salvador", "SX": "Sint Maarten", "SY": "Siria", - "SZ": "Suazilandia", + "SZ": "Eswatini", "TA": "Tristán da Cunha", "TC": "Illas Turks e Caicos", "TD": "Chad", @@ -238,7 +238,7 @@ "UM": "Illas Menores Distantes dos Estados Unidos", "US": "Os Estados Unidos", "UY": "O Uruguai", - "UZ": "Uzbequistán", + "UZ": "Uzbekistán", "VA": "Cidade do Vaticano", "VC": "San Vicente e As Granadinas", "VE": "Venezuela", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis e Futuna", "WS": "Samoa", + "XA": "Pseudoacentos", + "XB": "Pseudobidireccional", "XK": "Kosovo", "YE": "O Iemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index 21ed271597c55..cb84a951df008 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", @@ -215,7 +215,7 @@ "SV": "એલ સેલ્વાડોર", "SX": "સિંટ માર્ટેન", "SY": "સીરિયા", - "SZ": "સ્વાઝિલેન્ડ", + "SZ": "એસ્વાટીની", "TA": "ત્રિસ્તાન દા કુન્હા", "TC": "તુર્ક્સ અને કેકોઝ આઇલેન્ડ્સ", "TD": "ચાડ", @@ -248,6 +248,8 @@ "VU": "વાનુઆતુ", "WF": "વૉલિસ અને ફ્યુચુના", "WS": "સમોઆ", + "XA": "સ્યુડો-ઍક્સન્ટ", + "XB": "સ્યુડો-દ્વિદિશ", "XK": "કોસોવો", "YE": "યમન", "YT": "મેયોટ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index b7f297b1487c4..4d020d39f531c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 4de3da7a40898..94e21f3f32352 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { "AD": "Andora", "AE": "Haɗaɗɗiyar Daular Larabawa", @@ -9,6 +9,7 @@ "AL": "Albaniya", "AM": "Armeniya", "AO": "Angola", + "AQ": "Antatika", "AR": "Arjantiniya", "AS": "Samowa Ta Amurka", "AT": "Ostiriya", @@ -24,9 +25,11 @@ "BH": "Baharan", "BI": "Burundi", "BJ": "Binin", + "BL": "St. Barthélemy", "BM": "Barmuda", "BN": "Burune", "BO": "Bolibiya", + "BQ": "Caribbean Netherlands", "BR": "Birazil", "BS": "Bahamas", "BT": "Butan", @@ -34,6 +37,7 @@ "BY": "Belarus", "BZ": "Beliz", "CA": "Kanada", + "CC": "Tsibirai Cocos (Keeling)", "CD": "Jamhuriyar Dimokuraɗiyyar Kongo", "CF": "Jamhuriyar Afirka Ta Tsakiya", "CG": "Kongo", @@ -42,11 +46,13 @@ "CK": "Tsibiran Kuku", "CL": "Cayile", "CM": "Kamaru", - "CN": "Caina, Sin", + "CN": "Sin", "CO": "Kolambiya", "CR": "Kwasta Rika", "CU": "Kyuba", "CV": "Tsibiran Kap Barde", + "CW": "Kasar Curaçao", + "CX": "Tsibirin Kirsmati", "CY": "Sifurus", "CZ": "Jamhuriyar Cak", "DE": "Jamus", @@ -105,8 +111,8 @@ "KI": "Kiribati", "KM": "Kwamoras", "KN": "San Kiti Da Nebis", - "KP": "Koreya Ta Arewa", - "KR": "Koreya Ta Kudu", + "KP": "Koriya Ta Arewa", + "KR": "Koriya Ta Kudu", "KW": "Kwiyat", "KY": "Tsibiran Kaiman", "KZ": "Kazakistan", @@ -124,9 +130,11 @@ "MA": "Maroko", "MC": "Monako", "MD": "Maldoba", + "ME": "Mantanegara", + "MF": "St. Martin", "MG": "Madagaskar", "MH": "Tsibiran Marshal", - "MK": "Masedoniya", + "MK": "Macedonia ta Arewa", "ML": "Mali", "MM": "Burma, Miyamar", "MN": "Mangoliya", @@ -155,7 +163,7 @@ "NZ": "Nuzilan", "OM": "Oman", "PA": "Panama", - "PE": "Peru", + "PE": "Feru", "PF": "Folinesiya Ta Faransa", "PG": "Papuwa Nugini", "PH": "Filipin", @@ -167,15 +175,16 @@ "PS": "Palasɗinu", "PT": "Portugal", "PW": "Palau", - "PY": "Paragai", - "QA": "Kwatar", + "PY": "Faragwai", + "QA": "Katar", "RE": "Rawuniyan", "RO": "Romaniya", + "RS": "Sabiya", "RU": "Rasha", "RW": "Ruwanda", - "SA": "Ƙasar Makka", + "SA": "Saudiyya", "SB": "Tsibiran Salaman", - "SC": "Saishal", + "SC": "Seychelles", "SD": "Sudan", "SE": "Suwedan", "SG": "Singapur", @@ -184,15 +193,19 @@ "SK": "Sulobakiya", "SL": "Salewo", "SM": "San Marino", - "SN": "Sinigal", + "SN": "Sanigal", "SO": "Somaliya", "SR": "Suriname", + "SS": "Sudan ta kudu", "ST": "Sawo Tome Da Paransip", "SV": "El Salbador", + "SX": "Sint Maarten", "SY": "Sham, Siriya", - "SZ": "Suwazilan", + "SZ": "Eswatini", + "TA": "Tritan da Kunha", "TC": "Turkis Da Tsibiran Kaikwas", "TD": "Cadi", + "TF": "Yankin Faransi ta Kudu", "TG": "Togo", "TH": "Tailan", "TJ": "Tajikistan", @@ -200,7 +213,7 @@ "TL": "Timor Ta Gabas", "TM": "Turkumenistan", "TN": "Tunisiya", - "TO": "Tanga", + "TO": "Tonga", "TR": "Turkiyya", "TT": "Tirinidad Da Tobago", "TV": "Tubalu", @@ -208,8 +221,8 @@ "TZ": "Tanzaniya", "UA": "Yukaran", "UG": "Yuganda", - "US": "Amirka", - "UY": "Yurugai", + "US": "Amurka", + "UY": "Yurigwai", "UZ": "Uzubekistan", "VA": "Batikan", "VC": "San Binsan Da Girnadin", @@ -219,7 +232,7 @@ "VN": "Biyetinam", "VU": "Banuwatu", "WF": "Walis Da Futuna", - "WS": "Samowa", + "WS": "Samoa", "YE": "Yamal", "YT": "Mayoti", "ZA": "Afirka Ta Kudu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ha_NE.json b/src/Symfony/Component/Intl/Resources/data/regions/ha_NE.json deleted file mode 100644 index 218f0a3033308..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/ha_NE.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "Version": "2.1.48.77", - "Names": { - "AD": "Andora", - "AE": "Haɗaɗɗiyar Daular Larabawa", - "AF": "Afaganistan", - "AG": "Antigwa da Barbuba", - "AI": "Angila", - "AL": "Albaniya", - "AM": "Armeniya", - "AO": "Angola", - "AR": "Arjantiniya", - "AS": "Samowa Ta Amurka", - "AT": "Ostiriya", - "AU": "Ostareliya", - "AW": "Aruba", - "AZ": "Azarbaijan", - "BA": "Bosniya Harzagobina", - "BB": "Barbadas", - "BD": "Bangiladas", - "BE": "Belgiyom", - "BF": "Burkina Faso", - "BG": "Bulgariya", - "BH": "Baharan", - "BI": "Burundi", - "BJ": "Binin", - "BM": "Barmuda", - "BN": "Burune", - "BO": "Bolibiya", - "BR": "Birazil", - "BS": "Bahamas", - "BT": "Butan", - "BW": "Baswana", - "BY": "Belarus", - "BZ": "Beliz", - "CA": "Kanada", - "CD": "Jamhuriyar Dimokuraɗiyyar Kongo", - "CF": "Jamhuriyar Afirka Ta Tsakiya", - "CG": "Kongo", - "CH": "Suwizalan", - "CI": "Aibari Kwas", - "CK": "Tsibiran Kuku", - "CL": "Cayile", - "CM": "Kamaru", - "CN": "Caina, Sin", - "CO": "Kolambiya", - "CR": "Kwasta Rika", - "CU": "Kyuba", - "CV": "Tsibiran Kap Barde", - "CY": "Sifurus", - "CZ": "Jamhuriyar Cak", - "DE": "Jamus", - "DJ": "Jibuti", - "DK": "Danmark", - "DM": "Dominika", - "DO": "Jamhuriyar Dominika", - "DZ": "Aljeriya", - "EC": "Ekwador", - "EE": "Estoniya", - "EG": "Misira", - "ER": "Eritireya", - "ES": "Sipen", - "ET": "Habasha", - "FI": "Finlan", - "FJ": "Fiji", - "FK": "Tsibiran Falkilan", - "FM": "Mikuronesiya", - "FR": "Faransa", - "GA": "Gabon", - "GB": "Biritaniya", - "GD": "Girnada", - "GE": "Jiwarjiya", - "GF": "Gini Ta Faransa", - "GH": "Gana", - "GI": "Jibaraltar", - "GL": "Grinlan", - "GM": "Gambiya", - "GN": "Gini", - "GP": "Gwadaluf", - "GQ": "Gini Ta Ikwaita", - "GR": "Girka", - "GT": "Gwatamala", - "GU": "Gwam", - "GW": "Gini Bisau", - "GY": "Guyana", - "HN": "Honduras", - "HR": "Kurowaishiya", - "HT": "Haiti", - "HU": "Hungari", - "ID": "Indunusiya", - "IE": "Ayalan", - "IL": "Iziraʼila", - "IN": "Indiya", - "IO": "Yankin Birtaniya Na Tekun Indiya", - "IQ": "Iraƙi", - "IR": "Iran", - "IS": "Aisalan", - "IT": "Italiya", - "JM": "Jamaika", - "JO": "Jordan", - "JP": "Jàpân", - "KE": "Kenya", - "KG": "Kirgizistan", - "KH": "Kambodiya", - "KI": "Kiribati", - "KM": "Kwamoras", - "KN": "San Kiti Da Nebis", - "KP": "Koreya Ta Arewa", - "KR": "Koreya Ta Kudu", - "KW": "Kwiyat", - "KY": "Tsibiran Kaiman", - "KZ": "Kazakistan", - "LA": "Lawas", - "LB": "Labanan", - "LC": "San Lusiya", - "LI": "Licansitan", - "LK": "Siri Lanka", - "LR": "Laberiya", - "LS": "Lesoto", - "LT": "Lituweniya", - "LU": "Lukusambur", - "LV": "latibiya", - "LY": "Libiya", - "MA": "Maroko", - "MC": "Monako", - "MD": "Maldoba", - "MG": "Madagaskar", - "MH": "Tsibiran Marshal", - "MK": "Masedoniya", - "ML": "Mali", - "MM": "Burma, Miyamar", - "MN": "Mangoliya", - "MP": "Tsibiran Mariyana Na Arewa", - "MQ": "Martinik", - "MR": "Moritaniya", - "MS": "Manserati", - "MT": "Malta", - "MU": "Moritus", - "MV": "Maldibi", - "MW": "Malawi", - "MX": "Makasiko", - "MY": "Malaisiya", - "MZ": "Mozambik", - "NA": "Namibiya", - "NC": "Kaledoniya Sabuwa", - "NE": "Nijar", - "NF": "Tsibirin Narfalk", - "NG": "Najeriya", - "NI": "Nikaraguwa", - "NL": "Holan", - "NO": "Norwe", - "NP": "Nefal", - "NR": "Nauru", - "NU": "Niyu", - "NZ": "Nuzilan", - "OM": "Oman", - "PA": "Panama", - "PE": "Peru", - "PF": "Folinesiya Ta Faransa", - "PG": "Papuwa Nugini", - "PH": "Filipin", - "PK": "Pakistan", - "PL": "Polan", - "PM": "San Piyar Da Mikelan", - "PN": "Pitakarin", - "PR": "Porto Riko", - "PS": "Palasɗinu", - "PT": "Portugal", - "PW": "Palau", - "PY": "Paragai", - "QA": "Kwatar", - "RE": "Rawuniyan", - "RO": "Romaniya", - "RU": "Rasha", - "RW": "Ruwanda", - "SA": "Ƙasar Makka", - "SB": "Tsibiran Salaman", - "SC": "Saishal", - "SD": "Sudan", - "SE": "Suwedan", - "SG": "Singapur", - "SH": "San Helena", - "SI": "Sulobeniya", - "SK": "Sulobakiya", - "SL": "Salewo", - "SM": "San Marino", - "SN": "Sinigal", - "SO": "Somaliya", - "SR": "Suriname", - "ST": "Sawo Tome Da Paransip", - "SV": "El Salbador", - "SY": "Sham, Siriya", - "SZ": "Suwazilan", - "TC": "Turkis Da Tsibiran Kaikwas", - "TD": "Cadi", - "TG": "Togo", - "TH": "Tailan", - "TJ": "Tajikistan", - "TK": "Takelau", - "TL": "Timor Ta Gabas", - "TM": "Turkumenistan", - "TN": "Tunisiya", - "TO": "Tanga", - "TR": "Turkiyya", - "TT": "Tirinidad Da Tobago", - "TV": "Tubalu", - "TW": "Taiwan", - "TZ": "Tanzaniya", - "UA": "Yukaran", - "UG": "Yuganda", - "US": "Amirka", - "UY": "Yurugai", - "UZ": "Uzubekistan", - "VA": "Batikan", - "VC": "San Binsan Da Girnadin", - "VE": "Benezuwela", - "VG": "Tsibirin Birjin Na Birtaniya", - "VI": "Tsibiran Birjin Ta Amurka", - "VN": "Biyetinam", - "VU": "Banuwatu", - "WF": "Walis Da Futuna", - "WS": "Samowa", - "YE": "Yamal", - "YT": "Mayoti", - "ZA": "Afirka Ta Kudu", - "ZM": "Zambiya", - "ZW": "Zimbabuwe" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/he.json b/src/Symfony/Component/Intl/Resources/data/regions/he.json index 483f35424716d..23a7363eba301 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/he.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -248,6 +248,8 @@ "VU": "ונואטו", "WF": "איי ווליס ופוטונה", "WS": "סמואה", + "XA": "מבטאים חלקיים", + "XB": "דו-כיווני חלקי", "XK": "קוסובו", "YE": "תימן", "YT": "מאיוט", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index f2f93f931cc2e..3302851bafc7e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "असेंशन द्वीप", "AD": "एंडोरा", @@ -146,7 +146,7 @@ "MF": "सेंट मार्टिन", "MG": "मेडागास्कर", "MH": "मार्शल द्वीपसमूह", - "MK": "मकदूनिया", + "MK": "उत्तरी मकदूनिया", "ML": "माली", "MM": "म्यांमार (बर्मा)", "MN": "मंगोलिया", @@ -248,6 +248,8 @@ "VU": "वनुआतू", "WF": "वालिस और फ़्यूचूना", "WS": "समोआ", + "XA": "सूडो-एक्सेंट", + "XB": "सूडो-बायडायरेक्शनल", "XK": "कोसोवो", "YE": "यमन", "YT": "मायोते", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index f30d749531454..a5a33ccfe0994 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -182,7 +182,7 @@ "PH": "Filipini", "PK": "Pakistan", "PL": "Poljska", - "PM": "Sveti Petar i Mikelon", + "PM": "Saint-Pierre-et-Miquelon", "PN": "Otoci Pitcairn", "PR": "Portoriko", "PS": "Palestinsko područje", @@ -215,7 +215,7 @@ "SV": "Salvador", "SX": "Sint Maarten", "SY": "Sirija", - "SZ": "Svazi", + "SZ": "Esvatini", "TA": "Tristan da Cunha", "TC": "Otoci Turks i Caicos", "TD": "Čad", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index 0828416a2cef2..c65a2da42ffa8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension-sziget", "AD": "Andorra", @@ -148,7 +148,7 @@ "MH": "Marshall-szigetek", "MK": "Észak-Macedónia", "ML": "Mali", - "MM": "Mianmar (Burma)", + "MM": "Mianmar", "MN": "Mongólia", "MO": "Makaó KKT", "MP": "Északi Mariana-szigetek", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hy.json b/src/Symfony/Component/Intl/Resources/data/regions/hy.json index 6f80901316dd1..8906e0e23c33d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Համբարձման կղզի", "AD": "Անդորրա", @@ -44,7 +44,7 @@ "CF": "Կենտրոնական Աֆրիկյան Հանրապետություն", "CG": "Կոնգո - Բրազավիլ", "CH": "Շվեյցարիա", - "CI": "Կոտ դ’Իվուար", + "CI": "Կոտ դ՚Իվուար", "CK": "Կուկի կղզիներ", "CL": "Չիլի", "CM": "Կամերուն", @@ -248,6 +248,8 @@ "VU": "Վանուատու", "WF": "Ուոլիս և Ֆուտունա", "WS": "Սամոա", + "XA": "կեղծ տարբերիչներ", + "XB": "կեղծ երկուղղված", "XK": "Կոսովո", "YE": "Եմեն", "YT": "Մայոտ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ia.json b/src/Symfony/Component/Intl/Resources/data/regions/ia.json index aca8edb4c2126..64ede601ca9c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ia.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 9aa970d2fcc42..b3b03c1e6d3e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/id.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -10,7 +10,7 @@ "AL": "Albania", "AM": "Armenia", "AO": "Angola", - "AQ": "Antartika", + "AQ": "Antarktika", "AR": "Argentina", "AS": "Samoa Amerika", "AT": "Austria", @@ -44,7 +44,7 @@ "CF": "Republik Afrika Tengah", "CG": "Kongo - Brazzaville", "CH": "Swiss", - "CI": "Pantai Gading", + "CI": "Côte d’Ivoire", "CK": "Kepulauan Cook", "CL": "Cile", "CM": "Kamerun", @@ -54,7 +54,7 @@ "CU": "Kuba", "CV": "Tanjung Verde", "CW": "Curaçao", - "CX": "Pulau Christmas", + "CX": "Pulau Natal", "CY": "Siprus", "CZ": "Ceko", "DE": "Jerman", @@ -74,7 +74,7 @@ "ET": "Etiopia", "FI": "Finlandia", "FJ": "Fiji", - "FK": "Kepulauan Malvinas", + "FK": "Kepulauan Falkland", "FM": "Mikronesia", "FO": "Kepulauan Faroe", "FR": "Prancis", @@ -97,12 +97,12 @@ "GU": "Guam", "GW": "Guinea-Bissau", "GY": "Guyana", - "HK": "Hong Kong SAR Tiongkok", + "HK": "Hong Kong DAK Tiongkok", "HN": "Honduras", "HR": "Kroasia", "HT": "Haiti", "HU": "Hungaria", - "IC": "Kepulauan Canary", + "IC": "Kepulauan Canaria", "ID": "Indonesia", "IE": "Irlandia", "IL": "Israel", @@ -150,7 +150,7 @@ "ML": "Mali", "MM": "Myanmar (Burma)", "MN": "Mongolia", - "MO": "Makau SAR Tiongkok", + "MO": "Makau DAK Tiongkok", "MP": "Kepulauan Mariana Utara", "MQ": "Martinik", "MR": "Mauritania", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Kepulauan Turks dan Caicos", "TD": "Cad", - "TF": "Wilayah Kutub Selatan Prancis", + "TF": "Wilayah Selatan Perancis", "TG": "Togo", "TH": "Thailand", "TJ": "Tajikistan", @@ -240,10 +240,10 @@ "UY": "Uruguay", "UZ": "Uzbekistan", "VA": "Vatikan", - "VC": "Saint Vincent dan Grenadines", + "VC": "Saint Vincent dan Grenadine", "VE": "Venezuela", - "VG": "Kepulauan Virgin Inggris", - "VI": "Kepulauan Virgin A.S.", + "VG": "Kepulauan Virgin Britania Raya", + "VI": "Kepulauan Virgin Amerika Serikat", "VN": "Vietnam", "VU": "Vanuatu", "WF": "Kepulauan Wallis dan Futuna", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 5493329de78d2..1029c827e5d12 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,22 +1,218 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { + "AC": "Ascension Island", + "AD": "Andorra", + "AG": "Antigua & Barbuda", + "AI": "Anguilla", + "AL": "Albania", + "AO": "Angola", + "AQ": "Antarctica", + "AR": "Argentina", + "AS": "American Samoa", + "AT": "Austria", + "AU": "Australia", + "AW": "Aruba", + "AX": "Agwaetiti Aland", + "BA": "Bosnia & Herzegovina", + "BB": "Barbados", + "BE": "Belgium", + "BF": "Burkina Faso", + "BG": "Bulgaria", + "BI": "Burundi", "BJ": "Binin", + "BL": "St. Barthélemy", "BM": "Bemuda", + "BO": "Bolivia", + "BQ": "Caribbean Netherlands", "BR": "Mba Brazil", + "BS": "Bahamas", + "BW": "Botswana", + "BY": "Belarus", + "BZ": "Belize", + "CA": "Kanada", + "CC": "Agwaetiti Cocos (Keeling)", + "CD": "Congo - Kinshasa", + "CF": "Central African Republik", + "CG": "Congo", + "CH": "Switzerland", + "CI": "Côte d’Ivoire", + "CK": "Agwaetiti Cook", + "CL": "Chile", + "CM": "Cameroon", "CN": "Mba China", + "CO": "Colombia", + "CR": "Kosta Rika", + "CU": "Cuba", + "CV": "Cape Verde", + "CW": "Kurakao", + "CX": "Agwaetiti Christmas", + "CZ": "Czechia", "DE": "Mba Germany", + "DG": "Diego Garcia", + "DJ": "Djibouti", + "DK": "Denmark", + "DM": "Dominika", + "DO": "Dominican Republik", + "DZ": "Algeria", + "EA": "Ceuta & Melilla", + "EC": "Ecuador", + "EE": "Estonia", + "EG": "Egypt", + "EH": "Ọdịda Anyanwụ Sahara", + "ER": "Eritrea", + "ES": "Spain", + "ET": "Ethiopia", + "FI": "Finland", + "FJ": "Fiji", + "FK": "Agwaetiti Falkland", + "FM": "Micronesia", + "FO": "Agwaetiti Faroe", "FR": "Mba France", + "GA": "Gabon", "GB": "Mba United Kingdom", + "GD": "Grenada", + "GF": "Frenchi Guiana", + "GG": "Guernsey", + "GH": "Ghana", + "GI": "Gibraltar", + "GL": "Greenland", + "GM": "Gambia", + "GN": "Guinea", + "GP": "Guadeloupe", + "GQ": "Equatorial Guinea", + "GR": "Greece", + "GS": "South Georgia na Agwaetiti South Sandwich", + "GT": "Guatemala", + "GU": "Guam", + "GW": "Guinea-Bissau", + "GY": "Guyana", + "HN": "Honduras", + "HR": "Croatia", "HT": "Hati", + "HU": "Hungary", + "IC": "Agwaetiti Kanarị", + "IE": "Ireland", + "IM": "Isle of Man", "IN": "Mba India", + "IO": "British Indian Ocean Territory", + "IS": "Iceland", "IT": "Mba Italy", + "JE": "Jersey", + "JM": "Jamaika", "JP": "Mba Japan", + "KE": "Kenya", + "KI": "Kiribati", "KM": "Comorosu", + "KN": "St. Kitts & Nevis", + "KY": "Agwaetiti Cayman", + "LC": "St. Lucia", + "LI": "Liechtenstein", + "LR": "Liberia", + "LS": "Lesotho", + "LT": "Lithuania", + "LU": "Luxembourg", + "LV": "Latvia", "LY": "Libyia", + "MA": "Morocco", + "MC": "Monaco", + "MD": "Moldova", + "ME": "Montenegro", + "MF": "St. Martin", + "MG": "Madagaskar", + "MH": "Agwaetiti Marshall", + "MK": "North Macedonia", + "ML": "Mali", + "MP": "Agwaetiti Northern Mariana", + "MQ": "Martinique", + "MR": "Mauritania", + "MS": "Montserrat", + "MT": "Malta", + "MU": "Mauritius", "MV": "Maldivesa", + "MW": "Malawi", + "MX": "Mexico", + "MZ": "Mozambik", + "NA": "Namibia", + "NC": "New Caledonia", + "NE": "Niger", + "NF": "Agwaetiti Norfolk", "NG": "Naịjịrịa", + "NI": "Nicaragua", + "NL": "Netherlands", + "NO": "Norway", + "NR": "Nauru", + "NU": "Niue", + "NZ": "New Zealand", + "PA": "Panama", + "PE": "Peru", + "PF": "Frenchi Polynesia", + "PG": "Papua New Guinea", + "PH": "Philippines", + "PL": "Poland", + "PM": "St. Pierre & Miquelon", + "PN": "Agwaetiti Pitcairn", + "PR": "Puerto Rico", + "PT": "Portugal", + "PW": "Palau", + "PY": "Paraguay", + "RE": "Réunion", + "RO": "Romania", + "RS": "Serbia", "RU": "Mba Russia", - "US": "Mba United States" + "RW": "Rwanda", + "SB": "Agwaetiti Solomon", + "SC": "Seychelles", + "SD": "Sudan", + "SE": "Sweden", + "SG": "Singapore", + "SH": "St. Helena", + "SI": "Slovenia", + "SJ": "Svalbard & Jan Mayen", + "SK": "Slovakia", + "SL": "Sierra Leone", + "SM": "San Marino", + "SN": "Senegal", + "SO": "Somalia", + "SR": "Suriname", + "SS": "South Sudan", + "ST": "São Tomé & Príncipe", + "SV": "El Salvador", + "SX": "Sint Maarten", + "SZ": "Eswatini", + "TA": "Tristan da Cunha", + "TC": "Agwaetiti Turks na Caicos", + "TD": "Chad", + "TF": "Ụmụ ngalaba Frenchi Southern", + "TG": "Togo", + "TH": "Thailand", + "TK": "Tokelau", + "TL": "Timor-Leste", + "TN": "Tunisia", + "TO": "Tonga", + "TT": "Trinidad & Tobago", + "TV": "Tuvalu", + "TZ": "Tanzania", + "UA": "Ukraine", + "UG": "Uganda", + "UM": "Obere Agwaetiti Dị Na Mpụga U.S", + "US": "Mba United States", + "UY": "Uruguay", + "VA": "Vatican City", + "VC": "St. Vincent & Grenadines", + "VE": "Venezuela", + "VG": "Agwaetiti British Virgin", + "VI": "Agwaetiti Virgin nke US", + "VN": "Vietnam", + "VU": "Vanuatu", + "WF": "Wallis & Futuna", + "WS": "Samoa", + "XA": "Pseudo-Accents", + "XB": "Pseudo-Bidi", + "XK": "Kosovo", + "YT": "Mayotte", + "ZA": "South Africa", + "ZM": "Zambia", + "ZW": "Zimbabwe" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ii.json b/src/Symfony/Component/Intl/Resources/data/regions/ii.json index 21ab0020a8aa8..924f6aa6ad830 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 9aa970d2fcc42..b3b03c1e6d3e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/in.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -10,7 +10,7 @@ "AL": "Albania", "AM": "Armenia", "AO": "Angola", - "AQ": "Antartika", + "AQ": "Antarktika", "AR": "Argentina", "AS": "Samoa Amerika", "AT": "Austria", @@ -44,7 +44,7 @@ "CF": "Republik Afrika Tengah", "CG": "Kongo - Brazzaville", "CH": "Swiss", - "CI": "Pantai Gading", + "CI": "Côte d’Ivoire", "CK": "Kepulauan Cook", "CL": "Cile", "CM": "Kamerun", @@ -54,7 +54,7 @@ "CU": "Kuba", "CV": "Tanjung Verde", "CW": "Curaçao", - "CX": "Pulau Christmas", + "CX": "Pulau Natal", "CY": "Siprus", "CZ": "Ceko", "DE": "Jerman", @@ -74,7 +74,7 @@ "ET": "Etiopia", "FI": "Finlandia", "FJ": "Fiji", - "FK": "Kepulauan Malvinas", + "FK": "Kepulauan Falkland", "FM": "Mikronesia", "FO": "Kepulauan Faroe", "FR": "Prancis", @@ -97,12 +97,12 @@ "GU": "Guam", "GW": "Guinea-Bissau", "GY": "Guyana", - "HK": "Hong Kong SAR Tiongkok", + "HK": "Hong Kong DAK Tiongkok", "HN": "Honduras", "HR": "Kroasia", "HT": "Haiti", "HU": "Hungaria", - "IC": "Kepulauan Canary", + "IC": "Kepulauan Canaria", "ID": "Indonesia", "IE": "Irlandia", "IL": "Israel", @@ -150,7 +150,7 @@ "ML": "Mali", "MM": "Myanmar (Burma)", "MN": "Mongolia", - "MO": "Makau SAR Tiongkok", + "MO": "Makau DAK Tiongkok", "MP": "Kepulauan Mariana Utara", "MQ": "Martinik", "MR": "Mauritania", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Kepulauan Turks dan Caicos", "TD": "Cad", - "TF": "Wilayah Kutub Selatan Prancis", + "TF": "Wilayah Selatan Perancis", "TG": "Togo", "TH": "Thailand", "TJ": "Tajikistan", @@ -240,10 +240,10 @@ "UY": "Uruguay", "UZ": "Uzbekistan", "VA": "Vatikan", - "VC": "Saint Vincent dan Grenadines", + "VC": "Saint Vincent dan Grenadine", "VE": "Venezuela", - "VG": "Kepulauan Virgin Inggris", - "VI": "Kepulauan Virgin A.S.", + "VG": "Kepulauan Virgin Britania Raya", + "VI": "Kepulauan Virgin Amerika Serikat", "VN": "Vietnam", "VU": "Vanuatu", "WF": "Kepulauan Wallis dan Futuna", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index 637cde04f2eda..6582b2f8c4ce2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/is.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ascension-eyja", "AD": "Andorra", @@ -143,7 +143,7 @@ "MC": "Mónakó", "MD": "Moldóva", "ME": "Svartfjallaland", - "MF": "St. Martin", + "MF": "Saint-Martin", "MG": "Madagaskar", "MH": "Marshalleyjar", "MK": "Norður-Makedónía", @@ -248,6 +248,8 @@ "VU": "Vanúatú", "WF": "Wallis- og Fútúnaeyjar", "WS": "Samóa", + "XA": "gervihreimur", + "XB": "gervistaður", "XK": "Kósóvó", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index c5a9d9e34756b..7d332096189ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/it.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Isola Ascensione", "AD": "Andorra", @@ -248,8 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis e Futuna", "WS": "Samoa", - "XA": "pseudo-accenti", - "XB": "pseudo-bidi", + "XA": "Pseudo-accenti", + "XB": "Pseudo-bidi", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index 483f35424716d..23a7363eba301 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -248,6 +248,8 @@ "VU": "ונואטו", "WF": "איי ווליס ופוטונה", "WS": "סמואה", + "XA": "מבטאים חלקיים", + "XB": "דו-כיווני חלקי", "XK": "קוסובו", "YE": "תימן", "YT": "מאיוט", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index eec991c1fde2c..d8de414377134 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "アセンション島", "AD": "アンドラ", @@ -248,6 +248,8 @@ "VU": "バヌアツ", "WF": "ウォリス・フツナ", "WS": "サモア", + "XA": "疑似アクセント", + "XB": "疑似 BIDI", "XK": "コソボ", "YE": "イエメン", "YT": "マヨット", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/jv.json b/src/Symfony/Component/Intl/Resources/data/regions/jv.json index 27697e30fb36b..1ede781f1f0a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/jv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "AC": "Pulo Ascension", "AD": "Andora", @@ -27,6 +27,7 @@ "BH": "Bahrain", "BI": "Burundi", "BJ": "Bénin", + "BL": "Saint Barthélémi", "BM": "Bermuda", "BN": "Brunéi", "BO": "Bolivia", @@ -74,6 +75,7 @@ "FI": "Finlan", "FJ": "Fiji", "FK": "Kapuloan Falkland", + "FM": "Féderasi Mikronésia", "FO": "Kapuloan Faro", "FR": "Prancis", "GA": "Gabon", @@ -88,6 +90,8 @@ "GM": "Gambia", "GN": "Guinea", "GP": "Guadélup", + "GQ": "Guinéa Katulistiwa", + "GR": "Grikenlan", "GS": "Georgia Kidul lan Kapuloan Sandwich Kidul", "GT": "Guatémala", "GU": "Guam", @@ -117,6 +121,7 @@ "KH": "Kamboja", "KI": "Kiribati", "KM": "Komoro", + "KN": "Saint Kits lan Nèvis", "KR": "Koréa Kidul", "KW": "Kuwait", "KY": "Kapuloan Kéman", @@ -173,6 +178,7 @@ "PH": "Pilipina", "PK": "Pakistan", "PL": "Polen", + "PM": "Saint Pièr lan Mikuélon", "PN": "Kapuloan Pitcairn", "PR": "Puèrto Riko", "PS": "Tlatah Palèstina", @@ -182,6 +188,7 @@ "QA": "Katar", "RE": "Réunion", "RO": "Ruméni", + "RS": "Sèrbi", "RU": "Rusia", "RW": "Rwanda", "SA": "Arab Saudi", @@ -190,6 +197,7 @@ "SD": "Sudan", "SE": "Swèdhen", "SG": "Singapura", + "SH": "Saint Héléna", "SI": "Slovénia", "SJ": "Svalbard lan Jan Mayen", "SK": "Slowak", @@ -228,6 +236,7 @@ "UY": "Uruguay", "UZ": "Usbèkistan", "VA": "Kutha Vatikan", + "VC": "Saint Vinsen lan Grénadin", "VE": "Vénésuéla", "VG": "Kapuloan Virgin Britania", "VI": "Kapuloan Virgin Amérika", @@ -235,6 +244,8 @@ "VU": "Vanuatu", "WF": "Wallis lan Futuna", "WS": "Samoa", + "XA": "Logat Semu", + "XB": "Rong Arah Semu", "XK": "Kosovo", "YE": "Yaman", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index 03ffef22d46a5..071ccb195210b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", @@ -146,7 +146,7 @@ "MF": "სენ-მარტენი", "MG": "მადაგასკარი", "MH": "მარშალის კუნძულები", - "MK": "მაკედონია", + "MK": "ჩრდილოეთ მაკედონია", "ML": "მალი", "MM": "მიანმარი (ბირმა)", "MN": "მონღოლეთი", @@ -248,6 +248,8 @@ "VU": "ვანუატუ", "WF": "უოლისი და ფუტუნა", "WS": "სამოა", + "XA": "ფსევდო-აქცენტები", + "XB": "ფსევდო-ორმიმართულებიანი", "XK": "კოსოვო", "YE": "იემენი", "YT": "მაიოტა", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 4ac2e0e5c7462..05938b601387b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andora", "AE": "Falme za Kiarabu", @@ -126,7 +126,6 @@ "MD": "Moldova", "MG": "Bukini", "MH": "Visiwa vya Marshal", - "MK": "Masedonia", "ML": "Mali", "MM": "Myama", "MN": "Mongolia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kk.json b/src/Symfony/Component/Intl/Resources/data/regions/kk.json index 8c2e5b69f9011..a42c452ba9d5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 f835841f1ce19..7da31a22e6523 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 065d759725b87..8faf8665b6beb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/km.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "កោះ​អាសេនសិន", "AD": "អង់ដូរ៉ា", @@ -224,7 +224,7 @@ "TH": "ថៃ", "TJ": "តាហ្ស៊ីគីស្ថាន", "TK": "តូខេឡៅ", - "TL": "ទីម័រលីស", + "TL": "ទីម័រលេស្តេ", "TM": "តួកម៉េនីស្ថាន", "TN": "ទុយនីស៊ី", "TO": "តុងហ្គា", @@ -248,6 +248,8 @@ "VU": "វ៉ានូទូ", "WF": "វ៉ាលីស និង​ហ្វូទូណា", "WS": "សាម័រ", + "XA": "Pseudo-Accents", + "XB": "Pseudo-Bidi", "XK": "កូសូវ៉ូ", "YE": "យេម៉ែន", "YT": "ម៉ាយុត", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index c4c03344e6320..ba789d0f7b1e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "ಅಸೆನ್ಶನ್ ದ್ವೀಪ", "AD": "ಅಂಡೋರಾ", @@ -79,7 +79,7 @@ "FO": "ಫರೋ ದ್ವೀಪಗಳು", "FR": "ಫ್ರಾನ್ಸ್", "GA": "ಗೆಬೊನ್", - "GB": "ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್", + "GB": "ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಮ್", "GD": "ಗ್ರೆನೆಡಾ", "GE": "ಜಾರ್ಜಿಯಾ", "GF": "ಫ್ರೆಂಚ್ ಗಯಾನಾ", @@ -146,7 +146,7 @@ "MF": "ಸೇಂಟ್ ಮಾರ್ಟಿನ್", "MG": "ಮಡಗಾಸ್ಕರ್", "MH": "ಮಾರ್ಷಲ್ ದ್ವೀಪಗಳು", - "MK": "ಮ್ಯಾಸಿಡೋನಿಯಾ", + "MK": "ಉತ್ತರ ಮ್ಯಾಸಿಡೋನಿಯಾ", "ML": "ಮಾಲಿ", "MM": "ಮಯನ್ಮಾರ್ (ಬರ್ಮಾ)", "MN": "ಮಂಗೋಲಿಯಾ", @@ -215,7 +215,7 @@ "SV": "ಎಲ್ ಸಾಲ್ವೇಡಾರ್", "SX": "ಸಿಂಟ್ ಮಾರ್ಟೆನ್", "SY": "ಸಿರಿಯಾ", - "SZ": "ಸ್ವಾಜಿಲ್ಯಾಂಡ್", + "SZ": "ಸ್ವಾತಿನಿ", "TA": "ಟ್ರಿಸ್ತನ್ ಡಾ ಕುನ್ಹಾ", "TC": "ಟರ್ಕ್ಸ್ ಮತ್ತು ಕೈಕೋಸ್ ದ್ವೀಪಗಳು", "TD": "ಚಾದ್", @@ -248,6 +248,8 @@ "VU": "ವನೌಟು", "WF": "ವಾಲಿಸ್ ಮತ್ತು ಫುಟುನಾ", "WS": "ಸಮೋವಾ", + "XA": "ಸ್ಯುಡೊ ಉಚ್ಛಾರಣೆಗಳು", + "XB": "ಸ್ಯುಡೊ-ಬಿಡಿ", "XK": "ಕೊಸೊವೊ", "YE": "ಯೆಮನ್", "YT": "ಮಯೊಟ್ಟೆ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index 452af11c8f688..eda83143958b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 b2854c05d0c01..3028a9ef22461 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 a8c825311b8cf..117985dc54764 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "AD": "اؠنڑورا", "AE": "مُتحدہ عرَب امارات", @@ -138,7 +138,6 @@ "MF": "سینٹ مارٹِن", "MG": "میڑاگاسکار", "MH": "مارشَل جٔزیٖرٕ", - "MK": "مؠسوڑونِیا", "ML": "مالی", "MM": "مَیَنما بٔرما", "MN": "مَنگولِیا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ku.json b/src/Symfony/Component/Intl/Resources/data/regions/ku.json index b21095a688106..6277f877f3419 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ku.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "AD": "Andorra", "AE": "Emîrtiyên Erebî yên Yekbûyî", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kw.json b/src/Symfony/Component/Intl/Resources/data/regions/kw.json index 79fc83ae44772..ef01280c44147 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.56", + "Version": "36", "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 e9c218bb3f317..3d5f65cb28966 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Вознесение аралы", "AD": "Андорра", @@ -248,6 +248,8 @@ "VU": "Вануату", "WF": "Уоллис жана Футуна", "WS": "Самоа", + "XA": "Жасалма- Акцент", + "XB": "Жасалма - эки тараптуу", "XK": "Косово", "YE": "Йемен", "YT": "Майотта", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index 30bcc76e92dd4..598933b0e384d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 5b8c4a9924556..9951f93d15217 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andora", "AE": "Emireeti", @@ -126,7 +126,6 @@ "MD": "Molodova", "MG": "Madagasika", "MH": "Bizinga bya Mariso", - "MK": "Masedoniya", "ML": "Mali", "MM": "Myanima", "MN": "Mongoliya", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ln.json b/src/Symfony/Component/Intl/Resources/data/regions/ln.json index df94916e3cbce..448ff65a60c27 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andorɛ", "AE": "Lɛmila alabo", @@ -130,7 +130,6 @@ "ME": "Monténégro", "MG": "Madagasikari", "MH": "Bisanga bya Marishalɛ", - "MK": "Masedwanɛ", "ML": "Malí", "MM": "Birmanie", "MN": "Mongolí", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index 162efbd36d766..f36198839c024 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "ເກາະອາເຊນຊັນ", "AD": "ອັນດໍຣາ", @@ -64,7 +64,7 @@ "DM": "ໂດມີນິຄາ", "DO": "ສາທາລະນະລັດ ໂດມິນິກັນ", "DZ": "ອັລຈິເຣຍ", - "EA": "ເຊວຕາ ແລະເມລິນລາ", + "EA": "ເຊວຕາ & ເມລິນລາ", "EC": "ເອກວາດໍ", "EE": "ເອສໂຕເນຍ", "EG": "ອີຢິບ", @@ -146,7 +146,7 @@ "MF": "ເຊນ ມາທິນ", "MG": "ມາດາກາສະກາ", "MH": "ຫມູ່ເກາະມາແຊວ", - "MK": "ແມຊິໂດເນຍ", + "MK": "ແມຊິໂດເນຍເໜືອ", "ML": "ມາລີ", "MM": "ມຽນມາ (ເບີມາ)", "MN": "ມອງໂກເລຍ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index 7fd53e76dffdf..73b64413c3f9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Dangun Žengimo sala", "AD": "Andora", @@ -248,8 +248,6 @@ "VU": "Vanuatu", "WF": "Volisas ir Futūna", "WS": "Samoa", - "XA": "XA", - "XB": "XB", "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 2a267e501ff5b..fc1b871365297 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andore", "AE": "Lemila alabu", @@ -126,7 +126,6 @@ "MD": "Molidavi", "MG": "Madagasikari", "MH": "Lutanda lua Marishale", - "MK": "Masedwane", "ML": "Mali", "MM": "Myamare", "MN": "Mongoli", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lv.json b/src/Symfony/Component/Intl/Resources/data/regions/lv.json index 999f0462990bd..2fd6f50cb2937 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { "AC": "Debesbraukšanas sala", "AD": "Andora", @@ -150,7 +150,7 @@ "ML": "Mali", "MM": "Mjanma (Birma)", "MN": "Mongolija", - "MO": "Ķīnas īpašās pārvaldes apgabals Makao", + "MO": "ĶTR īpašais administratīvais reģions Makao", "MP": "Ziemeļu Marianas salas", "MQ": "Martinika", "MR": "Mauritānija", @@ -215,7 +215,7 @@ "SV": "Salvadora", "SX": "Sintmārtena", "SY": "Sīrija", - "SZ": "Svazilenda", + "SZ": "Svatini", "TA": "Tristana da Kuņas salas", "TC": "Tērksas un Kaikosas salas", "TD": "Čada", @@ -249,7 +249,7 @@ "WF": "Volisa un Futunas salas", "WS": "Samoa", "XA": "pseidoakcenti", - "XB": "pseido-Bidi", + "XB": "pseidodivvirzienu", "XK": "Kosova", "YE": "Jemena", "YT": "Majota", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index 462933f82a5ac..c910e6427cabb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 bacc50aadcc51..48f5c22eb7a2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "Names": { "AD": "Andorra", "AE": "Emirà Arabo mitambatra", @@ -126,7 +126,6 @@ "MD": "Môldavia", "MG": "Madagasikara", "MH": "Nosy Marshall", - "MK": "Makedonia", "ML": "Mali", "MM": "Myanmar", "MN": "Môngôlia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mi.json b/src/Symfony/Component/Intl/Resources/data/regions/mi.json index 0d1836c511609..6feb8ebd63f3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 4308bb144bc74..f6973be4b44b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.27", + "Version": "36", "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 5d9064b5fcce3..5dd87529d2e48 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "അസൻഷൻ ദ്വീപ്", "AD": "അൻഡോറ", @@ -182,7 +182,7 @@ "PH": "ഫിലിപ്പീൻസ്", "PK": "പാക്കിസ്ഥാൻ", "PL": "പോളണ്ട്", - "PM": "സെന്റ് പിയറിയും മിക്കലണും", + "PM": "സെന്റ് പിയറി ആൻഡ് മിക്വലൻ", "PN": "പിറ്റ്‌കെയ്‌ൻ ദ്വീപുകൾ", "PR": "പോർട്ടോ റിക്കോ", "PS": "പാലസ്‌തീൻ പ്രദേശങ്ങൾ", @@ -216,7 +216,7 @@ "SX": "സിന്റ് മാർട്ടെൻ", "SY": "സിറിയ", "SZ": "സ്വാസിലാന്റ്", - "TA": "ട്രസ്റ്റൻ ഡ കൂന", + "TA": "ട്രിസ്റ്റൻ ഡ കൂന", "TC": "ടർക്ക്‌സും കെയ്‌ക്കോ ദ്വീപുകളും", "TD": "ഛാഡ്", "TF": "ഫ്രഞ്ച് ദക്ഷിണ ഭൂപ്രദേശം", @@ -248,6 +248,7 @@ "VU": "വന്വാതു", "WF": "വാലിസ് ആന്റ് ഫ്യൂച്യുന", "WS": "സമോവ", + "XA": "കൃത്രിമ ഉച്ചാരണം", "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 c33353ca6b4a1..94c6c2f0b215b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "Асенсион арал", "AD": "Андорра", @@ -141,12 +141,12 @@ "LY": "Ливи", "MA": "Морокко", "MC": "Монако", - "MD": "Молдав", + "MD": "Молдова", "ME": "Монтенегро", "MF": "Сент-Мартин", "MG": "Мадагаскар", "MH": "Маршаллын арлууд", - "MK": "Македон", + "MK": "Хойд Македон", "ML": "Мали", "MM": "Мьянмар", "MN": "Монгол", @@ -215,7 +215,7 @@ "SV": "Эль Сальвадор", "SX": "Синт Мартен", "SY": "Сири", - "SZ": "Свазиланд", + "SZ": "Эсватини", "TA": "Тристан да Кунъя", "TC": "Турк ба Кайкосын Арлууд", "TD": "Чад", @@ -248,6 +248,8 @@ "VU": "Вануату", "WF": "Уоллис ба Футуна", "WS": "Самоа", + "XA": "хуурмаг аялга", + "XB": "хуурмаг хоёр чиглэлт", "XK": "Косово", "YE": "Йемен", "YT": "Майотта", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index f69a42be70d3c..bda5d0102e68e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Insula Ascension", "AD": "Andorra", @@ -211,7 +211,7 @@ "SO": "Somalia", "SR": "Suriname", "SS": "Sudanul de Sud", - "ST": "Sao Tome și Principe", + "ST": "São Tomé și Príncipe", "SV": "El Salvador", "SX": "Sint-Maarten", "SY": "Siria", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index 59865dcefb77a..56387cc30611a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "अ‍ॅसेन्शियन बेट", "AD": "अँडोरा", @@ -215,7 +215,7 @@ "SV": "अल साल्वाडोर", "SX": "सिंट मार्टेन", "SY": "सीरिया", - "SZ": "स्वाझिलँड", + "SZ": "इस्वातिनी", "TA": "ट्रिस्टन दा कुन्हा", "TC": "टर्क्स आणि कैकोस बेटे", "TD": "चाड", @@ -248,6 +248,8 @@ "VU": "वानुआतु", "WF": "वालिस आणि फ्यूचूना", "WS": "सामोआ", + "XA": "नकली-उच्चारणे", + "XB": "नकली-बीडी", "XK": "कोसोव्हो", "YE": "येमेन", "YT": "मायोट्टे", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index a8042ed3172de..6ced5a76a93fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.2", + "Version": "36", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -248,8 +248,6 @@ "VU": "Vanuatu", "WF": "Wallis dan Futuna", "WS": "Samoa", - "XA": "XA", - "XB": "XB", "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 47c90b38a47cd..83899b6667202 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 da59b10c20b29..5a9d77d8c58c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/my.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "အဆန်းရှင်းကျွန်း", "AD": "အန်ဒိုရာ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index 3f97f4e8fd62c..8d9465c74ee4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis og Futuna", "WS": "Samoa", + "XA": "pseudospråk – aksenter", + "XB": "pseudospråk – RTL", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index b6900e99c69b0..83344c4dc7450 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andora", "AE": "United Arab Emirates", @@ -126,7 +126,6 @@ "MD": "Moldova", "MG": "Madagaska", "MH": "Marshall Islands", - "MK": "Macedonia", "ML": "Mali", "MM": "Myanmar", "MN": "Mongolia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ne.json b/src/Symfony/Component/Intl/Resources/data/regions/ne.json index 3d6ad1bed46c0..d72dd7c642f77 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "असेन्सन टापु", "AD": "अन्डोर्रा", @@ -69,7 +69,7 @@ "EE": "इस्टोनिया", "EG": "इजिप्ट", "EH": "पश्चिमी साहारा", - "ER": "एरित्रिया", + "ER": "एरिट्रीया", "ES": "स्पेन", "ET": "इथियोपिया", "FI": "फिनल्याण्ड", @@ -83,7 +83,7 @@ "GD": "ग्रेनाडा", "GE": "जर्जिया", "GF": "फ्रान्सेली गायना", - "GG": "गुएर्नसे", + "GG": "ग्यूर्न्सी", "GH": "घाना", "GI": "जिब्राल्टार", "GL": "ग्रिनल्याण्ड", @@ -112,7 +112,7 @@ "IQ": "इराक", "IR": "इरान", "IS": "आइस्ल्याण्ड", - "IT": "इटाली", + "IT": "इटली", "JE": "जर्सी", "JM": "जमैका", "JO": "जोर्डन", @@ -196,7 +196,7 @@ "RU": "रूस", "RW": "रवाण्डा", "SA": "साउदी अरब", - "SB": "सोलोमोन टापुहरु", + "SB": "सोलोमन टापुहरू", "SC": "सेचेलेस", "SD": "सुडान", "SE": "स्विडेन", @@ -219,7 +219,7 @@ "TA": "ट्रिस्टान डा कुन्हा", "TC": "तुर्क र काइकोस टापु", "TD": "चाड", - "TF": "फ्रान्सेली दक्षिणी क्षेत्रहरु", + "TF": "फ्रेन्च दक्षिणी राज्यहरू", "TG": "टोगो", "TH": "थाइल्याण्ड", "TJ": "ताजिकिस्तान", @@ -248,6 +248,7 @@ "VU": "भानुआतु", "WF": "वालिस र फुटुना", "WS": "सामोआ", + "XB": "सिउडो-बिडी", "XK": "कोसोभो", "YE": "येमेन", "YT": "मायोट्ट", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index ae6c73e6d6344..8cc7ea18c8890 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 6d3534a209ed1..2898a76494bb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 3f97f4e8fd62c..8d9465c74ee4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/no.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis og Futuna", "WS": "Samoa", + "XA": "pseudospråk – aksenter", + "XB": "pseudospråk – RTL", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 51edb1a9d3290..f7d72a855df5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/om.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 c25e74183bcdc..aabcb1d599ebf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/or.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "ଆସେନସିଅନ୍‌ ଦ୍ୱୀପ", "AD": "ଆଣ୍ଡୋରା", @@ -40,7 +40,7 @@ "BZ": "ବେଲିଜ୍", "CA": "କାନାଡା", "CC": "କୋକୋସ୍ (କୀଲିଂ) ଦ୍ଵୀପପୁଞ୍ଜ", - "CD": "କଙ୍ଗୋ-କିନସାସା", + "CD": "କଙ୍ଗୋ (ଡିଆରସି)", "CF": "ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର", "CG": "କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ", "CH": "ସ୍ୱିଜରଲ୍ୟାଣ୍ଡ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index 7b86e3a1fd7bb..4d162da8b005a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/os.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 9c596c8604cfa..60eae0fea260c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.20", + "Version": "36", "Names": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", @@ -146,7 +146,7 @@ "MF": "ਸੇਂਟ ਮਾਰਟਿਨ", "MG": "ਮੈਡਾਗਾਸਕਰ", "MH": "ਮਾਰਸ਼ਲ ਟਾਪੂ", - "MK": "ਮੈਕਡੋਨੀਆ", + "MK": "ਉੱਤਰੀ ਮੈਕਡੋਨੀਆ", "ML": "ਮਾਲੀ", "MM": "ਮਿਆਂਮਾਰ (ਬਰਮਾ)", "MN": "ਮੰਗੋਲੀਆ", @@ -248,6 +248,8 @@ "VU": "ਵਾਨੂਆਟੂ", "WF": "ਵਾਲਿਸ ਅਤੇ ਫੂਟੂਨਾ", "WS": "ਸਾਮੋਆ", + "XA": "ਗਲਤ-ਉਚਾਰਨ", + "XB": "ਲਿਖਤ ਦੀ ਗਲਤ ਦਿਸ਼ਾ", "XK": "ਕੋਸੋਵੋ", "YE": "ਯਮਨ", "YT": "ਮਾਯੋਟੀ", 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 cd324a01d875f..36f1c201f661d 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 9255e9a32ba10..f99ff2ac47f45 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 31e484303fa97..44ac94ba9fb9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "اسينشان ټاپو", "AD": "اندورا", @@ -104,7 +104,7 @@ "HU": "مجارستان", "IC": "د کناري ټاپوګان", "ID": "اندونیزیا", - "IE": "ایرلینډ", + "IE": "آيرلېنډ", "IL": "اسراييل", "IM": "د آئل آف مین", "IN": "هند", @@ -125,7 +125,7 @@ "KN": "سینټ کټس او نیویس", "KP": "شمالی کوریا", "KR": "سویلي کوریا", - "KW": "کویټ", + "KW": "کويت", "KY": "کیمان ټاپوګان", "KZ": "قزاقستان", "LA": "لاوس", @@ -133,7 +133,7 @@ "LC": "سینټ لوسیا", "LI": "لیختن اشتاین", "LK": "سريلنکا", - "LR": "لایبریا", + "LR": "لايبيريا", "LS": "لسوتو", "LT": "لیتوانیا", "LU": "لوګزامبورګ", @@ -144,18 +144,18 @@ "MD": "مولدوا", "ME": "مونټینیګرو", "MF": "سینټ مارټن", - "MG": "مدګاسکار", + "MG": "مدغاسکر", "MH": "مارشل ټاپوګان", "MK": "شمالي مقدونيه", "ML": "مالي", "MM": "ميانمار (برما)", - "MN": "مغولستان", + "MN": "منګوليا", "MO": "مکاو سار چین", "MP": "شمالي ماريانا ټاپوګان", "MQ": "مارټینیک", "MR": "موریتانیا", "MS": "مانټیسیرت", - "MT": "مالتا", + "MT": "مالټا", "MU": "موریشیس", "MV": "مالديپ", "MW": "مالاوي", 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 09403eeb9d042..fcb3949eab2aa 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,5 @@ { - "Version": "2.1.49.34", + "Version": "36", "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 10848c1ac13ce..1a8df2330caad 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ilha de Ascensão", "AD": "Andorra", @@ -215,7 +215,7 @@ "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Síria", - "SZ": "Suazilândia", + "SZ": "Essuatíni", "TA": "Tristão da Cunha", "TC": "Ilhas Turcas e Caicos", "TD": "Chade", @@ -249,7 +249,7 @@ "WF": "Wallis e Futuna", "WS": "Samoa", "XA": "Pseudossotaques", - "XB": "Pseudobidi", + "XB": "Pseudobidirecional", "XK": "Kosovo", "YE": "Iêmen", "YT": "Mayotte", 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 2b8442a6eff79..c7db8d1e400e7 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AM": "Arménia", "AX": "Alanda", @@ -49,7 +49,7 @@ "SM": "São Marinho", "SV": "Salvador", "SX": "São Martinho (Sint Maarten)", - "SZ": "Essuatíni", + "TF": "Territórios Austrais Franceses", "TJ": "Tajiquistão", "TK": "Toquelau", "TM": "Turquemenistão", @@ -58,6 +58,8 @@ "UZ": "Usbequistão", "VI": "Ilhas Virgens dos EUA", "VN": "Vietname", + "XA": "pseudoacentos", + "XB": "pseudobidirecional", "YE": "Iémen", "YT": "Maiote", "ZW": "Zimbabué" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/qu.json b/src/Symfony/Component/Intl/Resources/data/regions/qu.json index d0944b4d40fdc..932265ead6e2e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/qu.json @@ -1,22 +1,34 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { + "AC": "Islas Ascensión", "AD": "Andorra", + "AE": "Emiratos Árabes Unidos", "AF": "Afganistán", + "AG": "Antigua y Barbuda", + "AI": "Anguila", "AL": "Albania", "AM": "Armenia", "AO": "Angola", + "AQ": "Antártida", "AR": "Argentina", "AS": "Samoa Americana", "AT": "Austria", "AU": "Australia", + "AW": "Aruba", + "AX": "Islas Åland", "AZ": "Azerbaiyán", + "BA": "Bosnia y Herzegovina", + "BB": "Barbados", "BD": "Bangladesh", "BE": "Bélgica", + "BF": "Burkina Faso", "BG": "Bulgaria", "BH": "Baréin", "BI": "Burundi", "BJ": "Benín", + "BL": "San Bartolomé", + "BM": "Bermudas", "BN": "Brunéi", "BO": "Bolivia", "BQ": "Bonaire", @@ -25,43 +37,62 @@ "BT": "Bután", "BW": "Botsuana", "BY": "Belarús", + "BZ": "Belice", + "CA": "Canadá", "CC": "Islas Cocos", "CD": "Congo (RDC)", + "CF": "República Centroafricana", "CG": "Congo", "CH": "Suiza", "CI": "Côte d’Ivoire", + "CK": "Islas Cook", "CL": "Chile", "CM": "Camerún", "CN": "China", "CO": "Colombia", "CR": "Costa Rica", "CU": "Cuba", + "CV": "Cabo Verde", "CW": "Curazao", "CX": "Isla Christmas", "CY": "Chipre", + "CZ": "Chequia", "DE": "Alemania", + "DG": "Diego García", "DJ": "Yibuti", "DK": "Dinamarca", "DM": "Dominica", + "DO": "República Dominicana", "DZ": "Argelia", + "EA": "Ceuta y Melilla", "EC": "Ecuador", "EE": "Estonia", "EG": "Egipto", + "EH": "Sahara Occidental", "ER": "Eritrea", "ES": "España", "ET": "Etiopía", "FI": "Finlandia", "FJ": "Fiyi", + "FK": "Islas Malvinas", "FM": "Micronesia", + "FO": "Islas Feroe", "FR": "Francia", "GA": "Gabón", "GB": "Reino Unido", + "GD": "Granada", + "GE": "Georgia", + "GF": "Guayana Francesa", "GG": "Guernesey", "GH": "Ghana", + "GI": "Gibraltar", + "GL": "Groenlandia", "GM": "Gambia", "GN": "Guinea", + "GP": "Guadalupe", "GQ": "Guinea Ecuatorial", "GR": "Grecia", + "GS": "Georgia del Sur e Islas Sandwich del Sur", "GT": "Guatemala", "GU": "Guam", "GW": "Guinea-Bisáu", @@ -70,15 +101,22 @@ "HN": "Honduras", "HR": "Croacia", "HT": "Haití", + "HU": "Hungría", + "IC": "Islas Canarias", "ID": "Indonesia", + "IE": "Irlanda", "IL": "Israel", + "IM": "Isla de Man", "IN": "India", + "IO": "Territorio Británico del Océano Índico", "IQ": "Irak", "IR": "Irán", "IS": "Islandia", "IT": "Italia", "JE": "Jersey", + "JM": "Jamaica", "JO": "Jordania", + "JP": "Japón", "KE": "Kenia", "KG": "Kirguistán", "KH": "Camboya", @@ -88,9 +126,11 @@ "KP": "Corea del Norte", "KR": "Corea del Sur", "KW": "Kuwait", + "KY": "Islas Caimán", "KZ": "Kazajistán", "LA": "Laos", "LB": "Líbano", + "LC": "Santa Lucia", "LI": "Liechtenstein", "LK": "Sri Lanka", "LR": "Liberia", @@ -98,23 +138,29 @@ "LT": "Lituania", "LU": "Luxemburgo", "LV": "Letonia", + "LY": "Libia", "MA": "Marruecos", "MC": "Mónaco", "MD": "Moldova", + "ME": "Montenegro", "MF": "San Martín", "MG": "Madagascar", "MH": "Islas Marshall", "MK": "Macedonia del Norte", "ML": "Malí", "MM": "Myanmar", + "MN": "Mongolia", "MO": "Macao RAE", "MP": "Islas Marianas del Norte", + "MQ": "Martinica", "MR": "Mauritania", + "MS": "Montserrat", "MT": "Malta", "MU": "Mauricio", "MV": "Maldivas", "MW": "Malawi", "MX": "México", + "MY": "Malasia", "MZ": "Mozambique", "NA": "Namibia", "NC": "Nueva Caledonia", @@ -126,6 +172,8 @@ "NO": "Noruega", "NP": "Nepal", "NR": "Nauru", + "NU": "Niue", + "NZ": "Nueva Zelanda", "OM": "Omán", "PA": "Panamá", "PE": "Perú", @@ -142,15 +190,20 @@ "PW": "Palaos", "PY": "Paraguay", "QA": "Qatar", + "RE": "Reunión", + "RO": "Rumania", "RS": "Serbia", "RU": "Rusia", "RW": "Ruanda", "SA": "Arabia Saudí", + "SB": "Islas Salomón", "SC": "Seychelles", "SD": "Sudán", "SE": "Suecia", "SG": "Singapur", + "SH": "Santa Elena", "SI": "Eslovenia", + "SJ": "Svalbard y Jan Mayen", "SK": "Eslovaquia", "SL": "Sierra Leona", "SM": "San Marino", @@ -163,30 +216,41 @@ "SX": "Sint Maarten", "SY": "Siria", "SZ": "Suazilandia", + "TA": "Tristán de Acuña", + "TC": "Islas Turcas y Caicos", "TD": "Chad", "TF": "Territorios Australes Franceses", "TG": "Togo", "TH": "Tailandia", "TJ": "Tayikistán", + "TK": "Tokelau", "TL": "Timor-Leste", + "TM": "Turkmenistán", "TN": "Túnez", "TO": "Tonga", "TR": "Turquía", "TT": "Trinidad y Tobago", + "TV": "Tuvalu", + "TW": "Taiwán", "TZ": "Tanzania", + "UA": "Ucrania", "UG": "Uganda", "UM": "Islas menores alejadas de los EE.UU.", "US": "Estados Unidos", "UY": "Uruguay", "UZ": "Uzbekistán", "VA": "Santa Sede (Ciudad del Vaticano)", + "VC": "San Vicente y las Granadinas", "VE": "Venezuela", + "VG": "Islas Vírgenes Británicas", "VI": "EE.UU. Islas Vírgenes", "VN": "Vietnam", "VU": "Vanuatu", "WF": "Wallis y Futuna", "WS": "Samoa", + "XK": "Kosovo", "YE": "Yemen", + "YT": "Mayotte", "ZA": "Sudáfrica", "ZM": "Zambia", "ZW": "Zimbabue" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index 0c3b7ce15c12f..1d2089142db15 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "Names": { "AD": "Andorra", "AE": "Emirats Arabs Unids", @@ -140,7 +140,6 @@ "MF": "Saint Martin", "MG": "Madagascar", "MH": "Inslas da Marshall", - "MK": "Macedonia", "ML": "Mali", "MM": "Myanmar", "MN": "Mongolia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rn.json b/src/Symfony/Component/Intl/Resources/data/regions/rn.json index f047bc7dca5c6..693b8ef56b6c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andora", "AE": "Leta Zunze Ubumwe z’Abarabu", @@ -126,7 +126,6 @@ "MD": "Moludavi", "MG": "Madagasikari", "MH": "Izinga rya Marishari", - "MK": "Masedoniya", "ML": "Mali", "MM": "Birimaniya", "MN": "Mongoliya", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro.json b/src/Symfony/Component/Intl/Resources/data/regions/ro.json index f69a42be70d3c..bda5d0102e68e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Insula Ascension", "AD": "Andorra", @@ -211,7 +211,7 @@ "SO": "Somalia", "SR": "Suriname", "SS": "Sudanul de Sud", - "ST": "Sao Tome și Principe", + "ST": "São Tomé și Príncipe", "SV": "El Salvador", "SX": "Sint-Maarten", "SY": "Siria", 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 123aaf562e4bb..7a40176ce139f 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,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "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 24e6a957c8034..b4b35e5b59473 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 8abf12fb972e7..c753851080d34 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 36efa43ec04d9..1e806c45cdb2b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rw.json @@ -1,7 +1,7 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { - "MK": "Masedoniya y'Amajyaruguru", + "MK": "Masedoniya y’Amajyaruguru", "RW": "U Rwanda", "TO": "Tonga" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sd.json b/src/Symfony/Component/Intl/Resources/data/regions/sd.json index 41806b36830ee..cc2f434921385 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "طلوع ٻيٽ", "AD": "اندورا", @@ -146,7 +146,7 @@ "MF": "سينٽ مارٽن", "MG": "مداگيسڪر", "MH": "مارشل ڀيٽ", - "MK": "ميسي ڊونيا", + "MK": "شمالي مقدونيا", "ML": "مالي", "MM": "ميانمار (برما)", "MN": "منگوليا", @@ -195,7 +195,7 @@ "RS": "سربيا", "RU": "روس", "RW": "روانڊا", - "SA": "سعودی عرب", + "SA": "سعودي عرب", "SB": "سولومون ٻيٽَ", "SC": "شي شلز", "SD": "سوڊان", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se.json b/src/Symfony/Component/Intl/Resources/data/regions/se.json index e8addd17af85d..e9a198ab5e68e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/se.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -144,7 +144,6 @@ "MF": "Frankriikka Saint Martin", "MG": "Madagaskar", "MH": "Marshallsullot", - "MK": "Makedonia", "ML": "Mali", "MM": "Burma", "MN": "Mongolia", 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 aa23ba685032b..39ae86e4baab3 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,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 1cabb41a2f1f8..2f39313736a45 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "Andôro", "AE": "Arâbo Emirâti Ôko", @@ -126,7 +126,6 @@ "MD": "Moldavùii", "MG": "Madagaskära", "MH": "Âzûâ Märshâl", - "MK": "Maseduäni", "ML": "Malïi", "MM": "Myämâra", "MN": "Mongolïi", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh.json b/src/Symfony/Component/Intl/Resources/data/regions/sh.json index cce36ed5766b0..fa115c3f5fcad 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -248,8 +248,6 @@ "VU": "Vanuatu", "WF": "Valis i Futuna", "WS": "Samoa", - "XA": "XA", - "XB": "XB", "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 4a70f26762753..ad0d6cf230785 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,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "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 80d0f25202f9a..c4c4d093c0ea1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/si.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "ඇසෙන්ෂන් දිවයින", "AD": "ඇන්ඩෝරාව", @@ -40,7 +40,7 @@ "BZ": "බෙලීස්", "CA": "කැනඩාව", "CC": "කොකෝස් දූපත්", - "CD": "කොංගො - කින්ශාසා", + "CD": "කොංගෝව (ඩීආර්සී)", "CF": "මධ්‍යම අප්‍රිකානු ජනරජය", "CG": "කොංගො - බ්‍රසාවිල්", "CH": "ස්විස්ටර්ලන්තය", @@ -146,11 +146,11 @@ "MF": "ශාන්ත මාර්ටින්", "MG": "මැඩගස්කරය", "MH": "මාෂල් දූපත්", - "MK": "මැසිඩෝනියාව", + "MK": "උතුරු මැසිඩෝනියාව", "ML": "මාලි", "MM": "මියන්මාරය (බුරුමය)", "MN": "මොන්ගෝලියාව", - "MO": "මකාවු චීන විශේෂ පරිපාලන කලාපය", + "MO": "මකාවු එස්ඒආර්", "MP": "උතුරු මරියානා දූපත්", "MQ": "මර්ටිනික්", "MR": "මොරිටේනියාව", @@ -215,7 +215,7 @@ "SV": "එල් සැල්වදෝරය", "SX": "ශාන්ත මාර්ටෙන්", "SY": "සිරියාව", - "SZ": "ස්වාසිලන්තය", + "SZ": "එස්වාටිනි", "TA": "ට්‍රිස්ටන් ද කුන්හා", "TC": "ටර්ක්ස් සහ කයිකොස් දූපත්", "TD": "චැච්", @@ -248,6 +248,8 @@ "VU": "වනුවාටු", "WF": "වැලිස් සහ ෆුටුනා", "WS": "සැමෝවා", + "XA": "ව්‍යාජ-උච්චාරණ", + "XB": "ව්‍යාජ-බිඩි", "XK": "කොසෝවෝ", "YE": "යේමනය", "YT": "මයෝට්", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index 2e71739a3183c..bf15dd523dc19 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -215,7 +215,7 @@ "SV": "Salvádor", "SX": "Svätý Martin (hol.)", "SY": "Sýria", - "SZ": "Svazijsko", + "SZ": "Eswatini", "TA": "Tristan da Cunha", "TC": "Turks a Caicos", "TD": "Čad", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis a Futuna", "WS": "Samoa", + "XA": "falošná diakritika", + "XB": "obrátenie sprava doľava", "XK": "Kosovo", "YE": "Jemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index 0829b149131a8..08ef20d67fb6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -215,7 +215,7 @@ "SV": "Salvador", "SX": "Sint Maarten", "SY": "Sirija", - "SZ": "Svazi", + "SZ": "Esvatini", "TA": "Tristan da Cunha", "TC": "Otoki Turks in Caicos", "TD": "Čad", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sn.json b/src/Symfony/Component/Intl/Resources/data/regions/sn.json index 591cc5baa56f6..6d33400fc0cbc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "Names": { "AD": "Andora", "AE": "United Arab Emirates", @@ -126,7 +126,6 @@ "MD": "Moldova", "MG": "Madagascar", "MH": "Zvitsuwa zveMarshall", - "MK": "Macedonia", "ML": "Mali", "MM": "Myanmar", "MN": "Mongolia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index f283460fbb260..3a52f2200152b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/so.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Jasiiradda Asensiyoon", "AD": "Andora", @@ -49,7 +49,6 @@ "CL": "Jili", "CM": "Kaameruun", "CN": "Shiinaha", - "CO": "Kolombiya", "CR": "Kosta Riika", "CU": "Kuuba", "CV": "Jasiiradda Kayb Faarde", @@ -96,7 +95,6 @@ "GT": "Guwaatamaala", "GU": "Guaam", "GW": "Gini-Bisaaw", - "GY": "Guyana", "HK": "Hong Kong", "HN": "Honduras", "HR": "Korweeshiya", @@ -248,8 +246,6 @@ "VU": "Fanuaatu", "WF": "Walis & Futuna", "WS": "Samoowa", - "XA": "XA", - "XB": "XB", "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 03fc4cf70bd99..9452ce8601ec8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 7d86cb4497b7d..190fd3ee6638f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Острво Асенсион", "AD": "Андора", @@ -248,8 +248,6 @@ "VU": "Вануату", "WF": "Валис и Футуна", "WS": "Самоа", - "XA": "XA", - "XB": "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 1d0be9e46da1f..22669b87a8904 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 1d0be9e46da1f..22669b87a8904 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 28623155f223f..2a23d4af60d1d 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 9ac0d30cba9a7..6bc2bcd033053 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 cce36ed5766b0..fa115c3f5fcad 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -248,8 +248,6 @@ "VU": "Vanuatu", "WF": "Valis i Futuna", "WS": "Samoa", - "XA": "XA", - "XB": "XB", "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 4a70f26762753..ad0d6cf230785 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,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "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 a01dcfd68d388..adc4b94c9b5c0 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ef6136593f0b0..b5085614f252f 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 a01dcfd68d388..adc4b94c9b5c0 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 9ac0d30cba9a7..6bc2bcd033053 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "CG": "Конго", "CV": "Кабо Верде", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index e12f2f5795554..1a05336552fbe 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.90", + "Version": "36", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -44,7 +44,7 @@ "CF": "Centralafrikanska republiken", "CG": "Kongo-Brazzaville", "CH": "Schweiz", - "CI": "Elfenbenskusten", + "CI": "Côte d’Ivoire", "CK": "Cooköarna", "CL": "Chile", "CM": "Kamerun", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index 060a352b0805e..95da1d3d5cdb3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "Kisiwa cha Ascension", "AD": "Andorra", @@ -146,11 +146,11 @@ "MF": "St. Martin", "MG": "Madagaska", "MH": "Visiwa vya Marshall", - "MK": "Macedonia", + "MK": "Masedonia ya Kaskazini", "ML": "Mali", "MM": "Myanmar (Burma)", "MN": "Mongolia", - "MO": "Macau SAR China", + "MO": "Makau SAR China", "MP": "Visiwa vya Mariana vya Kaskazini", "MQ": "Martinique", "MR": "Moritania", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis na Futuna", "WS": "Samoa", + "XA": "Lafudhi Bandia", + "XB": "Lafudhi Bidi", "XK": "Kosovo", "YE": "Yemeni", "YT": "Mayotte", 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 0ed6ff51f47d9..ea65973ec9a12 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 84e099c23d3e3..16537deae22fa 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "Names": { "AF": "Afghanistani", "AI": "Anguila", @@ -11,6 +11,7 @@ "CC": "Visiwa vya Kokos (Keeling)", "CD": "Kongo - Kinshasa", "CI": "Ivorikosti", + "CV": "Kepuvede", "CY": "Saiprasi", "DK": "Denmaki", "EA": "Keuta na Melilla", @@ -35,7 +36,6 @@ "MC": "Monako", "MK": "Masedonia", "MM": "Myama (Burma)", - "MO": "Makau SAR China", "MQ": "Martiniki", "MS": "Montserati", "MV": "Maldivi", @@ -65,6 +65,8 @@ "VG": "Visiwa vya Virgin vya Uingereza", "VI": "Visiwa vya Virgin vya Marekani", "VN": "Vietnamu", + "XA": "Kiinitoni cha kigeni", + "XB": "Pseudo-Bidi", "YT": "Mayote" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index 38f5b29bfc8ae..ed2caeb6dac68 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "அஷன்ஷியன் தீவு", "AD": "அன்டோரா", @@ -19,7 +19,7 @@ "AX": "ஆலந்து தீவுகள்", "AZ": "அசர்பைஜான்", "BA": "போஸ்னியா & ஹெர்ஸகோவினா", - "BB": "பார்படோஸ்", + "BB": "பார்படாஸ்", "BD": "பங்களாதேஷ்", "BE": "பெல்ஜியம்", "BF": "புர்கினா ஃபாஸோ", @@ -99,7 +99,7 @@ "GY": "கயானா", "HK": "ஹாங்காங் எஸ்ஏஆர் சீனா", "HN": "ஹோண்டூராஸ்", - "HR": "குரேஷியா", + "HR": "குரோஷியா", "HT": "ஹைட்டி", "HU": "ஹங்கேரி", "IC": "கேனரி தீவுகள்", @@ -146,7 +146,7 @@ "MF": "செயின்ட் மார்ட்டீன்", "MG": "மடகாஸ்கர்", "MH": "மார்ஷல் தீவுகள்", - "MK": "மாசிடோனியா", + "MK": "வடக்கு மாசிடோனியா", "ML": "மாலி", "MM": "மியான்மார் (பர்மா)", "MN": "மங்கோலியா", @@ -215,7 +215,7 @@ "SV": "எல் சால்வடார்", "SX": "சின்ட் மார்டென்", "SY": "சிரியா", - "SZ": "ஸ்வாஸிலாந்து", + "SZ": "எஸ்வாட்டீனி", "TA": "டிரிஸ்டன் டா குன்ஹா", "TC": "டர்க்ஸ் & கைகோஸ் தீவுகள்", "TD": "சாட்", @@ -224,7 +224,7 @@ "TH": "தாய்லாந்து", "TJ": "தஜிகிஸ்தான்", "TK": "டோகேலோ", - "TL": "தைமூர்-லெஸ்தே", + "TL": "திமோர்-லெஸ்தே", "TM": "துர்க்மெனிஸ்தான்", "TN": "டுனிசியா", "TO": "டோங்கா", @@ -248,6 +248,8 @@ "VU": "வனுவாட்டு", "WF": "வாலிஸ் மற்றும் ஃபுடுனா", "WS": "சமோவா", + "XA": "போலி உச்சரிப்புகள்", + "XB": "போலி பீடி", "XK": "கொசோவோ", "YE": "ஏமன்", "YT": "மயோட்", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index 7a15974ce0440..f0f0c1ca2d0da 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/te.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "అసెన్షన్ దీవి", "AD": "ఆండోరా", @@ -97,7 +97,7 @@ "GU": "గ్వామ్", "GW": "గినియా-బిస్సావ్", "GY": "గయానా", - "HK": "హాంకాంగ్ ఎస్ఏఆర్", + "HK": "హాంకాంగ్ ఎస్ఏఆర్ చైనా", "HN": "హోండురాస్", "HR": "క్రొయేషియా", "HT": "హైటి", @@ -108,7 +108,7 @@ "IL": "ఇజ్రాయెల్", "IM": "ఐల్ ఆఫ్ మాన్", "IN": "భారతదేశం", - "IO": "బ్రిటీష్ హిందూ మహాసముద్ర ప్రాంతం", + "IO": "బ్రిటిష్ హిందూ మహాసముద్ర ప్రాంతం", "IQ": "ఇరాక్", "IR": "ఇరాన్", "IS": "ఐస్లాండ్", @@ -146,7 +146,7 @@ "MF": "సెయింట్ మార్టిన్", "MG": "మడగాస్కర్", "MH": "మార్షల్ దీవులు", - "MK": "మేసిడోనియా", + "MK": "ఉత్తర మాసిడోనియా", "ML": "మాలి", "MM": "మయన్మార్", "MN": "మంగోలియా", @@ -215,7 +215,7 @@ "SV": "ఎల్ సాల్వడోర్", "SX": "సింట్ మార్టెన్", "SY": "సిరియా", - "SZ": "స్వాజిల్యాండ్", + "SZ": "ఈస్వాటిని", "TA": "ట్రిస్టన్ డ కన్హా", "TC": "టర్క్స్ మరియు కైకోస్ దీవులు", "TD": "చాద్", @@ -248,6 +248,8 @@ "VU": "వనాటు", "WF": "వాల్లిస్ మరియు ఫుటునా", "WS": "సమోవా", + "XA": "సూడో యాక్సెంట్స్", + "XB": "సూడో-బిడి", "XK": "కొసోవో", "YE": "యెమెన్", "YT": "మాయొట్", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tg.json b/src/Symfony/Component/Intl/Resources/data/regions/tg.json index 9b2ea39a6f0e7..6708c680c08e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Асунсон", "AD": "Андорра", @@ -71,7 +71,7 @@ "FK": "Ҷазираҳои Фолкленд", "FM": "Штатҳои Федеративии Микронезия", "FO": "Ҷазираҳои Фарер", - "FR": "Франсия", + "FR": "Фаронса", "GA": "Габон", "GB": "Шоҳигарии Муттаҳида", "GD": "Гренада", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index 9e3acd99d5ad5..ee3a70c8d2528 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/th.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "เกาะแอสเซนชัน", "AD": "อันดอร์รา", @@ -248,6 +248,8 @@ "VU": "วานูอาตู", "WF": "วาลลิสและฟุตูนา", "WS": "ซามัว", + "XA": "สำเนียงไม่จริง", + "XB": "Bidi ไม่จริง", "XK": "โคโซโว", "YE": "เยเมน", "YT": "มายอต", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ti.json b/src/Symfony/Component/Intl/Resources/data/regions/ti.json index ba32713810b31..de9b17e118382 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 a043701098fe3..cc25aeb52fba5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Beýgeliş adasy", "AD": "Andorra", @@ -215,7 +215,7 @@ "SV": "Salwador", "SX": "Sint-Marten", "SY": "Siriýa", - "SZ": "Swazilend", + "SZ": "Eswatini", "TA": "Tristan-da-Kunýa", "TC": "Terks we Kaýkos adalary", "TD": "Çad", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index ca2ce9a01d57a..fa3b322976e22 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 9d776ccae7a40..be91f00c3d8ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/to.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AC": "Motu ʻAsenisini", "AD": "ʻAnitola", @@ -146,7 +146,7 @@ "MF": "Sā Mātini (fakafalanisē)", "MG": "Matakasika", "MH": "ʻOtumotu Māsolo", - "MK": "Masetōnia", + "MK": "Masetōnia fakatokelau", "ML": "Māli", "MM": "Mianimā (Pema)", "MN": "Mongokōlia", @@ -215,7 +215,7 @@ "SV": "ʻEle Salavatoa", "SX": "Sā Mātini (fakahōlani)", "SY": "Sīlia", - "SZ": "Suasilani", + "SZ": "ʻEsuatini", "TA": "Tulisitani ta Kunuha", "TC": "ʻOtumotu Tuki mo Kaikosi", "TD": "Sāti", @@ -224,7 +224,7 @@ "TH": "Tailani", "TJ": "Tasikitani", "TK": "Tokelau", - "TL": "Timoa hahake", + "TL": "Timoa fakahahake", "TM": "Tūkimenisitani", "TN": "Tunīsia", "TO": "Tonga", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "ʻUvea mo Futuna", "WS": "Haʻamoa", + "XA": "fasiʻalea loi", + "XB": "fua-ua loi", "XK": "Kōsovo", "YE": "Iemeni", "YT": "Maiote", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index d344e18b440b8..375488ce8f2cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "AC": "Ascension Adası", "AD": "Andorra", @@ -44,7 +44,7 @@ "CF": "Orta Afrika Cumhuriyeti", "CG": "Kongo - Brazavil", "CH": "İsviçre", - "CI": "Fildişi Sahili", + "CI": "Côte d’Ivoire", "CK": "Cook Adaları", "CL": "Şili", "CM": "Kamerun", @@ -190,7 +190,7 @@ "PW": "Palau", "PY": "Paraguay", "QA": "Katar", - "RE": "Réunion", + "RE": "Reunion", "RO": "Romanya", "RS": "Sırbistan", "RU": "Rusya", @@ -211,7 +211,7 @@ "SO": "Somali", "SR": "Surinam", "SS": "Güney Sudan", - "ST": "São Tomé ve Príncipe", + "ST": "Sao Tome ve Principe", "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Suriye", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis ve Futuna", "WS": "Samoa", + "XA": "Psödo Aksanlar", + "XB": "Psödo Bidi", "XK": "Kosova", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tt.json b/src/Symfony/Component/Intl/Resources/data/regions/tt.json index 2281d5309134a..24603c973683c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AD": "Андорра", "AE": "Берләшкән Гарәп Әмирлекләре", @@ -72,7 +72,7 @@ "FO": "Фарер утраулары", "FR": "Франция", "GA": "Габон", - "GB": "Бөекбритания", + "GB": "Берләшкән Корольлек", "GD": "Гренада", "GE": "Грузия", "GF": "Француз Гвианасы", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ug.json b/src/Symfony/Component/Intl/Resources/data/regions/ug.json index 5b0e45a3d8489..24ea86d4aa1bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 f345038cc2277..57f3a85b06d99 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 4742bcc033152..f1b9653b17d70 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "اسینشن آئلینڈ", "AD": "انڈورا", @@ -211,13 +211,13 @@ "SO": "صومالیہ", "SR": "سورینام", "SS": "جنوبی سوڈان", - "ST": "ساؤ ٹوم اور پرنسپے", + "ST": "ساؤ ٹومے اور پرنسپے", "SV": "ال سلواڈور", "SX": "سنٹ مارٹن", "SY": "شام", "SZ": "سواتنی", "TA": "ٹرسٹن ڈا کیونہا", - "TC": "ترکس اور کیکاؤس جزائر", + "TC": "ٹرکس اور کیکوس جزائر", "TD": "چاڈ", "TF": "فرانسیسی جنوبی خطے", "TG": "ٹوگو", @@ -236,7 +236,7 @@ "UA": "یوکرین", "UG": "یوگنڈا", "UM": "امریکہ سے باہر کے چھوٹے جزائز", - "US": "ریاستہائے متحدہ", + "US": "ریاست ہائے متحدہ امریکہ", "UY": "یوروگوئے", "UZ": "ازبکستان", "VA": "ویٹیکن سٹی", 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 8eea5abb7ae9e..accc0bed7a827 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,5 @@ { - "Version": "2.1.47.71", + "Version": "36", "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 fa9364d6a4201..1deb9aa369768 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Me’roj oroli", "AD": "Andorra", @@ -248,6 +248,8 @@ "VU": "Vanuatu", "WF": "Uollis va Futuna", "WS": "Samoa", + "XA": "Qalbaki urg‘u", + "XB": "Qalbaki Bidi", "XK": "Kosovo", "YE": "Yaman", "YT": "Mayotta", 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 6bc7de7e91449..9a33c9513c694 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 cb3188774fbd0..40a65e59d02b0 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 f1463068ac761..1091e31f42121 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "Đảo Ascension", "AD": "Andorra", @@ -81,7 +81,7 @@ "GA": "Gabon", "GB": "Vương quốc Anh", "GD": "Grenada", - "GE": "Gruzia", + "GE": "Georgia", "GF": "Guiana thuộc Pháp", "GG": "Guernsey", "GH": "Ghana", @@ -248,8 +248,8 @@ "VU": "Vanuatu", "WF": "Wallis và Futuna", "WS": "Samoa", - "XA": "XA", - "XB": "XB", + "XA": "Pseudo-Accents", + "XB": "Pseudo-Bidi", "XK": "Kosovo", "YE": "Yemen", "YT": "Mayotte", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/wo.json b/src/Symfony/Component/Intl/Resources/data/regions/wo.json index e56c869ba0d84..52518d48a2195 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AD": "Andoor", "AE": "Emira Arab Ini", @@ -40,7 +40,7 @@ "CC": "Duni Koko (Kilin)", "CF": "Repiblik Sàntar Afrik", "CH": "Siwis", - "CI": "Kodiwaar (Côte d’Ivoire)", + "CI": "Kodiwaar", "CK": "Duni Kuuk", "CL": "Sili", "CM": "Kamerun", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/xh.json b/src/Symfony/Component/Intl/Resources/data/regions/xh.json index 5b92b78e4c5cc..ca235a2963083 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/xh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/xh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 9ec11f2324b26..420936c25b921 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "AD": "אַנדארע", "AF": "אַפֿגהאַניסטאַן", @@ -115,7 +115,6 @@ "ME": "מאנטענעגרא", "MG": "מאַדאַגאַסקאַר", "MH": "מאַרשאַל אינזלען", - "MK": "מאַקעדאניע", "ML": "מאַלי", "MM": "מיאַנמאַר", "MN": "מאנגאליי", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo.json b/src/Symfony/Component/Intl/Resources/data/regions/yo.json index 16c06c5c75bc5..0c38f4eff6cfe 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AD": "Orílẹ́ède Ààndórà", "AE": "Orílẹ́ède Ẹmirate ti Awọn Arabu", @@ -58,6 +58,7 @@ "EC": "Orílẹ́ède Ekuádò", "EE": "Orílẹ́ède Esitonia", "EG": "Orílẹ́ède Égípítì", + "EH": "Ìwọ̀òòrùn Sàhárà", "ER": "Orílẹ́ède Eritira", "ES": "Orílẹ́ède Sipani", "ET": "Orílẹ́ède Etopia", @@ -126,7 +127,7 @@ "MD": "Orílẹ́ède Modofia", "MG": "Orílẹ́ède Madasika", "MH": "Orílẹ́ède Etikun Máṣali", - "MK": "Orílẹ́ède Masidonia", + "MK": "Àríwá Macedonia", "ML": "Orílẹ́ède Mali", "MM": "Orílẹ́ède Manamari", "MN": "Orílẹ́ède Mogolia", @@ -164,8 +165,8 @@ "PM": "Orílẹ́ède Pẹẹri ati mikuloni", "PN": "Orílẹ́ède Pikarini", "PR": "Orílẹ́ède Pọto Riko", - "PS": "Orílẹ́ède Iwọorun Pakisitian ati Gaṣa", - "PT": "Orílẹ́ède Pọtugi", + "PS": "Agbègbè Palẹsítíànù", + "PT": "Orílẹ́ède Pọ́túgà", "PW": "Orílẹ́ède Paalu", "PY": "Orílẹ́ède Paraguye", "QA": "Orílẹ́ède Kota", @@ -187,12 +188,14 @@ "SN": "Orílẹ́ède Sẹnẹga", "SO": "Orílẹ́ède Somalia", "SR": "Orílẹ́ède Surinami", + "SS": "Gúúsù Sudan", "ST": "Orílẹ́ède Sao tomi ati piriiṣipi", "SV": "Orílẹ́ède Ẹẹsáfádò", "SY": "Orílẹ́ède Siria", "SZ": "Orílẹ́ède Saṣiland", "TC": "Orílẹ́ède Tọọki ati Etikun Kakọsi", "TD": "Orílẹ́ède ṣààdì", + "TF": "Agbègbè Gúúsù Faranṣé", "TG": "Orílẹ́ède Togo", "TH": "Orílẹ́ède Tailandi", "TJ": "Orílẹ́ède Takisitani", @@ -205,7 +208,7 @@ "TT": "Orílẹ́ède Tirinida ati Tobaga", "TV": "Orílẹ́ède Tufalu", "TW": "Orílẹ́ède Taiwani", - "TZ": "Orílẹ́ède Tanṣania", + "TZ": "Orílẹ́ède Tàǹsáníà", "UA": "Orílẹ́ède Ukarini", "UG": "Orílẹ́ède Uganda", "US": "Orílẹ̀-èdè Amẹrikà", @@ -220,9 +223,10 @@ "VU": "Orílẹ́ède Faniatu", "WF": "Orílẹ́ède Wali ati futuna", "WS": "Orílẹ́ède Samọ", + "XK": "Kòsófò", "YE": "Orílẹ́ède yemeni", "YT": "Orílẹ́ède Mayote", - "ZA": "Orílẹ́ède Ariwa Afirika", + "ZA": "Gúúṣù Áfíríkà", "ZM": "Orílẹ́ède ṣamibia", "ZW": "Orílẹ́ède ṣimibabe" } 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 7d53b2a6a3170..e96d5b6b99a04 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,5 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { "AD": "Orílɛ́ède Ààndórà", "AE": "Orílɛ́ède Ɛmirate ti Awɔn Arabu", @@ -58,6 +58,7 @@ "EC": "Orílɛ́ède Ekuádò", "EE": "Orílɛ́ède Esitonia", "EG": "Orílɛ́ède Égípítì", + "EH": "Ìwɔ̀òòrùn Sàhárà", "ER": "Orílɛ́ède Eritira", "ES": "Orílɛ́ède Sipani", "ET": "Orílɛ́ède Etopia", @@ -126,7 +127,6 @@ "MD": "Orílɛ́ède Modofia", "MG": "Orílɛ́ède Madasika", "MH": "Orílɛ́ède Etikun Máshali", - "MK": "Orílɛ́ède Masidonia", "ML": "Orílɛ́ède Mali", "MM": "Orílɛ́ède Manamari", "MN": "Orílɛ́ède Mogolia", @@ -164,8 +164,8 @@ "PM": "Orílɛ́ède Pɛɛri ati mikuloni", "PN": "Orílɛ́ède Pikarini", "PR": "Orílɛ́ède Pɔto Riko", - "PS": "Orílɛ́ède Iwɔorun Pakisitian ati Gasha", - "PT": "Orílɛ́ède Pɔtugi", + "PS": "Agbègbè Palɛsítíànù", + "PT": "Orílɛ́ède Pɔ́túgà", "PW": "Orílɛ́ède Paalu", "PY": "Orílɛ́ède Paraguye", "QA": "Orílɛ́ède Kota", @@ -193,6 +193,7 @@ "SZ": "Orílɛ́ède Sashiland", "TC": "Orílɛ́ède Tɔɔki ati Etikun Kakɔsi", "TD": "Orílɛ́ède shààdì", + "TF": "Agbègbè Gúúsù Faranshé", "TG": "Orílɛ́ède Togo", "TH": "Orílɛ́ède Tailandi", "TJ": "Orílɛ́ède Takisitani", @@ -205,13 +206,12 @@ "TT": "Orílɛ́ède Tirinida ati Tobaga", "TV": "Orílɛ́ède Tufalu", "TW": "Orílɛ́ède Taiwani", - "TZ": "Orílɛ́ède Tanshania", + "TZ": "Orílɛ́ède Tàǹsáníà", "UA": "Orílɛ́ède Ukarini", "UG": "Orílɛ́ède Uganda", "US": "Orílɛ̀-èdè Amɛrikà", "UY": "Orílɛ́ède Nruguayi", "UZ": "Orílɛ́ède Nshibɛkisitani", - "VA": "Ìlú Vatican", "VC": "Orílɛ́ède Fisɛnnti ati Genadina", "VE": "Orílɛ́ède Fɛnɛshuɛla", "VG": "Orílɛ́ède Etíkun Fágínì ti ìlú Bírítísì", @@ -222,7 +222,7 @@ "WS": "Orílɛ́ède Samɔ", "YE": "Orílɛ́ède yemeni", "YT": "Orílɛ́ède Mayote", - "ZA": "Orílɛ́ède Ariwa Afirika", + "ZA": "Gúúshù Áfíríkà", "ZM": "Orílɛ́ède shamibia", "ZW": "Orílɛ́ède shimibabe" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh.json b/src/Symfony/Component/Intl/Resources/data/regions/zh.json index 14a28dc298c3f..f95de6b465795 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 932efa30b4d0c..29a38ea40f963 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 cfe3386b1951f..cdcf1e9a961ef 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "AC": "阿森松島", "AD": "安道爾", @@ -215,7 +215,7 @@ "SV": "薩爾瓦多", "SX": "荷屬聖馬丁", "SY": "敘利亞", - "SZ": "史瓦濟蘭", + "SZ": "史瓦帝尼", "TA": "特里斯坦達庫尼亞群島", "TC": "土克斯及開科斯群島", "TD": "查德", 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 932efa30b4d0c..29a38ea40f963 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 30568ffb1f852..04a8eaaca6f3b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "AC": "i-Ascension Island", "AD": "i-Andorra", @@ -146,7 +146,7 @@ "MF": "i-Saint Martin", "MG": "i-Madagascar", "MH": "i-Marshall Islands", - "MK": "i-Macedonia", + "MK": "i-North Macedonia", "ML": "iMali", "MM": "i-Myanmar (Burma)", "MN": "i-Mongolia", @@ -235,7 +235,7 @@ "TZ": "i-Tanzania", "UA": "i-Ukraine", "UG": "i-Uganda", - "UM": "i-U.S. Minor Outlying Islands", + "UM": "I-U.S. Outlying Islands", "US": "i-United States", "UY": "i-Uruguay", "UZ": "i-Uzbekistan", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index bde84048a464a..d5da500c22237 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/af.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "Arab": "Arabies", "Armn": "Armeens", @@ -13,7 +13,7 @@ "Grek": "Grieks", "Gujr": "Gudjarati", "Guru": "Gurmukhi", - "Hanb": "Hanb", + "Hanb": "Han met Bopomofo", "Hang": "Hangul", "Hani": "Han", "Hans": "Vereenvoudig", @@ -43,7 +43,7 @@ "Zsye": "Emoji", "Zsym": "Simbole", "Zxxx": "Ongeskrewe", - "Zyyy": "Algemeen", + "Zyyy": "Gemeenskaplik", "Zzzz": "Onbekende skryfstelsel" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/am.json b/src/Symfony/Component/Intl/Resources/data/scripts/am.json index c778b78c1b55c..c52d01c62cb8a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/am.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "ዓረብኛ", "Armn": "አርሜንያዊ", @@ -39,8 +39,7 @@ "Thaa": "ታና", "Thai": "ታይ", "Tibt": "ቲቤታን", - "Zmth": "Zmth", - "Zsye": "Zsye", + "Zsye": "ኢሞጂ", "Zsym": "ምልክቶች", "Zxxx": "ያልተጻፈ", "Zyyy": "የጋራ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json index 81806463f485b..f2784b0168205 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "العربية", "Armn": "الأرمينية", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/as.json b/src/Symfony/Component/Intl/Resources/data/scripts/as.json index a3cc5adae29c9..ac9d93d26763b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/as.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 59b16e0fdb3ec..8a25ab07a9b55 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/az.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 0bb3b64659946..aaba2983369f5 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 108b93c302c58..636beb414b893 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/be.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "арабскае", "Armn": "армянскае", @@ -31,7 +31,7 @@ "Latn": "лацініца", "Mlym": "малаялам", "Mong": "старамангольскае", - "Mymr": "м’янмарскае", + "Mymr": "бірманскае", "Orya": "орыя", "Sinh": "сінгальскае", "Taml": "тамільскае", @@ -43,7 +43,7 @@ "Zsye": "эмодзі", "Zsym": "сімвалы", "Zxxx": "беспісьменная", - "Zyyy": "звычайнае", + "Zyyy": "агульнае", "Zzzz": "невядомае пісьмо" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json index 643a27f6fc290..7cf4b603699f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "арабска", "Armi": "Арамейска", @@ -11,7 +11,7 @@ "Blis": "Блис символи", "Bopo": "бопомофо", "Brah": "Брахми", - "Brai": "Брайлова", + "Brai": "брайлова", "Bugi": "Бугинска", "Buhd": "Бухид", "Cakm": "Чакма", @@ -38,10 +38,10 @@ "Guru": "гурмукхи", "Hanb": "ханб", "Hang": "хангъл", - "Hani": "китайска", + "Hani": "хан", "Hano": "Хануну", "Hans": "опростена", - "Hant": "традиционен", + "Hant": "традиционна", "Hebr": "иврит", "Hira": "хирагана", "Hmng": "Пахау хмонг", @@ -117,8 +117,8 @@ "Xpeo": "Староперсийска", "Xsux": "Шумеро-акадски клинопис", "Yiii": "Йи", - "Zmth": "Математически символи", - "Zsye": "емотикони", + "Zmth": "математически символи", + "Zsye": "емоджи", "Zsym": "символи", "Zxxx": "без писменост", "Zyyy": "обща", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json index b61b4c9c1c436..592ecdc97f630 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 b19bca6cc02b3..64e0b06f94e8d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 0b7c006ecbbc3..7003bd95d79f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/br.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.86", + "Version": "36", "Names": { "Adlm": "adlam", "Arab": "arabek", @@ -8,14 +8,21 @@ "Avst": "avestek", "Bali": "balinek", "Bamu": "bamounek", + "Batk": "batak", "Beng": "bengali", "Bopo": "bopomofo", "Brai": "Braille", "Bugi": "bougiek", + "Cakm": "chakmaek", + "Cans": "silabennaoueg engenidik unvan Kanada", + "Cham": "cham", + "Cher": "cherokee", "Copt": "koptek", + "Cprt": "silabennaoueg kipriek", "Cyrl": "kirillek", "Cyrs": "kirillek henslavonek", "Deva": "devanagari", + "Dupl": "berrskriverezh Duployé", "Egyp": "hieroglifoù egiptek", "Ethi": "etiopek", "Geor": "jorjianek", @@ -26,7 +33,7 @@ "Guru": "gurmukhi", "Hanb": "han gant bopomofo", "Hang": "hangeul", - "Hani": "han", + "Hani": "sinalunioù (han)", "Hans": "eeunaet", "Hant": "hengounel", "Hebr": "hebraek", @@ -55,6 +62,7 @@ "Narb": "henarabek an Norzh", "Ogam": "ogam", "Orya": "oriya", + "Phnx": "fenikianek", "Runr": "runek", "Samr": "samaritek", "Sarb": "henarabek ar Su", @@ -74,6 +82,7 @@ "Vaii": "vai", "Xpeo": "persek kozh", "Xsux": "gennheñvel", + "Zinh": "hêrezh", "Zmth": "notadur jedoniel", "Zsye": "fromlunioù", "Zsym": "arouezioù", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index ff2390d4d4cd9..c0b66b7a32e09 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 8ea6ba2c4d7de..54577f293d3c9 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", @@ -24,7 +24,7 @@ "Cprt": "кипарско писмо", "Cyrl": "ћирилица", "Cyrs": "Старословенска црквена ћирилица", - "Deva": "Деванагари", + "Deva": "деванагари", "Dsrt": "Дезерет", "Egyd": "египатско народно писмо", "Egyh": "египатско хијератско писмо", @@ -35,32 +35,33 @@ "Glag": "глагољица", "Goth": "Готика", "Grek": "грчко писмо", - "Gujr": "гујарати писмо", + "Gujr": "гуџарати", "Guru": "гурмуки писмо", + "Hanb": "хан с бопомофо писмом", "Hang": "хангул", "Hani": "хан", "Hano": "хануно", - "Hans": "поједностављено кинеско писмо", - "Hant": "традиционално кинеско писмо", + "Hans": "поједностављени", + "Hant": "традиционални", "Hebr": "хебрејско писмо", - "Hira": "Хирагана", + "Hira": "хирагана", "Hmng": "пахав хмонг писмо", - "Hrkt": "Катакана или Хирагана", + "Hrkt": "јапанско слоговно писмо", "Hung": "старомађарско писмо", "Inds": "индушко писмо", "Ital": "стари италик", - "Jamo": "Џамо", + "Jamo": "џамо", "Java": "јаванско писмо", "Jpan": "јапанско писмо", "Kali": "кајах-ли писмо", - "Kana": "Катакана", + "Kana": "катакана", "Khar": "карошти писмо", "Khmr": "кмерско писмо", - "Knda": "каннада писмо", + "Knda": "канада писмо", "Kore": "корејско писмо", "Kthi": "каити", "Lana": "ланна писмо", - "Laoo": "лаошко писмо", + "Laoo": "лаоско писмо", "Latf": "латиница (фрактур варијанта)", "Latg": "галска латиница", "Latn": "латиница", @@ -83,7 +84,7 @@ "Ogam": "огамско писмо", "Olck": "ол чики писмо", "Orkh": "орконско писмо", - "Orya": "оријанско писмо", + "Orya": "одија писмо", "Osma": "осмањанско писмо", "Perm": "старо пермикско писмо", "Phag": "пагс-па писмо", @@ -101,7 +102,7 @@ "Saur": "саураштра писмо", "Sgnw": "знаковно писмо", "Shaw": "шавијанско писмо", - "Sinh": "синхала писмо", + "Sinh": "синхалско писмо", "Sylo": "силоти нагри писмо", "Syrc": "сиријско писмо", "Syre": "сиријско естрангело писмо", @@ -116,7 +117,7 @@ "Teng": "тенгвар писмо", "Tfng": "тифинаг писмо", "Tglg": "Тагалог", - "Thaa": "тхана писмо", + "Thaa": "тана писмо", "Thai": "тајландско писмо", "Tibt": "тибетанско писмо", "Ugar": "угаритско писмо", @@ -127,6 +128,7 @@ "Yiii": "ји писмо", "Zinh": "наследно писмо", "Zmth": "математичка нотација", + "Zsye": "емоџи", "Zsym": "симболи", "Zxxx": "неписани језик", "Zyyy": "заједничко писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json index 01f28f5c9b140..6013143cd6c5e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Adlm": "adlam", "Afak": "afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json index 4fb781a427c15..59494d3d03add 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 a13ee3d097945..d428af307148b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "Afak": "afaka", "Aghb": "kavkazskoalbánské", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json index d94566c0fcbfe..396399f1fcbe6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "Arabaidd", "Armn": "Armenaidd", @@ -32,7 +32,6 @@ "Mlym": "Malayalamaidd", "Mong": "Mongolaidd", "Mymr": "Myanmaraidd", - "Ogam": "Ogam", "Orya": "Orïaidd", "Sinh": "Sinhanaidd", "Taml": "Tamilaidd", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/da.json b/src/Symfony/Component/Intl/Resources/data/scripts/da.json index 5811a8a2377a7..589131513fd2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/da.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Afak": "afaka", "Arab": "arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/de.json b/src/Symfony/Component/Intl/Resources/data/scripts/de.json index 4b0f1c882ef32..fef5cb176acfa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/de.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/de.json @@ -1,10 +1,9 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "Afaka", "Aghb": "Kaukasisch-Albanisch", "Arab": "Arabisch", - "Armi": "Armi", "Armn": "Armenisch", "Avst": "Avestisch", "Bali": "Balinesisch", @@ -43,7 +42,6 @@ "Grek": "Griechisch", "Gujr": "Gujarati", "Guru": "Gurmukhi", - "Hanb": "Hanb", "Hang": "Hangul", "Hani": "Chinesisch", "Hano": "Hanunoo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json index 6b65fd069db07..29da6351e7310 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 ab5430bcb8812..a10a0ff4624e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 f65ffa75c359b..bcb369487a3bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/el.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "Αραβικό", "Armi": "Αυτοκρατορικό Αραμαϊκό", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en.json b/src/Symfony/Component/Intl/Resources/data/scripts/en.json index 755e2fa6c6a79..872d4cdabc102 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.65", + "Version": "36", "Names": { "Adlm": "Adlam", "Afak": "Afaka", @@ -134,6 +134,7 @@ "Phnx": "Phoenician", "Plrd": "Pollard Phonetic", "Prti": "Inscriptional Parthian", + "Qaag": "Zawgyi", "Rjng": "Rejang", "Rohg": "Hanifi Rohingya", "Roro": "Rongorongo", 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 995d4e2c7577b..87a1540139e9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json @@ -1,7 +1,6 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { - "Beng": "Bengali", - "Thai": "Thai" + "Beng": "Bengali" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json deleted file mode 100644 index 3b8b43a034a35..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.47.86", - "Names": { - "Thai": "Thai" - } -} 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 051e491b9d23f..87828a9b75775 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,5 @@ { - "Version": "2.1.49.14", + "Version": "36", "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 15a5ac34032ea..d4133d366d789 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "árabe", "Armn": "armenio", 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 26fe52ca6c44a..9ec9633f94e5e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "Hanb": "han con bopomofo", "Hrkt": "katakana o hiragana", 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 e964d56261284..eeca1aab22d9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json @@ -1,8 +1,7 @@ { - "Version": "2.1.47.96", + "Version": "36", "Names": { "Hanb": "hanb", - "Mlym": "malayálam", - "Telu": "telegu" + "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 9fa205568920a..e846c49502422 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json @@ -1,7 +1,8 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "Hanb": "hanb", - "Mlym": "malayálam" + "Mlym": "malayálam", + "Telu": "telegu" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index 1560eae28c5c6..737eb50ec7c15 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/et.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 7945bcc2c2a07..2255372497cd8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 4e27c73464b70..b74ae17e1a85b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Aghb": "آلبانیایی قفقازی", "Arab": "عربی", @@ -35,7 +35,7 @@ "Grek": "یونانی", "Gujr": "گجراتی", "Guru": "گورومخی", - "Hanb": "هانبی", + "Hanb": "هان با بوموپوفو", "Hang": "هانگول", "Hani": "هان", "Hano": "هانونویی", 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 73e1c846152f8..a2d1d8623f999 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "Mong": "مغلی" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json index 43413e93429e9..982efcd164bfa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Adlm": "fulanin adlam-aakkosto", "Afak": "afaka", @@ -32,12 +32,14 @@ "Cyrl": "kyrillinen", "Cyrs": "kyrillinen muinaiskirkkoslaavimuunnelma", "Deva": "devanagari", + "Dogr": "dogri", "Dsrt": "deseret", "Dupl": "Duployén pikakirjoitus", "Egyd": "egyptiläinen demoottinen", "Egyh": "egyptiläinen hieraattinen", "Egyp": "egyptiläiset hieroglyfit", "Elba": "elbasanilainen", + "Elym": "elymealainen", "Ethi": "etiopialainen", "Geok": "muinaisgeorgialainen", "Geor": "georgialainen", @@ -90,10 +92,12 @@ "Lyci": "lyykialainen", "Lydi": "lyydialainen", "Mahj": "mahajanilainen", + "Maka": "makassar", "Mand": "mandealainen", "Mani": "manikealainen", "Marc": "tiibetiläinen marchan-kirjoitus", "Maya": "maya-hieroglyfit", + "Medf": "medefaidrin", "Mend": "mende", "Merc": "meroiittinen kursiivikirjoitus", "Mero": "meroiittinen", @@ -105,6 +109,7 @@ "Mtei": "meitei", "Mult": "multanilainen", "Mymr": "burmalainen", + "Nand": "nandinagari", "Narb": "muinaispohjoisarabialainen", "Nbat": "nabatealainen", "Newa": "newarin newa-tavukirjoitus", @@ -127,7 +132,9 @@ "Phnx": "foinikialainen", "Plrd": "Pollardin foneettinen", "Prti": "piirtokirjoitusparthialainen", + "Qaag": "burmalainen zawgyi-toteutus", "Rjng": "rejang", + "Rohg": "rohinjalainen hanifi", "Roro": "rongorongo", "Runr": "riimukirjoitus", "Samr": "samarianaramealainen", @@ -140,6 +147,8 @@ "Sidd": "siddham-tavukirjoitus", "Sind": "khudabadi", "Sinh": "sinhalilainen", + "Sogd": "sogdialainen", + "Sogo": "muinaissogdialainen", "Sora": "sorang sompeng", "Soyo": "soyombo-kirjaimisto", "Sund": "sundalainen", @@ -167,6 +176,7 @@ "Vaii": "vailainen", "Visp": "näkyvä puhe", "Wara": "varang kshiti", + "Wcho": "wancholainen", "Wole": "woleai", "Xpeo": "muinaispersialainen", "Xsux": "sumerilais-akkadilainen nuolenpääkirjoitus", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json index 8eaf8add3b00f..5083dc633aedc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.9", + "Version": "36", "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 6b85d6c4073f4..c80636cbe9acf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "arabe", "Armi": "araméen impérial", 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 47b9ac763ca5e..0ff9b2841ea7f 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "Names": { "Deva": "devanagari", "Gujr": "gujarati", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json index a3a4d25ecb1ad..13fd5ee70d000 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 1c6ff1d890cd5..f8ce288b72c99 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "Adlm", "Aghb": "Albánach Cugasach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index b843fced0617a..9fd720e5f92aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "Adlam", "Afak": "Afaka", @@ -37,6 +37,7 @@ "Dupl": "Gearr-sgrìobhadh Duployé", "Egyp": "Sealbh-sgrìobhadh Èipheiteach", "Elba": "Elbasan", + "Elym": "Elymaidheach", "Ethi": "Ge’ez", "Geor": "Cairtbheilis", "Glag": "Glagoliticeach", @@ -58,6 +59,7 @@ "Hira": "Hiragana", "Hluw": "Dealbh-sgrìobhadh Anatolach", "Hmng": "Pahawh Hmong", + "Hmnp": "Nyiakeng Puachue Hmong", "Hrkt": "Katakana no Hiragana", "Hung": "Seann-Ungarais", "Ital": "Seann-Eadailtis", @@ -104,6 +106,7 @@ "Mtei": "Meitei Mayek", "Mult": "Multani", "Mymr": "Miànmar", + "Nand": "Nandinagari", "Narb": "Seann-Arabach Thuathach", "Nbat": "Nabataean", "Newa": "Newa", @@ -125,6 +128,7 @@ "Phnx": "Pheniceach", "Plrd": "Miao Phollard", "Prti": "Partais snaidh-sgrìobhte", + "Qaag": "Qaag", "Rjng": "Rejang", "Rohg": "Hanifi Rohingya", "Roro": "Rongorongo", @@ -166,6 +170,7 @@ "Ugar": "Ugariticeach", "Vaii": "Vai", "Wara": "Varang Kshiti", + "Wcho": "Wancho", "Wole": "Woleai", "Xpeo": "Seann-Pheirsis", "Xsux": "Gèinn-sgrìobhadh Sumer is Akkad", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index 56a1212515c95..12c61a305765e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "árabe", "Armn": "armenio", @@ -12,9 +12,9 @@ "Ethi": "etíope", "Geor": "xeorxiano", "Grek": "grego", - "Gujr": "guxaratí", + "Gujr": "guxarati", "Guru": "gurmukhi", - "Hanb": "hanb", + "Hanb": "han con bopomofo", "Hang": "hangul", "Hani": "han", "Hans": "simplificado", @@ -26,14 +26,14 @@ "Jpan": "xaponés", "Kana": "katakana", "Khmr": "khmer", - "Knda": "canarés", + "Knda": "kannará", "Kore": "coreano", "Laoo": "laosiano", "Latn": "latino", "Mlym": "malabar", "Mong": "mongol", "Mymr": "birmano", - "Orya": "oriá", + "Orya": "odiá", "Sinh": "cingalés", "Taml": "támil", "Telu": "telugu", @@ -45,6 +45,6 @@ "Zsym": "símbolos", "Zxxx": "non escrito", "Zyyy": "común", - "Zzzz": "alfabeto descoñecido" + "Zzzz": "sistema de escritura descoñecido" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json index 5051adbb41388..e5b97e608d863 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 666675d856d0d..a96c600157c42 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ha.json @@ -1,11 +1,23 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { "Arab": "Larabci", - "Cyrl": "Cyrl", + "Armn": "Armeniyawa", + "Beng": "Bangla", + "Bopo": "Bopomofo", + "Cyrl": "Cyrillic", + "Deva": "Devanagari", + "Ethi": "Ethiopic", + "Geor": "Georgian", + "Grek": "Girka", + "Gujr": "Gujarati", + "Guru": "Gurmukhi", + "Hanb": "Han with Bopomofo", "Hans": "Sauƙaƙaƙƙen", "Hant": "Na gargajiya", + "Hebr": "Ibrananci", "Latn": "Latin", + "Zsym": "Alamomi", "Zxxx": "Ba rubutacce ba", "Zzzz": "Rubutun da ba sani ba" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ha_NE.json b/src/Symfony/Component/Intl/Resources/data/scripts/ha_NE.json deleted file mode 100644 index 75d91bf35de0e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ha_NE.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Version": "2.1.48.77", - "Names": { - "Arab": "Larabci", - "Cyrl": "Cyrl", - "Hans": "Sauƙaƙaƙƙen", - "Hant": "Na gargajiya", - "Latn": "Latin", - "Zxxx": "Ba rubutacce ba", - "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 d9588c42164d9..8d8829d053059 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/he.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "ערבי", "Armn": "ארמני", @@ -21,7 +21,7 @@ "Grek": "יווני", "Gujr": "גוג׳רטי", "Guru": "גורמוקי", - "Hanb": "האנב", + "Hanb": "האן עם בופומופו", "Hang": "האנגול", "Hani": "האן", "Hans": "פשוט", @@ -39,14 +39,14 @@ "Khmr": "חמרי", "Knda": "קאנאדה", "Kore": "קוריאני", - "Laoo": "לאית", + "Laoo": "לאי", "Latg": "לטיני גאלי", "Latn": "לטיני", "Maya": "מאיה", "Mlym": "מליאלאם", "Mong": "מונגולי", "Mymr": "מיאנמר", - "Orya": "אורייה", + "Orya": "אודייה", "Phnx": "פיניקי", "Runr": "רוני", "Sinh": "סינהלה", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json index 7b4eb5cce13b6..1348715681185 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "अरबी", "Armi": "इम्पिरियल आर्मेनिक", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json index 2f1bce4f6cd07..21e4d1408c504 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "afaka pismo", "Arab": "arapsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json index 3c873c39abc1a..c21df0b6ace86 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "Arab", "Armi": "Birodalmi arámi", @@ -101,7 +101,10 @@ "Saur": "Szaurastra", "Sgnw": "Jelírás", "Shaw": "Shaw ábécé", + "Sidd": "Sziddham", "Sinh": "Szingaléz", + "Sogd": "Szogd", + "Sogo": "Ószogd", "Sund": "Szundanéz", "Sylo": "Sylheti nagári", "Syrc": "Szíriai", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json index 3744b8f915dbb..c6f719a98bd5d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 c3d9401a7d3f1..f39c95c2ee981 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ia.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ia.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.36", + "Version": "36", "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 25b2218083a08..8300c12bdfb5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/id.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/id.json @@ -1,8 +1,9 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", + "Arab": "Arab", "Armi": "Aram Imperial", "Armn": "Armenia", "Avst": "Avesta", @@ -54,6 +55,7 @@ "Hung": "Hungaria Kuno", "Inds": "Indus", "Ital": "Italia Lama", + "Jamo": "Jamo", "Java": "Jawa", "Jpan": "Jepang", "Jurc": "Jurchen", @@ -142,6 +144,7 @@ "Tfng": "Tifinagh", "Tglg": "Tagalog", "Thaa": "Thaana", + "Thai": "Thai", "Tibt": "Tibet", "Tirh": "Tirhuta", "Ugar": "Ugaritik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ig.json b/src/Symfony/Component/Intl/Resources/data/scripts/ig.json index cf80432b18c05..efe4ac49a3317 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ig.json @@ -1,10 +1,12 @@ { - "Version": "2.1.48.45", + "Version": "36", "Names": { "Arab": "Mkpụrụ Okwu Arabic", "Cyrl": "Mkpụrụ Okwu Cyrillic", "Hans": "Nke dị mfe", "Hant": "Izugbe", + "Jpan": "Japanese", + "Kore": "Korea", "Latn": "Latin", "Zxxx": "Edeghị ede", "Zzzz": "Mkpụrụ okwu amaghị" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json index a1e84b1ddbf9a..ffde6d44a542c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 25b2218083a08..8300c12bdfb5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/in.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/in.json @@ -1,8 +1,9 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", + "Arab": "Arab", "Armi": "Aram Imperial", "Armn": "Armenia", "Avst": "Avesta", @@ -54,6 +55,7 @@ "Hung": "Hungaria Kuno", "Inds": "Indus", "Ital": "Italia Lama", + "Jamo": "Jamo", "Java": "Jawa", "Jpan": "Jepang", "Jurc": "Jurchen", @@ -142,6 +144,7 @@ "Tfng": "Tifinagh", "Tglg": "Tagalog", "Thaa": "Thaana", + "Thai": "Thai", "Tibt": "Tibet", "Tirh": "Tirhuta", "Ugar": "Ugaritik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/is.json b/src/Symfony/Component/Intl/Resources/data/scripts/is.json index 16f9f4ba0f40e..a21b2240eed70 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/is.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 bddea756d2a4c..906642057a876 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/it.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "afaka", "Arab": "arabo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json index d9588c42164d9..8d8829d053059 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "ערבי", "Armn": "ארמני", @@ -21,7 +21,7 @@ "Grek": "יווני", "Gujr": "גוג׳רטי", "Guru": "גורמוקי", - "Hanb": "האנב", + "Hanb": "האן עם בופומופו", "Hang": "האנגול", "Hani": "האן", "Hans": "פשוט", @@ -39,14 +39,14 @@ "Khmr": "חמרי", "Knda": "קאנאדה", "Kore": "קוריאני", - "Laoo": "לאית", + "Laoo": "לאי", "Latg": "לטיני גאלי", "Latn": "לטיני", "Maya": "מאיה", "Mlym": "מליאלאם", "Mong": "מונגולי", "Mymr": "מיאנמר", - "Orya": "אורייה", + "Orya": "אודייה", "Phnx": "פיניקי", "Runr": "רוני", "Sinh": "סינהלה", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json index 47caf5537d552..db3409cf46297 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Afak": "アファカ文字", "Aghb": "カフカス・アルバニア文字", @@ -106,7 +106,7 @@ "Ogam": "オガム文字", "Olck": "オルチキ文字", "Orkh": "オルホン文字", - "Orya": "オリヤー文字", + "Orya": "オディア文字", "Osma": "オスマニア文字", "Palm": "パルミラ文字", "Pauc": "パウ・チン・ハウ文字", @@ -142,7 +142,7 @@ "Takr": "タークリー文字", "Tale": "タイ・レ文字", "Talu": "新タイ・ルー文字", - "Taml": "タミール文字", + "Taml": "タミル文字", "Tang": "西夏文字", "Tavt": "タイ・ヴェト文字", "Telu": "テルグ文字", @@ -167,6 +167,6 @@ "Zsym": "記号文字", "Zxxx": "非表記", "Zyyy": "共通文字", - "Zzzz": "未定義文字" + "Zzzz": "不明な文字" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/jv.json b/src/Symfony/Component/Intl/Resources/data/scripts/jv.json index 3054e1fc85b46..301612ea6fe12 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/jv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/jv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.44", + "Version": "36", "Names": { "Arab": "Arab", "Armn": "Armenia", @@ -35,6 +35,7 @@ "Sinh": "Sinhala", "Taml": "Tamil", "Thaa": "Thaana", + "Thai": "Thailand", "Tibt": "Tibetan", "Zmth": "Notasi Matematika", "Zsye": "Emoji", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json index f8ef03ed372b6..3b0f32b778a86 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 889561db8b5f1..9bfa78f2c8e98 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 b1e73455f4136..15ac7c5e5a9b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/km.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 3d789d4e5ab9e..115a47dac7dfb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "Arab": "ಅರೇಬಿಕ್", "Armi": "ಇಂಪೀರಿಯಲ್ ಅರೆಮಾಯಿಕ್", @@ -37,7 +37,7 @@ "Grek": "ಗ್ರೀಕ್", "Gujr": "ಗುಜರಾತಿ", "Guru": "ಗುರ್ಮುಖಿ", - "Hanb": "ಹಂಬ್", + "Hanb": "ಬೋಪೋಮೊಫೋ ಜೊತೆಗೆ ಹಾನ್", "Hang": "ಹ್ಯಾಂಗುಲ್", "Hani": "ಹಾನ್", "Hano": "ಹನೂನೂ", @@ -84,7 +84,7 @@ "Ogam": "ಓಘಮ್", "Olck": "ಓಲ್ ಚಿಕಿ", "Orkh": "ಓರ್ಖೋನ್", - "Orya": "ಒರಿಯಾ", + "Orya": "ಒಡಿಯಾ", "Osma": "ಓಸ್ಮಾನ್ಯಾ", "Perm": "ಪ್ರಾಚೀನ ಪೆರ್ಮಿಕ್", "Phag": "ಫಾಗ್ಸ್-ಪಾ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json index f1906c30b591f..62627719404a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Afak": "아파카 문자", "Aghb": "코카시안 알바니아 문자", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json index d4a7771936ffb..4543179a91155 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "Names": { "Arab": "اَربی", "Armn": "اَرمانیَن", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ku.json b/src/Symfony/Component/Intl/Resources/data/scripts/ku.json index d9ac68ca5bbf9..51fde5ae06993 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ku.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ku.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 15e2d0a1db9b8..6a9ed5bea5ab2 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 17f21f97011d8..e3932213874fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "Arabesch", "Armi": "Armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json index f075edb2d778b..bbcef0339db76 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 c1ad0b4b22c8f..c3407b0e00a48 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "Afaka", "Aghb": "Kaukazo Albanijos", @@ -92,6 +92,7 @@ "Merc": "Merojitų rankraštinis", "Mero": "meroitik", "Mlym": "malajalių", + "Modi": "Modi", "Mong": "mongolų", "Moon": "mūn", "Mroo": "Mro", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json index c16ea617319e7..4c0f5127f8700 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.43", + "Version": "36", "Names": { "Arab": "arābu", "Armi": "aramiešu", @@ -13,7 +13,7 @@ "Copt": "koptu", "Cyrl": "kirilica", "Cyrs": "senslāvu", - "Deva": "devānagāri", + "Deva": "dēvanāgari", "Egyd": "demotiskais raksts", "Egyh": "hierātiskais raksts", "Egyp": "ēģiptiešu hieroglifi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json index 621210c004cfc..76194e33efec9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Scripts": [ "Adlm", "Afak", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mi.json b/src/Symfony/Component/Intl/Resources/data/scripts/mi.json index a217f23be66d2..9a5d870d9666d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 ee41c26329fd1..067276623de79 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.27", + "Version": "36", "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 ef121c3928883..9b780cfc477ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 fda0a6429e187..6506c035bebb0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 1cfe695a39a06..d306b2359e204 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "arabă", "Armn": "armeană", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index 0ea84d0a0e2fb..f2f166bcb5ad7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 9131ab6c291c0..c9f3a1605e0f3 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json @@ -1,44 +1,164 @@ { - "Version": "2.1.49.2", + "Version": "36", "Names": { + "Adlm": "Adlam", + "Aghb": "Kaukasia Albania", "Arab": "Arab", + "Armi": "Aramia Imperial", "Armn": "Armenia", + "Avst": "Avestan", + "Bali": "Bali", + "Bamu": "Bamu", + "Bass": "Bassa Vah", + "Batk": "Batak", "Beng": "Benggala", + "Bhks": "Bhaisuki", "Bopo": "Bopomofo", + "Brah": "Brahmi", "Brai": "Braille", + "Bugi": "Bugis", + "Buhd": "Buhid", + "Cakm": "Chakma", + "Cans": "Cans", + "Cari": "Carian", + "Cham": "Cham", + "Cher": "Cherokee", + "Copt": "Coptic", + "Cprt": "Cypriot", "Cyrl": "Cyril", "Deva": "Devanagari", + "Dogr": "Dogra", + "Dsrt": "Deseret", + "Dupl": "Trengkas Duployan", + "Egyp": "Hiroglif Mesir", + "Elba": "Elbasan", + "Elym": "Elymaic", "Ethi": "Ethiopia", "Geor": "Georgia", + "Glag": "Glagolitik", + "Gong": "Gunjala Gondi", + "Gonm": "Masaram Gonti", + "Goth": "Gothic", + "Gran": "Grantha", "Grek": "Greek", "Gujr": "Gujarat", "Guru": "Gurmukhi", "Hanb": "Han dengan Bopomofo", "Hang": "Hangul", "Hani": "Han", + "Hano": "Hanunoo", "Hans": "Ringkas", "Hant": "Tradisional", + "Hatr": "Hatran", "Hebr": "Ibrani", "Hira": "Hiragana", + "Hluw": "Hiroglif Anatoli", + "Hmng": "Pahawh Hmong", + "Hmnp": "Nyiakeng Puachue Hmong", "Hrkt": "Ejaan sukuan Jepun", + "Hung": "Hungary Lama", + "Ital": "Italik Lama", "Jamo": "Jamo", + "Java": "Jawa", "Jpan": "Jepun", + "Kali": "Kayah Li", "Kana": "Katakana", + "Khar": "Kharoshthi", "Khmr": "Khmer", + "Khoj": "Khojki", "Knda": "Kannada", "Kore": "Korea", + "Kthi": "Kaithi", + "Lana": "Lanna", "Laoo": "Lao", "Latn": "Latin", + "Lepc": "Lepcha", + "Limb": "Limbu", + "Lina": "Linear A", + "Linb": "Linear B", + "Lisu": "Fraser", + "Lyci": "Lycia", + "Lydi": "Lydia", + "Mahj": "Mahajani", + "Maka": "Makasar", + "Mand": "Mandaean", + "Mani": "Manichaean", + "Marc": "Marchen", + "Medf": "Medefaidrin", + "Mend": "Mende", + "Merc": "Kursif Meroitic", + "Mero": "Meroitic", "Mlym": "Malayalam", + "Modi": "Modi", "Mong": "Mongolia", + "Mroo": "Mro", + "Mtei": "Meitei Mayek", + "Mult": "Multani", "Mymr": "Myammar", + "Nand": "Nandinagari", + "Narb": "Arab Utara Lama", + "Nbat": "Nabataean", + "Newa": "Newa", + "Nkoo": "N’ko", + "Nshu": "Nushu", + "Ogam": "Ogham", + "Olck": "Ol Chiki", + "Orkh": "Orkhon", "Orya": "Oriya", + "Osge": "Osage", + "Osma": "Osmanya", + "Palm": "Palmyrene", + "Pauc": "Pau Cin Hau", + "Perm": "Permic Lama", + "Phag": "Phags-pa", + "Phli": "Inskripsi Pahlavi", + "Phlp": "Pslater Pahlavi", + "Phnx": "Phoenicia", + "Plrd": "Fonetik Pollard", + "Prti": "Inskripsi Parthian", + "Qaag": "Zawgyi", + "Rjng": "Rejang", + "Rohg": "Hanifi Rohingya", + "Runr": "Runic", + "Samr": "Samaritan", + "Sarb": "Arab Selatan Lama", + "Saur": "Saurashtra", + "Sgnw": "Tulisan Isyarat", + "Shaw": "Shavia", + "Shrd": "Sharada", + "Sidd": "Siddham", + "Sind": "Khudawadi", "Sinh": "Sinhala", + "Sogd": "Sogdia", + "Sogo": "Sogdia Lama", + "Sora": "Sora Sompeng", + "Soyo": "Soyombo", + "Sund": "Sunda", + "Sylo": "Syloti Nagri", + "Syrc": "Syria", + "Tagb": "Tagbanwa", + "Takr": "Takri", + "Tale": "Tai Le", + "Talu": "Tai Lue Baharu", "Taml": "Tamil", + "Tang": "Tangut", + "Tavt": "Tai Viet", "Telu": "Telugu", + "Tfng": "Tifinagh", + "Tglg": "Tagalog", "Thaa": "Thaana", "Thai": "Thai", "Tibt": "Tibet", + "Tirh": "Tirhuta", + "Ugar": "Ugaritic", + "Vaii": "Vai", + "Wara": "Varang Kshiti", + "Wcho": "Wancho", + "Xpeo": "Parsi Lama", + "Xsux": "Aksara Paku Sumero-Akkadia", + "Yiii": "Yi", + "Zanb": "Segi Empat Zanabazar", + "Zinh": "Diwarisi", "Zmth": "Tatatanda matematik", "Zsye": "Emoji", "Zsym": "Simbol", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json index 75919bd2171f8..ff78e7c6d1d2d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 c9c5d182da08e..895da9ad822de 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/my.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 03ad0549fec6d..87dab74681676 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json index a7e34d54bb312..c60ca0145ff50 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "अरबी", "Armi": "आर्मी", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json index 9b86c647dd88a..80227b2b53d2a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json @@ -1,9 +1,10 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "Adlam", "Afak": "Defaka", "Aghb": "Kaukasisch Albanees", + "Ahom": "Ahom", "Arab": "Arabisch", "Armi": "Keizerlijk Aramees", "Armn": "Armeens", @@ -23,6 +24,7 @@ "Cakm": "Chakma", "Cans": "Verenigde Canadese Aboriginal-symbolen", "Cari": "Carisch", + "Cham": "Cham", "Cher": "Cherokee", "Cirt": "Cirth", "Copt": "Koptisch", @@ -102,6 +104,7 @@ "Merc": "Meroitisch cursief", "Mero": "Meroïtisch", "Mlym": "Malayalam", + "Modi": "Modi", "Mong": "Mongools", "Moon": "Moon", "Mroo": "Mro", @@ -131,6 +134,7 @@ "Phnx": "Foenicisch", "Plrd": "Pollard-fonetisch", "Prti": "Inscriptioneel Parthisch", + "Qaag": "Qaag", "Rjng": "Rejang", "Rohg": "Hanifi Rohingya", "Roro": "Rongorongo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json index 38808beb8eca1..408721ff73346 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 03ad0549fec6d..87dab74681676 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/no.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/om.json b/src/Symfony/Component/Intl/Resources/data/scripts/om.json index 99d42a5aa9e8a..205b40dca7fdd 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/om.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 907ff6968f42d..c01337131854b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/or.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 2d54b7da35c49..c718d9446bf63 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/os.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 861ac7642023f..c5a410a3ac901 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.20", + "Version": "36", "Names": { "Arab": "ਅਰਬੀ", "Armn": "ਅਰਮੀਨੀਆਈ", 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 1bdfca6f0c079..4cfe0fc0bb6bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "Names": { "Arab": "عربی", "Guru": "گُرمُکھی" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json index 48801c44c6e91..5fe686e7713e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "arabskie", "Armi": "armi", @@ -36,11 +36,11 @@ "Glag": "głagolica", "Goth": "gotyckie", "Grek": "greckie", - "Gujr": "gudźarackie", + "Gujr": "gudżarati", "Guru": "gurmukhi", - "Hanb": "hanb", - "Hang": "hangyl", - "Hani": "han", + "Hanb": "chińskie z bopomofo", + "Hang": "hangul", + "Hani": "chińskie", "Hano": "hanunoo", "Hans": "uproszczone", "Hant": "tradycyjne", @@ -119,7 +119,7 @@ "Teng": "tengwar", "Tfng": "tifinagh (berberski)", "Tglg": "tagalog", - "Thaa": "thaana", + "Thaa": "taana", "Thai": "tajskie", "Tibt": "tybetańskie", "Ugar": "ugaryckie", @@ -130,10 +130,10 @@ "Yiii": "yi", "Zinh": "dziedziczone", "Zmth": "notacja matematyczna", - "Zsye": "Emoji", + "Zsye": "emoji", "Zsym": "symbole", "Zxxx": "język bez systemu pisma", "Zyyy": "wspólne", - "Zzzz": "nieznany skrypt" + "Zzzz": "nieznane pismo" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json index 24769d493c358..f1c96fe3d0341 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "عربي", "Armn": "ارمانیایي", @@ -32,9 +32,9 @@ "Mlym": "مالایالم", "Mong": "منګولیایي", "Mymr": "میانمار", - "Orya": "اویا", + "Orya": "اوديا", "Sinh": "سنهالا", - "Taml": "تامیل", + "Taml": "تامل", "Telu": "تیلیګو", "Thaa": "تهانا", "Thai": "تایلنډي", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index db9e81eac4ff1..dbac83aff70a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "árabe", "Armi": "armi", @@ -87,7 +87,7 @@ "Ogam": "ogâmico", "Olck": "ol chiki", "Orkh": "orkhon", - "Orya": "oriya", + "Orya": "oriá", "Osma": "osmania", "Perm": "pérmico antigo", "Phag": "phags-pa", 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 2f3b4ab51b92f..44c1bf6eb2aa5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Armn": "arménio", "Beng": "bengalês", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json index 241596635558d..87694d430f6fc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 1cfe695a39a06..d306b2359e204 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "arabă", "Armn": "armeană", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json index 320d2ebc4155b..accb883d29911 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Afak": "афака", "Arab": "арабица", @@ -52,7 +52,7 @@ "Hira": "хирагана", "Hluw": "лувийские иероглифы", "Hmng": "пахау хмонг", - "Hrkt": "катакана или хирагана", + "Hrkt": "катакана и хирагана", "Hung": "старовенгерская", "Inds": "хараппская (письменность долины Инда)", "Ital": "староитальянская", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sd.json b/src/Symfony/Component/Intl/Resources/data/scripts/sd.json index be613e0dc4079..8498bb6e8130a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sd.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "عربي", "Armn": "عرماني", @@ -21,7 +21,9 @@ "Hebr": "عبراني", "Hira": "هراگنا", "Hrkt": "جاپاني لکت", + "Ital": "قديم اطالوي", "Jamo": "جامو", + "Java": "جاوانيز", "Jpan": "جاپاني", "Kana": "ڪٽاڪانا", "Khmr": "خمر", @@ -31,14 +33,17 @@ "Latn": "لاطيني", "Mlym": "مليالم", "Mong": "منگولي", + "Mult": "ملتاني", "Mymr": "ميانمر", "Orya": "اوڊيا", + "Sarb": "قديم ڏاکڻي عربي", "Sinh": "سنهالا", "Taml": "تامل", "Telu": "تلگو", "Thaa": "ٿانا", "Thai": "ٿائي", "Tibt": "تبيتن", + "Xpeo": "قديم فارسي", "Zmth": "رياضي جون نشانيون", "Zsye": "ايموجي", "Zsym": "نشانيون", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se.json b/src/Symfony/Component/Intl/Resources/data/scripts/se.json index 7eeee535f97f9..3b25e1f9c3cfa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/se.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.4", + "Version": "36", "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 3d1769eb921e7..caa73d6ef5138 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,5 @@ { - "Version": "2.1.47.83", + "Version": "36", "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 2ec69eb441622..263bd4aadb7e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 1cd7a2850ad20..b319d135b9e4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/si.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 483687d31d92c..c70b807f0a114 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "arabské", "Armn": "arménske", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json index 1cbab197c8fdb..95f62a009a0a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Arab": "arabski", "Armi": "imperialno-aramejski", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/so.json b/src/Symfony/Component/Intl/Resources/data/scripts/so.json index 7fa43a178c6f1..9f6e5ee2167d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/so.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/so.json @@ -1,10 +1,9 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "Carabi", "Armn": "Armeeniyaan", "Beng": "Baangla", - "Bopo": "Bopo", "Brai": "Qoraalka Indhoolaha", "Cyrl": "Siriylik", "Deva": "Dhefangaari", @@ -12,10 +11,7 @@ "Geor": "Jiyoorjoyaan", "Grek": "Giriik", "Gujr": "Gujaraati", - "Guru": "Guru", - "Hanb": "Hanb", "Hang": "Hanguul", - "Hani": "Hani", "Hans": "La fududeeyay", "Hant": "Hore", "Hebr": "Cibraani", @@ -27,7 +23,6 @@ "Khmr": "Khamer", "Knda": "Kanada", "Kore": "Kuuriyaan", - "Laoo": "Laoo", "Latn": "Laatiin", "Mlym": "Maalayalam", "Mong": "Mongooliyaan", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json index dee0863156e31..e750b29f4753b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "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 0e997d403270b..bde0995dff21d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 2ec69eb441622..263bd4aadb7e2 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json index bfa0de73ff287..175acd8dd40b9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.90", + "Version": "36", "Names": { "Adlm": "adlamiska", "Afak": "afakiska", @@ -32,6 +32,7 @@ "Cyrl": "kyrilliska", "Cyrs": "fornkyrkoslavisk kyrilliska", "Deva": "devanagari", + "Dogr": "dogriska", "Dsrt": "deseret", "Dupl": "Duployéstenografiska", "Egyd": "demotiska", @@ -93,10 +94,12 @@ "Lyci": "lykiska", "Lydi": "lydiska", "Mahj": "mahajaniska", + "Maka": "makasariska", "Mand": "mandaéiska", "Mani": "manikeanska", "Marc": "marchenska", "Maya": "mayahieroglyfer", + "Medf": "medefaidrin", "Mend": "mende", "Merc": "kursiv-meroitiska", "Mero": "meroitiska", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index b623ff1638b45..1ec1ec18fc0cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "Arab": "Kiarabu", "Armn": "Kiarmenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json new file mode 100644 index 0000000000000..0dce57527355b --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sw_KE.json @@ -0,0 +1,13 @@ +{ + "Version": "36", + "Names": { + "Brai": "Breli", + "Ethi": "Kihabeshi", + "Hebr": "Kihibrania", + "Hira": "Kihiragana", + "Jamo": "Kijamo", + "Mymr": "Kimyama", + "Orya": "Kiodia", + "Taml": "Kitamili" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json index 3ad16967b00df..03c86668efe72 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 ceafa22190e36..f1fbc96500c6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/te.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 a845e0b870b8b..4ce9248df8b42 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 4bb38d82a79ce..c2fca814b25f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/th.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Afak": "อะฟาคา", "Aghb": "แอลเบเนีย คอเคเซีย", @@ -167,6 +167,6 @@ "Zsym": "สัญลักษณ์", "Zxxx": "ไม่มีภาษาเขียน", "Zyyy": "สามัญ", - "Zzzz": "สคริปต์ที่ไม่รู้จัก" + "Zzzz": "ตัวอักษรที่ไม่รู้จัก" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json index 1b2ded1e0167e..eb8060a16854b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 7d1ce7946855d..3800d1a43d7c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 04007ab602327..17dd00d8c8ed5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "Arabic", "Armn": "Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/to.json b/src/Symfony/Component/Intl/Resources/data/scripts/to.json index eb28c5ec73d79..3aa3fbf5ee404 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/to.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 e039ed1e7232c..c2a7ae518c323 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.42", + "Version": "36", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", @@ -21,6 +21,7 @@ "Cakm": "Chakma", "Cans": "UCAS", "Cari": "Karya", + "Cham": "Cham", "Cher": "Çeroki", "Cirt": "Cirth", "Copt": "Kıpti", @@ -43,7 +44,7 @@ "Grek": "Yunan", "Gujr": "Gücerat", "Guru": "Gurmukhi", - "Hanb": "Hanb", + "Hanb": "Han - Bopomofo", "Hang": "Hangıl", "Hani": "Han", "Hano": "Hanunoo", @@ -53,7 +54,7 @@ "Hira": "Hiragana", "Hluw": "Anadolu Hiyeroglifleri", "Hmng": "Pahavh Hmong", - "Hrkt": "Katakana veya Hiragana", + "Hrkt": "Japon hece alfabeleri", "Hung": "Eski Macar", "Inds": "Indus", "Ital": "Eski İtalyan", @@ -85,11 +86,13 @@ "Lydi": "Lidya", "Mahj": "Mahajani", "Mand": "Manden", + "Mani": "Mani", "Maya": "Maya Hiyeroglifleri", "Mend": "Mende", "Merc": "Meroitik El Yazısı", "Mero": "Meroitik", "Mlym": "Malayalam", + "Modi": "Modi", "Mong": "Moğol", "Moon": "Moon", "Mroo": "Mro", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json index b259e7f047e64..6bbae75408807 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 a2c05f5e7fc67..bfdd090a03074 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 318b288c23848..64f2f02290441 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "адлам", "Afak": "афака", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index fc654de9238a2..c3026fe93ecc5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Arab": "عربی", "Armn": "آرمینیائی", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json index 9c9025edebee8..8b19ff8bea96c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 5f19ed86a6625..1f6ed41327bfc 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,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 11b7d6afca2a8..5cce2ec4bf17a 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,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 d900cf1b08499..dffbbccd5331a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json @@ -1,10 +1,7 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { - "Adlm": "Adlm", "Afak": "Chữ Afaka", - "Aghb": "Aghb", - "Ahom": "Ahom", "Arab": "Chữ Ả Rập", "Armi": "Chữ Imperial Aramaic", "Armn": "Chữ Armenia", @@ -13,8 +10,7 @@ "Bamu": "Chữ Bamum", "Bass": "Chữ Bassa Vah", "Batk": "Chữ Batak", - "Beng": "Chữ Bangladesh", - "Bhks": "Bhks", + "Beng": "Chữ Bangla", "Blis": "Chữ Blissymbols", "Bopo": "Chữ Bopomofo", "Brah": "Chữ Brahmi", @@ -32,37 +28,30 @@ "Cyrl": "Chữ Kirin", "Cyrs": "Chữ Kirin Slavơ Nhà thờ cổ", "Deva": "Chữ Devanagari", - "Dogr": "Dogr", "Dsrt": "Chữ Deseret", "Dupl": "Chữ tốc ký Duployan", "Egyd": "Chữ Ai Cập bình dân", "Egyh": "Chữ Ai Cập thày tu", "Egyp": "Chữ tượng hình Ai Cập", - "Elba": "Elba", - "Elym": "Elym", "Ethi": "Chữ Ethiopia", "Geok": "Chữ Khutsuri Georgia", - "Geor": "Chữ Gruzia", + "Geor": "Chữ Georgia", "Glag": "Chữ Glagolitic", - "Gong": "Gong", - "Gonm": "Gonm", "Goth": "Chữ Gô-tích", "Gran": "Chữ Grantha", "Grek": "Chữ Hy Lạp", "Gujr": "Chữ Gujarati", "Guru": "Chữ Gurmukhi", - "Hanb": "Chữ Hanb", - "Hang": "Chữ Hangul", + "Hanb": "Chữ Hán có chú âm", + "Hang": "Chữ Hàn", "Hani": "Chữ Hán", "Hano": "Chữ Hanunoo", "Hans": "Giản thể", "Hant": "Phồn thể", - "Hatr": "Hatr", "Hebr": "Chữ Do Thái", "Hira": "Chữ Hiragana", "Hluw": "Chữ tượng hình Anatolia", "Hmng": "Chữ Pahawh Hmong", - "Hmnp": "Hmnp", "Hrkt": "Bảng ký hiệu âm tiết Tiếng Nhật", "Hung": "Chữ Hungary cổ", "Inds": "Chữ Indus", @@ -93,28 +82,20 @@ "Loma": "Chữ Loma", "Lyci": "Chữ Lycia", "Lydi": "Chữ Lydia", - "Mahj": "Mahj", - "Maka": "Maka", "Mand": "Chữ Mandaean", "Mani": "Chữ Manichaean", - "Marc": "Marc", "Maya": "Chữ tượng hình Maya", - "Medf": "Medf", "Mend": "Chữ Mende", "Merc": "Chữ Meroitic Nét thảo", "Mero": "Chữ Meroitic", "Mlym": "Chữ Malayalam", - "Modi": "Modi", "Mong": "Chữ Mông Cổ", "Moon": "Chữ nổi Moon", "Mroo": "Chữ Mro", "Mtei": "Chữ Meitei Mayek", - "Mult": "Mult", "Mymr": "Chữ Myanmar", - "Nand": "Nand", "Narb": "Chữ Bắc Ả Rập cổ", "Nbat": "Chữ Nabataean", - "Newa": "Newa", "Nkgb": "Chữ Naxi Geba", "Nkoo": "Chữ N’Ko", "Nshu": "Chữ Nüshu", @@ -122,10 +103,8 @@ "Olck": "Chữ Ol Chiki", "Orkh": "Chữ Orkhon", "Orya": "Chữ Odia", - "Osge": "Osge", "Osma": "Chữ Osmanya", "Palm": "Chữ Palmyrene", - "Pauc": "Pauc", "Perm": "Chữ Permic cổ", "Phag": "Chữ Phags-pa", "Phli": "Chữ Pahlavi Văn bia", @@ -134,9 +113,7 @@ "Phnx": "Chữ Phoenicia", "Plrd": "Ngữ âm Pollard", "Prti": "Chữ Parthia Văn bia", - "Qaag": "Qaag", "Rjng": "Chữ Rejang", - "Rohg": "Rohg", "Roro": "Chữ Rongorongo", "Runr": "Chữ Runic", "Samr": "Chữ Samaritan", @@ -146,13 +123,9 @@ "Sgnw": "Chữ viết Ký hiệu", "Shaw": "Chữ Shavian", "Shrd": "Chữ Sharada", - "Sidd": "Sidd", "Sind": "Chữ Khudawadi", "Sinh": "Chữ Sinhala", - "Sogd": "Sogd", - "Sogo": "Sogo", "Sora": "Chữ Sora Sompeng", - "Soyo": "Soyo", "Sund": "Chữ Xu-đăng", "Sylo": "Chữ Syloti Nagri", "Syrc": "Chữ Syria", @@ -178,12 +151,10 @@ "Vaii": "Chữ Vai", "Visp": "Tiếng nói Nhìn thấy được", "Wara": "Chữ Varang Kshiti", - "Wcho": "Wcho", "Wole": "Chữ Woleai", "Xpeo": "Chữ Ba Tư cổ", "Xsux": "Chữ hình nêm Sumero-Akkadian", "Yiii": "Chữ Di", - "Zanb": "Zanb", "Zinh": "Chữ Kế thừa", "Zmth": "Ký hiệu Toán học", "Zsye": "Biểu tượng", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json index 44b718f80cec3..1b973f0c66f97 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "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 7f3a9592053b5..2991b832a10f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.47.82", + "Version": "36", "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 8778e2fb16e99..bba6723f20b83 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo.json @@ -1,12 +1,14 @@ { - "Version": "2.1.48.17", + "Version": "36", "Names": { "Arab": "èdè Lárúbáwá", "Cyrl": "èdè ilẹ̀ Rọ́ṣíà", "Hans": "tí wọ́n mú rọrùn.", "Hant": "Hans àtọwọ́dọ́wọ́", + "Jpan": "èdè jàpáànù", + "Kore": "Kóríà", "Latn": "Èdè Látìn", "Zxxx": "Aikọsilẹ", - "Zzzz": "ọ̀nà ìgbàkọ̀wé àìmọ̀" + "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 720615f2d8e19..799b2a29db6f1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yo_BJ.json @@ -1,12 +1,10 @@ { - "Version": "2.1.48.77", + "Version": "36", "Names": { - "Arab": "èdè Lárúbáwá", "Cyrl": "èdè ilɛ̀ Rɔ́shíà", "Hans": "tí wɔ́n mú rɔrùn.", "Hant": "Hans àtɔwɔ́dɔ́wɔ́", - "Latn": "Èdè Látìn", "Zxxx": "Aikɔsilɛ", - "Zzzz": "ɔ̀nà ìgbàkɔ̀wé àìmɔ̀" + "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 5c196f56f6b9a..96ae8bb75e180 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "阿德拉姆文", "Afak": "阿法卡文", @@ -127,7 +127,6 @@ "Phnx": "腓尼基文", "Plrd": "波拉德音标文字", "Prti": "帕提亚文碑铭体", - "Qaag": "Qaag", "Rjng": "拉让文", "Rohg": "哈乃斐罗兴亚文", "Roro": "朗格朗格文", 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 78e7e788198cb..e9a9079936a67 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 f3d6a377bb6e8..353ee3ae1da61 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json @@ -1,5 +1,5 @@ { - "Version": "2.1.49.82", + "Version": "36", "Names": { "Adlm": "富拉文", "Afak": "阿法卡文字", 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 78e7e788198cb..e9a9079936a67 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,5 @@ { - "Version": "2.1.47.86", + "Version": "36", "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 8562921e586bf..78aee6c7e1913 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.48.17", + "Version": "36", "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 844aa57195661..fcf99cb65db3b 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -64.2 +65.1 diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php index 562f8386d1c9e..f649dcff98ea5 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractDataProviderTest.php @@ -341,6 +341,7 @@ abstract class AbstractDataProviderTest extends TestCase 'fy', 'fy_NL', 'ga', + 'ga_GB', 'ga_IE', 'gd', 'gd_GB', diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php index 2d294f2c6429c..b3d2a70437d57 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php @@ -124,6 +124,7 @@ abstract class AbstractLanguageDataProviderTest extends AbstractDataProviderTest 'chp', 'chr', 'chy', + 'cic', 'ckb', 'co', 'cop', From 2315be85d8e9c063d90dd4f8c5f6dddb016ab843 Mon Sep 17 00:00:00 2001 From: Atthaphon Urairat Date: Fri, 4 Oct 2019 16:41:22 +0700 Subject: [PATCH 78/83] [Validator] Add the missing translations for the Thai (\"th\") locale --- .../Resources/translations/validators.th.xlf | 70 ++++++++++++++++++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.th.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.th.xlf index 63ce95ab1bee5..31aa00cfac011 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.th.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.th.xlf @@ -204,7 +204,7 @@ This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - คอเล็กชั่นนี้ควรจะประกอบไปด้วยอ่างน้อย {{ limit }} สมาชิก + คอเล็กชั่นนี้ควรจะประกอบไปด้วยอย่างน้อย {{ limit }} สมาชิก This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. @@ -298,6 +298,74 @@ The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. ภาพนี้เป็นแนวตั้ง ({{ width }}x{{ height }}px) ไม่อนุญาตภาพที่เป็นแนวตั้ง + + An empty file is not allowed. + ไม่อนุญาตให้ใช้ไฟล์ว่าง + + + The host could not be resolved. + ไม่สามารถแก้ไขชื่อโฮสต์ + + + This value does not match the expected {{ charset }} charset. + ค่านี้ไม่ตรงกับการเข้ารหัส {{ charset }} + + + This is not a valid Business Identifier Code (BIC). + นี่ไม่ถูกต้องตามรหัสสำหรับระบุธุรกิจนี้ (BIC) + + + Error + เกิดข้อผิดพลาด + + + This is not a valid UUID. + นี่ไม่ใช่ UUID ที่ถูกต้อง + + + This value should be a multiple of {{ compared_value }}. + ค่านี้ควรเป็น {{ compared_value }} หลายตัว + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + รหัสสำหรับระบุธุรกิจนี้ (BIC) ไม่เกี่ยวข้องกับ IBAN {{ iban }} + + + This value should be valid JSON. + ค่านี้ควรอยู่ในรูปแบบ JSON ที่ถูกต้อง + + + This collection should contain only unique elements. + คอเล็กชั่นนี้ควรมีเฉพาะสมาชิกที่ไม่ซ้ำกันเท่านั้น + + + This value should be positive. + ค่านี้ควรเป็นค่าบวก + + + This value should be either positive or zero. + ค่านี้ควรเป็นค่าบวกหรือค่าศูนย์ + + + This value should be negative. + ค่านี้ควรเป็นค่าลบ + + + This value should be either negative or zero. + ค่านี้ควรเป็นค่าลบหรือค่าศูนย์ + + + This value is not a valid timezone. + ค่าเขตเวลาไม่ถูกต้อง + + + This password has been leaked in a data breach, it must not be used. Please use another password. + รหัสผ่านนี้ได้เคยรั่วไหลออกไปโดยถูกการละเมิดข้อมูล ซึ่งไม่ควรนำกลับมาใช้ กรุณาใช้รหัสผ่านอื่น + + + This value should be between {{ min }} and {{ max }}. + ค่านี้ควรอยู่ระหว่าง {{ min }} ถึง {{ max }} + From a84e4e021a31fdd125848552adbba1a6afc3c8d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Sun, 6 Oct 2019 21:52:09 +0200 Subject: [PATCH 79/83] Remove useless testCanCheckIfTerminalIsInteractive test case --- .../Component/Console/Tests/ApplicationTest.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/Symfony/Component/Console/Tests/ApplicationTest.php b/src/Symfony/Component/Console/Tests/ApplicationTest.php index c7e84952653a0..d61418f37ba47 100644 --- a/src/Symfony/Component/Console/Tests/ApplicationTest.php +++ b/src/Symfony/Component/Console/Tests/ApplicationTest.php @@ -1587,23 +1587,6 @@ public function testSetRunCustomSingleCommand() $this->assertStringContainsString('The foo:bar command', $tester->getDisplay()); } - /** - * @requires function posix_isatty - */ - public function testCanCheckIfTerminalIsInteractive() - { - $application = new CustomDefaultCommandApplication(); - $application->setAutoExit(false); - - $tester = new ApplicationTester($application); - $tester->run(['command' => 'help']); - - $this->assertFalse($tester->getInput()->hasParameterOption(['--no-interaction', '-n'])); - - $inputStream = $tester->getInput()->getStream(); - $this->assertEquals($tester->getInput()->isInteractive(), @posix_isatty($inputStream)); - } - public function testRunLazyCommandService() { $container = new ContainerBuilder(); From 0272b8d341721c717861ef949cb20ecfac18603e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 7 Oct 2019 14:36:18 +0200 Subject: [PATCH 80/83] [travis] Fix build-packages script --- .github/build-packages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/build-packages.php b/.github/build-packages.php index 1f59c352762bf..d859e3ec808a1 100644 --- a/.github/build-packages.php +++ b/.github/build-packages.php @@ -47,7 +47,7 @@ if (isset($preferredInstall[$package->name]) && 'source' === $preferredInstall[$package->name]) { passthru("cd $dir && tar -cf package.tar --exclude='package.tar' *"); } else { - passthru("cd $dir && git init && git add . && git commit -m - && git archive -o package.tar HEAD && rm .git/ -Rf"); + passthru("cd $dir && git init && git add . && git commit --author \"Symfony <>\" -m - && git archive -o package.tar HEAD && rm .git/ -Rf"); } if (!isset($package->extra->{'branch-alias'}->{'dev-master'})) { From ed01f3c51167f8063b000112162e5ab991123158 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 7 Oct 2019 16:41:35 +0200 Subject: [PATCH 81/83] updated CHANGELOG for 3.4.32 --- CHANGELOG-3.4.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index f92c85dd9c425..015ca124b1815 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,46 @@ in 3.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1 +* 3.4.32 (2019-10-07) + + * bug #33834 [Validator] Fix ValidValidator group cascading usage (fancyweb) + * bug #33841 [VarDumper] fix dumping uninitialized SplFileInfo (nicolas-grekas) + * bug #33799 [Security]: Don't let falsy usernames slip through impersonation (j4nr6n) + * bug #33814 [HttpFoundation] Check if data passed to SessionBagProxy::initialize is an array (mynameisbogdan) + * bug #33805 [FrameworkBundle] Fix wrong returned status code in ConfigDebugCommand (jschaedl) + * bug #33781 [AnnotationCacheWarmer] add RedirectController to annotation cache (jenschude) + * bug #33777 Fix the :only-of-type pseudo class selector (jakzal) + * bug #32051 [Serializer] Add CsvEncoder tests for PHP 7.4 (ro0NL) + * feature #33776 Copy phpunit.xsd to a predictable path (julienfalque) + * bug #33759 [Security/Http] fix parsing X509 emailAddress (nicolas-grekas) + * bug #33733 [Serializer] fix denormalization of string-arrays with only one element (mkrauser) + * bug #33754 [Cache] fix known tag versions ttl check (SwenVanZanten) + * bug #33646 [HttpFoundation] allow additinal characters in not raw cookies (marie) + * bug #33748 [Console] Do not include hidden commands in suggested alternatives (m-vo) + * bug #33625 [DependencyInjection] Fix wrong exception when service is synthetic (k0d3r1s) + * bug #32522 [Validator] Accept underscores in the URL validator, as the URL will load (battye) + * bug #32437 Fix toolbar load when GET params are present in "_wdt" route (Molkobain) + * bug #32925 [Translation] Collect original locale in case of fallback translation (digilist) + * bug #31198 [FrameworkBundle] Fix framework bundle lock configuration not working as expected (HypeMC) + * bug #33719 [Cache] dont override native Memcached options (nicolas-grekas) + * bug #33675 [PhpUnit] Fix usleep mock return value (fabpot) + * bug #33618 fix tests depending on other components' tests (xabbuh) + * bug #33626 [PropertyInfo] ensure compatibility with type resolver 0.5 (xabbuh) + * bug #33620 [Twig] Fix Twig config extra keys (fabpot) + * bug #33571 [Inflector] add support 'see' to 'ee' for singularize 'fees' to 'fee' (maxhelias) + * bug #32763 [Console] Get dimensions from stty on windows if possible (rtek) + * bug #33518 [Yaml] don't dump a scalar tag value on its own line (xabbuh) + * bug #32818 [HttpKernel] Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler (Arman-Hosseini) + * bug #33487 [HttpKernel] Fix Apache mod_expires Session Cache-Control issue (pbowyer) + * bug #33439 [Validator] Sync string to date behavior and throw a better exception (fancyweb) + * bug #32903 [PHPUnit Bridge] Avoid registering listener twice (alexpott) + * bug #33402 [Finder] Prevent unintentional file locks in Windows (jspringe) + * bug #33396 Fix #33395 PHP 5.3 compatibility (kylekatarnls) + * bug #33385 [Console] allow Command::getName() to return null (nicolas-grekas) + * bug #33353 Return null as Expire header if it was set to null (danrot) + * bug #33382 [ProxyManager] remove ProxiedMethodReturnExpression polyfill (nicolas-grekas) + * bug #33377 [Yaml] fix dumping not inlined scalar tag values (xabbuh) + * 3.4.31 (2019-08-26) * bug #33335 [DependencyInjection] Fixed the `getServiceIds` implementation to always return aliases (pdommelen) From fd683f05ea6ba923a760efb29d60ec65ef2dd812 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 7 Oct 2019 16:41:46 +0200 Subject: [PATCH 82/83] update CONTRIBUTORS for 3.4.32 --- CONTRIBUTORS.md | 110 ++++++++++++++++++++++++++++++------------------ 1 file changed, 69 insertions(+), 41 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 963f9e960293c..2cf905be32e88 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,36 +6,36 @@ Symfony is the result of the work of many people who made the code better - Fabien Potencier (fabpot) - Nicolas Grekas (nicolas-grekas) - - Bernhard Schussek (bschussek) - Christian Flothmann (xabbuh) + - Bernhard Schussek (bschussek) - Tobias Schultze (tobion) - Christophe Coevoet (stof) - Robin Chalas (chalas_r) - Jordi Boggiano (seldaek) - - Victor Berchet (victor) - Kévin Dunglas (dunglas) + - Victor Berchet (victor) - Maxime Steinhausser (ogizanagi) - Ryan Weaver (weaverryan) - Javier Eguiluz (javier.eguiluz) - - Jakub Zalas (jakubzalas) - Roland Franssen (ro0) + - Jakub Zalas (jakubzalas) - Johannes S (johannes) - - Kris Wallsmith (kriswallsmith) - Grégoire Pineau (lyrixx) + - Kris Wallsmith (kriswallsmith) - Hugo Hamon (hhamon) + - Yonel Ceruto (yonelceruto) - Abdellatif Ait boudad (aitboudad) - Samuel ROZE (sroze) - - Yonel Ceruto (yonelceruto) - Romain Neutron (romain) - Pascal Borreli (pborreli) - Wouter De Jong (wouterj) - Joseph Bielawski (stloyd) - Karma Dordrak (drak) - Lukas Kahwe Smith (lsmith) + - Alexander M. Turek (derrabus) - Martin Hasoň (hason) - Hamza Amrouche (simperfit) - Jeremy Mikola (jmikola) - - Alexander M. Turek (derrabus) - Jean-François Simon (jfsimon) - Jules Pietri (heah) - Benjamin Eberlei (beberlei) @@ -44,21 +44,21 @@ Symfony is the result of the work of many people who made the code better - Eriksen Costa (eriksencosta) - Guilhem Niot (energetick) - Sarah Khalil (saro0h) + - Thomas Calvet (fancyweb) - Tobias Nyholm (tobias) - Jonathan Wage (jwage) - Lynn van der Berg (kjarli) - Diego Saint Esteben (dosten) - - Thomas Calvet (fancyweb) - Alexandre Salomé (alexandresalome) - William Durand (couac) - ornicar + - Pierre du Plessis (pierredup) - Dany Maillard (maidmaid) - Francis Besset (francisbesset) - stealth35 ‏ (stealth35) - Alexander Mols (asm89) - - Pierre du Plessis (pierredup) - - Matthias Pigulla (mpdude) - Konstantin Myakshin (koc) + - Matthias Pigulla (mpdude) - Bulat Shakirzyanov (avalanche123) - Grégoire Paris (greg0ire) - Saša Stamenković (umpirsky) @@ -69,13 +69,13 @@ Symfony is the result of the work of many people who made the code better - Miha Vrhovnik - Diego Saint Esteben (dii3g0) - Gábor Egyed (1ed) - - Konstantin Kudryashov (everzet) - Titouan Galopin (tgalopin) + - Konstantin Kudryashov (everzet) + - David Maicher (dmaicher) - Bilal Amarni (bamarni) - Mathieu Piot (mpiot) - - David Maicher (dmaicher) - - Florin Patan (florinpatan) - Gabriel Ostrolucký (gadelat) + - Florin Patan (florinpatan) - Vladimir Reznichenko (kalessil) - Jáchym Toušek (enumag) - Michel Weimerskirch (mweimerskirch) @@ -83,6 +83,7 @@ Symfony is the result of the work of many people who made the code better - Issei Murasawa (issei_m) - Eric Clemmons (ericclemmons) - Charles Sarrazin (csarrazi) + - Jan Schädlich (jschaedl) - Christian Raue - Arnout Boks (aboks) - Deni @@ -90,7 +91,6 @@ Symfony is the result of the work of many people who made the code better - Dariusz Górecki (canni) - Douglas Greenshields (shieldo) - David Buchmann (dbu) - - Jan Schädlich (jschaedl) - Dariusz Ruminski - Lee McDermott - Brandon Turner @@ -114,30 +114,30 @@ Symfony is the result of the work of many people who made the code better - Baptiste Clavié (talus) - marc.weistroff - Tomáš Votruba (tomas_votruba) + - Jérôme Vasseur (jvasseur) - lenar - Alexander Schwenn (xelaris) - Włodzimierz Gajda (gajdaw) - - Jérôme Vasseur (jvasseur) + - Sebastiaan Stok (sstok) + - Adrien Brault (adrienbrault) - Peter Kokot (maastermedia) - Jacob Dreesen (jdreesen) - Florian Voutzinos (florianv) - - Sebastiaan Stok (sstok) - Colin Frei - Javier Spagnoletti (phansys) - - Adrien Brault (adrienbrault) - Joshua Thijssen - Daniel Wehner (dawehner) - excelwebzone - Gordon Franke (gimler) + - Teoh Han Hui (teohhanhui) - Oskar Stark (oskarstark) + - Alex Pott - Fabien Pennequin (fabienpennequin) - Théo FIDRY (theofidry) - - Teoh Han Hui (teohhanhui) - Eric GELOEN (gelo) - Joel Wurtz (brouznouf) - Lars Strojny (lstrojny) - Tugdual Saunier (tucksaun) - - Alex Pott - Jannik Zschiesche (apfelbox) - Robert Schönthal (digitalkaoz) - Florian Lonqueu-Brochard (florianlb) @@ -152,6 +152,7 @@ Symfony is the result of the work of many people who made the code better - Daniel Gomes (danielcsgomes) - Hidenori Goto (hidenorigoto) - Andréia Bohner (andreia) + - Julien Falque (julienfalque) - Arnaud Kleinpeter (nanocom) - Guilherme Blanco (guilhermeblanco) - SpacePossum @@ -160,7 +161,6 @@ Symfony is the result of the work of many people who made the code better - François-Xavier de Guillebon (de-gui_f) - Oleg Voronkovich - Philipp Wahala (hifi) - - Julien Falque (julienfalque) - Rafael Dohms (rdohms) - jwdeitch - Mikael Pajunen @@ -172,6 +172,7 @@ Symfony is the result of the work of many people who made the code better - Richard Shank (iampersistent) - Thomas Rabaix (rande) - Vincent Touzet (vincenttouzet) + - Gregor Harlan (gharlan) - jeremyFreeAgent (jeremyfreeagent) - Rouven Weßling (realityking) - Alexander Schranz (alexander-schranz) @@ -193,6 +194,7 @@ Symfony is the result of the work of many people who made the code better - James Halsall (jaitsu) - Matthieu Napoli (mnapoli) - Florent Mata (fmata) + - Arman Hosseini - Warnar Boekkooi (boekkooi) - Dmitrii Chekaliuk (lazyhammer) - Clément JOBEILI (dator) @@ -206,11 +208,11 @@ Symfony is the result of the work of many people who made the code better - Mario A. Alvarez Garcia (nomack84) - Dennis Benkert (denderello) - DQNEO - - Gregor Harlan (gharlan) + - mcfedr (mcfedr) - Gary PEGEOT (gary-p) - Ruben Gonzalez (rubenrua) - Benjamin Dulau (dbenjamin) - - Arman Hosseini + - Andreas Braun - Mathieu Lemoine (lemoinem) - Christian Schmidt - Andreas Hucks (meandmymonkey) @@ -241,7 +243,6 @@ Symfony is the result of the work of many people who made the code better - jeff - John Kary (johnkary) - Andreas Schempp (aschempp) - - Andreas Braun - Justin Hileman (bobthecow) - Blanchon Vincent (blanchonvincent) - Michele Orselli (orso) @@ -265,7 +266,6 @@ Symfony is the result of the work of many people who made the code better - julien pauli (jpauli) - Lorenz Schori - Sébastien Lavoie (lavoiesl) - - mcfedr (mcfedr) - Dariusz - Michael Babker (mbabker) - Francois Zaninotto @@ -314,12 +314,14 @@ Symfony is the result of the work of many people who made the code better - Jhonny Lidfors (jhonne) - Diego Agulló (aeoris) - jdhoek + - Maxime Helias (maxhelias) - David Prévot - Bob den Otter (bopp) - Thomas Schulz (king2500) - Frank de Jonge (frenkynet) - Nikita Konstantinov - Wodor Wodorski + - dFayet - Thomas Lallement (raziel057) - Colin O'Dell (colinodell) - Giorgio Premi @@ -343,6 +345,7 @@ Symfony is the result of the work of many people who made the code better - Christian Schmidt - Patrick Landolt (scube) - MatTheCat + - David Badura (davidbadura) - Chad Sikorra (chadsikorra) - Chris Smith (cs278) - Florian Klein (docteurklein) @@ -361,6 +364,7 @@ Symfony is the result of the work of many people who made the code better - Jerzy Zawadzki (jzawadzki) - Wouter J - Ismael Ambrosi (iambrosi) + - Ruud Kamphuis (ruudk) - Emmanuel BORGES (eborges78) - Aurelijus Valeiša (aurelijus) - Jan Decavele (jandc) @@ -374,7 +378,6 @@ Symfony is the result of the work of many people who made the code better - Francesc Rosàs (frosas) - Romain Pierre (romain-pierre) - Julien Galenski (ruian) - - Maxime Helias - Bongiraud Dominique - janschoenherr - Emanuele Gaspari (inmarelibero) @@ -382,7 +385,6 @@ Symfony is the result of the work of many people who made the code better - Berny Cantos (xphere81) - Thierry Thuon (lepiaf) - Ricard Clau (ricardclau) - - dFayet - Mark Challoner (markchalloner) - Gennady Telegin (gtelegin) - Erin Millard @@ -410,10 +412,10 @@ Symfony is the result of the work of many people who made the code better - Robbert Klarenbeek (robbertkl) - Eric Masoero (eric-masoero) - JhonnyL - - David Badura (davidbadura) - hossein zolfi (ocean) - Clément Gautier (clementgautier) - Thomas Bisignani (toma) + - Dāvis Zālītis (k0d3r1s) - Sanpi - Eduardo Gulias (egulias) - giulio de donato (liuggio) @@ -436,6 +438,7 @@ Symfony is the result of the work of many people who made the code better - Tamas Szijarto - Michele Locati - Pavel Volokitin (pvolok) + - Valentine Boineau (valentineboineau) - Arthur de Moulins (4rthem) - Matthias Althaus (althaus) - Nicolas Dewez (nicolas_dewez) @@ -447,13 +450,13 @@ Symfony is the result of the work of many people who made the code better - Joe Lencioni - Daniel Tschinder - vladimir.reznichenko - - Ruud Kamphuis (ruudk) - Kai - Lee Rowlands - Krzysztof Piasecki (krzysztek) - Maximilian Reichel (phramz) - Loick Piera (pyrech) - Alain Hippolyte (aloneh) + - Grenier Kévin (mcsky_biig) - Karoly Negyesi (chx) - Ivan Kurnosov - Xavier HAUSHERR @@ -481,9 +484,11 @@ Symfony is the result of the work of many people who made the code better - Jeanmonod David (jeanmonod) - Christopher Davis (chrisguitarguy) - Webnet team (webnet) + - Farhad Safarov - Jan Schumann - Niklas Fiekas - Markus Bachmann (baachi) + - Kévin THERAGE (kevin_therage) - lancergr - Mihai Stancu - Ivan Nikolaev (destillat) @@ -499,6 +504,7 @@ Symfony is the result of the work of many people who made the code better - EdgarPE - Florian Pfitzer (marmelatze) - Asier Illarramendi (doup) + - Sylvain Fabre (sylfabre) - Martijn Cuppens - Vlad Gregurco (vgregurco) - Maciej Malarz (malarzm) @@ -517,6 +523,7 @@ Symfony is the result of the work of many people who made the code better - Tobias Weichart - Gonzalo Vilaseca (gonzalovilaseca) - Marcin Sikoń (marphi) + - Tien Vo (tienvx) - Denis Brumann (dbrumann) - Dominik Zogg (dominik.zogg) - Marek Pietrzak @@ -533,6 +540,7 @@ Symfony is the result of the work of many people who made the code better - Anton Bakai - Martin Auswöger - Rhodri Pugh (rodnaph) + - battye - Sam Fleming (sam_fleming) - Alex Bakhturin - Patrick Reimers (preimers) @@ -606,7 +614,6 @@ Symfony is the result of the work of many people who made the code better - Nate (frickenate) - Timothée Barray (tyx) - jhonnyL - - Grenier Kévin (mcsky_biig) - sasezaki - Dawid Pakuła (zulusx) - Florian Rey (nervo) @@ -621,6 +628,7 @@ Symfony is the result of the work of many people who made the code better - Kevin Saliou (kbsali) - Shawn Iwinski - Gawain Lynch (gawain) + - mmokhi - NothingWeAre - Ryan - Alexander Deruwe (aderuwe) @@ -643,9 +651,11 @@ Symfony is the result of the work of many people who made the code better - Disquedur - Michiel Boeckaert (milio) - Geoffrey Tran (geoff) + - Kyle - Jan Behrens - Mantas Var (mvar) - Chris Tanaskoski + - Terje Bråten - Sebastian Krebs - Piotr Stankowski - Baptiste Leduc (bleduc) @@ -669,6 +679,7 @@ Symfony is the result of the work of many people who made the code better - Kyle Evans (kevans91) - Charles-Henri Bruyand - Max Rath (drak3) + - Oleg Andreyev - Stéphane Escandell (sescandell) - Konstantin S. M. Möllers (ksmmoellers) - James Johnston @@ -676,7 +687,6 @@ Symfony is the result of the work of many people who made the code better - Alexandre Dupuy (satchette) - Malte Blättermann - Desjardins Jérôme (jewome62) - - Kévin THERAGE (kevin_therage) - Simeon Kolev (simeon_kolev9) - Joost van Driel (j92) - Jonas Elfering @@ -693,7 +703,6 @@ Symfony is the result of the work of many people who made the code better - Gunnstein Lye (glye) - Maxime Douailin - Jean Pasdeloup (pasdeloup) - - Sylvain Fabre (sylfabre) - Benjamin Cremer (bcremer) - Javier López (loalf) - Reinier Kip @@ -712,6 +721,7 @@ Symfony is the result of the work of many people who made the code better - DerManoMann - Rostyslav Kinash - Dennis Fridrich (dfridrich) + - Mardari Dorel (dorumd) - Daisuke Ohata - Vincent Simonin - Alex Bogomazov (alebo) @@ -730,6 +740,7 @@ Symfony is the result of the work of many people who made the code better - Miquel Rodríguez Telep (mrtorrent) - Sergey Kolodyazhnyy (skolodyazhnyy) - umpirski + - M. Vondano - Quentin de Longraye (quentinus95) - Chris Heng (gigablah) - Shaun Simmons (simshaun) @@ -750,7 +761,7 @@ Symfony is the result of the work of many people who made the code better - Kristijan Kanalas - Stephan Vock - Benjamin Zikarsky (bzikarsky) - - battye + - Ruben Jacobs (rubenj) - Simon Schick (simonsimcity) - redstar504 - Tristan Roussel @@ -799,6 +810,7 @@ Symfony is the result of the work of many people who made the code better - Indra Gunawan (guind) - Peter Ward - Davide Borsatto (davide.borsatto) + - Markus Fasselt (digilist) - Julien DIDIER (juliendidier) - Dominik Ritter (dritter) - Sebastian Grodzicki (sgrodzicki) @@ -935,7 +947,6 @@ Symfony is the result of the work of many people who made the code better - Benoît Bourgeois - mantulo - Stefan Kruppa - - mmokhi - corphi - JoppeDC - grizlik @@ -1005,10 +1016,8 @@ Symfony is the result of the work of many people who made the code better - Pablo Lozano (arkadis) - Erik Saunier (snickers) - Rootie - - Kyle - Daniel Alejandro Castro Arellano (lexcast) - sensio - - Terje Bråten - Thomas Jarrand - Antoine Bluchet (soyuka) - Sebastien Morel (plopix) @@ -1031,7 +1040,6 @@ Symfony is the result of the work of many people who made the code better - The Whole Life to Learn - Mikkel Paulson - ergiegonzaga - - Farhad Safarov - Liverbool (liverbool) - Sam Malone - Phan Thanh Ha (haphan) @@ -1039,7 +1047,9 @@ Symfony is the result of the work of many people who made the code better - neghmurken - xaav - Mahmoud Mostafa (mahmoud) + - Julien Turby - Ahmed Abdou + - Daniel Iwaniec - Pieter - Michael Tibben - Billie Thompson @@ -1115,6 +1125,7 @@ Symfony is the result of the work of many people who made the code better - Chris Tiearney - Oliver Hoff - Ole Rößner (basster) + - rtek - Faton (notaf) - Tom Houdmont - Per Sandström (per) @@ -1133,6 +1144,7 @@ Symfony is the result of the work of many people who made the code better - ilyes kooli - gr1ev0us - mlazovla + - Alejandro Diaz Torres - Max Beutel - Antanas Arvasevicius - Pierre Dudoret @@ -1152,6 +1164,7 @@ Symfony is the result of the work of many people who made the code better - Ken Marfilla (marfillaster) - benatespina (benatespina) - Denis Kop + - HypeMC - Jean-Guilhem Rouel (jean-gui) - jfcixmedia - Dominic Tubach @@ -1167,6 +1180,7 @@ Symfony is the result of the work of many people who made the code better - Soner Sayakci - hugofonseca (fonsecas72) - Marc Duboc (icemad) + - Matthias Krauser (mkrauser) - Martynas Narbutas - Toon Verwerft (veewee) - Bailey Parker @@ -1216,6 +1230,7 @@ Symfony is the result of the work of many people who made the code better - Mathias STRASSER (roukmoute) - Thomason, James - Gordienko Vladislav + - marie - Viacheslav Sychov - Alexandre Quercia (alquerci) - Helmut Hummel (helhum) @@ -1307,8 +1322,8 @@ Symfony is the result of the work of many people who made the code better - Ilia (aliance) - Chris McCafferty (cilefen) - Mo Di (modi) - - Tien Vo (tienvx) - Pablo Schläpfer + - SuRiKmAn - Gert de Pagter - Jelte Steijaert (jelte) - David Négrier (moufmouf) @@ -1319,11 +1334,13 @@ Symfony is the result of the work of many people who made the code better - Alex Vasilchenko - sez-open - Xavier Coureau + - fruty - ConneXNL - Aharon Perkel - matze - Rubén Calvo (rubencm) - Abdul.Mohsen B. A. A + - Swen van Zanten - Benoît Burnichon - pthompson - Malaney J. Hill @@ -1360,6 +1377,7 @@ Symfony is the result of the work of many people who made the code better - sl_toto (sl_toto) - Walter Dal Mut (wdalmut) - abluchet + - Ruud Arentsen - Matthieu - Albin Kerouaton - Sébastien HOUZÉ @@ -1385,11 +1403,11 @@ Symfony is the result of the work of many people who made the code better - Constantine Shtompel - Jules Lamur - Renato Mendes Figueiredo + - pdommelen - Eric Stern - ShiraNai7 - Cedrick Oka - Antal Áron (antalaron) - - Markus Fasselt (digilist) - Vašek Purchart (vasek-purchart) - Janusz Jabłoński (yanoosh) - Fleuv @@ -1408,6 +1426,7 @@ Symfony is the result of the work of many people who made the code better - Andreas Frömer - Philip Frank - Lance McNearney + - Jeroen Spee (jeroens) - Giorgio Premi - ncou - Ian Carroll @@ -1420,6 +1439,7 @@ Symfony is the result of the work of many people who made the code better - Luis Galeas - Martin Pärtel - Bastien Jaillot (bastnic) + - Daniel Rotter (danrot) - Frédéric Bouchery (fbouchery) - Patrick Daley (padrig) - Xavier Briand (xavierbriand) @@ -1440,7 +1460,6 @@ Symfony is the result of the work of many people who made the code better - Daniel González Zaballos (dem3trio) - Emmanuel Vella (emmanuel.vella) - Guillaume BRETOU (guiguiboy) - - Dāvis Zālītis (k0d3r1s) - Carsten Nielsen (phreaknerd) - Roger Guasch (rogerguasch) - Jay Severson @@ -1559,6 +1578,7 @@ Symfony is the result of the work of many people who made the code better - povilas - Gavin Staniforth - Alessandro Tagliapietra (alex88) + - Andy Palmer (andyexeter) - Biji (biji) - Jérôme Tanghe (deuchnord) - Alex Teterin (errogaht) @@ -1606,7 +1626,6 @@ Symfony is the result of the work of many people who made the code better - Jibé Barth (jibbarth) - Matthew Foster (mfoster) - Reyo Stallenberg (reyostallenberg) - - Ruben Jacobs (rubenj) - Paul Seiffert (seiffert) - Vasily Khayrulin (sirian) - Stefan Koopmanschap (skoop) @@ -1648,6 +1667,7 @@ Symfony is the result of the work of many people who made the code better - Peter Bex - Manatsawin Hanmongkolchai - Gunther Konig + - Joe Springe - Mickael GOETZ - Maciej Schmidt - Dennis Væversted @@ -1677,12 +1697,12 @@ Symfony is the result of the work of many people who made the code better - me_shaon - 蝦米 - Grayson Koonce (breerly) - - Mardari Dorel (dorumd) - Andrey Helldar (helldar) - Karim Cassam Chenaï (ka) - Maksym Slesarenko (maksym_slesarenko) - Michal Kurzeja (mkurzeja) - Nicolas Bastien (nicolas_bastien) + - Peter Bowyer (pbowyer) - Nikola Svitlica (thecelavi) - Denis (yethee) - Andrew Zhilin (zhil) @@ -1760,7 +1780,6 @@ Symfony is the result of the work of many people who made the code better - Yannick Warnier (ywarnier) - Kevin Decherf - Jason Woods - - Oleg Andreyev - klemens - dened - Dmitry Korotovsky @@ -1777,6 +1796,7 @@ Symfony is the result of the work of many people who made the code better - taiiiraaa - Trevor Suarez - gedrox + - Bohan Yang - Alan Bondarchuk - Joe Bennett - dropfen @@ -1810,6 +1830,7 @@ Symfony is the result of the work of many people who made the code better - Jan Marek (janmarek) - Mark de Haan (markdehaan) - Dan Patrick (mdpatrick) + - Geoffrey Monte (numerogeek) - Pedro Magalhães (pmmaga) - Rares Vlaseanu (raresvla) - tante kinast (tante) @@ -1907,6 +1928,7 @@ Symfony is the result of the work of many people who made the code better - hainey - Juan M Martínez - Gilles Gauthier + - Pavinthan - ddebree - Kuba Werłos - Gyula Szucs @@ -2032,11 +2054,13 @@ Symfony is the result of the work of many people who made the code better - jc - BenjaminBeck - Aurelijus Rožėnas + - Beno!t POLASZEK - Jordan Hoff - znerol - Christian Eikermann - Kai Eichinger - Antonio Angelino + - Jens Schulze - Matt Fields - Niklas Keller - Andras Debreczeni @@ -2115,6 +2139,7 @@ Symfony is the result of the work of many people who made the code better - Lebnik - nsbx - Shude + - Richard Hodgson - Ondřej Führer - Sema - Elan Ruusamäe @@ -2134,6 +2159,7 @@ Symfony is the result of the work of many people who made the code better - Benjamin Long - Ben Miller - Peter Gribanov + - Matteo Galli - kwiateusz - jspee - Ilya Bulakh @@ -2172,6 +2198,7 @@ Symfony is the result of the work of many people who made the code better - Lin Lu - arduanov - sualko + - Molkobain - Bilge - ADmad - Nicolas Roudaire @@ -2282,6 +2309,7 @@ Symfony is the result of the work of many people who made the code better - Wouter Sioen (wouter_sioen) - Xavier Amado (xamado) - Jesper Søndergaard Pedersen (zerrvox) + - Alexander Menshchikov (zmey_kk) - Florent Cailhol - szymek - Kovacs Nicolas From 83b90c2e003c460db7407829484a0c85f28f8043 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 7 Oct 2019 16:41:56 +0200 Subject: [PATCH 83/83] updated VERSION for 3.4.32 --- 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 8ad08b9c7de77..2f6a6e4612e68 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.32-DEV'; + const VERSION = '3.4.32'; const VERSION_ID = 30432; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; const RELEASE_VERSION = 32; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021';